
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
21 lines
793 B
Python
21 lines
793 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 RRcppcnpy(RPackage):
|
|
"""Rcpp bindings for NumPy files."""
|
|
|
|
homepage = "https://github.com/eddelbuettel/rcppcnpy"
|
|
url = "https://cloud.r-project.org/src/contrib/RcppCNPy_0.2.9.tar.gz"
|
|
list_url = "https://cloud.r-project.org/src/contrib/Archive/RcppCNPy"
|
|
|
|
version('0.2.10', sha256='77d6fbc86520a08da40d44c0b82767099f8f719ca95870d91efff1a9cab1ab9c')
|
|
version('0.2.9', sha256='733f004ad1a8b0e5aafbf547c4349d2df3118afd57f1ff99f20e39135c6edb30')
|
|
|
|
depends_on('r@3.1.0:', type=('build', 'run'))
|
|
depends_on('r-rcpp', type=('build', 'run'))
|