Spack packages now PEP8 compliant.

This commit is contained in:
Todd Gamblin
2016-08-10 01:50:00 -07:00
parent 867121ca68
commit 240f1fd223
381 changed files with 2457 additions and 1617 deletions

View File

@@ -27,10 +27,12 @@
class Scalasca(Package):
"""
Scalasca is a software tool that supports the performance optimization of parallel programs by measuring and
analyzing their runtime behavior. The analysis identifies potential performance bottlenecks - in particular those
concerning communication and synchronization - and offers guidance in exploring their causes.
"""Scalasca is a software tool that supports the performance optimization
of parallel programs by measuring and analyzing their runtime
behavior. The analysis identifies potential performance
bottlenecks - in particular those concerning communication and
synchronization - and offers guidance in exploring their causes.
"""
homepage = "http://www.scalasca.org"
@@ -44,7 +46,8 @@ class Scalasca(Package):
depends_on("mpi")
##########
# Hard-code dependencies for Scalasca according to what stated in the release page
# Hard-code dependencies for Scalasca according to what stated in the
# release page
# The OTF2 library path should be detected automatically from SCOREP
# SCALASCA 2.2.2
depends_on("scorep@1.4:", when='@2.2.2')
@@ -60,4 +63,4 @@ def install(self, spec, prefix):
"--enable-shared"]
configure(*configure_args)
make()
make("install")
make("install")