
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.0 KiB
Python
24 lines
1.0 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 RLmtest(RPackage):
|
|
"""A collection of tests, data sets, and examples for diagnostic checking
|
|
in linear regression models. Furthermore, some generic tools for inference
|
|
in parametric models are provided."""
|
|
|
|
homepage = "https://cloud.r-project.org/package=lmtest"
|
|
url = "https://cloud.r-project.org/src/contrib/lmtest_0.9-34.tar.gz"
|
|
list_url = "https://cloud.r-project.org/src/contrib/Archive/lmtest"
|
|
|
|
version('0.9-37', sha256='ddc929f94bf055974832fa4a20fdd0c1eb3a84ee11f716c287936f2141d5ca0a')
|
|
version('0.9-36', sha256='be9f168d6554e9cd2be0f9d8fc3244f055dce90d1fca00f05bcbd01daa4ed56b')
|
|
version('0.9-34', sha256='86eead67ed6d6c6be3fbee97d5ce45e6ca06a981f974ce01a7754a9e33770d2e')
|
|
|
|
depends_on('r@3.0.0:', type=('build', 'run'))
|
|
depends_on('r-zoo', type=('build', 'run'))
|