
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
22 lines
1.0 KiB
Python
22 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 RSegmented(RPackage):
|
|
"""Given a regression model, segmented 'updates' the model by adding
|
|
one or more segmented (i.e., piecewise-linear) relationships. Several
|
|
variables with multiple breakpoints are allowed."""
|
|
|
|
homepage = "https://cloud.r-project.org/package=segmented"
|
|
url = "https://cloud.r-project.org/src/contrib/segmented_0.5-1.4.tar.gz"
|
|
list_url = "https://cloud.r-project.org/src/contrib/Archive/segmented"
|
|
|
|
version('1.0-0', sha256='eeadc89b4bb4744bbd1e4e6c3b6536ff96fc7ee09016228dfdc0a8ebdc74fac5')
|
|
version('0.5-4.0', sha256='7ff63a19915cbd1e190d3a4875892b4c7bd97890b0dc2909126348a19aec4071')
|
|
version('0.5-2.2', sha256='3aa7136370dd77911ba8e061b5215560d120bc71f355eeadc0856389dfecb2f1')
|
|
version('0.5-1.4', sha256='b1dc5f79ccc076c2943b15fe4f339368afa241797b7e80c91b62132cfa66809c')
|