
We'd like to use a consistent checksum scheme everywhere so that we can: a) incorporate archive checksums into our specs and have a consistent hashing algorithm across all specs. b) index mirrors with a consistent type of checksum, and not one that is dependent on how spack packages are written. - [x] convert existing md5, sha224, sha512, sha1 checksums to sha256
24 lines
819 B
Python
24 lines
819 B
Python
# 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 Mitos(CMakePackage):
|
|
"""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/archive/v0.9.1.tar.gz"
|
|
git = "https://github.com/llnl/Mitos.git"
|
|
|
|
version('0.9.2', commit='8cb143a2e8c00353ff531a781a9ca0992b0aaa3d')
|
|
version('0.9.1', sha256='67abe227d2f9b4d2f235031b526d3ceb2c4792ad98772b1b1d5af0d227a795fc')
|
|
|
|
depends_on('dyninst@8.2.1:')
|
|
depends_on('hwloc')
|
|
depends_on('mpi')
|
|
depends_on('cmake@2.8:', type='build')
|