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:
@@ -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):
|
||||
|
Reference in New Issue
Block a user