Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# 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'