
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
21 lines
869 B
Python
21 lines
869 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 RGridextra(RPackage):
|
|
"""Provides a number of user-level functions to work with "grid" graphics,
|
|
notably to arrange multiple grid-based plots on a page, and draw tables."""
|
|
|
|
homepage = "https://cloud.r-project.org/package=gridExtra"
|
|
url = "https://cloud.r-project.org/src/contrib/gridExtra_2.2.1.tar.gz"
|
|
list_url = "https://cloud.r-project.org/src/contrib/Archive/gridExtras"
|
|
|
|
version('2.3', sha256='81b60ce6f237ec308555471ae0119158b115463df696d2eca9b177ded8988e3b')
|
|
version('2.2.1', sha256='44fe455a5bcdf48a4ece7a542f83e7749cf251dc1df6ae7634470240398c6818')
|
|
|
|
depends_on('r-gtable', type=('build', 'run'))
|