Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-qt/
Date: Fri, 11 Jun 2021 14:32:24
Message-Id: 1623420816.d2b007067e4aa60399127e4f1fd22b18ff660b6d.andrewammerlaan@gentoo
1 commit: d2b007067e4aa60399127e4f1fd22b18ff660b6d
2 Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jun 11 14:13:14 2021 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
5 CommitDate: Fri Jun 11 14:13:36 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2b00706
7
8 dev-python/pytest-qt: add version 4.0.1
9
10 Package-Manager: Portage-3.0.19, Repoman-3.0.3
11 Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
12
13 dev-python/pytest-qt/Manifest | 1 +
14 dev-python/pytest-qt/pytest-qt-4.0.1.ebuild | 59 +++++++++++++++++++++++++++++
15 2 files changed, 60 insertions(+)
16
17 diff --git a/dev-python/pytest-qt/Manifest b/dev-python/pytest-qt/Manifest
18 index 4357596288e..157ce3b2bc9 100644
19 --- a/dev-python/pytest-qt/Manifest
20 +++ b/dev-python/pytest-qt/Manifest
21 @@ -1,2 +1,3 @@
22 DIST pytest-qt-3.3.0.tar.gz 113439 BLAKE2B 1eb486d2d44825058577306ed3b9ade34e6cbad0d90038fe314114bb22c82ae069c9fe66c170591de6c97bad99f5f9e0021c8b3dc38c858b8293a22c448bed74 SHA512 8b3ce7b62621c55fb319966b162cb60663c5ef290f34e62e6a9329e67f530c2bde1329ae0b045b15c99ae14f5f6a5fef9ee930475fa700922c50ee725adf7983
23 DIST pytest-qt-4.0.0.tar.gz 113333 BLAKE2B 69c2c8c823b55c44150c7beb0754e90866c7659912dbc0d99ee29904b0a20eadf26939709a5d120d0b95e23bcb99310415932e87934ae84571c55e3ffd07c284 SHA512 cfdde2e82b42979313d96f9a14bdafea0d4d5d5b64b4785ac73b74e36bfb892ab7b5ec6eb1c4e540ec00ccec6739e8bd9a3ffb610f204f6cfe97061f57a3971a
24 +DIST pytest-qt-4.0.1.tar.gz 113473 BLAKE2B b77438ea2e6f71566daa50628d481671bc5ece0cffe2c67d689e780274884d70d94d70305c92775e5d9bba7fe09431ce7116aa5823234675237149726178ba43 SHA512 4f6d9057d5c6ebf439d0f69a341b3d7a4297e3eea251f85c82cf5ecc7aca1419b7a2ab0e846852661a0a2236af6225518b3ae691bb014fb56dbc1d39106db4cc
25
26 diff --git a/dev-python/pytest-qt/pytest-qt-4.0.1.ebuild b/dev-python/pytest-qt/pytest-qt-4.0.1.ebuild
27 new file mode 100644
28 index 00000000000..01570364aa9
29 --- /dev/null
30 +++ b/dev-python/pytest-qt/pytest-qt-4.0.1.ebuild
31 @@ -0,0 +1,59 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +PYTHON_COMPAT=( python3_{8..10} )
38 +
39 +inherit distutils-r1 virtualx
40 +
41 +DESCRIPTION="pytest plugin for PyQt5 and PySide2 applications"
42 +HOMEPAGE="
43 + https://pypi.org/project/pytest-qt/
44 + https://github.com/pytest-dev/pytest-qt/"
45 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
46 +
47 +LICENSE="MIT"
48 +SLOT="0"
49 +KEYWORDS="~amd64 ~x86"
50 +
51 +RDEPEND="dev-python/QtPy[gui,testlib,widgets(+),${PYTHON_USEDEP}]"
52 +BDEPEND="
53 + test? (
54 + dev-python/PyQt5[gui,testlib,widgets,${PYTHON_USEDEP}]
55 + $(python_gen_cond_dep '
56 + dev-python/pyside2[gui,testlib,widgets,${PYTHON_USEDEP}]
57 + ' python3_{8..9} )
58 + )
59 +"
60 +
61 +distutils_enable_tests --install pytest
62 +distutils_enable_sphinx docs dev-python/sphinx_rtd_theme
63 +
64 +python_prepare_all() {
65 + # This show window test does not work inside the emerge env, as we cannot show windows.
66 + # pytestqt.exceptions.TimeoutError: widget <PyQt5.QtWidgets.QWidget object at 0x7f57d8527af8> not activated in 1000 ms.
67 + sed -i -e 's:test_wait_window:_&:' tests/test_basics.py || die
68 +
69 + # This is not going to work since we want to test both implementations
70 + # and therefore pull in both and explicitly set PYTEST_QT_API
71 + sed -i -e 's:test_qt_api_ini_config_with_envvar:_&:' \
72 + -e 's:test_qt_api_ini_config:_&:' \
73 + tests/test_basics.py || die
74 +
75 + distutils-r1_python_prepare_all
76 +}
77 +
78 +src_test() {
79 + virtx python_foreach_impl python_test
80 +}
81 +
82 +python_test() {
83 + distutils_install_for_testing
84 + PYTEST_QT_API="pyqt5" epytest
85 + if [[ "${EPYTHON}" == "python3.10" ]]; then
86 + return
87 + else
88 + PYTEST_QT_API="pyside2" epytest
89 + fi
90 +}