summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorGlenn Johnson <glenn-johnson@uiowa.edu>2021-04-20 04:10:26 -0500
committerGitHub <noreply@github.com>2021-04-20 11:10:26 +0200
commitccb0be2f7f8ce14972e25af0f4caa34d791ffe52 (patch)
tree34caf0997a232abcda82766ee792277922596fda /var
parent37263d7b717aee35e25ce5401655404256b97da4 (diff)
downloadspack-ccb0be2f7f8ce14972e25af0f4caa34d791ffe52.tar.gz
spack-ccb0be2f7f8ce14972e25af0f4caa34d791ffe52.tar.bz2
spack-ccb0be2f7f8ce14972e25af0f4caa34d791ffe52.tar.xz
spack-ccb0be2f7f8ce14972e25af0f4caa34d791ffe52.zip
r-rsconnect: new package (#23111)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/r-rsconnect/package.py28
1 files changed, 28 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-rsconnect/package.py b/var/spack/repos/builtin/packages/r-rsconnect/package.py
new file mode 100644
index 0000000000..e25a4593c5
--- /dev/null
+++ b/var/spack/repos/builtin/packages/r-rsconnect/package.py
@@ -0,0 +1,28 @@
+# 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 RRsconnect(RPackage):
+ """Deployment Interface for R Markdown Documents and Shiny Applications:
+
+ Programmatic deployment interface for 'RPubs', 'shinyapps.io', and 'RStudio
+ Connect'. Supported content types include R Markdown documents, Shiny
+ applications, Plumber APIs, plots, and static web content."""
+
+ homepage = "https://github.com/rstudio/rsconnect"
+ cran = "rsconnect"
+
+ version('0.8.17', sha256='64767a4d626395b7871375956a9f0455c3d64ff6e779633b0e554921d85da231')
+
+ depends_on('r@3.0.0:', type=('build', 'run'))
+ depends_on('r-curl', type=('build', 'run'))
+ depends_on('r-digest', type=('build', 'run'))
+ depends_on('r-jsonlite', type=('build', 'run'))
+ depends_on('r-openssl', type=('build', 'run'))
+ depends_on('r-packrat@0.5:', type=('build', 'run'))
+ depends_on('r-rstudioapi@0.5:', type=('build', 'run'))
+ depends_on('r-yaml@2.1.5:', type=('build', 'run'))