2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2016-05-12 12:22:25 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2015-01-24 08:58:15 +08:00
|
|
|
from spack import *
|
|
|
|
|
2016-05-11 01:20:26 +08:00
|
|
|
|
2017-08-05 23:15:18 +08:00
|
|
|
class Mitos(CMakePackage):
|
2015-01-24 08:58:15 +08:00
|
|
|
"""Mitos is a library and a tool for collecting sampled memory
|
|
|
|
performance data to view with MemAxes"""
|
|
|
|
|
2015-12-09 17:24:15 +08:00
|
|
|
homepage = "https://github.com/llnl/Mitos"
|
2017-04-04 06:34:16 +08:00
|
|
|
url = "https://github.com/LLNL/Mitos/archive/v0.9.1.tar.gz"
|
2018-07-24 09:55:17 +08:00
|
|
|
git = "https://github.com/llnl/Mitos.git"
|
2015-01-24 08:58:15 +08:00
|
|
|
|
2018-07-24 09:55:17 +08:00
|
|
|
version('0.9.2', commit='8cb143a2e8c00353ff531a781a9ca0992b0aaa3d')
|
2017-04-04 06:34:16 +08:00
|
|
|
version('0.9.1', 'c6cb57f3cae54f5157affd97ef7ef79e')
|
2015-01-24 08:58:15 +08:00
|
|
|
|
2015-06-04 13:02:47 +08:00
|
|
|
depends_on('dyninst@8.2.1:')
|
2015-06-04 12:58:44 +08:00
|
|
|
depends_on('hwloc')
|
2015-11-25 07:12:31 +08:00
|
|
|
depends_on('mpi')
|
2017-08-05 23:15:18 +08:00
|
|
|
depends_on('cmake@2.8:', type='build')
|