summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-ggally/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/r-ggally/package.py')
-rw-r--r--var/spack/repos/builtin/packages/r-ggally/package.py23
1 files changed, 16 insertions, 7 deletions
diff --git a/var/spack/repos/builtin/packages/r-ggally/package.py b/var/spack/repos/builtin/packages/r-ggally/package.py
index 1bcc024793..19b24c68df 100644
--- a/var/spack/repos/builtin/packages/r-ggally/package.py
+++ b/var/spack/repos/builtin/packages/r-ggally/package.py
@@ -1,4 +1,4 @@
-# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other
+# 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)
@@ -7,26 +7,35 @@ from spack import *
class RGgally(RPackage):
- """The R package 'ggplot2' is a plotting system based on the grammar of
- graphics. 'GGally' extends 'ggplot2' by adding several functions to
- reduce the complexity of combining geometric objects with transformed
- data. Some of these functions include a pairwise plot matrix, a two
- group pairwise plot matrix, a parallel coordinates plot, a survival
- plot, and several functions to plot networks."""
+ """Extension to 'ggplot2'
+
+ The R package 'ggplot2' is a plotting system based on the grammar of
+ graphics. 'GGally' extends 'ggplot2' by adding several functions to reduce
+ the complexity of combining geometric objects with transformed data. Some
+ of these functions include a pairwise plot matrix, a two group pairwise
+ plot matrix, a parallel coordinates plot, a survival plot, and several
+ functions to plot networks."""
homepage = "https://cloud.r-project.org/package=GGally"
url = "https://cloud.r-project.org/src/contrib/GGally_1.3.2.tar.gz"
list_url = "https://cloud.r-project.org/src/contrib/Archive/GGally"
+ version('2.1.0', sha256='7ffb86b8a4e79543cf7e6bb1e3684d738ecd8e0ba89e8ef38991898b18dd6c53')
version('1.4.0', sha256='9a47cdf004c41f5e4024327b94227707f4dad3a0ac5556d8f1fba9bf0a6355fe')
version('1.3.2', sha256='f4143f45254fed794be991180aeffe459f6756bfa08acad963707d8e843cfd0a')
depends_on('r@3.1:', type=('build', 'run'))
depends_on('r-ggplot2@2.2.0:', type=('build', 'run'))
+ depends_on('r-ggplot2@3.3.0:', when='@2.1.0:', type=('build', 'run'))
+ depends_on('r-dplyr@1.0.0:', when='@2.1.0:', type=('build', 'run'))
+ depends_on('r-forcats', when='@2.1.0:', type=('build', 'run'))
depends_on('r-gtable@0.2.0:', type=('build', 'run'))
+ depends_on('r-lifecycle', when='@2.1.0:', type=('build', 'run'))
depends_on('r-plyr@1.8.3:', type=('build', 'run'))
depends_on('r-progress', type=('build', 'run'))
depends_on('r-rcolorbrewer', type=('build', 'run'))
depends_on('r-reshape@0.8.5:', type=('build', 'run'))
depends_on('r-rlang', when='@1.4.0:', type=('build', 'run'))
+ depends_on('r-scales@1.1.0:', when='@2.1.0:', type=('build', 'run'))
+ depends_on('r-tidyr', when='@2.1.0:', type=('build', 'run'))
depends_on('openssl', when='@1.4.0:')