28 lines
1.2 KiB
Python
28 lines
1.2 KiB
Python
# 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 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:")
|