diff options
author | Glenn Johnson <glenn-johnson@uiowa.edu> | 2022-02-21 11:22:33 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-21 11:22:33 -0600 |
commit | 275608e2f2abb8b5423d89fd8c951876cde8e6cd (patch) | |
tree | 047bfb78a26acf315f9b6bf6f27139ed790a7714 /var/spack/repos/builtin/packages/r-ggplot2/package.py | |
parent | f744640289f8decae475909c242dc2f5d9aca404 (diff) | |
download | spack-275608e2f2abb8b5423d89fd8c951876cde8e6cd.tar.gz spack-275608e2f2abb8b5423d89fd8c951876cde8e6cd.tar.bz2 spack-275608e2f2abb8b5423d89fd8c951876cde8e6cd.tar.xz spack-275608e2f2abb8b5423d89fd8c951876cde8e6cd.zip |
update CRAN R packages (#28786)
Diffstat (limited to 'var/spack/repos/builtin/packages/r-ggplot2/package.py')
-rw-r--r-- | var/spack/repos/builtin/packages/r-ggplot2/package.py | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/var/spack/repos/builtin/packages/r-ggplot2/package.py b/var/spack/repos/builtin/packages/r-ggplot2/package.py index b2da724ed2..69d917ce94 100644 --- a/var/spack/repos/builtin/packages/r-ggplot2/package.py +++ b/var/spack/repos/builtin/packages/r-ggplot2/package.py @@ -7,14 +7,13 @@ from spack import * class RGgplot2(RPackage): - """Create Elegant Data Visualisations Using the Grammar of Graphics + """Create Elegant Data Visualisations Using the Grammar of Graphics. A system for 'declaratively' creating graphics, based on "The Grammar of Graphics". You provide the data, tell 'ggplot2' how to map variables to aesthetics, what graphical primitives to use, and it takes care of the details.""" - homepage = "https://ggplot2.tidyverse.org/" cran = "ggplot2" version('3.3.5', sha256='b075294faf3af31b18e415f260c62d6000b218770e430484fe38819bdc3224ea') @@ -24,21 +23,22 @@ class RGgplot2(RPackage): version('2.2.1', sha256='5fbc89fec3160ad14ba90bd545b151c7a2e7baad021c0ab4b950ecd6043a8314') version('2.1.0', sha256='f2c323ae855d6c089e3a52138aa7bc25b9fe1429b8df9eae89d28ce3c0dd3969') - depends_on('r@3.1:', when='@:3.1.1', type=('build', 'run')) - depends_on('r@3.2:', when='@3.2.0:', type=('build', 'run')) - depends_on('r@3.3:', when='@3.3.4:', type=('build', 'run')) + depends_on('r@3.1:', type=('build', 'run')) + depends_on('r@3.2:', type=('build', 'run'), when='@3.2.0:') + depends_on('r@3.3:', type=('build', 'run'), when='@3.3.4:') depends_on('r-digest', type=('build', 'run')) - depends_on('r-glue', when='@3.3.3:', type=('build', 'run')) + depends_on('r-glue', type=('build', 'run'), when='@3.3.3:') depends_on('r-gtable@0.1.1:', type=('build', 'run')) - depends_on('r-isoband', when='@3.3.3:', type=('build', 'run')) + depends_on('r-isoband', type=('build', 'run'), when='@3.3.3:') depends_on('r-mass', type=('build', 'run')) - depends_on('r-mgcv', when='@3.2.0:', type=('build', 'run')) - depends_on('r-rlang@0.3.0:', when='@3.0.0:', type=('build', 'run')) - depends_on('r-rlang@0.4.10:', when='@3.3.4:', type=('build', 'run')) + depends_on('r-mgcv', type=('build', 'run'), when='@3.2.0:') + depends_on('r-rlang@0.3.0:', type=('build', 'run'), when='@3.0.0:') + depends_on('r-rlang@0.4.10:', type=('build', 'run'), when='@3.3.4:') depends_on('r-scales@0.5.0:', type=('build', 'run')) depends_on('r-tibble', type=('build', 'run')) - depends_on('r-withr@2.0.0:', when='@3.0.0:', type=('build', 'run')) - depends_on('r-plyr@1.7.1:', when='@:3.1.1', type=('build', 'run')) - depends_on('r-reshape2', when='@:3.2.0', type=('build', 'run')) - depends_on('r-lazyeval', when='@:3.2.0', type=('build', 'run')) - depends_on('r-viridislite', when='@3.0.0:3.2.0', type=('build', 'run')) + depends_on('r-withr@2.0.0:', type=('build', 'run'), when='@3.0.0:') + + depends_on('r-plyr@1.7.1:', type=('build', 'run'), when='@:3.1.1') + depends_on('r-reshape2', type=('build', 'run'), when='@:3.2.0') + depends_on('r-lazyeval', type=('build', 'run'), when='@:3.2.0') + depends_on('r-viridislite', type=('build', 'run'), when='@3.0.0:3.2.0') |