summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorMatthias Diener <matthias.diener@gmail.com>2018-12-08 01:06:28 -0600
committerAdam J. Stewart <ajstewart426@gmail.com>2018-12-08 01:06:28 -0600
commit718379eea1e0c58ba76ada08d64512d9f4904c07 (patch)
tree4cc0199c26a0d0fcd48c010d1cd11c2e03c3a418 /var
parent3955f7cba58c458e6a2ee465f87ac832eb1d9916 (diff)
downloadspack-718379eea1e0c58ba76ada08d64512d9f4904c07.tar.gz
spack-718379eea1e0c58ba76ada08d64512d9f4904c07.tar.bz2
spack-718379eea1e0c58ba76ada08d64512d9f4904c07.tar.xz
spack-718379eea1e0c58ba76ada08d64512d9f4904c07.zip
eztrace: add new package (#10060)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/eztrace/package.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/eztrace/package.py b/var/spack/repos/builtin/packages/eztrace/package.py
new file mode 100644
index 0000000000..75780d9104
--- /dev/null
+++ b/var/spack/repos/builtin/packages/eztrace/package.py
@@ -0,0 +1,25 @@
+# Copyright 2013-2018 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 Eztrace(AutotoolsPackage):
+ """EZTrace is a tool to automatically generate execution traces
+ of HPC applications."""
+
+ homepage = "http://eztrace.gforge.inria.fr"
+ url = "https://gforge.inria.fr/frs/download.php/file/37703/eztrace-1.1-8.tar.gz"
+
+ version('1.1-8', sha256='d80d78a25f1eb0e6e60a3e535e3972cd178c6a8663a3d6109105dfa6a880b8ec')
+
+ depends_on('mpi')
+
+ # Does not work on Darwin due to MAP_POPULATE
+ conflicts('platform=darwin')
+
+ def configure_args(self):
+ args = ["--with-mpi={0}".format(self.spec["mpi"].prefix)]
+ return args