diff options
author | Justin Stanley <molecuul@users.noreply.github.com> | 2019-01-30 13:26:34 -0600 |
---|---|---|
committer | Peter Scheibel <scheibel1@llnl.gov> | 2019-01-30 13:26:34 -0600 |
commit | 25d2ccfcc5a3961a6a7c7161990bcf95f966cbb8 (patch) | |
tree | dfafa8f1f08cac787e888cdebe19a775bcc96b24 | |
parent | 2a28e6e6bb936d902d9f1e32f70231c2678f17c3 (diff) | |
download | spack-25d2ccfcc5a3961a6a7c7161990bcf95f966cbb8.tar.gz spack-25d2ccfcc5a3961a6a7c7161990bcf95f966cbb8.tar.bz2 spack-25d2ccfcc5a3961a6a7c7161990bcf95f966cbb8.tar.xz spack-25d2ccfcc5a3961a6a7c7161990bcf95f966cbb8.zip |
r-runit: new package at 0.4.32 (#10416)
-rw-r--r-- | var/spack/repos/builtin/packages/r-runit/package.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-runit/package.py b/var/spack/repos/builtin/packages/r-runit/package.py new file mode 100644 index 0000000000..246c189cb2 --- /dev/null +++ b/var/spack/repos/builtin/packages/r-runit/package.py @@ -0,0 +1,19 @@ +# 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 RRunit(RPackage): + """RUnit: R Unit Test Framework""" + + homepage = "https://cran.r-project.org/package=RUnit" + url = "https://cran.r-project.org/src/contrib/RUnit_0.4.32.tar.gz" + list_url = "https://cran.r-project.org/src/contrib/Archive/RUnit/" + + version('0.4.32', sha256='23a393059989000734898685d0d5509ece219879713eb09083f7707f167f81f1') + + depends_on('r@2.5.0:', type=('build', 'run')) + depends_on('r-xml@3.1.0:', type=('build', 'run')) |