add version 3.3.3 to r-ggplot2 (#21021)

This commit is contained in:
Glenn Johnson 2021-01-18 12:56:36 -06:00 committed by GitHub
parent e879c4176d
commit 8f5651e63e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,18 +7,18 @@
class RGgplot2(RPackage): class RGgplot2(RPackage):
"""An implementation of the grammar of graphics in R. It combines the """Create Elegant Data Visualisations Using the Grammar of Graphics
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 A system for 'declaratively' creating graphics, based on "The Grammar of
from multiple data sources. It also implements a sophisticated Graphics". You provide the data, tell 'ggplot2' how to map variables to
multidimensional conditioning system and a consistent interface to map data aesthetics, what graphical primitives to use, and it takes care of the
to aesthetic attributes. See http://ggplot2.org for more information, details."""
documentation and examples."""
homepage = "http://ggplot2.org/" homepage = "http://ggplot2.org/"
url = "https://cloud.r-project.org/src/contrib/ggplot2_2.2.1.tar.gz" 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" 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.2.0', sha256='31b6897fb65acb37913ff6e2bdc1b57f652360098ae3aa660abdcf54f84d73b3')
version('3.1.1', sha256='bfde297f3b4732e7f560078f4ce131812a70877e6b5b1d41a772c394939e0c79') version('3.1.1', sha256='bfde297f3b4732e7f560078f4ce131812a70877e6b5b1d41a772c394939e0c79')
version('2.2.1', sha256='5fbc89fec3160ad14ba90bd545b151c7a2e7baad021c0ab4b950ecd6043a8314') 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.1:', when='@:3.1.1', type=('build', 'run'))
depends_on('r@3.2:', when='@3.2.0:', 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-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-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-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-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.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-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'))