mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-16 11:48:06 +01:00

new file: e/EasyBuild/EasyBuild-3.7.1-develop.eb new file: e/Eigen/Eigen-3.3.7.eb modified: j/JAVA/Java-1.9.0+181.eb new file: j/JuliaLang/JuliaLang-1.0.3.eb modified: m/matplotlib/matplotlib-2.1.1-Py-3.6.eb modified: p/Pillow/Pillow-5.0.0-Py-3.6.eb new file: p/PyQt5/PyQt5-5.10.1-Py-3.6.eb new file: p/PyQt5/PyQt5-5.11.3-Python-3.6.eb new file: q/Qt5/Qt5-5.11.1.eb new file: q/Qt5/Qt5-5.11.1.patch new file: s/SIP/SIP-4.19.8-Py-3.6.eb modified: s/scikit-image/scikit-image-0.13.1-Py-3.6.eb new file: s/scikit-image/scikit-image-0.14.1-Py-3.6.eb modified: s/scikit-learn/scikit-learn-0.19.1-Py-3.6.eb new file: s/scikit-learn/scikit-learn-0.20.1-Py-3.6.eb new file: s/sqsgenerator/sqsgenerator-20190102-Py-3.6.eb new file: v/VASP/VASP-5.4.4-intel-2017c-mkl=cluster-VTST.eb deleted: c/ChronusQ/ChronusQ-20180802-foss-2017a.eb deleted: c/ChronusQ/ChronusQ-20180802-intel-2017a.eb deleted: j/Julia/Julia-1.0.1-intel-2017c-Py-2.7.eb deleted: j/Julia/Julia-snapshot-foss-2015g-Python-2.7.9.eb deleted: j/Julia/Julia-snapshot-intel-2015b-Python-2.7.9.eb deleted: p/PyQt5/PyQt5-5.10-Py-3.6.eb deleted: s/SIP/SIP-4.19.6-Py-3.6.eb
57 lines
2.1 KiB
Plaintext
57 lines
2.1 KiB
Plaintext
# IT4Innovations 2018
|
|
|
|
easyblock = 'Bundle'
|
|
|
|
name = 'PyQt5'
|
|
version = '5.11.3'
|
|
|
|
homepage = 'http://www.riverbankcomputing.co.uk/software/pyqt'
|
|
description = """PyQt5 is a set of Python bindings for v5 of the Qt application framework from The Qt Company."""
|
|
|
|
toolchain = {'name': 'Py', 'version': '3.6'}
|
|
|
|
dependencies = [
|
|
('Qt5', '5.11.1', '', True),
|
|
]
|
|
|
|
default_easyblock = 'ConfigureMakePythonPackage'
|
|
|
|
pylibdir = '%(installdir)s/lib/python3.6/site-packages'
|
|
|
|
sip_configopts = "configure.py --bindir %%(installdir)s/bin --incdir %%(installdir)s/include --destdir %s" % pylibdir
|
|
# required for PyQt5, cfr. http://pyqt.sourceforge.net/Docs/PyQt5/installation.html#downloading-sip
|
|
# and http://pyqt.sourceforge.net/Docs/sip4/using.html#ref-private-sip
|
|
sip_configopts += " --sip-module PyQt5.sip"
|
|
|
|
sipver = '4.19.13'
|
|
components = [
|
|
('SIP', sipver, {
|
|
'source_urls': ['http://sourceforge.net/projects/pyqt/files/sip/sip-%s' % sipver],
|
|
'sources': [SOURCELOWER_TAR_GZ],
|
|
'checksums': ['e353a7056599bf5fbd5d3ff9842a6ab2ea3cf4e0304a0f925ec5862907c0d15e'],
|
|
'start_dir': 'sip-%s' % sipver,
|
|
'configopts': sip_configopts,
|
|
'options': {'modulename': 'PyQt5.sip'},
|
|
}),
|
|
(name, version, {
|
|
'source_urls': ['http://sourceforge.net/projects/pyqt/files/PyQt5/PyQt-%(version)s'],
|
|
'sources': ['%(name)s_gpl-%(version)s.tar.gz'],
|
|
'checksums': ['c9b57d15601d436faf35dacf8e0acefa220194829a653e771e80b189b3261073'],
|
|
'start_dir': 'PyQt5_gpl-%(version)s',
|
|
'preconfigopts': "export PATH=%(installdir)s/bin:$PATH && ",
|
|
'configopts': "configure.py --confirm-license --verbose --destdir=%s --no-sip-files --no-stubs" % pylibdir,
|
|
'options': {'modulename': 'PyQt5.QtCore'},
|
|
}),
|
|
]
|
|
|
|
sanity_check_paths = {
|
|
'files': ['bin/sip', 'include/sip.h', 'lib/python3.6/site-packages/sipconfig.py',
|
|
'lib/python3.6/site-packages/sipdistutils.py',
|
|
'lib/python3.6/site-packages/PyQt5/sip.%s' % SHLIB_EXT],
|
|
'dirs': [],
|
|
}
|
|
|
|
modextrapaths = {'PYTHONPATH': 'lib/python3.6/site-packages'}
|
|
|
|
moduleclass = 'vis'
|