oce: flake8 fixes
This commit is contained in:
parent
57eaea2e8c
commit
14cef6eab8
@ -23,21 +23,22 @@
|
||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
##############################################################################
|
||||
from spack import *
|
||||
import platform, sys
|
||||
import platform
|
||||
|
||||
|
||||
class Oce(Package):
|
||||
"""
|
||||
Open CASCADE Community Edition:
|
||||
patches/improvements/experiments contributed by users over the official Open CASCADE library.
|
||||
"""Open CASCADE Community Edition:
|
||||
patches/improvements/experiments contributed by users over the official
|
||||
Open CASCADE library.
|
||||
"""
|
||||
homepage = "https://github.com/tpaviot/oce"
|
||||
url = "https://github.com/tpaviot/oce/archive/OCE-0.17.tar.gz"
|
||||
|
||||
version('0.17.2', 'bf2226be4cd192606af677cf178088e5')
|
||||
version('0.17.1', '36c67b87093c675698b483454258af91')
|
||||
version('0.17' , 'f1a89395c4b0d199bea3db62b85f818d')
|
||||
version('0.17', 'f1a89395c4b0d199bea3db62b85f818d')
|
||||
version('0.16.1', '4d591b240c9293e879f50d86a0cb2bb3')
|
||||
version('0.16' , '7a4b4df5a104d75a537e25e7dd387eca')
|
||||
version('0.16', '7a4b4df5a104d75a537e25e7dd387eca')
|
||||
|
||||
variant('tbb', default=True, description='Build with Intel Threading Building Blocks')
|
||||
|
||||
@ -50,8 +51,7 @@ class Oce(Package):
|
||||
# http://tracker.dev.opencascade.org/view.php?id=26042
|
||||
# https://github.com/tpaviot/oce/issues/605
|
||||
# https://github.com/tpaviot/oce/commit/61cb965b9ffeca419005bc15e635e67589c421dd.patch
|
||||
patch('null.patch',when='@0.16:0.17.1')
|
||||
|
||||
patch('null.patch', when='@0.16:0.17.1')
|
||||
|
||||
def install(self, spec, prefix):
|
||||
options = []
|
||||
@ -64,7 +64,8 @@ def install(self, spec, prefix):
|
||||
'-DOCE_DISABLE_X11:BOOL=ON',
|
||||
'-DOCE_DRAW:BOOL=OFF',
|
||||
'-DOCE_MODEL:BOOL=ON',
|
||||
'-DOCE_MULTITHREAD_LIBRARY:STRING=%s' % ('TBB' if '+tbb' in spec else 'NONE'),
|
||||
'-DOCE_MULTITHREAD_LIBRARY:STRING=%s' % (
|
||||
'TBB' if '+tbb' in spec else 'NONE'),
|
||||
'-DOCE_OCAF:BOOL=ON',
|
||||
'-DOCE_USE_TCL_TEST_FRAMEWORK:BOOL=OFF',
|
||||
'-DOCE_VISUALISATION:BOOL=OFF',
|
||||
|
Loading…
Reference in New Issue
Block a user