summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Stanley <molecuul@users.noreply.github.com>2019-01-30 13:25:43 -0600
committerPeter Scheibel <scheibel1@llnl.gov>2019-01-30 13:25:43 -0600
commit2a28e6e6bb936d902d9f1e32f70231c2678f17c3 (patch)
tree80c8ee7d9649f005ed4c1a55f09e44247dfaffbc
parent9efeff6b1fa793b651675b150b0812e0e980d1aa (diff)
downloadspack-2a28e6e6bb936d902d9f1e32f70231c2678f17c3.tar.gz
spack-2a28e6e6bb936d902d9f1e32f70231c2678f17c3.tar.bz2
spack-2a28e6e6bb936d902d9f1e32f70231c2678f17c3.tar.xz
spack-2a28e6e6bb936d902d9f1e32f70231c2678f17c3.zip
r-bibtex: new package at 0.4.2 (#10417)
-rw-r--r--var/spack/repos/builtin/packages/r-bibtex/package.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-bibtex/package.py b/var/spack/repos/builtin/packages/r-bibtex/package.py
new file mode 100644
index 0000000000..8f91f3b945
--- /dev/null
+++ b/var/spack/repos/builtin/packages/r-bibtex/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 RBibtex(RPackage):
+ """bibtex: Bibtex Parser
+
+ Utility to parse a bibtex file."""
+
+ homepage = "https://cran.r-project.org/package=bibtex"
+ url = "https://cran.r-project.org/src/contrib/bibtex_0.4.2.tar.gz"
+ list_url = "https://cran.r-project.org/src/contrib/Archive/bibtex/"
+
+ version('0.4.2', sha256='1f06ab3660c940405230ad16ff6e4ba38d4418a59cd9b16d78a4349f8b488372')
+
+ depends_on('r@3.0.2:', type=('build', 'run'))
+ depends_on('r-stringr', type=('build', 'run'))
+ depends_on('r-testthat', type=('build', 'run'))