diff options
author | Justin Stanley <molecuul@users.noreply.github.com> | 2019-01-30 20:54:24 -0600 |
---|---|---|
committer | Peter Scheibel <scheibel1@llnl.gov> | 2019-01-30 20:54:24 -0600 |
commit | 5a431eb408c4b4ea193b45d59bba26ea384cb297 (patch) | |
tree | 7c752cfe60a237e45f4107307d81278478869b03 | |
parent | b1af6b43dc7a219a870308a4fbef98b22aee125a (diff) | |
download | spack-5a431eb408c4b4ea193b45d59bba26ea384cb297.tar.gz spack-5a431eb408c4b4ea193b45d59bba26ea384cb297.tar.bz2 spack-5a431eb408c4b4ea193b45d59bba26ea384cb297.tar.xz spack-5a431eb408c4b4ea193b45d59bba26ea384cb297.zip |
r-pkgmaker: add 0.27, new dependencies (#10419)
-rw-r--r-- | var/spack/repos/builtin/packages/r-pkgmaker/package.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-pkgmaker/package.py b/var/spack/repos/builtin/packages/r-pkgmaker/package.py index 6d96096168..29628b68e7 100644 --- a/var/spack/repos/builtin/packages/r-pkgmaker/package.py +++ b/var/spack/repos/builtin/packages/r-pkgmaker/package.py @@ -19,10 +19,24 @@ class RPkgmaker(RPackage): url = "https://cran.r-project.org/src/contrib/pkgmaker_0.22.tar.gz" list_url = "https://cran.r-project.org/src/contrib/Archive/pkgmaker" + version('0.27', sha256='17a289d8f596ba5637b07077b3bff22411a2c2263c0b7de59fe848666555ec6a') version('0.22', '73a0c6d3e84c6dadf3de7582ef7e88a4') + depends_on('r@3.0.0:', type=('build', 'run')) depends_on('r-registry', type=('build', 'run')) depends_on('r-codetools', type=('build', 'run')) depends_on('r-digest', type=('build', 'run')) + depends_on('r-stringi', type=('build', 'run')) + depends_on('r-magrittr', type=('build', 'run')) depends_on('r-stringr', type=('build', 'run')) depends_on('r-xtable', type=('build', 'run')) + depends_on('r-withr', type=('build', 'run')) + depends_on('r-bibtex@0.4:', type=('build', 'run')) + depends_on('r-devtools@0.8:', type=('build', 'run')) + depends_on('r-roxygen2', type=('build', 'run')) + depends_on('r-runit', type=('build', 'run')) + depends_on('r-testthat', type=('build', 'run')) + depends_on('r-knitr', type=('build', 'run')) + depends_on('r-rmarkdown', type=('build', 'run')) + depends_on('r-yaml', type=('build', 'run')) + depends_on('r-biobase', type=('build', 'run')) |