summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorJustin S <3630356+codeandkey@users.noreply.github.com>2019-05-15 15:51:11 -0500
committerLevi Baber <baberlevi@gmail.com>2019-05-15 15:51:11 -0500
commitcdd8da7251e3f16d6501aac421b11d6685a5282d (patch)
tree885483bf284857e0232e68a93d7d1277cf98fda7 /var
parentcfad3cd06c19b2e050a80f87a815e29b07b81109 (diff)
downloadspack-cdd8da7251e3f16d6501aac421b11d6685a5282d.tar.gz
spack-cdd8da7251e3f16d6501aac421b11d6685a5282d.tar.bz2
spack-cdd8da7251e3f16d6501aac421b11d6685a5282d.tar.xz
spack-cdd8da7251e3f16d6501aac421b11d6685a5282d.zip
r-crul: new package at 0.7.4 (#11459)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/r-crul/package.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-crul/package.py b/var/spack/repos/builtin/packages/r-crul/package.py
new file mode 100644
index 0000000000..6ce56a5584
--- /dev/null
+++ b/var/spack/repos/builtin/packages/r-crul/package.py
@@ -0,0 +1,22 @@
+# 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 RCrul(RPackage):
+ """crul: HTTP Client"""
+
+ homepage = "https://cran.r-project.org/package=crul"
+ url = "https://cran.r-project.org/src/contrib/crul_0.7.4.tar.gz"
+ list_url = "https://cran.r-project.org/src/contrib/Archive/crul"
+
+ version('0.7.4', sha256='c963dd666ae3fc89b661ce19fce2fa19a16fc3825e1502105cae98ceb92c6014')
+
+ depends_on('r-curl@3.3:', type=('build', 'run'))
+ depends_on('r-httpcode@0.2.0:', type=('build', 'run'))
+ depends_on('r-mime', type=('build', 'run'))
+ depends_on('r-r6@2.2.0:', type=('build', 'run'))
+ depends_on('r-urltools@1.6.0:', type=('build', 'run'))