diff options
author | Maciej Barć <xgqt@gentoo.org> | 2024-01-20 19:25:04 +0100 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2024-01-20 21:45:12 +0100 |
commit | b9c15a1d7aee31a4a16980b65d9949db6940a1a1 (patch) | |
tree | be40704efc3d6bb2122cce63091cdab34da0aa2b /app-portage | |
parent | app-emacs/org-roam: use elisp-enable-tests for buttercup tests (diff) | |
download | gentoo-b9c15a1d7aee31a4a16980b65d9949db6940a1a1.tar.gz gentoo-b9c15a1d7aee31a4a16980b65d9949db6940a1a1.tar.bz2 gentoo-b9c15a1d7aee31a4a16980b65d9949db6940a1a1.zip |
app-portage/elsw: tweaks; py 3.12;
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'app-portage')
-rw-r--r-- | app-portage/elsw/elsw-9999.ebuild | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/app-portage/elsw/elsw-9999.ebuild b/app-portage/elsw/elsw-9999.ebuild index bf24610ad3e1..f476f0d0e3b2 100644 --- a/app-portage/elsw/elsw-9999.ebuild +++ b/app-portage/elsw/elsw-9999.ebuild @@ -1,22 +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=flit -PYTHON_COMPAT=( python3_{10..11} ) +PYTHON_COMPAT=( python3_{10..12} ) inherit distutils-r1 DESCRIPTION="Tool providing a nice way to view the Portage world file" HOMEPAGE="https://gitlab.com/xgqt/python-elsw/" -if [[ ${PV} == *9999* ]] ; then +if [[ "${PV}" == *9999* ]] ; then inherit git-r3 + EGIT_REPO_URI="https://gitlab.com/xgqt/python-${PN}.git" else inherit pypi - KEYWORDS="~amd64 ~x86" + + KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86" fi LICENSE="GPL-2+" |