diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2016-05-11 02:26:07 -0700 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2016-05-11 02:26:07 -0700 |
commit | 9030541e4bc3a77f90d16969b6fff0afa387847c (patch) | |
tree | 0934a772d3fb381e8108fbc9c22200e26de5c3d6 /var/spack/repos/builtin/packages/Mitos/package.py | |
parent | 98faee1d5c24ddacaeb1bc630ff8c31ba0d74f9b (diff) | |
parent | 78d25ad337e2faaa8cfd589607801acb78aec4d9 (diff) | |
download | spack-9030541e4bc3a77f90d16969b6fff0afa387847c.tar.gz spack-9030541e4bc3a77f90d16969b6fff0afa387847c.tar.bz2 spack-9030541e4bc3a77f90d16969b6fff0afa387847c.tar.xz spack-9030541e4bc3a77f90d16969b6fff0afa387847c.zip |
Merge pull request #929 from epfl-scitas/differentiate_framework_from_packages
QA : make qa checking less painful
Diffstat (limited to 'var/spack/repos/builtin/packages/Mitos/package.py')
-rw-r--r-- | var/spack/repos/builtin/packages/Mitos/package.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/var/spack/repos/builtin/packages/Mitos/package.py b/var/spack/repos/builtin/packages/Mitos/package.py index ea131872dd..ec1d56a5c7 100644 --- a/var/spack/repos/builtin/packages/Mitos/package.py +++ b/var/spack/repos/builtin/packages/Mitos/package.py @@ -1,19 +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/llnl/Mitos" - url = "https://github.com/llnl/Mitos" + url = "https://github.com/llnl/Mitos" version('0.9.2', git='https://github.com/llnl/Mitos.git', commit='8cb143a2e8c00353ff531a781a9ca0992b0aaa3d') - version('0.9.1', - git='https://github.com/llnl/Mitos.git', - tag='v0.9.1') + version('0.9.1', git='https://github.com/llnl/Mitos.git', tag='v0.9.1') depends_on('dyninst@8.2.1:') depends_on('hwloc') |