summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-stringfish/package.py
blob: 14c846404ed634e081761c0a2c0639b4845b5e19 (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
27
28
29
30
# Copyright 2013-2024 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 RStringfish(RPackage):
    """Alt String Implementation.

    Provides an extendable, performant and multithreaded 'alt-string'
    implementation backed by 'C++' vectors and strings."""

    cran = "stringfish"

    maintainers("dorton21")

    license("GPL-3.0-only")

    version("0.15.7", sha256="34b1703a8876a40860d35f88a94e069832a7d2bc86189ff07af84ff04fd4b735")
    version("0.15.5", sha256="9df21146a7710e5a9ab4bb53ebc231a580c798b7e541b8d78df53207283f8129")
    version("0.14.2", sha256="9373cfc715cda1527fd20179435977b8e59e19d8c5ef82a31e519f93fb624ced")

    depends_on("r@3.5.0:", type=("build", "run"))
    depends_on("r@3.0.2:", type=("build", "run"), when="@0.15.5:")
    depends_on("r-rcpp@0.12.18.3:", type=("build", "run"))
    depends_on("r-rcppparallel", type=("build", "run"))
    depends_on("r-rcppparallel@5.1.4:", type=("build", "run"), when="@0.15.7:")
    depends_on("gmake", type="build")