dev-python/anyqt: Bump to 0.2.0

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2022-08-07 10:35:32 +02:00
parent d18ad5e444
commit 84825d186b
2 changed files with 59 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST anyqt-0.1.1.gh.tar.gz 54461 BLAKE2B ec78ecf5d326412b953f95379203bc81c92f13ad7b11e44630cf43062a08b9cfa8436b7c18ef6762d43968c87cebc0eadb33b1cecd159c3278e65538cfb80967 SHA512 5e3f6784fe3826b3017365945bc7053a58c4d7db5745c664fa845780212bf89db2b136459afe90df00d63d1507b56fa5b4a579526d9a9f4169943e5d52e230c4
DIST anyqt-0.2.0.gh.tar.gz 57920 BLAKE2B b8fcf98706a2f1e8a0553044223fb5b46f471ca4a91436e828507d031c39d20cb4f3f9d556785d0614cc43b02b3134990606f51e002e238674144d9b94ca8528 SHA512 78162ca2758c1fee83b357c1dfe316499e74f9aa918f0bde40b94eb33f9f2b113b38c2883a21612a5455949fe9bb79f2f6c5a70fd4a0b64147eb4a88a94d9d1c

View File

@@ -0,0 +1,58 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1 virtualx
DESCRIPTION="PyQt4/PyQt5 compatibility layer"
HOMEPAGE="
https://github.com/ales-erjavec/anyqt/
https://pypi.org/project/AnyQt/
"
SRC_URI="
https://github.com/ales-erjavec/anyqt/archive/${PV}.tar.gz
-> ${P}.gh.tar.gz
"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="
|| (
dev-python/pyside2[${PYTHON_USEDEP}]
dev-python/PyQt5[${PYTHON_USEDEP}]
)
"
BDEPEND="
test? (
dev-python/pyside2[${PYTHON_USEDEP}]
dev-python/PyQt5[${PYTHON_USEDEP}]
)
"
distutils_enable_tests pytest
src_test() {
virtx distutils-r1_src_test
}
python_test() {
local -x QT_API
# plugins may preload Qt modules
local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
for QT_API in pyqt5 pyside2; do
local EPYTEST_IGNORE=()
[[ ${QT_API} == pyside2 ]] && EPYTEST_IGNORE+=(
tests/test_qaction_set_menu.py
)
einfo "Testing ${QT_API}"
nonfatal epytest tests ||
die "Tests failed with ${EPYTHON} / ${QT_API}"
done
}