summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-checkpoint/package.py
blob: f841bc8c9c8622af6166d33a46de2c30e8486c0a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copyright 2013-2019 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 RCheckpoint(RPackage):
    """The goal of checkpoint is to solve the problem of package
    reproducibility in R. Specifically, checkpoint allows you to
    install packages as they existed on CRAN on a specific snapshot
    date as if you had a CRAN time machine."""

    homepage = "https://cran.r-project.org/package=checkpoint"
    url      = "https://cran.r-project.org/src/contrib/checkpoint_0.3.18.tar.gz"
    list_url = "https://cran.r-project.org/src/contrib/Archive/checkpoint"

    version('0.3.18', '021d7faeb72c36167951e103b2b065ea')
    version('0.3.15', 'a4aa8320338f1434a330d984e97981ea')

    depends_on('r@3.0.0:')