summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-tibble/package.py
blob: b680c18ef252ad9d50e619a477e3b1b0fe46c09b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# 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 RTibble(RPackage):
    """Simple Data Frames

    Provides a 'tbl_df' class (the 'tibble') that provides stricter checking
    and better formatting than the traditional data frame."""

    homepage = "https://github.com/tidyverse/tibble"
    url      = "https://cloud.r-project.org/src/contrib/tibble_1.3.4.tar.gz"
    list_url = "https://cloud.r-project.org/src/contrib/Archive/tibble"

    version('3.0.5', sha256='1cc92d7bf5ecf8291718682fb7fcb96f6f87751f1ed101a7441cad5120195190')
    version('2.1.3', sha256='9a8cea9e6b5d24a7e9bf5f67ab38c40b2b6489eddb0d0edb8a48a21ba3574e1a')
    version('2.0.1', sha256='7ab2cc295eecf00a5310993c99853cd6622ad468e7a60d004b8a73957a713d13')
    version('2.0.0', sha256='05ad2d62e949909548c4bb8ac596810321f11b330afa9717d0889dc35edd99ba')
    version('1.4.2', sha256='11670353ff7059a55066dd075d1534d6a27bc5c3583fb9bc291bf750a75c5b17')
    version('1.4.1', sha256='32267fae1ca86abdd37c4683f9d2b1a47b8b65e1977ea3900aa197066c57aa29')
    version('1.3.4', sha256='a7eef7018a68fc07c17c583fb7821a08d6bc381f5961258bffaa6ef6b137760b')
    version('1.2', sha256='ed8a8bd0591223f742be80fd1cd8c4a9618d0f04011ec95c272b61ea45193104')
    version('1.1', sha256='10ea18890e5514faa4c2c05fa231a6e2bbb7689f3800850cead214306414c88e')

    depends_on('r@3.1.2:', when='@:1.2', type=('build', 'run'))
    depends_on('r@3.1.0:', when='@1.3.0:', type=('build', 'run'))
    depends_on('r-cli', when='@1.4.2:', type=('build', 'run'))
    depends_on('r-crayon@1.3.4:', when='@1.4.1:', type=('build', 'run'))
    depends_on('r-ellipsis@0.2.0:', when='@3.0.5:', type=('build', 'run'))
    depends_on('r-fansi@0.4.0:', when='@2.0.0:', type=('build', 'run'))
    depends_on('r-lifecycle@0.2.0:', when='@3.0.5:', type=('build', 'run'))
    depends_on('r-magrittr', when='@3.0.5:', type=('build', 'run'))
    depends_on('r-pillar@1.3.1:', when='@1.4.1:', type=('build', 'run'))
    depends_on('r-pillar@1.4.3:', when='@3.0.5:', type=('build', 'run'))
    depends_on('r-pkgconfig', when='@2.0.0:', type=('build', 'run'))
    depends_on('r-rlang@0.3.0:', when='@1.3.1:', type=('build', 'run'))
    depends_on('r-rlang@0.4.3:', when='@3.0.5:', type=('build', 'run'))
    depends_on('r-vctrs@0.3.2:', when='@3.0.5:', type=('build', 'run'))
    depends_on('r-assertthat', when='@:1.3.1', type=('build', 'run'))
    depends_on('r-lazyeval@0.1.10:', when='@:1.3.0', type=('build', 'run'))
    depends_on('r-rcpp@0.12.3:', when='@:1.3.4', type=('build', 'run'))