
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.1 KiB
Python
25 lines
1.1 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 RGlue(RPackage):
|
|
"""An implementation of interpreted string literals, inspired by Python's
|
|
Literal String Interpolation <https://www.python.org/dev/peps/pep-0498/>
|
|
and Docstrings <https://www.python.org/dev/peps/pep-0257/> and Julia's
|
|
Triple-Quoted String Literals <https://docs.julialang.org/en/stable/
|
|
manual/strings/#triple-quoted-string-literals>."""
|
|
|
|
homepage = "https://github.com/tidyverse/glue"
|
|
url = "https://cloud.r-project.org/src/contrib/glue_1.2.0.tar.gz"
|
|
list_url = "https://cloud.r-project.org/src/contrib/Archive/glue"
|
|
|
|
version('1.3.1', sha256='4fc1f2899d71a634e1f0adb7942772feb5ac73223891abe30ea9bd91d3633ea8')
|
|
version('1.3.0', sha256='789e5a44c3635c3d3db26666e635e88adcf61cd02b75465125d95d7a12291cee')
|
|
version('1.2.0', sha256='19275b34ee6a1bcad05360b7eb996cebaa1402f189a5dfb084e695d423f2296e')
|
|
|
|
depends_on('r@3.1:', type=('build', 'run'))
|