summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-ellipsis/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/r-ellipsis/package.py')
-rw-r--r--var/spack/repos/builtin/packages/r-ellipsis/package.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-ellipsis/package.py b/var/spack/repos/builtin/packages/r-ellipsis/package.py
new file mode 100644
index 0000000000..8945722068
--- /dev/null
+++ b/var/spack/repos/builtin/packages/r-ellipsis/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 REllipsis(RPackage):
+ """The ellipsis is a powerful tool for extending functions. Unfortunately
+ this power comes at a cost: misspelled arguments will be silently ignored.
+ The ellipsis package provides a collection of functions to catch problems
+ and alert the user."""
+
+ homepage = "https://github.com/r-lib/ellipsis"
+ url = "https://cloud.r-project.org/src/contrib/ellipsis_0.2.0.1.tar.gz"
+ list_url = "https://cloud.r-project.org/src/contrib/Archive/ellipsis"
+
+ version('0.2.0.1', sha256='0e6528c5e8016c3617cc1cfcdb5a4bfeb073e0bd5ea76b43e56b0c3208a0a943')
+
+ depends_on('r@3.1:', type=('build', 'run'))
+ depends_on('r-rlang@0.3.0:', type=('build', 'run'))