summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-assertive-reflection/package.py
blob: ab05e649baa826ba308650ecf7fc3d1d398baacc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Copyright 2013-2023 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.package import *


class RAssertiveReflection(RPackage):
    """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."""

    cran = "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"))