diff options
author | Glenn Johnson <glenn-johnson@uiowa.edu> | 2021-01-17 14:07:54 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-17 14:07:54 -0600 |
commit | 36a547aff4f09d067ae9784cf04e0f6fe1775e43 (patch) | |
tree | 7735d57bf793462904079ec8d63d06e7ea9b99f6 /var | |
parent | 41ca013069ba2787cf821b1aa0c67481510cf3c2 (diff) | |
download | spack-36a547aff4f09d067ae9784cf04e0f6fe1775e43.tar.gz spack-36a547aff4f09d067ae9784cf04e0f6fe1775e43.tar.bz2 spack-36a547aff4f09d067ae9784cf04e0f6fe1775e43.tar.xz spack-36a547aff4f09d067ae9784cf04e0f6fe1775e43.zip |
add version 0.6-29 to r-latticeextra (#21068)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/r-latticeextra/package.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/r-latticeextra/package.py b/var/spack/repos/builtin/packages/r-latticeextra/package.py index a32a4b9072..62303a26c2 100644 --- a/var/spack/repos/builtin/packages/r-latticeextra/package.py +++ b/var/spack/repos/builtin/packages/r-latticeextra/package.py @@ -7,7 +7,9 @@ from spack import * class RLatticeextra(RPackage): - """Building on the infrastructure provided by the lattice package, + """Extra Graphical Utilities Based on Lattice + + Building on the infrastructure provided by the lattice package, this package provides several new high-level functions and methods, as well as additional utilities such as panel and axis annotation functions.""" @@ -16,8 +18,12 @@ class RLatticeextra(RPackage): url = "https://cloud.r-project.org/src/contrib/latticeExtra_0.6-28.tar.gz" list_url = "https://cloud.r-project.org/src/contrib/Archive/latticeExtra" + version('0.6-29', sha256='6cadc31d56f73d926e2e8d72e43ae17ac03607a4d1a374719999a4a231e3df11') version('0.6-28', sha256='780695323dfadac108fb27000011c734e2927b1e0f069f247d65d27994c67ec2') depends_on('r@2.10.0:', type=('build', 'run')) + depends_on('r@3.6.0:', when='@0.6-29:', type=('build', 'run')) depends_on('r-lattice', type=('build', 'run')) + depends_on('r-png', when='@0.6-29:', type=('build', 'run')) + depends_on('r-jpeg', when='@0.6-29:', type=('build', 'run')) depends_on('r-rcolorbrewer', type=('build', 'run')) |