
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
20 lines
740 B
Python
20 lines
740 B
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 RBit(RPackage):
|
|
""" A class for vectors of 1-bit booleans."""
|
|
|
|
homepage = "https://cloud.r-project.org/package=bit"
|
|
url = "https://cloud.r-project.org/src/contrib/bit_1.1-12.tar.gz"
|
|
list_url = "https://cloud.r-project.org/src/contrib/Archive/bit"
|
|
|
|
version('1.1-14', sha256='5cbaace1fb643a665a6ca69b90f7a6d624270de82420ca7a44f306753fcef254')
|
|
version('1.1-12', sha256='ce281c87fb7602bf1a599e72f3e25f9ff7a13e390c124a4506087f69ad79d128')
|
|
|
|
depends_on('r@2.9.2:', type=('build', 'run'))
|