diff options
Diffstat (limited to 'var/spack/repos/builtin/packages/r-vegan/package.py')
-rw-r--r-- | var/spack/repos/builtin/packages/r-vegan/package.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/var/spack/repos/builtin/packages/r-vegan/package.py b/var/spack/repos/builtin/packages/r-vegan/package.py index adbfe7869e..1dce840c9f 100644 --- a/var/spack/repos/builtin/packages/r-vegan/package.py +++ b/var/spack/repos/builtin/packages/r-vegan/package.py @@ -1,4 +1,4 @@ -# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other +# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other # Spack Project Developers. See the top-level COPYRIGHT file for details. # # SPDX-License-Identifier: (Apache-2.0 OR MIT) @@ -7,18 +7,21 @@ from spack import * class RVegan(RPackage): - """Ordination methods, diversity analysis and other functions for + """Community Ecology Package + + Ordination methods, diversity analysis and other functions for community and vegetation ecologists.""" homepage = "https://github.com/vegandevs/vegan" url = "https://cloud.r-project.org/src/contrib/vegan_2.4-3.tar.gz" list_url = "https://cloud.r-project.org/src/contrib/Archive/vegan" + version('2.5-7', sha256='e63b586951ea7d8b0118811f329c700212892ec1db3b93951603ce1d68aa462a') version('2.5-5', sha256='876b5266f29f3034fed881020d16f476e62d145a00cb450a1a213e019e056971') version('2.5-4', sha256='5116a440111fca49b5f95cfe888b180ff29a112e6301d5e2ac5cae0e628493e0') version('2.4-3', sha256='2556b1281a62e53f32bb57539bc600c00a599d0699867912220535d1a3ebec97') - depends_on('r@3.0.0:', when='@:2.4-6', type=('build', 'run')) + depends_on('r@3.0.0:', type=('build', 'run')) depends_on('r@3.1.0:', when='@2.5-1', type=('build', 'run')) depends_on('r@3.2.0:', when='@2.5-2:2.5-4', type=('build', 'run')) depends_on('r@3.4.0:', when='@2.5-5:', type=('build', 'run')) |