summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn Johnson <glenn-johnson@uiowa.edu>2021-01-18 12:54:51 -0600
committerGitHub <noreply@github.com>2021-01-18 12:54:51 -0600
commit2c3550ae18366242bf2c02cb0fb34f8b7c7f9c56 (patch)
treee41180de39d248dad2c7c098552dc53312385f29
parentb424dbfead848d2badbda8c60f47ad3f9dd7a77b (diff)
downloadspack-2c3550ae18366242bf2c02cb0fb34f8b7c7f9c56.tar.gz
spack-2c3550ae18366242bf2c02cb0fb34f8b7c7f9c56.tar.bz2
spack-2c3550ae18366242bf2c02cb0fb34f8b7c7f9c56.tar.xz
spack-2c3550ae18366242bf2c02cb0fb34f8b7c7f9c56.zip
add version 1.1.2 to r-tidyr (#21113)
-rw-r--r--var/spack/repos/builtin/packages/r-tidyr/package.py30
1 files changed, 22 insertions, 8 deletions
diff --git a/var/spack/repos/builtin/packages/r-tidyr/package.py b/var/spack/repos/builtin/packages/r-tidyr/package.py
index 79c2026b45..f56246f8bd 100644
--- a/var/spack/repos/builtin/packages/r-tidyr/package.py
+++ b/var/spack/repos/builtin/packages/r-tidyr/package.py
@@ -7,26 +7,40 @@ from spack import *
class RTidyr(RPackage):
- """An evolution of 'reshape2'. It's designed specifically for data tidying
- (not general reshaping or aggregating) and works well with 'dplyr' data
- pipelines."""
+ """Tidy Messy Data
+
+ Tools to help to create tidy data, where each column is a variable, each
+ row is an observation, and each cell contains a single value. 'tidyr'
+ contains tools for changing the shape (pivoting) and hierarchy (nesting and
+ 'unnesting') of a dataset, turning deeply nested lists into rectangular
+ data frames ('rectangling'), and extracting values out of string columns.
+ It also includes tools for working with missing values (both implicit and
+ explicit)."""
homepage = "https://github.com/hadley/tidyr"
url = "https://cloud.r-project.org/src/contrib/tidyr_0.7.2.tar.gz"
list_url = "https://cloud.r-project.org/src/contrib/Archive/tidyr"
+ version('1.1.2', sha256='08fccb67824515b33187886f3ca2cf2fe747a778514892dbbf5e565edf0dfd6c')
version('0.8.3', sha256='a18f54ec35124110058ab23f7e0a3c037a8d50f0405520cf5cc5443ec022cc37')
version('0.8.2', sha256='99a508d0539390364789c5f4835b36c4a383927f0ec1648e2a4636c1cc6e490f')
version('0.7.2', sha256='062cea2e2b57fffd500e4ce31cba6d593e65684fc0897ea49ea38d257c76009c')
version('0.5.1', sha256='dbab642ac7231cbfe3e2a0d4553fb4ffb3699c6d6b432be2bb5812dfbbdbdace')
depends_on('r@3.1:', type=('build', 'run'))
- depends_on('r-tibble', type=('build', 'run'))
depends_on('r-dplyr@0.7.0:', type=('build', 'run'))
- depends_on('r-stringi', type=('build', 'run'))
- depends_on('r-magrittr', type=('build', 'run'))
+ depends_on('r-dplyr@0.8.2:', when='@1.1.2:', type=('build', 'run'))
+ depends_on('r-ellipsis@0.1.0:', when='@1.1.2:', type=('build', 'run'))
depends_on('r-glue', type=('build', 'run'))
- depends_on('r-rcpp', type=('build', 'run'))
+ depends_on('r-magrittr', type=('build', 'run'))
depends_on('r-purrr', type=('build', 'run'))
- depends_on('r-tidyselect@0.2.5:', type=('build', 'run'))
depends_on('r-rlang', type=('build', 'run'))
+ depends_on('r-tibble', type=('build', 'run'))
+ depends_on('r-tibble@2.1.1:', when='@1.1.2:', type=('build', 'run'))
+ depends_on('r-tidyselect@0.2.5:', type=('build', 'run'))
+ depends_on('r-tidyselect@1.1.0:', when='@1.1.2:', type=('build', 'run'))
+ depends_on('r-vctrs@0.3.0:', when='@1.1.2:', type=('build', 'run'))
+ depends_on('r-lifecycle', when='@1.1.2:', type=('build', 'run'))
+ depends_on('r-cpp11@0.2.1:', when='@1.1.2:', type=('build', 'run'))
+ depends_on('r-stringi', when='@:0.8.3', type=('build', 'run'))
+ depends_on('r-rcpp', when='@:0.8.3', type=('build', 'run'))