
some of these are not resolvable in that there is only an http page available, or a page reported as broken is actually ok, or a page has an SSL error that does not prevent one from visiting (and no good replacement) Signed-off-by: vsoch <vsoch@users.noreply.github.com> Co-authored-by: vsoch <vsoch@users.noreply.github.com>
31 lines
1.4 KiB
Python
31 lines
1.4 KiB
Python
# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
from spack import *
|
|
|
|
|
|
class RGgrepel(RPackage):
|
|
"""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 = "https://github.com/slowkow/ggrepel"
|
|
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"
|
|
|
|
version('0.9.0', sha256='4f7ca3da7dc08902487c961c539ef43516263c30abcc4ce303ff3c5580f42fda')
|
|
version('0.8.1', sha256='d5d03a77ab6d8c831934bc46e840cc4e3df487272ab591fa72767ad42bcb7283')
|
|
version('0.8.0', sha256='6386606e716d326354a29fcb6cd09f9b3d3b5e7c5ba0d5f7ff35416b1a4177d4')
|
|
version('0.6.5', sha256='360ae9d199755f9e260fefbd3baba3448fad3f024f20bcd9942a862b8c41a752')
|
|
|
|
depends_on('r@3.0.0:', type=('build', 'run'))
|
|
depends_on('r-ggplot2@2.2.0:', 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.5.0:', when='@0.9.0:', type=('build', 'run'))
|