summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-htmltable/package.py
blob: 8693a8d8cc2abfcb22a48f96b4fa6e3dcc66850f (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
# 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 RHtmltable(RPackage):
    """Tables with state-of-the-art layout elements such as row
    spanners, column spanners, table spanners, zebra striping, and
    more. While allowing advanced layout, the underlying css-structure
    is simple in order to maximize compatibility with word processors
    such as 'MS Word' or 'LibreOffice'. The package also contains a
    few text formatting functions that help outputting text
    compatible with HTML/'LaTeX'."""

    homepage = "https://cloud.r-project.org/package=htmlTable"
    url      = "https://cloud.r-project.org/src/contrib/htmlTable_1.11.2.tar.gz"
    list_url = "https://cloud.r-project.org/src/contrib/Archive/htmlTable"

    version('1.13.1', sha256='689f32b65da6a57ad500e8d9ef3309d346401dca277c6b264a46c8d7c75884d0')
    version('1.11.2', '473e6d486e7714f8dd7f16a31480c896')
    version('1.9', '08c62c19e1ffe570e7d8fa57db5094b9')

    depends_on('r-stringr', type=('build', 'run'))
    depends_on('r-knitr@1.6:', type=('build', 'run'))
    depends_on('r-magrittr@1.5:', type=('build', 'run'))
    depends_on('r-checkmate', type=('build', 'run'))
    depends_on('r-htmlwidgets', type=('build', 'run'))
    depends_on('r-htmltools', type=('build', 'run'), when="@1.11.0:")
    depends_on('r-rstudioapi@0.6:', type=('build', 'run'), when="@1.11.0:")