Package/r bigalgebra (#19826)

* py-json-get: new package at 1.1.1

* py-json-get: new package at 1.1.1

* r-bigalgebra: new package at 0.8.4

* r-bigalgebra: new package at 0.8.4 with corrections

* Added an additional change to tarball and dependencies

* removing accidentally added file

* Added tarball that uses mirror and removed redundant dependencies

* Fixed version and added dep.

* Updated checksum

* Fixed urls

* Added list_url

Co-authored-by: las_djorton <las_djorton@build.las.iastate.edu>
This commit is contained in:
Desmond 2020-11-12 11:13:20 -06:00 committed by GitHub
parent d1493fb3d8
commit 9f7ad82665
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 61 additions and 0 deletions

View file

@ -0,0 +1,20 @@
# Copyright 2013-2020 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 RBigalgebra(RPackage):
"""This package provides arithmetic functions for R matrix
and big.matrix objects."""
homepage = "https://r-forge.r-project.org/R/?group_id=556"
url = "https://cloud.r-project.org/src/contrib/Archive/bigalgebra/bigalgebra_0.8.4.2.tar.gz"
list_url = "https://cloud.r-project.org/src/contrib/Archive/bigalgebra"
version('0.8.4.2', sha256='29962468cbfa6416f8628563d5ed8c9f76089190311ff1c618f099ee8d9eea75')
depends_on('r-bigmemory@4.0.0:', type=('build', 'run'))
depends_on('r-bh', type=('build', 'run'))

View file

@ -0,0 +1,17 @@
# Copyright 2013-2020 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 RBigmemorySri(RPackage):
"""This package provides a shared resource interface
for the bigmemory and synchronicity packages."""
homepage = "https://cloud.r-project.org/web/packages/bigmemory.sri/index.html"
url = "https://cloud.r-project.org/src/contrib/bigmemory.sri_0.1.3.tar.gz"
list_url = "https://cloud.r-project.org/src/contrib/Archive/bigmemory.sri"
version('0.1.3', sha256='55403252d8bae9627476d1f553236ea5dc7aa6e54da6980526a6cdc66924e155')

View file

@ -0,0 +1,24 @@
# Copyright 2013-2020 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 RBigmemory(RPackage):
"""Create, store, access, and manipulate massive matrices.
Matrices are allocated to shared memory and may use
memory-mapped files. Packages 'biganalytics', 'bigtabulate',
'synchronicity', and 'bigalgebra' provide advanced functionality."""
homepage = "https://cloud.r-project.org/web/packages/bigmemory/index.html"
url = "https://cloud.r-project.org/src/contrib/bigmemory_4.5.36.tar.gz"
list_url = "https://cloud.r-project.org/src/contrib/Archive/bigmemory"
version('4.5.36', sha256='18c67fbe6344b2f8223456c4f19ceebcf6c1166255eab81311001fd67a45ef0e')
depends_on('r@3.2.0:', type=('build', 'run'))
depends_on('r-bh', type=('build', 'run'))
depends_on('r-rcpp', type=('build', 'run'))
depends_on('r-bigmemory-sri', type=('build', 'run'))