💄 style points requested by flake8

This commit is contained in:
Mayeul d'Avezac 2016-06-03 11:52:19 +01:00
parent 29b85fbce0
commit 0b5ce9e16a

View File

@ -28,7 +28,9 @@
class Eigen(Package):
"""
Eigen is a C++ template library for linear algebra: matrices, vectors, numerical solvers, and related algorithms
Eigen is a C++ template library for linear algebra
Matrices, vectors, numerical solvers, and related algorithms
"""
homepage = 'http://eigen.tuxfamily.org/'
@ -45,13 +47,12 @@ class Eigen(Package):
variant('mpfr', default=True, description='Enables support for multi-precisions floating points via mpfr')
# TODO : dependency on googlehash, superlu, adolc missing
depends_on('cmake')
depends_on('metis@5:', when='+metis')
depends_on('scotch', when='+scotch')
depends_on('fftw', when='+fftw')
depends_on('suite-sparse', when='+suitesparse')
depends_on('mpfr@2.3.0:', when="+mpfr") # Eigen 3.2.7 requires at least 2.3.0
depends_on('mpfr@2.3.0:', when="+mpfr")
depends_on('gmp', when="+mpfr")
def install(self, spec, prefix):