diff options
author | Glenn Johnson <glenn-johnson@uiowa.edu> | 2021-01-15 03:07:26 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-15 10:07:26 +0100 |
commit | c8e4ded2605111058a8dc28f6e562d9c16fe8e40 (patch) | |
tree | d88b674184f9f6243059ca766f907194cc50ca47 | |
parent | bf6b8cfe6e003fbc3aaef3791639ad8d5c470ce4 (diff) | |
download | spack-c8e4ded2605111058a8dc28f6e562d9c16fe8e40.tar.gz spack-c8e4ded2605111058a8dc28f6e562d9c16fe8e40.tar.bz2 spack-c8e4ded2605111058a8dc28f6e562d9c16fe8e40.tar.xz spack-c8e4ded2605111058a8dc28f6e562d9c16fe8e40.zip |
add version 0.4.10 to r-rlang (#20796)
-rw-r--r-- | var/spack/repos/builtin/packages/r-rlang/package.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/r-rlang/package.py b/var/spack/repos/builtin/packages/r-rlang/package.py index bd89823397..23aaab8591 100644 --- a/var/spack/repos/builtin/packages/r-rlang/package.py +++ b/var/spack/repos/builtin/packages/r-rlang/package.py @@ -7,13 +7,16 @@ from spack import * class RRlang(RPackage): - """A toolbox for working with base types, core R features like the - condition system, and core 'Tidyverse' features like tidy evaluation.""" + """Functions for Base Types and Core R and 'Tidyverse' Features + + A toolbox for working with base types, core R features like the condition + system, and core 'Tidyverse' features like tidy evaluation.""" homepage = "https://cloud.r-project.org/package=rlang" url = "https://cloud.r-project.org/src/contrib/rlang_0.2.2.tar.gz" list_url = "https://cloud.r-project.org/src/contrib/Archive/rlang" + version('0.4.10', sha256='07530270c4c199f2b7efc5d57a476d99babd9d0c3388a02bb7d57fe312da3576') version('0.4.6', sha256='3a81b107765fd6ac0ad716c428d01878775ded9208ba125d43c890c73d2533ca') version('0.4.0', sha256='9748a4a217548bbe5631c18fd88c94811950446f798ff21fb327703aebaa150d') version('0.3.4', sha256='4e467f7b0dcbde91b60c292137d2c69cecaa713a6e4c9b7157ef6fd5453b7ade') @@ -27,3 +30,4 @@ class RRlang(RPackage): depends_on('r@3.1.0:', when='@:0.3.4', type=('build', 'run')) depends_on('r@3.2.0:', when='@0.4.0:', type=('build', 'run')) + depends_on('r@3.3.0:', when='@0.4.10:', type=('build', 'run')) |