
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
851 B
Python
22 lines
851 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 RMda(RPackage):
|
|
"""Mixture and flexible discriminant analysis, multivariate adaptive
|
|
regression splines (MARS), BRUTO."""
|
|
|
|
homepage = "https://cloud.r-project.org/package=mda"
|
|
url = "https://cloud.r-project.org/src/contrib/mda_0.4-9.tar.gz"
|
|
list_url = "https://cloud.r-project.org/src/contrib/Archive/mda"
|
|
|
|
version('0.4-10', sha256='7036bc622a8fea5b2de94fc19e6b64f5f0c27e5d743ae7646e116af08c9de6a5')
|
|
version('0.4-9', sha256='b72456d2fa5b49895644489735d21cf4836d3d597f5e693e6103cce1887ffd85')
|
|
|
|
depends_on('r@1.9.0:', type=('build', 'run'))
|
|
depends_on('r-class', type=('build', 'run'))
|