summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-knitr/package.py
blob: 2785669885e291d345b5d2e38fd978ea1821dca7 (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-2022 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 RKnitr(RPackage):
    """A General-Purpose Package for Dynamic Report Generation in R.

    Provides a general-purpose tool for dynamic report generation in R using
    Literate Programming techniques."""

    cran = "knitr"

    version('1.37', sha256='39cd2a4848baebbe7fa0c0ab8200179690fb5b9190f0c1688d987c38363ad763')
    version('1.33', sha256='2f83332b0a880de6eae522271bda7f862c97693fba45c23ab1f772028f6c0909')
    version('1.30', sha256='3aabb13566a234131ba18b78d690104f9468a982dc711f81344a985318c7c93e')
    version('1.28', sha256='05ee01da31d715bf24793efb3e4ef3bb3101ef1e1ab2d760c645fc5b9d40232a')
    version('1.24', sha256='e80c2043b445a7e576b62ae8510cce89322660fe388881d799a706d35cd27b89')
    version('1.23', sha256='063bfb3300fc9f3e7d223c346e19b93beced0e6784470b9bef2524868a206a99')
    version('1.17', sha256='9484a2b2c7b0c2aae24ab7f4eec6db48affbceb0e42bd3d69e34d953fe92f401')
    version('1.14', sha256='ba6d301482d020a911390d5eff181e1771f0e02ac3f3d9853a9724b1ec041aec')

    depends_on('r@2.14.1:', type=('build', 'run'), when='@:1.9')
    depends_on('r@3.0.2:', type=('build', 'run'), when='@1.10:1.14')
    depends_on('r@3.1.0:', type=('build', 'run'), when='@1.15:1.22')
    depends_on('r@3.2.3:', type=('build', 'run'), when='@1.23:')
    depends_on('r-evaluate@0.10:', type=('build', 'run'))
    depends_on('r-highr', type=('build', 'run'))
    depends_on('r-stringr@0.6:', type=('build', 'run'))
    depends_on('r-yaml@2.1.19:', type=('build', 'run'))
    depends_on('r-xfun', type=('build', 'run'), when='@1.23:')
    depends_on('r-xfun@0.15:', type=('build', 'run'), when='@1.30')
    depends_on('r-xfun@0.19:', type=('build', 'run'), when='@1.31')
    depends_on('r-xfun@0.21:', type=('build', 'run'), when='@1.32:')
    depends_on('r-xfun@0.27:', type=('build', 'run'), when='@1.37:')
    depends_on('pandoc', type='build')
    depends_on('py-rst2pdf', type=('build', 'run'))

    depends_on('r-digest', type=('build', 'run'), when='@:1.17')
    depends_on('r-formatr', type=('build', 'run'), when='@:1.14')
    depends_on('r-markdown', type=('build', 'run'), when='@:1.33')