summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-abind/package.py
blob: 0174733ccf1eb152a70b5d5de71e3c1521974be3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# 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 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', '10fcf80c677b991bf263d38be35a1fc5')

    depends_on('r@1.5.0:', type=('build', 'run'))