summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-biocfilecache/package.py
blob: 61dc1a9126df7dc23471a3aff5c3a9431eb27ca7 (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
31
32
33
34
35
36
37
38
# 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 RBiocfilecache(RPackage):
    """Manage Files Across Sessions.

    This package creates a persistent on-disk cache of files that the user
    can add, update, and retrieve. It is useful for managing resources (such
    as custom Txdb objects) that are costly or difficult to create, web
    resources, and data files used across sessions."""

    bioc = "BiocFileCache"

    version("2.8.0", commit="d088b3224bcee4661d954c77fe38ba8c45ecc51a")
    version("2.6.0", commit="f5b8368c1402b15e8db8eab59217f1176e902e6f")
    version("2.4.0", commit="2c00eee40d95fddad223f115f959b09e1a14f75d")
    version("2.2.1", commit="cc912123408803193bf37395f4d18baa8dcd6f47")
    version("1.14.0", commit="cdcde4b59ae73dda12aa225948dbd0a058d9be6d")
    version("1.8.0", commit="0e3542b6aae849b01240d8055a48da1b267bd5a0")
    version("1.6.0", commit="c2de6c1cdef6294e5d0adea31e4ebf25865742ba")
    version("1.4.0", commit="a2c473d17f78899c7899b9638faea8c30735eb80")
    version("1.2.3", commit="d78bf5b46c8a329f5ddef879fe51230444bc42f8")
    version("1.0.1", commit="dbf4e8dd4d8d9f475066cd033481efe95c56df75")

    depends_on("r@3.4.0:", type=("build", "run"))
    depends_on("r-dplyr", type=("build", "run"))
    depends_on("r-dbplyr@1.0.0:", type=("build", "run"), when="@1.2.3:")
    depends_on("r-rsqlite", type=("build", "run"))
    depends_on("r-dbi", type=("build", "run"))
    depends_on("r-filelock", type=("build", "run"), when="@2.2.1:")
    depends_on("r-curl", type=("build", "run"), when="@1.6.0:")
    depends_on("r-httr", type=("build", "run"))
    depends_on("r-rappdirs", type=("build", "run"), when="@:2.6.0")