summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorGlenn Johnson <glenn-johnson@uiowa.edu>2021-01-17 13:35:35 -0600
committerGitHub <noreply@github.com>2021-01-17 13:35:35 -0600
commitc2cc6509437b373df6febbc98ecf20dfe0b1046f (patch)
tree99e0a9bd5a68cda13b4c7737622961ca23bfa00d /var
parent055be03518ca81bd1cc94388eb094943d275f6ff (diff)
downloadspack-c2cc6509437b373df6febbc98ecf20dfe0b1046f.tar.gz
spack-c2cc6509437b373df6febbc98ecf20dfe0b1046f.tar.bz2
spack-c2cc6509437b373df6febbc98ecf20dfe0b1046f.tar.xz
spack-c2cc6509437b373df6febbc98ecf20dfe0b1046f.zip
add version 2.3.1 to r-haven (#21040)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/r-haven/package.py14
1 files changed, 10 insertions, 4 deletions
diff --git a/var/spack/repos/builtin/packages/r-haven/package.py b/var/spack/repos/builtin/packages/r-haven/package.py
index 4db2f09589..93b7b4cdde 100644
--- a/var/spack/repos/builtin/packages/r-haven/package.py
+++ b/var/spack/repos/builtin/packages/r-haven/package.py
@@ -7,22 +7,28 @@ from spack import *
class RHaven(RPackage):
- """Import foreign statistical formats into R via the embedded 'ReadStat' C
- library, <https://github.com/WizardMac/ReadStat>."""
+ """Import and Export 'SPSS', 'Stata' and 'SAS' Files
+
+ Import foreign statistical formats into R via the embedded 'ReadStat' C
+ library, <https://github.com/WizardMac/ReadStat>."""
homepage = "http://haven.tidyverse.org/"
url = "https://cloud.r-project.org/src/contrib/haven_1.1.0.tar.gz"
list_url = "https://cloud.r-project.org/src/contrib/Archive/haven"
+ version('2.3.1', sha256='6eee9f3297aab4cae2e4a4181ea65af933eacee2a2fb40af5b2ecf06f1bb9e0d')
version('2.1.1', sha256='90bcb4e7f24960e7aa3e15c06b95cd897f08de149cec43fd8ba110b14526068a')
version('2.1.0', sha256='c0a1cf1b039549fb3ad833f9644ed3f142790236ad755d2ee7bd3d8109e3ae74')
version('1.1.0', sha256='089fb4d0955f320abc48d0a3031799f96f3a20b82492474743903fdf12001d19')
depends_on('r@3.1:', when='@:2.1.0', type=('build', 'run'))
depends_on('r@3.2:', when='@2.1.1:', type=('build', 'run'))
+ depends_on('r-forcats@0.2.0:', type=('build', 'run'))
+ depends_on('r-hms', type=('build', 'run'))
depends_on('r-rcpp@0.11.4:', type=('build', 'run'))
depends_on('r-readr@0.1.0:', type=('build', 'run'))
- depends_on('r-hms', type=('build', 'run'))
+ depends_on('r-rlang@0.4.0:', when='@2.3.1:', type=('build', 'run'))
depends_on('r-tibble', type=('build', 'run'))
- depends_on('r-forcats@0.2.0:', type=('build', 'run'))
+ depends_on('r-tidyselect', when='@2.3.1:', type=('build', 'run'))
+ depends_on('r-vctrs@0.3.0:', when='@2.3.1:', type=('build', 'run'))
depends_on('gmake', type='build')