summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-basilisk-utils/package.py
blob: fec62eac0b3952853d0f1560e69e5fc7bc17c761 (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
24
25
26
# 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 RBasiliskUtils(RPackage):
    """Basilisk Installation Utilities.

    Implements utilities for installation of the basilisk package, primarily
    for creation of the underlying Conda instance. This allows us to avoid
    re-writing the same R code in both the configure script (for centrally
    administered R installations) and in the lazy installation mechanism (for
    distributed package binaries). It is highly unlikely that developers - or,
    heaven forbid, end-users! - will need to interact with this package
    directly; they should be using the basilisk package instead."""

    bioc = "basilisk.utils"

    license("GPL-3.0-only")

    version("1.12.0", commit="8314f9a72ecc0f20b180431aec93647320de8c2c")

    depends_on("r-dir-expiry", type=("build", "run"))