diff options
author | Glenn Johnson <glenn-johnson@uiowa.edu> | 2021-01-16 08:10:37 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-16 15:10:37 +0100 |
commit | 6acfca4635b51e88503fd2752fa7559c5c9b9c5c (patch) | |
tree | f06e6d335eac86609f95198dd9bfda60049db789 | |
parent | 9bb72ea9469270b0f66125a8e32e636f16f4ffae (diff) | |
download | spack-6acfca4635b51e88503fd2752fa7559c5c9b9c5c.tar.gz spack-6acfca4635b51e88503fd2752fa7559c5c9b9c5c.tar.bz2 spack-6acfca4635b51e88503fd2752fa7559c5c9b9c5c.tar.xz spack-6acfca4635b51e88503fd2752fa7559c5c9b9c5c.zip |
add version 0.0.5 to r-ggplotify (#20994)
-rw-r--r-- | var/spack/repos/builtin/packages/r-ggplotify/package.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/r-ggplotify/package.py b/var/spack/repos/builtin/packages/r-ggplotify/package.py index cf77a6ac52..765c293a8b 100644 --- a/var/spack/repos/builtin/packages/r-ggplotify/package.py +++ b/var/spack/repos/builtin/packages/r-ggplotify/package.py @@ -7,12 +7,19 @@ from spack import * class RGgplotify(RPackage): - """ggplotify: Convert Plot to 'grob' or 'ggplot' Object""" + """Convert Plot to 'grob' or 'ggplot' Object + + Convert plot function call (using expression or formula) to 'grob' or + 'ggplot' object that compatible to the 'grid' and 'ggplot2' ecosystem. With + this package, we are able to e.g. using 'cowplot' to align plots produced + by 'base' graphics, 'ComplexHeatmap', 'eulerr', 'grid', 'lattice', + 'magick', 'pheatmap', 'vcd' etc. by converting them to 'ggplot' objects.""" homepage = "https://github.com/GuangchuangYu/ggplotify" url = "https://cloud.r-project.org/src/contrib/ggplotify_0.0.3.tar.gz" list_url = "https://cloud.r-project.org/src/contrib/Archive/ggplotify" + version('0.0.5', sha256='035ea6a70023c4819c8a486d0fd94c2765aa4d6df318747e104eeb9829b9d65d') version('0.0.3', sha256='7e7953a2933aa7127a0bac54375e3e0219a0744cfc3249c3d7b76065f7a51892') depends_on('r@3.4.0:', type=('build', 'run')) |