From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6BA91158086 for ; Wed, 20 Oct 2021 11:29:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B702CE0866; Wed, 20 Oct 2021 11:29:08 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9EC77E0866 for ; Wed, 20 Oct 2021 11:29:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9B74E343985 for ; Wed, 20 Oct 2021 11:29:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 33A0110A for ; Wed, 20 Oct 2021 11:29:06 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1634729342.1bf3664a42e8cb8636915a57b02843a2b6fa41c5.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/qdarkstyle/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/qdarkstyle/qdarkstyle-3.0.2.ebuild X-VCS-Directories: dev-python/qdarkstyle/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 1bf3664a42e8cb8636915a57b02843a2b6fa41c5 X-VCS-Branch: master Date: Wed, 20 Oct 2021 11:29:06 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: df31bc28-16a8-4315-a62b-7c264a35762b X-Archives-Hash: 292d02c8113a550e396263af32c0ec21 commit: 1bf3664a42e8cb8636915a57b02843a2b6fa41c5 Author: Andrew Ammerlaan gentoo org> AuthorDate: Wed Oct 20 11:28:52 2021 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Wed Oct 20 11:29:02 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1bf3664a dev-python/qdarkstyle: enable python3.10 Closes: https://bugs.gentoo.org/809122 Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Andrew Ammerlaan gentoo.org> dev-python/qdarkstyle/qdarkstyle-3.0.2.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dev-python/qdarkstyle/qdarkstyle-3.0.2.ebuild b/dev-python/qdarkstyle/qdarkstyle-3.0.2.ebuild index 632c8dc3d7a..6069541ac9f 100644 --- a/dev-python/qdarkstyle/qdarkstyle-3.0.2.ebuild +++ b/dev-python/qdarkstyle/qdarkstyle-3.0.2.ebuild @@ -3,8 +3,7 @@ EAPI=7 -DISTUTILS_USE_SETUPTOOLS=rdepend -PYTHON_COMPAT=( python3_{7,8,9} ) +PYTHON_COMPAT=( python3_{8..10} ) inherit distutils-r1 optfeature @@ -20,6 +19,8 @@ KEYWORDS="amd64 x86" # TODO: Figure out how to get this to work # Please pass a palette class in order to create its qrc file +# This appears to be fundamentally broken: test calls create_qss() without +# argument and that function does sys.exit(1) if the argument is None. RESTRICT="test" RDEPEND=">=dev-python/QtPy-1.7[gui,${PYTHON_USEDEP}]"