summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn Johnson <glenn-johnson@uiowa.edu>2021-01-16 08:24:07 -0600
committerGitHub <noreply@github.com>2021-01-16 15:24:07 +0100
commit2eed811a1f94251c58e5aa6519ff9aa519298755 (patch)
tree27ed7c45b15d24a462ab187d41e7877ab1d21079
parentfae1c812e42d5f6123e0e6fb81502268f84a4d10 (diff)
downloadspack-2eed811a1f94251c58e5aa6519ff9aa519298755.tar.gz
spack-2eed811a1f94251c58e5aa6519ff9aa519298755.tar.bz2
spack-2eed811a1f94251c58e5aa6519ff9aa519298755.tar.xz
spack-2eed811a1f94251c58e5aa6519ff9aa519298755.zip
add version 1.1.0 to r-tidyselect (#20968)
-rw-r--r--var/spack/repos/builtin/packages/r-tidyselect/package.py16
1 files changed, 12 insertions, 4 deletions
diff --git a/var/spack/repos/builtin/packages/r-tidyselect/package.py b/var/spack/repos/builtin/packages/r-tidyselect/package.py
index 32da068095..ed64338c59 100644
--- a/var/spack/repos/builtin/packages/r-tidyselect/package.py
+++ b/var/spack/repos/builtin/packages/r-tidyselect/package.py
@@ -7,20 +7,28 @@ from spack import *
class RTidyselect(RPackage):
- """A backend for the selecting functions of the 'tidyverse'. It makes it
- easy to implement select-like functions in your own packages in a way
- that is consistent with other 'tidyverse' interfaces for selection."""
+ """Select from a Set of Strings
+
+ A backend for the selecting functions of the 'tidyverse'. It makes it easy
+ to implement select-like functions in your own packages in a way that is
+ consistent with other 'tidyverse' interfaces for selection."""
homepage = "https://cloud.r-project.org/package=tidyselect"
url = "https://cloud.r-project.org/src/contrib/tidyselect_0.2.3.tar.gz"
list_url = "https://cloud.r-project.org/src/contrib/Archive/tidyselect"
+ version('1.1.0', sha256='e635ed381fb53f7a53c3fa36bb33e134a3273d272367de2a8d909c821be93893')
version('0.2.5', sha256='5ce2e86230fa35cfc09aa71dcdd6e05e1554a5739c863ca354d241bfccb86c74')
version('0.2.4', sha256='5cb30e56ad5c1ac59786969edc8d542a7a1735a129a474f585a141aefe6a2295')
version('0.2.3', sha256='0c193abc8251a60e1d2a32a99c77651c336bc185e3c2a72e5f8781813d181c2c')
depends_on('r@3.1:', type=('build', 'run'))
+ depends_on('r@3.2:', when='@1.1.0:', type=('build', 'run'))
+ depends_on('r-ellipsis', when='@1.1.0:', type=('build', 'run'))
depends_on('r-glue@1.3.0:', type=('build', 'run'))
depends_on('r-purrr', type=('build', 'run'))
+ depends_on('r-purrr@0.3.2:', when='@1.1.0:', type=('build', 'run'))
depends_on('r-rlang@0.2.2:', type=('build', 'run'))
- depends_on('r-rcpp@0.12.0:', type=('build', 'run'))
+ depends_on('r-rlang@0.4.6:', when='@1.1.0:', type=('build', 'run'))
+ depends_on('r-vctrs@0.2.2:', when='@1.1.0:', type=('build', 'run'))
+ depends_on('r-rcpp@0.12.0:', when='@:0.2.5', type=('build', 'run'))