summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorGlenn Johnson <glenn-johnson@uiowa.edu>2021-04-23 15:26:51 -0500
committerGitHub <noreply@github.com>2021-04-23 20:26:51 +0000
commita5db2a740322ad57876ffb82b09a550205555e27 (patch)
treeafc3a520eecf92a871640028a5ebc27f47efead3 /var
parentfef05621a77ee8b62b318370e1ec7bf39502eb7c (diff)
downloadspack-a5db2a740322ad57876ffb82b09a550205555e27.tar.gz
spack-a5db2a740322ad57876ffb82b09a550205555e27.tar.bz2
spack-a5db2a740322ad57876ffb82b09a550205555e27.tar.xz
spack-a5db2a740322ad57876ffb82b09a550205555e27.zip
r-renv: new package (#23067)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/r-renv/package.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-renv/package.py b/var/spack/repos/builtin/packages/r-renv/package.py
new file mode 100644
index 0000000000..217262b91c
--- /dev/null
+++ b/var/spack/repos/builtin/packages/r-renv/package.py
@@ -0,0 +1,21 @@
+# 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)
+
+from spack import *
+
+
+class RRenv(RPackage):
+ """Project Environments for R packages:
+
+ A dependency management toolkit for R. Using 'renv', you can create and
+ manage project-local R libraries, save the state of these libraries to a
+ 'lockfile', and later restore your library as required. Together, these
+ tools can help make your projects more isolated, portable, and
+ reproducible."""
+
+ homepage = "https://rstudio.github.io/renv/"
+ cran = "renv"
+
+ version('0.13.2', sha256='41f208ed957e27c50cbd8b0fff77a434bad963707df85e462419e2edb6719a4a')