summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-dismo/package.py
blob: aebd306a062fa24c3020defdd45e80db4fc5a016 (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
# 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 RDismo(RPackage):
    """Species Distribution Modeling.

    Methods for species distribution modeling, that is, predicting the
    environmental similarity of any site to that of the locations of known
    occurrences of a species."""

    cran = "dismo"

    version('1.3-5', sha256='812e1932d42c0f40acf2ab5c5b2d068f93128caf648626e1d11baf1a09340ee7')
    version('1.3-3', sha256='fd65331ac18a4287ba0856b90508ddd0e2738c653eecc5f3eb2b14e1d06949ca')
    version('1.1-4', sha256='f2110f716cd9e4cca5fd2b22130c6954658aaf61361d2fe688ba22bbfdfa97c8')

    depends_on('r@3.2.0:', type=('build', 'run'))
    depends_on('r@4.0.0:', type=('build', 'run'), when='@1.3-5:')
    depends_on('r-raster@2.5-2:', type=('build', 'run'))
    depends_on('r-raster@3.5-2:', type=('build', 'run'), when='@1.3-5:')
    depends_on('r-sp@1.2-0:', type=('build', 'run'))
    depends_on('r-sp@1.4-5:', type=('build', 'run'), when='@1.3-5:')
    depends_on('java@8:', when='@1.3-3:')