summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorGlenn Johnson <glenn-johnson@uiowa.edu>2022-10-10 19:33:58 -0500
committerGitHub <noreply@github.com>2022-10-10 18:33:58 -0600
commit042050be115b64f0d6f35349b1e342eb2e55c1d6 (patch)
tree43ef72b590ba9bf7388531f1e8b0b838959cb42b /var
parent46b7d3995cf4b43d70a9ddb1d57d2da02e4d77d6 (diff)
downloadspack-042050be115b64f0d6f35349b1e342eb2e55c1d6.tar.gz
spack-042050be115b64f0d6f35349b1e342eb2e55c1d6.tar.bz2
spack-042050be115b64f0d6f35349b1e342eb2e55c1d6.tar.xz
spack-042050be115b64f0d6f35349b1e342eb2e55c1d6.zip
new package: r-pkgdown (#33170)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/r-pkgdown/package.py41
1 files changed, 41 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-pkgdown/package.py b/var/spack/repos/builtin/packages/r-pkgdown/package.py
new file mode 100644
index 0000000000..187b6ae281
--- /dev/null
+++ b/var/spack/repos/builtin/packages/r-pkgdown/package.py
@@ -0,0 +1,41 @@
+# 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.package import *
+
+
+class RPkgdown(RPackage):
+ """Make Static HTML Documentation for a Package.
+
+ Generate an attractive and useful website from a source package. 'pkgdown'
+ converts your documentation, vignettes, 'README', and more to 'HTML' making
+ it easy to share information about your package online."""
+
+ cran = "pkgdown"
+
+ version("2.0.6", sha256="d29a65c8a5b189fd89842e769f58f8c2369a55406269eabfb66d41d0fe1c7f69")
+
+ depends_on("r@3.1.0:", type=("build", "run"))
+ depends_on("r-bslib@0.3.1:", type=("build", "run"))
+ depends_on("r-callr@2.0.2:", type=("build", "run"))
+ depends_on("r-cli", type=("build", "run"))
+ depends_on("r-desc", type=("build", "run"))
+ depends_on("r-digest", type=("build", "run"))
+ depends_on("r-downlit@0.4.0:", type=("build", "run"))
+ depends_on("r-fs@1.4.0:", type=("build", "run"))
+ depends_on("r-httr@1.4.2:", type=("build", "run"))
+ depends_on("r-jsonlite", type=("build", "run"))
+ depends_on("r-magrittr", type=("build", "run"))
+ depends_on("r-memoise", type=("build", "run"))
+ depends_on("r-purrr", type=("build", "run"))
+ depends_on("r-ragg", type=("build", "run"))
+ depends_on("r-rlang@1.0.0:", type=("build", "run"))
+ depends_on("r-rmarkdown@1.1.9007:", type=("build", "run"))
+ depends_on("r-tibble", type=("build", "run"))
+ depends_on("r-whisker", type=("build", "run"))
+ depends_on("r-withr@2.4.3:", type=("build", "run"))
+ depends_on("r-xml2@1.3.1:", type=("build", "run"))
+ depends_on("r-yaml", type=("build", "run"))
+ depends_on("pandoc")