summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-globals/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/r-globals/package.py')
-rw-r--r--var/spack/repos/builtin/packages/r-globals/package.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-globals/package.py b/var/spack/repos/builtin/packages/r-globals/package.py
new file mode 100644
index 0000000000..cb3eaad818
--- /dev/null
+++ b/var/spack/repos/builtin/packages/r-globals/package.py
@@ -0,0 +1,23 @@
+# 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 RGlobals(RPackage):
+ """Identifies global ("unknown" or "free") objects in R expressions by code
+ inspection using various strategies, e.g. conservative or liberal. The
+ objective of this package is to make it as simple as possible to identify
+ global objects for the purpose of exporting them in distributed compute
+ environments."""
+
+ homepage = "https://github.com/HenrikBengtsson/globals"
+ url = "https://cloud.r-project.org/src/contrib/globals_0.12.4.tar.gz"
+ list_url = "https://cloud.r-project.org/src/contrib/Archive/globals"
+
+ version('0.12.4', sha256='7985356ad75afa1f795f8267a20dee847020c0207252dc075c614cef55d8fe6b')
+
+ depends_on('r@3.1.2:', type=('build', 'run'))
+ depends_on('r-codetools', type=('build', 'run'))