
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
23 lines
872 B
Python
23 lines
872 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 RCompositions(RPackage):
|
|
"""Compositional Data Analysis"""
|
|
|
|
homepage = "https://cloud.r-project.org/package=compositions"
|
|
url = "https://cloud.r-project.org/src/contrib/compositions_1.40-2.tar.gz"
|
|
list_url = "https://cloud.r-project.org/src/contrib/Archive/compositions"
|
|
|
|
version('1.40-2', sha256='110d71ae000561987cb73fc76cd953bd69d37562cb401ed3c36dca137d01b78a')
|
|
|
|
depends_on('r@2.2.0:', type=('build', 'run'))
|
|
depends_on('r-tensora', type=('build', 'run'))
|
|
depends_on('r-robustbase', type=('build', 'run'))
|
|
depends_on('r-energy', type=('build', 'run'))
|
|
depends_on('r-bayesm', type=('build', 'run'))
|