
We'd like to use a consistent checksum scheme everywhere so that we can: a) incorporate archive checksums into our specs and have a consistent hashing algorithm across all specs. b) index mirrors with a consistent type of checksum, and not one that is dependent on how spack packages are written. - [x] convert existing md5, sha224, sha512, sha1 checksums to sha256
24 lines
1.1 KiB
Python
24 lines
1.1 KiB
Python
# 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 RBoot(RPackage):
|
|
"""Functions and datasets for bootstrapping from the book "Bootstrap
|
|
Methods and Their Application" by A. C. Davison and D. V. Hinkley (1997,
|
|
CUP), originally written by Angelo Canty for S."""
|
|
|
|
homepage = "https://cloud.r-project.org/package=boot"
|
|
url = "https://cloud.r-project.org/src/contrib/boot_1.3-18.tar.gz"
|
|
list_url = "https://cloud.r-project.org/src/contrib/Archive/boot"
|
|
|
|
version('1.3-23', sha256='30c89e19dd6490b943233e87dfe422bfef92cfbb7a7dfb5c17dfd9b2d63fa02f')
|
|
version('1.3-22', sha256='cf1f0cb1e0a7a36dcb6ae038f5d0211a0e7a009c149bc9d21acb9c58c38b4dfc')
|
|
version('1.3-20', sha256='adcb90b72409705e3f9c69ea6c15673dcb649b464fed06723fe0930beac5212a')
|
|
version('1.3-18', sha256='12fd237f810a69cc8d0a51a67c57eaf9506bf0341c764f8ab7c1feb73722235e')
|
|
|
|
depends_on('r@3.0.0:', type=('build', 'run'))
|