diff options
author | Glenn Johnson <glenn-johnson@uiowa.edu> | 2021-01-17 13:54:15 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-17 13:54:15 -0600 |
commit | 2a342b75417d7af359a4995b4e9fc7479c2dfc18 (patch) | |
tree | 32a62c49b51d8012290a5a8f42c2697f1d8d2737 | |
parent | 0d0d52050ba5c1cf151f82fe49ac2e06ef87cc6d (diff) | |
download | spack-2a342b75417d7af359a4995b4e9fc7479c2dfc18.tar.gz spack-2a342b75417d7af359a4995b4e9fc7479c2dfc18.tar.bz2 spack-2a342b75417d7af359a4995b4e9fc7479c2dfc18.tar.xz spack-2a342b75417d7af359a4995b4e9fc7479c2dfc18.zip |
add version 1.1.0 to r-pkgload (#21018)
-rw-r--r-- | var/spack/repos/builtin/packages/r-pkgload/package.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/r-pkgload/package.py b/var/spack/repos/builtin/packages/r-pkgload/package.py index 952144c7c5..918dcaa752 100644 --- a/var/spack/repos/builtin/packages/r-pkgload/package.py +++ b/var/spack/repos/builtin/packages/r-pkgload/package.py @@ -7,14 +7,21 @@ from spack import * class RPkgload(RPackage): - """pkgload: Simulate Package Installation and Attach""" + """Simulate Package Installation and Attach + + Simulates the process of installing a package and then attaching it. This + is a key part of the 'devtools' package as it allows you to rapidly iterate + while developing a package.""" homepage = "https://cloud.r-project.org/package=pkgload" url = "https://cloud.r-project.org/src/contrib/pkgload_1.0.2.tar.gz" list_url = "https://cloud.r-project.org/src/contrib/Archive/pkgload/" + version('1.1.0', sha256='189d460dbba2b35fa15dd59ce832df252dfa654a5acee0c9a8471b4d70477b0d') version('1.0.2', sha256='3186564e690fb05eabe76e1ac0bfd4312562c3ac8794b29f8850399515dcf27c') + depends_on('r-cli', when='@1.1.0:', type=('build', 'run')) + depends_on('r-crayon', when='@1.1.0:', type=('build', 'run')) depends_on('r-desc', type=('build', 'run')) depends_on('r-pkgbuild', type=('build', 'run')) depends_on('r-rlang', type=('build', 'run')) |