Implement review requests

- use two empty lines before `class`
- change version numbering scheme for packages, use `url_for_version` to make things work
- specify dependency types
- add comment about temporarily moved download location
- update two packages to newer versions
This commit is contained in:
Erik Schnetter
2016-08-23 13:52:28 -04:00
parent a2692e4ef5
commit 73cae8d9c4
9 changed files with 50 additions and 18 deletions

View File

@@ -25,16 +25,17 @@
from spack import *
class Panda(Package):
"""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/current_panda.tar"
version('panda', 'b06dc312ee56e13eefea9c915b70fcef')
version('current', 'b06dc312ee56e13eefea9c915b70fcef')
# Note: Panda can also be built without MPI support
depends_on("cmake")
depends_on("cmake", type="build")
depends_on("mpi")
def install(self, spec, prefix):