summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuela Kuhn <36827019+manuelakuhn@users.noreply.github.com>2021-11-02 18:35:56 +0100
committerGitHub <noreply@github.com>2021-11-02 17:35:56 +0000
commit00b6927c65f7c97508235a67be5a23466b39cd57 (patch)
tree75611b83aea971e5f4c3fa8cc765912d70e5e907
parent9dc790bbe2136f35405b45cd3e4c199ff4ad7380 (diff)
downloadspack-00b6927c65f7c97508235a67be5a23466b39cd57.tar.gz
spack-00b6927c65f7c97508235a67be5a23466b39cd57.tar.bz2
spack-00b6927c65f7c97508235a67be5a23466b39cd57.tar.xz
spack-00b6927c65f7c97508235a67be5a23466b39cd57.zip
r-dbplyr: add 2.1.1 (#27111)
-rw-r--r--var/spack/repos/builtin/packages/r-dbplyr/package.py11
1 files changed, 8 insertions, 3 deletions
diff --git a/var/spack/repos/builtin/packages/r-dbplyr/package.py b/var/spack/repos/builtin/packages/r-dbplyr/package.py
index 3ed51d78cc..5cbd484c13 100644
--- a/var/spack/repos/builtin/packages/r-dbplyr/package.py
+++ b/var/spack/repos/builtin/packages/r-dbplyr/package.py
@@ -15,9 +15,9 @@ class RDbplyr(RPackage):
'SQL' translation to be provided by the package author."""
homepage = "https://github.com/tidyverse/dbplyr"
- url = "https://cloud.r-project.org/src/contrib/dbplyr_1.1.0.tar.gz"
- list_url = "https://cloud.r-project.org/src/contrib/Archive/dbplyr"
+ cran = "dbplyr"
+ version('2.1.1', sha256='aba4cf47b85ab240fd3ec4cd8d512f6e1958201e151577c1a2ebc3d6ebc5bc08')
version('2.0.0', sha256='ecd71936ecfefbdda0fad24e52653ac9c0913e01126e467c92c8ba9de37b4069')
version('1.4.2', sha256='b783f0da2c09a1e63f41168b02c0715b08820f02a351f7ab0aaa688432754de0')
version('1.4.1', sha256='cfe829f56acdc785c5af21bf3927cf08327504d78c4ae1477c405c81b131da95')
@@ -28,15 +28,20 @@ class RDbplyr(RPackage):
depends_on('r@3.1:', type=('build', 'run'))
depends_on('r-assertthat@0.2.0:', type=('build', 'run'))
+ depends_on('r-blob@1.2.0:', when='@2.0.0:', type=('build', 'run'))
depends_on('r-dbi@1.0.0:', type=('build', 'run'))
depends_on('r-dplyr@0.8.0:', type=('build', 'run'))
+ depends_on('r-dplyr@1.0.3:', when='@2.1.0', type=('build', 'run'))
+ depends_on('r-dplyr@1.0.4:', when='@2.1.1:', type=('build', 'run'))
+ depends_on('r-ellipsis', when='@2.1:', type=('build', 'run'))
depends_on('r-glue@1.2.0:', type=('build', 'run'))
depends_on('r-lifecycle', when='@2.0.0:', type=('build', 'run'))
+ depends_on('r-lifecycle@1.0.0:', when='@2.1.1:', type=('build', 'run'))
depends_on('r-magrittr', when='@2.0.0:', type=('build', 'run'))
depends_on('r-purrr@0.2.5:', type=('build', 'run'))
depends_on('r-r6@2.2.2:', type=('build', 'run'))
depends_on('r-rlang@0.2.0:', type=('build', 'run'))
depends_on('r-tibble@1.4.2:', type=('build', 'run'))
depends_on('r-tidyselect@0.2.4:', type=('build', 'run'))
- depends_on('r-blob@1.2.0:', when='@2.0.0:', type=('build', 'run'))
+ depends_on('r-vctrs', when='@2.1:', type=('build', 'run'))
depends_on('r-withr', when='@2.0.0:', type=('build', 'run'))