
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
22 lines
818 B
Python
22 lines
818 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 RStrucchange(RPackage):
|
|
"""Testing, monitoring and dating structural changes in (linear)
|
|
regression models."""
|
|
|
|
homepage = "https://cloud.r-project.org/package=strucchange"
|
|
url = "https://cloud.r-project.org/src/contrib/strucchange_1.5-1.tar.gz"
|
|
list_url = "https://cloud.r-project.org/src/contrib/Archive/strucchange"
|
|
|
|
version('1.5-1', sha256='740e2e20477b9fceeef767ae1002adc5ec397cb0f7daba5289a2c23b0dddaf31')
|
|
|
|
depends_on('r@2.10.0:', type=('build', 'run'))
|
|
depends_on('r-zoo', type=('build', 'run'))
|
|
depends_on('r-sandwich', type=('build', 'run'))
|