diff options
author | Jen Herting <jen@herting.cc> | 2021-04-26 18:45:46 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-26 17:45:46 -0500 |
commit | 934d845806cadff649ac00d6c14b2c65b2ea48cb (patch) | |
tree | 68b5f1e0a850e5130466510aed6163cae389abe4 | |
parent | c23ffd89ffadd211a727bb0866159b81fd3f6c82 (diff) | |
download | spack-934d845806cadff649ac00d6c14b2c65b2ea48cb.tar.gz spack-934d845806cadff649ac00d6c14b2c65b2ea48cb.tar.bz2 spack-934d845806cadff649ac00d6c14b2c65b2ea48cb.tar.xz spack-934d845806cadff649ac00d6c14b2c65b2ea48cb.zip |
New package: r-assertive-reflection (#23267)
-rw-r--r-- | var/spack/repos/builtin/packages/r-assertive-reflection/package.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-assertive-reflection/package.py b/var/spack/repos/builtin/packages/r-assertive-reflection/package.py new file mode 100644 index 0000000000..af84a126e2 --- /dev/null +++ b/var/spack/repos/builtin/packages/r-assertive-reflection/package.py @@ -0,0 +1,26 @@ +# Copyright 2013-2021 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 RAssertiveReflection(RPackage): + """assertive.reflection: Assertions for Checking the State of R + + A set of predicates and assertions for checking the state + and capabilities of R, the operating system it is running + on, and the IDE being used. This is mainly for use by other + package developers who want to include run-time testing + features in their own packages. End-users will usually want + to use assertive directly.""" + + homepage = "https://bitbucket.org/richierocks/assertive.reflection" + url = "https://cloud.r-project.org/src/contrib/assertive.reflection_0.0-5.tar.gz" + list_url = "https://cloud.r-project.org/src/contrib/Archive/assertive.reflection" + + version('0.0-5', sha256='c2ca9b27cdddb9b9876351afd2ebfaf0fbe72c636cd12aa2af5d64e33fbf34bd') + + depends_on('r@3.0.0:', type=('build', 'run')) + depends_on('r-assertive-base@0.0-7:', type=('build', 'run')) |