summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorJen Herting <jen@herting.cc>2021-04-06 03:46:06 -0400
committerGitHub <noreply@github.com>2021-04-06 09:46:06 +0200
commit91bd16a85075b4bd3a5969555f637a5b84df1182 (patch)
treeaa1de36ecbebbf9e8325e505dc5625a6d51e0570 /var
parent7e6386803e1f43c9541b20e8fdda358b90dc0e82 (diff)
downloadspack-91bd16a85075b4bd3a5969555f637a5b84df1182.tar.gz
spack-91bd16a85075b4bd3a5969555f637a5b84df1182.tar.bz2
spack-91bd16a85075b4bd3a5969555f637a5b84df1182.tar.xz
spack-91bd16a85075b4bd3a5969555f637a5b84df1182.zip
r-assertive-base: new package (#22780)
Co-authored-by: Alex C Leute <aclrc@rit.edu>
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/r-assertive-base/package.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-assertive-base/package.py b/var/spack/repos/builtin/packages/r-assertive-base/package.py
new file mode 100644
index 0000000000..c8ba43a798
--- /dev/null
+++ b/var/spack/repos/builtin/packages/r-assertive-base/package.py
@@ -0,0 +1,24 @@
+# Copyright 2013-2020 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 RAssertiveBase(RPackage):
+ """assertive.base: A Lightweight Core of the 'assertive' Package
+
+ A minimal set of predicates and assertions used by the assertive package.
+ 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.base"
+ url = "https://cloud.r-project.org/src/contrib/assertive.base_0.0-7.tar.gz"
+ list_url = "https://cloud.r-project.org/src/contrib/Archive/assertive.base"
+
+ version('0.0-7', sha256='f02d4eca849f512500abb266a2a751d1fa2cf064f7142e5161a77c20b7f643f7')
+ version('0.0-1', sha256='6a5fb06ad912f01cd8aaf2aa7c8ca03b8ebbb1c5eb2be47fa145930f15f4d258')
+
+ depends_on('r@3.0.0:', type=('build', 'run'))