New package: r-assertive-reflection (#23267)
This commit is contained in:
parent
c23ffd89ff
commit
934d845806
1 changed files with 26 additions and 0 deletions
|
@ -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'))
|
Loading…
Reference in a new issue