summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorDesmond Orton <odesmond21@gmail.com>2021-02-24 17:12:56 -0600
committerGitHub <noreply@github.com>2021-02-24 23:12:56 +0000
commite554433ca9f641e0f403b956e61662d89f6ffe45 (patch)
tree726742fbefab3eda0e6655ba7ac4ee27ff0ef7ff /var
parent92a4576644f6640f79ed1c5d791cf9ac63795fd0 (diff)
downloadspack-e554433ca9f641e0f403b956e61662d89f6ffe45.tar.gz
spack-e554433ca9f641e0f403b956e61662d89f6ffe45.tar.bz2
spack-e554433ca9f641e0f403b956e61662d89f6ffe45.tar.xz
spack-e554433ca9f641e0f403b956e61662d89f6ffe45.zip
New package r-qs at 0.23.5 (#21779)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/r-qs/package.py26
1 files changed, 26 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-qs/package.py b/var/spack/repos/builtin/packages/r-qs/package.py
new file mode 100644
index 0000000000..fe259fdf07
--- /dev/null
+++ b/var/spack/repos/builtin/packages/r-qs/package.py
@@ -0,0 +1,26 @@
+# 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 RQs(RPackage):
+ """Quick Serialization of R Objects
+
+ Provides functions for quickly writing and reading any R object
+ to and from disk."""
+
+ homepage = "https://cloud.r-project.org/web/packages/qs/index.html"
+ url = "https://cloud.r-project.org/src/contrib/qs_0.23.5.tar.gz"
+ list_url = "https://cloud.r-project.org/src/contrib/Archive/qs"
+
+ maintainers = ['dorton21']
+
+ version('0.23.6', sha256='c6e958e9741ee981bf2388c91b8f181718ffb0f32283cd7ebcd2d054817280e4')
+
+ depends_on('r@3.5.0:', type=('build', 'run'))
+ depends_on('r-rcpp', type=('build', 'run'))
+ depends_on('r-rapiserialize', type=('build', 'run'))
+ depends_on('r-stringfish@0.14.1:', type=('build', 'run'))