Fix flake8 errors for: Update libmonitor to use its new github location, it does not exist where the package file now points to.

This commit is contained in:
Jim Galarowicz 2016-08-03 21:32:15 -05:00
parent e68b7d8c63
commit 2e1dbd0697

View File

@ -24,18 +24,17 @@
##############################################################################
from spack import *
class Libmonitor(Package):
"""Libmonitor is a library for process and thread control."""
homepage = "https://github.com/HPCToolkit/libmonitor"
version('20130218', git='https://github.com/HPCToolkit/libmonitor.git', commit='4f2311e')
variant('krellpatch', default=False, description="build with openspeedshop based patch.")
patch('libmonitorkrell-0000.patch', when='@20130218+krellpatch')
patch('libmonitorkrell-0001.patch', when='@20130218+krellpatch')
patch('libmonitorkrell-0002.patch', when='@20130218+krellpatch')
def install(self, spec, prefix):
configure("--prefix=" + prefix)
make()