add version 0.4.7 to r-ggvis (#20997)

This commit is contained in:
Glenn Johnson 2021-01-16 08:09:46 -06:00 committed by GitHub
parent 710fe02a9a
commit a98e48525d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,7 +7,9 @@
class RGgvis(RPackage): class RGgvis(RPackage):
"""An implementation of an interactive grammar of graphics, taking the best """Interactive Grammar of Graphics
An implementation of an interactive grammar of graphics, taking the best
parts of 'ggplot2', combining them with the reactive framework from 'shiny' parts of 'ggplot2', combining them with the reactive framework from 'shiny'
and web graphics from 'vega'.""" and web graphics from 'vega'."""
@ -15,6 +17,7 @@ class RGgvis(RPackage):
url = "https://cloud.r-project.org/src/contrib/ggvis_0.4.3.tar.gz" url = "https://cloud.r-project.org/src/contrib/ggvis_0.4.3.tar.gz"
list_url = "https://cloud.r-project.org/src/contrib/Archive/ggvis" list_url = "https://cloud.r-project.org/src/contrib/Archive/ggvis"
version('0.4.7', sha256='9e6b067e11d497c796d42156570e2481afb554c5db265f42afbb74d2ae0865e3')
version('0.4.4', sha256='1332ea122b768688c8a407a483be80febc4576de0ec8929077738421b27cafaf') version('0.4.4', sha256='1332ea122b768688c8a407a483be80febc4576de0ec8929077738421b27cafaf')
version('0.4.3', sha256='34d517783016aaa1c4bef8972f4c06df5cd9ca0568035b647e60a8369043ecdc') version('0.4.3', sha256='34d517783016aaa1c4bef8972f4c06df5cd9ca0568035b647e60a8369043ecdc')
version('0.4.2', sha256='2fcc2b6ca4fbdc69fe75a2c58c12cb43096ab418160c98367e5ac0fd19fc591d') version('0.4.2', sha256='2fcc2b6ca4fbdc69fe75a2c58c12cb43096ab418160c98367e5ac0fd19fc591d')
@ -25,5 +28,7 @@ class RGgvis(RPackage):
depends_on('r-shiny@0.11.1:', type=('build', 'run')) depends_on('r-shiny@0.11.1:', type=('build', 'run'))
depends_on('r-magrittr', type=('build', 'run')) depends_on('r-magrittr', type=('build', 'run'))
depends_on('r-dplyr@0.4.0:', type=('build', 'run')) depends_on('r-dplyr@0.4.0:', type=('build', 'run'))
depends_on('r-lazyeval', type=('build', 'run')) depends_on('r-dplyr@0.5.0:', when='@0.4.7:', type=('build', 'run'))
depends_on('r-rlang', when='@0.4.7:', type=('build', 'run'))
depends_on('r-htmltools@0.2.4:', type=('build', 'run')) depends_on('r-htmltools@0.2.4:', type=('build', 'run'))
depends_on('r-lazyeval', when='@:0.4.4', type=('build', 'run'))