summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd Gamblin <tgamblin@llnl.gov>2015-01-25 12:29:15 -0800
committerTodd Gamblin <tgamblin@llnl.gov>2015-01-25 12:29:15 -0800
commit81a4d89e94a53b087bee18c900f6de19142602f2 (patch)
treebb5bb6bc0606fddb83f5877da6c1e9b4cfc0057e
parent51ed0d3f6f3ba8cf3c7a17db967aead0b691e3a4 (diff)
parent6a496ef62038f40ad1f4c22abd816f990fdfd4db (diff)
downloadspack-81a4d89e94a53b087bee18c900f6de19142602f2.tar.gz
spack-81a4d89e94a53b087bee18c900f6de19142602f2.tar.bz2
spack-81a4d89e94a53b087bee18c900f6de19142602f2.tar.xz
spack-81a4d89e94a53b087bee18c900f6de19142602f2.zip
Merge pull request #15 from ch4i/features/memaxes
Mitos package
-rw-r--r--var/spack/packages/Mitos/package.py18
-rw-r--r--var/spack/packages/psapi/package.py18
2 files changed, 18 insertions, 18 deletions
diff --git a/var/spack/packages/Mitos/package.py b/var/spack/packages/Mitos/package.py
new file mode 100644
index 0000000000..272360a55c
--- /dev/null
+++ b/var/spack/packages/Mitos/package.py
@@ -0,0 +1,18 @@
+from spack import *
+
+class Mitos(Package):
+ """Mitos is a library and a tool for collecting sampled memory
+ performance data to view with MemAxes"""
+
+ homepage = "https://github.com/scalability-llnl/Mitos"
+ url = "https://github.com/scalability-llnl/Mitos"
+
+ version('0.7', git='https://github.com/scalability-llnl/Mitos.git', tag='v0.7')
+
+ depends_on('dyninst')
+
+ def install(self, spec, prefix):
+ with working_dir('spack-build', create=True):
+ cmake('..', *std_cmake_args)
+ make()
+ make("install")
diff --git a/var/spack/packages/psapi/package.py b/var/spack/packages/psapi/package.py
deleted file mode 100644
index b73c75c221..0000000000
--- a/var/spack/packages/psapi/package.py
+++ /dev/null
@@ -1,18 +0,0 @@
-from spack import *
-
-class Psapi(Package):
- """PSAPI is a library and a tool for collecting sampled memory
- performance data to view with MemAxes"""
-
- homepage = "https://github.com/scalability-llnl/PSAPI"
- url = "http://www.example.com/memaxes-psapi-1.0.tar.gz"
-
- version('0.5', git='https://github.com/scalability-llnl/PSAPI.git', tag='v0.5')
-
- depends_on('dyninst')
-
- def install(self, spec, prefix):
- with working_dir('spack-build', create=True):
- cmake('..', *std_cmake_args)
- make()
- make("install")