summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-vegan/package.py
blob: 8d642329ace3211730d38154e21fc5b9418cee40 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Copyright 2013-2022 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)

from spack.package import *


class RVegan(RPackage):
    """Community Ecology Package.

    Ordination methods, diversity analysis and other functions for community
    and vegetation ecologists."""

    cran = "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:', type=('build', 'run'))
    depends_on('r@3.1.0:', type=('build', 'run'), when='@2.5-1')
    depends_on('r@3.2.0:', type=('build', 'run'), when='@2.5-2:')
    depends_on('r@3.4.0:', type=('build', 'run'), when='@2.5-5:')
    depends_on('r-permute@0.9-0:', type=('build', 'run'))
    depends_on('r-lattice', type=('build', 'run'))
    depends_on('r-mass', type=('build', 'run'))
    depends_on('r-cluster', type=('build', 'run'))
    depends_on('r-mgcv', type=('build', 'run'))