diff options
-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')) |