diff options
author | Justin Stanley <molecuul@users.noreply.github.com> | 2019-04-02 19:21:55 -0500 |
---|---|---|
committer | Peter Scheibel <scheibel1@llnl.gov> | 2019-04-02 17:21:55 -0700 |
commit | 8710203e08e8de9a983a05942d6b20de919a5e26 (patch) | |
tree | e5ef009981f955ec325be854ccaa4d9fa940806e /var | |
parent | 6ac99f6275c71561421c3b4c196be70392cad8f7 (diff) | |
download | spack-8710203e08e8de9a983a05942d6b20de919a5e26.tar.gz spack-8710203e08e8de9a983a05942d6b20de919a5e26.tar.bz2 spack-8710203e08e8de9a983a05942d6b20de919a5e26.tar.xz spack-8710203e08e8de9a983a05942d6b20de919a5e26.zip |
r-pkgload: new package at 1.0.2 (#11047)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/r-pkgload/package.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-pkgload/package.py b/var/spack/repos/builtin/packages/r-pkgload/package.py new file mode 100644 index 0000000000..e1a579adaf --- /dev/null +++ b/var/spack/repos/builtin/packages/r-pkgload/package.py @@ -0,0 +1,23 @@ +# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other +# Spack Project Developers. See the top-level COPYRIGHT file for details. +# +# SPDX-License-Identifier: (Apache-2.0 OR MIT) + +from spack import * + + +class RPkgload(RPackage): + """pkgload: Simulate Package Installation and Attach""" + + homepage = "https://cran.r-project.org/package=pkgload" + url = "https://cran.r-project.org/src/contrib/pkgload_1.0.2.tar.gz" + list_url = "https://cran.r-project.org/src/contrib/Archive/pkgload/" + + version('1.0.2', sha256='3186564e690fb05eabe76e1ac0bfd4312562c3ac8794b29f8850399515dcf27c') + + depends_on('r-desc', type=('build', 'run')) + depends_on('r-pkgbuild', type=('build', 'run')) + depends_on('r-rlang', type=('build', 'run')) + depends_on('r-rprojroot', type=('build', 'run')) + depends_on('r-rstudioapi', type=('build', 'run')) + depends_on('r-withr', type=('build', 'run')) |