spack/var/spack/repos/builtin/packages/r-speedglm/package.py
Todd Gamblin 62927654dd checksums: use sha256 checksums everywhere
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
2019-10-12 07:19:43 -07:00

21 lines
768 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 RSpeedglm(RPackage):
"""Fitting linear models and generalized linear models to
large data sets by updating algorithms."""
homepage = "https://cloud.r-project.org/package=speedglm"
url = "https://cloud.r-project.org/src/contrib/speedglm_0.3-2.tar.gz"
list_url = "https://cloud.r-project.org/src/contrib/Archive/speedglm"
version('0.3-2', sha256='5fcaf18324dc754152f528a44894944063303f780d33e58569ea7c306bfc45ac')
depends_on('r-mass', type=('build', 'run'))
depends_on('r-matrix', type=('build', 'run'))