summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorDaryl W. Grunau <DarylGrunau@gmail.com>2019-08-06 22:11:56 -0600
committerAdam J. Stewart <ajstewart426@gmail.com>2019-08-06 23:11:56 -0500
commit4f6916261c78e689d19dbc60054d8d4cde686088 (patch)
tree396d6fe75be698b9f05f67da1efac732694cdcea /var
parent2f84db881bf93d428aed101edf84e9dfa649317a (diff)
downloadspack-4f6916261c78e689d19dbc60054d8d4cde686088.tar.gz
spack-4f6916261c78e689d19dbc60054d8d4cde686088.tar.bz2
spack-4f6916261c78e689d19dbc60054d8d4cde686088.tar.xz
spack-4f6916261c78e689d19dbc60054d8d4cde686088.zip
new package: py-exodus (#12291)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-exodus/package.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-exodus/package.py b/var/spack/repos/builtin/packages/py-exodus/package.py
new file mode 100644
index 0000000000..5794a146a6
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-exodus/package.py
@@ -0,0 +1,20 @@
+# 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 PyExodus(PythonPackage):
+ """Exodus is a tool that makes it easy to successfully relocate Linux
+ ELF binaries from one system to another."""
+
+ homepage = "https://github.com/intoli/exodus"
+ url = "https://pypi.org/packages/source/e/exodus-bundler/exodus-bundler-2.0.2.tar.gz"
+
+ version('2.0.2', sha256='4e896a2034b94cf7b4fb33d86a68e29a7d3b08e57541e444db34dddc6ac1ef68')
+
+ depends_on('musl', type='run', when='%clang')
+ depends_on('musl', type='run', when='%gcc')
+ depends_on('py-setuptools', type=('build', 'run'))