commit: d5799bed2ce22aa1c1ae6d21e30ccd74e7cf51d4 Author: Nowa Ammerlaan <nowa <AT> gentoo <DOT> org> AuthorDate: Sat Sep 13 07:32:14 2025 +0000 Commit: Nowa Ammerlaan <nowa <AT> gentoo <DOT> org> CommitDate: Sat Sep 13 07:33:16 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5799bed
dev-python/superqt: add 0.7.6 Closes: https://bugs.gentoo.org/962745 Signed-off-by: Nowa Ammerlaan <nowa <AT> gentoo.org> dev-python/superqt/Manifest | 1 + dev-python/superqt/superqt-0.7.6.ebuild | 50 +++++++++++++++++++++++++++++++++ 2 files changed, 51 insertions(+) diff --git a/dev-python/superqt/Manifest b/dev-python/superqt/Manifest index 48dca05ba1d3..db692869be5c 100644 --- a/dev-python/superqt/Manifest +++ b/dev-python/superqt/Manifest @@ -1 +1,2 @@ DIST superqt-0.7.3.tar.gz 105916 BLAKE2B 3d75abf420c55140bdbf071419ca790fdec17773cd4796fb63cc721bfc5fb8e501aa1cf67f83e918c2b0758c35a7ced217c995b0631903317f423bde3ce7c151 SHA512 87ddf00c77c896da17054664c0cb3c3cd372c773b8cc9eaf8079feef1ef6e5d52df40ae1367abaf9e2a6f0ded9b560b4147c98fd362d22b064f877ddbe8b74b9 +DIST superqt-0.7.6.tar.gz 107043 BLAKE2B 9f14fabe78a2d079e059ac97cc6f98b341ec00080776599e1e030e7b94d91db514293a185c75d2aa3a43d5ef05940b5d9de7b113688fd0289cf9bafbbec91e44 SHA512 64c1facfe14ce9b5b01d9e7b2798b79615c564f2275ae11d62be90a8ad4454f00fef23f80ff96ae9ca8fbcc112fac00871ea81d82419f7ba1f5112b6d923aa07 diff --git a/dev-python/superqt/superqt-0.7.6.ebuild b/dev-python/superqt/superqt-0.7.6.ebuild new file mode 100644 index 000000000000..6bda6eded5ce --- /dev/null +++ b/dev-python/superqt/superqt-0.7.6.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=hatchling +PYTHON_COMPAT=( python3_{11..13} ) + +inherit distutils-r1 pypi virtualx + +DESCRIPTION="Missing widgets and components for PyQt/PySide" +HOMEPAGE=" + https://github.com/pyapp-kit/superqt + https://pypi.org/project/superqt/ +" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm64" + +RDEPEND=" + >=dev-python/pygments-2.4.0[${PYTHON_USEDEP}] + >=dev-python/qtpy-1.1.0[${PYTHON_USEDEP}] + >=dev-python/typing-extensions-3.7.4.3[${PYTHON_USEDEP}] +" + +BDEPEND=" + dev-python/hatch-vcs[${PYTHON_USEDEP}] + test? ( + dev-python/numpy[${PYTHON_USEDEP}] + dev-python/pytest-qt[${PYTHON_USEDEP}] + ) +" + +EPYTEST_IGNORE=( + # pint and pyconify not packaged + tests/test_quantity.py + tests/test_iconify.py +) + +EPYTEST_DESELECT=( + # fails in the sandbox, but works outside of it + tests/test_eliding_label.py::test_wrapped_eliding_label +) + +distutils_enable_tests pytest + +python_test() { + virtx distutils-r1_python_test +}
