summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-r-utils/package.py
blob: d176f3698ce9e8282208c4a336eb2e1f3db4c16a (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
# 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 import *


class RRUtils(RPackage):
    """Various Programming Utilities.

    Utility functions useful when programming and developing R packages."""

    cran = "R.utils"

    version('2.11.0', sha256='622860f995f78be3a6e439f29d945874c5cb0866f6a73a9b43ac1d4d7f23fed8')
    version('2.10.1', sha256='957a4f51998c79403a50f6a46266e6553bbf08757b26bf80603a423bceb45abf')
    version('2.9.0', sha256='b2aacc5a55d3ea86c41ac576d2583e446af145f4cb1103ad7b6f95b09ab09ff0')
    version('2.5.0', sha256='1ae1a0f0c6a4972bb2369a2dbccd29ade87d747255ff9cb5a0bd784a5be1039f')

    depends_on('r@2.14.0:', type=('build', 'run'))
    depends_on('r-r-oo@1.22.0:', type=('build', 'run'))
    depends_on('r-r-oo@1.23.0:', type=('build', 'run'), when='@2.10.1:')
    depends_on('r-r-oo@1.24.0:', type=('build', 'run'), when='@2.11.0:')
    depends_on('r-r-methodss3@1.7.1:', type=('build', 'run'))
    depends_on('r-r-methodss3@1.8.0:', type=('build', 'run'), when='@2.10.1:')
    depends_on('r-r-methodss3@1.8.1:', type=('build', 'run'), when='@2.11.0:')