diff options
author | Glenn Johnson <glenn-johnson@uiowa.edu> | 2021-01-18 12:56:36 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-18 12:56:36 -0600 |
commit | 8f5651e63e0e53c9e5557fb0b3c247390f3ee837 (patch) | |
tree | 0f3d1f663130a66c9c54e298b1d3c3a02ee7775d | |
parent | e879c4176d8940e53fd6b749582ec6da60287060 (diff) | |
download | spack-8f5651e63e0e53c9e5557fb0b3c247390f3ee837.tar.gz spack-8f5651e63e0e53c9e5557fb0b3c247390f3ee837.tar.bz2 spack-8f5651e63e0e53c9e5557fb0b3c247390f3ee837.tar.xz spack-8f5651e63e0e53c9e5557fb0b3c247390f3ee837.zip |
add version 3.3.3 to r-ggplot2 (#21021)
-rw-r--r-- | var/spack/repos/builtin/packages/r-ggplot2/package.py | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/var/spack/repos/builtin/packages/r-ggplot2/package.py b/var/spack/repos/builtin/packages/r-ggplot2/package.py index 6b53a6bcf1..7802a5831f 100644 --- a/var/spack/repos/builtin/packages/r-ggplot2/package.py +++ b/var/spack/repos/builtin/packages/r-ggplot2/package.py @@ -7,18 +7,18 @@ from spack import * class RGgplot2(RPackage): - """An implementation of the grammar of graphics in R. It combines the - advantages of both base and lattice graphics: conditioning and shared axes - are handled automatically, and you can still build up a plot step by step - from multiple data sources. It also implements a sophisticated - multidimensional conditioning system and a consistent interface to map data - to aesthetic attributes. See http://ggplot2.org for more information, - documentation and examples.""" + """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 = "http://ggplot2.org/" url = "https://cloud.r-project.org/src/contrib/ggplot2_2.2.1.tar.gz" list_url = "https://cloud.r-project.org/src/contrib/Archive/ggplot2" + version('3.3.3', sha256='45c29e2348dbd195bbde1197a52db7764113e57f463fd3770fb899acc33423cc') version('3.2.0', sha256='31b6897fb65acb37913ff6e2bdc1b57f652360098ae3aa660abdcf54f84d73b3') version('3.1.1', sha256='bfde297f3b4732e7f560078f4ce131812a70877e6b5b1d41a772c394939e0c79') version('2.2.1', sha256='5fbc89fec3160ad14ba90bd545b151c7a2e7baad021c0ab4b950ecd6043a8314') @@ -27,14 +27,16 @@ class RGgplot2(RPackage): 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-digest', type=('build', 'run')) + depends_on('r-glue', when='@3.3.3:', type=('build', 'run')) depends_on('r-gtable@0.1.1:', type=('build', 'run')) + depends_on('r-isoband', when='@3.3.3:', type=('build', 'run')) depends_on('r-mass', type=('build', 'run')) - depends_on('r-plyr@1.7.1:', when='@:3.1.1', type=('build', 'run')) - depends_on('r-reshape2', type=('build', 'run')) - depends_on('r-scales@0.5.0:', type=('build', 'run')) - depends_on('r-tibble', type=('build', 'run')) - depends_on('r-lazyeval', 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-viridislite', when='@3.0.0:', type=('build', 'run')) + 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')) |