Added line limit exemptions for 'variant' and 'version' directives.

Updated the 'scotch' package to use oneline 'variant' directives.
This commit is contained in:
Joseph Ciurej
2016-05-16 12:14:57 -07:00
parent 52c8bedb9c
commit 761c5c8450
2 changed files with 11 additions and 10 deletions

View File

@@ -40,14 +40,10 @@ class Scotch(Package):
version('6.0.0', 'c50d6187462ba801f9a82133ee666e8e')
version('5.1.10b', 'f587201d6cf5cf63527182fbfba70753')
variant('mpi', default=False,
description='Activate the compilation of parallel libraries')
variant('compression', default=True,
description='Activate the posibility to use compressed files')
variant('esmumps', default=False,
description='Activate the compilation of esmumps needed by mumps')
variant('shared', default=True,
description='Build a shared version of the library')
variant('mpi', default=False, description='Activate the compilation of parallel libraries')
variant('compression', default=True, description='Activate the posibility to use compressed files')
variant('esmumps', default=False, description='Activate the compilation of esmumps needed by mumps')
variant('shared', default=True, description='Build a shared version of the library')
depends_on('flex')
depends_on('bison')