diff options
author | Michał Górny <mgorny@gentoo.org> | 2024-05-29 16:43:37 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2024-05-29 16:46:47 +0200 |
commit | 3c0f124472c7126b9d9c0c84e6fa959ce41625af (patch) | |
tree | 2b216eb6c44a1b43b434fdb432fb5a2e35603c60 /games-misc | |
parent | x11-wm/qtile: Keyword 0.26.0 riscv, #931016 (diff) | |
download | gentoo-3c0f124472c7126b9d9c0c84e6fa959ce41625af.tar.gz gentoo-3c0f124472c7126b9d9c0c84e6fa959ce41625af.tar.bz2 gentoo-3c0f124472c7126b9d9c0c84e6fa959ce41625af.zip |
games-misc/usolitaire: Enable py3.12
Closes: https://bugs.gentoo.org/929586
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'games-misc')
-rw-r--r-- | games-misc/usolitaire/usolitaire-0.2.1-r1.ebuild | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/games-misc/usolitaire/usolitaire-0.2.1-r1.ebuild b/games-misc/usolitaire/usolitaire-0.2.1-r1.ebuild index b262e0d1fd0b..f4aaef20db24 100644 --- a/games-misc/usolitaire/usolitaire-0.2.1-r1.ebuild +++ b/games-misc/usolitaire/usolitaire-0.2.1-r1.ebuild @@ -1,20 +1,24 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..12} ) inherit distutils-r1 DESCRIPTION="solitaire in your terminal" HOMEPAGE="https://github.com/eliasdorneles/usolitaire" -SRC_URI="https://github.com/eliasdorneles/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +SRC_URI=" + https://github.com/eliasdorneles/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz +" LICENSE="MIT" SLOT="0" KEYWORDS="amd64 x86" -RDEPEND="dev-python/urwid[${PYTHON_USEDEP}]" +RDEPEND=" + dev-python/urwid[${PYTHON_USEDEP}] +" distutils_enable_tests pytest |