easyconfigs-it4i/p/PyQt6/PyQt-6.8.1-GCCcore-13.3.0.eb
Lukas Krupcik e6fff1ea94 new file: c/CRYSTAL/CRYSTAL-23-intel-compilers-2021.4.0-OpenMPI-4.1.1-1.0.1-Pdistrib.eb
new file:   c/CRYSTAL/CRYSTAL23-ifort_i64.patch
	new file:   c/CRYSTAL/CRYSTAL23-ifort_i64_omp.patch
	new file:   f/ffnvcodec/ffnvcodec-12.2.72.0.eb
	new file:   p/PyQt6/PyQt-6.8.1-GCCcore-13.3.0.eb
	new file:   w/Wayland/Wayland-1.23.0-GCCcore-13.3.0.eb
	new file:   x/XALT/XALT-3.1.4.eb
2025-03-20 10:10:27 +01:00

85 lines
2.9 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# IT4Innovations
# LK 2026
easyblock = 'Bundle'
name = 'PyQt6'
version = '6.8.1'
homepage = 'https://www.riverbankcomputing.com/software/pyqt'
description = """PyQt5 is a set of Python bindings for v5 of the Qt application framework from The Qt Company.
This bundle includes PyQtWebEngine, a set of Python bindings for The Qt Companys Qt WebEngine framework."""
toolchain = {'name': 'GCCcore', 'version': '13.3.0'}
toolchainopts = {'cstd': 'c++11'}
builddependencies = [('binutils', '2.42')]
dependencies = [
('Python', '3.12.3'),
('Qt6', '6.7.2'),
]
default_easyblock = 'PythonPackage'
local_pylibdir = '%(installdir)s/lib/python%(pyshortver)s/site-packages'
local_pyqt6_sip_install = "sip-install --verbose --target-dir " + local_pylibdir + " "
local_pyqt6_sip_install += "--confirm-license --no-designer-plugin --no-qml-plugin --no-tools"
local_pyqtweb_configopts = "configure.py --verbose --destdir=%s/PyQt5 " % local_pylibdir
local_pyqtweb_configopts += "--apidir=%(installdir)s/qsci --pyqt-sipdir=%(builddir)s/PyQt5-%(version)s/sip "
local_pyqtweb_configopts += "--no-stubs --no-dist-info"
local_setup_env = "export PATH=%(installdir)s/bin:$PATH && "
local_setup_env += "export PYTHONPATH=%(installdir)s/lib/python%(pyshortver)s/site-packages:$PYTHONPATH && "
local_sipver = '6.10.0'
components = [
('SIP', local_sipver, {
'source_urls': [PYPI_SOURCE],
'sources': [SOURCELOWER_TAR_GZ],
'checksums': ['fa0515697d4c98dbe04d9e898d816de1427e5b9ae5d0e152169109fd21f5d29c'],
'start_dir': 'sip-%s' % local_sipver,
'use_pip': True,
'options': {'modulename': 'PyQt6.sip'},
}),
('PyQt-builder', '1.10.1', {
'source_urls': [PYPI_SOURCE],
'sources': [SOURCE_TAR_GZ],
'checksums': ['967b0c7bac0331597e9f8c5b336660f173a9896830b721d6d025e14bde647e17'],
'start_dir': 'PyQt-builder-%(version)s',
'use_pip': True,
}),
('PyQt6_sip', '13.10.0', {
'source_urls': [PYPI_SOURCE],
'sources': [SOURCELOWER_TAR_GZ],
'checksums': ['d6daa95a0bd315d9ec523b549e0ce97455f61ded65d5eafecd83ed2aa4ae5350'],
'start_dir': 'pyqt6_sip-%(version)s',
'use_pip': True,
}),
(name, version, {
'source_urls': [PYPI_SOURCE],
'sources': [SOURCELOWER_TAR_GZ],
'checksums': ['91d937d6166274fafd70f4dee11a8da6dbfdb0da53de05f5d62361ddf775e256'],
'easyblock': 'Binary',
'start_dir': 'pyqt6-%(version)s',
'skipsteps': ['configure', 'build'],
'install_cmd': local_setup_env + local_pyqt6_sip_install,
}),
]
sanity_check_paths = {
'files': ['bin/pyqt-bundle', 'bin/sip-build', 'bin/sip-install'],
'dirs': ['lib/python%(pyshortver)s/site-packages'],
}
sanity_check_commands = [
"python -c 'import PyQt6.QtCore'",
]
modextrapaths = {
'PYTHONPATH': 'lib/python%(pyshortver)s/site-packages',
'QT_INSTALL_DATA': 'qsci',
}
moduleclass = 'vis'