summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorManuela Kuhn <36827019+manuelakuhn@users.noreply.github.com>2021-10-29 07:19:50 +0200
committerGitHub <noreply@github.com>2021-10-29 05:19:50 +0000
commit4031ea5e03e708554ea5864f05e86efb5a6ef5cd (patch)
treee189431992673c6ca4e897555d50873da00d9788 /var
parent852e14a655f6b0e2da8fbb34e1d5d1f553d5c3bf (diff)
downloadspack-4031ea5e03e708554ea5864f05e86efb5a6ef5cd.tar.gz
spack-4031ea5e03e708554ea5864f05e86efb5a6ef5cd.tar.bz2
spack-4031ea5e03e708554ea5864f05e86efb5a6ef5cd.tar.xz
spack-4031ea5e03e708554ea5864f05e86efb5a6ef5cd.zip
r-gargle: add new (#27046)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/r-gargle/package.py31
1 files changed, 31 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-gargle/package.py b/var/spack/repos/builtin/packages/r-gargle/package.py
new file mode 100644
index 0000000000..cf529ea83c
--- /dev/null
+++ b/var/spack/repos/builtin/packages/r-gargle/package.py
@@ -0,0 +1,31 @@
+# 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 RGargle(RPackage):
+ """Utilities for Working with Google APIs.
+
+ Provides utilities for working with Google APIs
+ <https://developers.google.com/apis-explorer>. This includes functions and
+ classes for handling common credential types and for preparing, executing,
+ and processing HTTP requests."""
+
+ homepage = "https://github.com/r-lib/gargle"
+ cran = "gargle"
+
+ version('1.2.0', sha256='4d46ca2933f19429ca5a2cfe47b4130a75c7cd9931c7758ade55bac0c091d73b')
+
+ depends_on('r@3.3:', type=('build', 'run'))
+ depends_on('r-cli@3.0.0:', type=('build', 'run'))
+ depends_on('r-fs@1.3.1:', type=('build', 'run'))
+ depends_on('r-glue@1.3.0:', type=('build', 'run'))
+ depends_on('r-httr@1.4.0:', type=('build', 'run'))
+ depends_on('r-jsonlite', type=('build', 'run'))
+ depends_on('r-rappdirs', type=('build', 'run'))
+ depends_on('r-rlang@0.4.9:', type=('build', 'run'))
+ depends_on('r-rstudioapi', type=('build', 'run'))
+ depends_on('r-withr', type=('build', 'run'))