
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
28 lines
921 B
Python
28 lines
921 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 *
|
|
import os
|
|
|
|
|
|
class Mpip(AutotoolsPackage):
|
|
"""mpiP: Lightweight, Scalable MPI Profiling"""
|
|
homepage = "http://mpip.sourceforge.net/"
|
|
url = "http://downloads.sourceforge.net/project/mpip/mpiP/mpiP-3.4.1/mpiP-3.4.1.tar.gz"
|
|
|
|
version("3.4.1", sha256="688bf37d73211e6a915f9fc59c358282a266d166c0a10af07a38a01a473296f0")
|
|
|
|
depends_on("elf")
|
|
depends_on("libdwarf")
|
|
depends_on('libunwind', when=os.uname()[4] == "x86_64")
|
|
depends_on("mpi")
|
|
|
|
def configure_args(self):
|
|
config_args = ['--without-f77']
|
|
config_args.append("--with-cc=%s" % self.spec['mpi'].mpicc)
|
|
config_args.append("--with-cxx=%s" % self.spec['mpi'].mpicxx)
|
|
|
|
return config_args
|