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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYPI_PN=QtPy
PYTHON_COMPAT=( python3_{10..13} )
inherit distutils-r1 virtualx pypi
DESCRIPTION="Abstraction layer on top of PyQt and PySide with additional custom QWidgets"
HOMEPAGE="
https://github.com/spyder-ide/qtpy/
https://pypi.org/project/QtPy/
"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
_IUSE_QT_MODULES="
bluetooth dbus designer +gui help multimedia +network nfc opengl pdfium
positioning printsupport qml quick quick3d remoteobjects sensors serialport
spatialaudio speech +sql svg testlib webchannel webengine websockets
+widgets +xml
"
IUSE="+pyqt6 pyside6 ${_IUSE_QT_MODULES}"
unset _IUSE_QT_MODULES
REQUIRED_USE="|| ( pyqt6 pyside6 )"
# These flags are currently *not* common to the PySide2/6 and PyQt5/6 ebuilds
# Disable them for now, please check periodically if this is still up to date.
# 3d? ( pyside6 only )
# charts? ( pyside6 only )
# concurrent? ( pyside6 only )
# httpserver? ( pyside6 only )
# scxml? ( pyside6 only )
# uitools? ( pyside6 only )
# location? ( pyside6 only)
# network-auth? ( pyside6 only )
#
# vulkan? ( pyqt6 only )
# WARNING: the obvious solution of using || for PyQt5/pyside2 is not going
# to work. The package only checks whether PyQt5/pyside2 is installed, it does
# not verify whether they have the necessary modules (i.e. satisfy the USE dep).
#
# Webengine is a special case, because PyQt6 provides this in a separate package
# while PySide6 ships it in the same package.
RDEPEND="
dev-python/packaging[${PYTHON_USEDEP}]
pyqt6? (
dev-python/pyqt6[${PYTHON_USEDEP}]
dev-python/pyqt6[bluetooth?,dbus?,designer?,gui?,help?,multimedia?]
dev-python/pyqt6[network?,nfc?,opengl?,pdfium?,positioning?]
dev-python/pyqt6[printsupport?,qml?,quick?,quick3d?,remoteobjects?]
dev-python/pyqt6[sensors?,serialport?,spatialaudio?,speech?,sql?,svg?]
dev-python/pyqt6[testlib?,webchannel?,websockets?,widgets?,xml?]
webengine? ( dev-python/pyqt6-webengine[${PYTHON_USEDEP},widgets?,quick?] )
)
pyside6? (
dev-python/pyside6[${PYTHON_USEDEP}]
dev-python/pyside6[bluetooth?,dbus?,designer?,gui?,help?,multimedia?]
dev-python/pyside6[network?,nfc?,opengl?,pdfium?,positioning?]
dev-python/pyside6[printsupport?,qml?,quick?,quick3d?,remoteobjects(-)?]
dev-python/pyside6[sensors?,serialport?,spatialaudio?,speech?,sql?,svg?]
dev-python/pyside6[testlib?,webchannel?,webengine?,websockets?,widgets?,xml?]
)
"
# The QtPy testsuite skips tests for bindings that are not installed, so here we
# ensure that everything is available and all tests are run. Note that not
# all flags are available in PyQt5/PySide2, so some tests are still skipped.
BDEPEND="
test? (
dev-python/pytest-qt[${PYTHON_USEDEP}]
pyqt6? (
dev-python/pyqt6[${PYTHON_USEDEP}]
dev-python/pyqt6[bluetooth,dbus,designer,gui,help,multimedia]
dev-python/pyqt6[network,nfc,opengl,pdfium,positioning,printsupport]
dev-python/pyqt6[qml,quick,quick3d,sensors,serialport]
dev-python/pyqt6[spatialaudio,speech,sql,svg,testlib,webchannel]
dev-python/pyqt6[vulkan(-),websockets,widgets,xml]
dev-python/pyqt6-webengine[${PYTHON_USEDEP},widgets,quick]
dev-qt/qtbase:6[sqlite]
)
pyside6? (
dev-python/pyside6[${PYTHON_USEDEP}]
dev-python/pyside6[3d,bluetooth,charts,concurrent,dbus,designer,gui]
dev-python/pyside6[help,location,multimedia,network,network-auth]
dev-python/pyside6[nfc,opengl,pdfium,positioning,printsupport,qml]
dev-python/pyside6[quick,quick3d,scxml,sensors,serialport]
dev-python/pyside6[spatialaudio,speech,sql,svg,testlib,webchannel]
dev-python/pyside6[webengine,websockets,widgets,xml]
dev-python/pyside6-tools[${PYTHON_USEDEP}]
dev-qt/qtbase:6[sqlite]
)
)
"
distutils_enable_tests pytest
src_prepare() {
distutils-r1_src_prepare
sed -i -e 's:--cov=qtpy --cov-report=term-missing::' pytest.ini || die
# Disable Qt for Python implementations that are not selected
# Always disable PyQt5
sed \
-e '/from PyQt5.QtCore import/,/)/c\ \ \ \ \ \ \ \ raise ImportError #/' \
-e '/if "PyQt5" in sys.modules:/,/"pyqt5"/c\' \
-i qtpy/__init__.py || die
# We need to ensure the first option is an 'if' not 'elif'
sed -e 's/elif "PySide2" in sys.modules:/if "PySide2" in sys.modules:/g' \
-i qtpy/__init__.py || die
# Always disable PySide2
sed \
-e "s/from PySide2 import/raise ImportError #/" \
-e "s/from PySide2.QtCore import/raise ImportError #/" \
-e '/if "PySide2" in sys.modules:/,/"pyside2"/c\' \
-i qtpy/__init__.py || die
sed \
-e 's/elif "PyQt6" in sys.modules:/if "PyQt6" in sys.modules:/g' \
-i qtpy/__init__.py || die
if ! use pyqt6; then
sed \
-e '/from PyQt6.QtCore import/,/)/c\ \ \ \ \ \ \ \ raise ImportError #/' \
-e '/if "PyQt6" in sys.modules:/,/"pyqt6"/c\' \
-i qtpy/__init__.py || die
sed \
-e 's/elif "PySide6" in sys.modules:/if "PySide6" in sys.modules:/g' \
-i qtpy/__init__.py || die
fi
if ! use pyside6; then
sed \
-e "s/from PySide6 import/raise ImportError #/" \
-e "s/from PySide6.QtCore import/raise ImportError #/" \
-e '/if "PySide6" in sys.modules:/,/"pyside6"/c\' \
-i qtpy/__init__.py || die
fi
}
python_test() {
local -x QT_API
local -a EPYTEST_DESELECT
local other
# Test for each enabled Qt4Python target.
# Deselect the other targets, their test fails if we specify QT_API
# or if we have disabled their corresponding inherit in __init__.py above
for QT_API in PyQt6 PySide6; do
if use "${QT_API,,}"; then
EPYTEST_DESELECT=()
for other in PyQt{5,6} PySide{2,6}; do
if [[ ${QT_API} != ${other} ]]; then
EPYTEST_DESELECT+=(
"qtpy/tests/test_main.py::test_qt_api_environ[${other}]"
)
fi
done
einfo "Testing with ${EPYTHON} and QT_API=${QT_API}"
nonfatal epytest -o addopts= ||
die -n "Tests failed with ${EPYTHON} and QT_API=${QT_API}" ||
return 1
fi
done
}
src_test() {
virtx distutils-r1_src_test
}
pkg_postinst() {
elog "When multiple Qt4Python targets are enabled QtPy will default to"
elog "the first enabled target in this order: PyQt6 PySide6."
elog "This can be overridden with the QT_API environment variable."
}
|