2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2016-08-01 03:11:04 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2016-08-01 03:11:04 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
2017-01-31 22:54:34 +08:00
|
|
|
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."""
|
2016-08-01 03:11:04 +08:00
|
|
|
|
2017-01-31 22:54:34 +08:00
|
|
|
homepage = "https://cran.r-project.org/package=checkpoint"
|
|
|
|
url = "https://cran.r-project.org/src/contrib/checkpoint_0.3.18.tar.gz"
|
2017-11-06 05:42:24 +08:00
|
|
|
list_url = "https://cran.r-project.org/src/contrib/Archive/checkpoint"
|
2016-08-01 03:11:04 +08:00
|
|
|
|
2017-01-31 22:54:34 +08:00
|
|
|
version('0.3.18', '021d7faeb72c36167951e103b2b065ea')
|
|
|
|
version('0.3.15', 'a4aa8320338f1434a330d984e97981ea')
|
2016-08-01 03:11:04 +08:00
|
|
|
|
2017-01-31 22:54:34 +08:00
|
|
|
depends_on('r@3.0.0:')
|