
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
25 lines
1.0 KiB
Python
25 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 RReshape2(RPackage):
|
|
"""Flexibly restructure and aggregate data using just two functions: melt
|
|
and dcast (or acast)."""
|
|
|
|
homepage = "https://github.com/hadley/reshape"
|
|
url = "https://cloud.r-project.org/src/contrib/reshape2_1.4.2.tar.gz"
|
|
list_url = "https://cloud.r-project.org/src/contrib/Archive/reshape2"
|
|
|
|
version('1.4.3', sha256='8aff94c935e75032344b52407593392ddd4e16a88bb206984340c816d42c710e')
|
|
version('1.4.2', sha256='6d3783610379be4c5676d9236cf66276a166b5b96c18f2759e9b219758959b6b')
|
|
version('1.4.1', sha256='fbd49f75a5b0b7266378515af98db310cf6c772bf6e68bed01f38ee99b408042')
|
|
|
|
depends_on('r@3.1:', when='@1.4.3:', type=('build', 'run'))
|
|
depends_on('r-plyr@1.8.1:', type=('build', 'run'))
|
|
depends_on('r-stringr', type=('build', 'run'))
|
|
depends_on('r-rcpp', type=('build', 'run'))
|