summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-ggpubr/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/r-ggpubr/package.py')
-rw-r--r--var/spack/repos/builtin/packages/r-ggpubr/package.py32
1 files changed, 15 insertions, 17 deletions
diff --git a/var/spack/repos/builtin/packages/r-ggpubr/package.py b/var/spack/repos/builtin/packages/r-ggpubr/package.py
index 5503ca26b5..e725f3e584 100644
--- a/var/spack/repos/builtin/packages/r-ggpubr/package.py
+++ b/var/spack/repos/builtin/packages/r-ggpubr/package.py
@@ -7,7 +7,7 @@ from spack import *
class RGgpubr(RPackage):
- """'ggplot2' Based Publication Ready Plots
+ """'ggplot2' Based Publication Ready Plots.
The 'ggplot2' package is excellent and flexible for elegant data
visualization in R. However the default generated plots requires some
@@ -17,9 +17,7 @@ class RGgpubr(RPackage):
provides some easy-to-use functions for creating and customizing 'ggplot2'-
based publication ready plots."""
- homepage = "http://www.sthda.com/english/rpkgs/ggpubr"
- url = "https://cloud.r-project.org/src/contrib/ggpubr_0.1.2.tar.gz"
- list_url = "https://cloud.r-project.org/src/contrib/Archive/ggpubr"
+ cran = "ggpubr"
version('0.4.0', sha256='abb21ec0b1ae3fa1c58eedca2d59b9b009621b30e3660f1247b3880c5fa50675')
version('0.2.2', sha256='1c93dc6d1f08680dd00a10b6842445700d1fccb11f18599fbdf51e70c6b6b364')
@@ -31,17 +29,17 @@ class RGgpubr(RPackage):
depends_on('r-ggplot2', type=('build', 'run'))
depends_on('r-ggrepel', type=('build', 'run'))
depends_on('r-ggsci', type=('build', 'run'))
- depends_on('r-tidyr', when='@0.2:', type=('build', 'run'))
- depends_on('r-plyr', when='@:0.1.2', type=('build', 'run'))
- depends_on('r-purrr', when='@0.2:', type=('build', 'run'))
- depends_on('r-dplyr@0.7.1:', when='@0.2:', type=('build', 'run'))
- depends_on('r-cowplot', when='@0.2:', type=('build', 'run'))
- depends_on('r-ggsignif', when='@0.2:', type=('build', 'run'))
- depends_on('r-scales', when='@0.2:', type=('build', 'run'))
- depends_on('r-gridextra', when='@0.2:', type=('build', 'run'))
- depends_on('r-glue', when='@0.2:', type=('build', 'run'))
- depends_on('r-polynom', when='@0.2:', type=('build', 'run'))
- depends_on('r-rlang', when='@0.2.2:', type=('build', 'run'))
- depends_on('r-rstatix@0.6.0:', when='@0.4.0:', type=('build', 'run'))
- depends_on('r-tibble', when='@0.4.0:', type=('build', 'run'))
+ depends_on('r-tidyr', type=('build', 'run'), when='@0.2:')
+ depends_on('r-plyr', type=('build', 'run'), when='@:0.1.2')
+ depends_on('r-purrr', type=('build', 'run'), when='@0.2:')
+ depends_on('r-dplyr@0.7.1:', type=('build', 'run'), when='@0.2:')
+ depends_on('r-cowplot', type=('build', 'run'), when='@0.2:')
+ depends_on('r-ggsignif', type=('build', 'run'), when='@0.2:')
+ depends_on('r-scales', type=('build', 'run'), when='@0.2:')
+ depends_on('r-gridextra', type=('build', 'run'), when='@0.2:')
+ depends_on('r-glue', type=('build', 'run'), when='@0.2:')
+ depends_on('r-polynom', type=('build', 'run'), when='@0.2:')
+ depends_on('r-rlang', type=('build', 'run'), when='@0.2.2:')
+ depends_on('r-rstatix@0.6.0:', type=('build', 'run'), when='@0.4.0:')
+ depends_on('r-tibble', type=('build', 'run'), when='@0.4.0:')
depends_on('r-magrittr', type=('build', 'run'))