
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
21 lines
713 B
Python
21 lines
713 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 Panda(CMakePackage):
|
|
"""PANDA: Parallel AdjaceNcy Decomposition Algorithm"""
|
|
homepage = "http://comopt.ifi.uni-heidelberg.de/software/PANDA/index.html"
|
|
url = "http://comopt.ifi.uni-heidelberg.de/software/PANDA/downloads/panda-2016-03-07.tar"
|
|
|
|
version('2016-03-07', sha256='9fae1544626db417ade7318d26bc43c8af04151b9f7679b6d742dba598762037')
|
|
|
|
# Note: Panda can also be built without MPI support
|
|
|
|
depends_on('cmake@2.6.4:', type='build')
|
|
depends_on('mpi')
|