
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
28 lines
1.4 KiB
Python
28 lines
1.4 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 RDiffusionmap(RPackage):
|
|
"""Allows to display a progress bar in the R console for long running
|
|
computations taking place in c++ code, and support for interrupting those
|
|
computations even in multithreaded code, typically using OpenMP."""
|
|
|
|
homepage = "https://cloud.r-project.org/package=diffusionMap"
|
|
url = "https://cloud.r-project.org/src/contrib/diffusionMap_1.1-0.tar.gz"
|
|
list_url = "https://cloud.r-project.org/src/contrib/Archive/diffusionMap"
|
|
|
|
version('1.1-0.1', sha256='b24cf841af2566ac36f4ede2885f2ff355a7905398444d6d89747315d99a8486')
|
|
version('1.1-0', sha256='637b810140145fa0cbafb1c13da347c2f456c425334ae554d11a3107052e28d1')
|
|
version('1.0-0', sha256='1e3c54f72cbb2bce1b06b85fda33242b9041d30d4ac8c12df4dc9a3a95a44044')
|
|
version('0.0-2', sha256='b08b9d8a7b2b49d8f809ed14ab40cec92a635a284e43af068eb34e74172c0bcf')
|
|
version('0.0-1', sha256='38c4af2d2a4fa4116c2e01a5e67ba313e7a8e76f724a3312a3c12b26e299f844')
|
|
|
|
depends_on('r@2.4.0:', type=('build', 'run'))
|
|
depends_on('r-matrix', type=('build', 'run'))
|
|
depends_on('r-scatterplot3d', type=('build', 'run'))
|
|
depends_on('r-igraph', type=('build', 'run'))
|