indentation fixes
This commit is contained in:
parent
459c647bc9
commit
0fbf70d95d
@ -23,7 +23,6 @@
|
|||||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
##############################################################################
|
##############################################################################
|
||||||
from spack import *
|
from spack import *
|
||||||
import sys
|
|
||||||
|
|
||||||
|
|
||||||
class Doxygen(Package):
|
class Doxygen(Package):
|
||||||
@ -40,7 +39,7 @@ class Doxygen(Package):
|
|||||||
version('1.8.10', '79767ccd986f12a0f949015efb5f058f')
|
version('1.8.10', '79767ccd986f12a0f949015efb5f058f')
|
||||||
|
|
||||||
# graphviz appears to be a run-time optional dependency
|
# graphviz appears to be a run-time optional dependency
|
||||||
variant('graphviz', default=True, description='Build with dot command support from Graphviz.')
|
variant('graphviz', default=True, description='Build with dot command support from Graphviz.') # NOQA: ignore=E501
|
||||||
|
|
||||||
depends_on("cmake@2.8.12:")
|
depends_on("cmake@2.8.12:")
|
||||||
depends_on("flex")
|
depends_on("flex")
|
||||||
|
@ -24,6 +24,7 @@
|
|||||||
##############################################################################
|
##############################################################################
|
||||||
from spack import *
|
from spack import *
|
||||||
|
|
||||||
|
|
||||||
class Ghostscript(Package):
|
class Ghostscript(Package):
|
||||||
"""an interpreter for the PostScript language and for PDF. """
|
"""an interpreter for the PostScript language and for PDF. """
|
||||||
homepage = "http://ghostscript.com/"
|
homepage = "http://ghostscript.com/"
|
||||||
|
@ -25,6 +25,7 @@
|
|||||||
from spack import *
|
from spack import *
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
|
||||||
class Graphviz(Package):
|
class Graphviz(Package):
|
||||||
"""Graph Visualization Software"""
|
"""Graph Visualization Software"""
|
||||||
homepage = "http://www.graphviz.org"
|
homepage = "http://www.graphviz.org"
|
||||||
@ -36,7 +37,7 @@ class Graphviz(Package):
|
|||||||
# related to missing Perl packages. If spack begins support for Perl in the
|
# related to missing Perl packages. If spack begins support for Perl in the
|
||||||
# future, this package can be updated to depend_on('perl') and the
|
# future, this package can be updated to depend_on('perl') and the
|
||||||
# ncecessary devel packages.
|
# ncecessary devel packages.
|
||||||
variant('perl', default=False, description='Enable if you need the optional Perl language bindings.')
|
variant('perl', default=False, description='Enable if you need the optional Perl language bindings.') # NOQA: ignore=E501
|
||||||
|
|
||||||
parallel = False
|
parallel = False
|
||||||
|
|
||||||
@ -47,7 +48,7 @@ class Graphviz(Package):
|
|||||||
|
|
||||||
def install(self, spec, prefix):
|
def install(self, spec, prefix):
|
||||||
options = ['--prefix=%s' % prefix]
|
options = ['--prefix=%s' % prefix]
|
||||||
if not '+perl' in spec:
|
if '+perl' not in spec:
|
||||||
options.append('--disable-perl')
|
options.append('--disable-perl')
|
||||||
|
|
||||||
# On OSX fix the compiler error:
|
# On OSX fix the compiler error:
|
||||||
|
Loading…
Reference in New Issue
Block a user