
- [x] add `concretize.lp`, `spack.yaml`, etc. to licensed files - [x] update all licensed files to say 2013-2021 using `spack license update-copyright-year` - [x] appease mypy with some additions to package.py that needed for oneapi.py
23 lines
992 B
Python
23 lines
992 B
Python
# Copyright 2013-2021 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 RAbind(RPackage):
|
|
"""Combine multidimensional arrays into a single array. This is a
|
|
generalization of 'cbind' and 'rbind'. Works with vectors, matrices, and
|
|
higher-dimensional arrays. Also provides functions 'adrop', 'asub', and
|
|
'afill' for manipulating, extracting and replacing data in arrays."""
|
|
|
|
homepage = "https://cloud.r-project.org/package=abind"
|
|
url = "https://cloud.r-project.org/src/contrib/abind_1.4-3.tar.gz"
|
|
list_url = "https://cloud.r-project.org/src/contrib/Archive/abind"
|
|
|
|
version('1.4-5', sha256='3a3ace5afbcb86e56889efcebf3bf5c3bb042a282ba7cc4412d450bb246a3f2c')
|
|
version('1.4-3', sha256='b6c255878c1ab81701ae701f34546e88be115629b984ac4272e311fa3c0ea6ce')
|
|
|
|
depends_on('r@1.5.0:', type=('build', 'run'))
|