
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 RSparsem(RPackage):
|
|
"""Some basic linear algebra functionality for sparse matrices is provided:
|
|
including Cholesky decomposition and backsolving as well as standard R
|
|
subsetting and Kronecker products."""
|
|
|
|
homepage = "http://www.econ.uiuc.edu/~roger/research/sparse/sparse.html"
|
|
url = "https://cloud.r-project.org/src/contrib/SparseM_1.74.tar.gz"
|
|
list_url = "https://cloud.r-project.org/src/contrib/Archive/SparseM"
|
|
|
|
version('1.77', sha256='a9329fef14ae4fc646df1f4f6e57efb0211811599d015f7bc04c04285495d45c')
|
|
version('1.76', sha256='c2c8e44376936a5fe6f09a37f3668016e66cbc687519cc952aa346a658a2b69b')
|
|
version('1.74', sha256='4712f0c80e9f3cb204497f146ba60b15e75976cdb7798996a7c51f841a85eeba')
|
|
version('1.7', sha256='df61550b267f8ee9b9d3b17acbadd57a428b43e5e13a6b1c56ed4c38cb523369')
|
|
|
|
depends_on('r@2.15:', type=('build', 'run'))
|