add version 0.9.0 to r-ggrepel (#20995)

This commit is contained in:
Glenn Johnson
2021-01-16 08:10:21 -06:00
committed by GitHub
parent e87b1b7aa4
commit 9bb72ea946

View File

@@ -7,12 +7,17 @@
class RGgrepel(RPackage): class RGgrepel(RPackage):
"""ggrepel: Repulsive Text and Label Geoms for 'ggplot2'""" """Repulsive Text and Label Geoms for 'ggplot2'
Provides text and label geoms for 'ggplot2' that help to avoid overlapping
text labels. Labels repel away from each other and away from the data
points."""
homepage = "http://github.com/slowkow/ggrepel" homepage = "http://github.com/slowkow/ggrepel"
url = "https://cloud.r-project.org/src/contrib/ggrepel_0.6.5.tar.gz" url = "https://cloud.r-project.org/src/contrib/ggrepel_0.6.5.tar.gz"
list_url = "https://cloud.r-project.org/src/contrib/Archive/ggrepel" list_url = "https://cloud.r-project.org/src/contrib/Archive/ggrepel"
version('0.9.0', sha256='4f7ca3da7dc08902487c961c539ef43516263c30abcc4ce303ff3c5580f42fda')
version('0.8.1', sha256='d5d03a77ab6d8c831934bc46e840cc4e3df487272ab591fa72767ad42bcb7283') version('0.8.1', sha256='d5d03a77ab6d8c831934bc46e840cc4e3df487272ab591fa72767ad42bcb7283')
version('0.8.0', sha256='6386606e716d326354a29fcb6cd09f9b3d3b5e7c5ba0d5f7ff35416b1a4177d4') version('0.8.0', sha256='6386606e716d326354a29fcb6cd09f9b3d3b5e7c5ba0d5f7ff35416b1a4177d4')
version('0.6.5', sha256='360ae9d199755f9e260fefbd3baba3448fad3f024f20bcd9942a862b8c41a752') version('0.6.5', sha256='360ae9d199755f9e260fefbd3baba3448fad3f024f20bcd9942a862b8c41a752')
@@ -20,4 +25,6 @@ class RGgrepel(RPackage):
depends_on('r@3.0.0:', type=('build', 'run')) depends_on('r@3.0.0:', type=('build', 'run'))
depends_on('r-ggplot2@2.2.0:', type=('build', 'run')) depends_on('r-ggplot2@2.2.0:', type=('build', 'run'))
depends_on('r-rcpp', type=('build', 'run')) depends_on('r-rcpp', type=('build', 'run'))
depends_on('r-rlang@0.3.0:', when='@0.9.0:', type=('build', 'run'))
depends_on('r-scales@0.3.0:', type=('build', 'run')) depends_on('r-scales@0.3.0:', type=('build', 'run'))
depends_on('r-scales@0.5.0:', when='@0.9.0:', type=('build', 'run'))