diff options
author | Michał Górny <mgorny@gentoo.org> | 2023-08-21 04:18:46 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-08-21 04:20:42 +0200 |
commit | 6f6c96862e14e0ce86b540b69e4b24747e7a3e3b (patch) | |
tree | 6b26ee60261c2cfd45ab11de9f920d2e3492ecde /dev-python/pymountboot | |
parent | dev-python/python-lzo: Enable py3.12 (diff) | |
download | gentoo-6f6c96862e14e0ce86b540b69e4b24747e7a3e3b.tar.gz gentoo-6f6c96862e14e0ce86b540b69e4b24747e7a3e3b.tar.bz2 gentoo-6f6c96862e14e0ce86b540b69e4b24747e7a3e3b.zip |
dev-python/pymountboot: Enable py3.12
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/pymountboot')
-rw-r--r-- | dev-python/pymountboot/pymountboot-0.2.3-r1.ebuild | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/dev-python/pymountboot/pymountboot-0.2.3-r1.ebuild b/dev-python/pymountboot/pymountboot-0.2.3-r1.ebuild index 0cee37410989..54939be1d082 100644 --- a/dev-python/pymountboot/pymountboot-0.2.3-r1.ebuild +++ b/dev-python/pymountboot/pymountboot-0.2.3-r1.ebuild @@ -5,7 +5,7 @@ EAPI=8 DISTUTILS_EXT=1 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..12} ) inherit distutils-r1 @@ -13,12 +13,19 @@ DESCRIPTION="Python extension module to (re)mount /boot" HOMEPAGE="https://github.com/projg2/pymountboot/" SRC_URI=" https://github.com/projg2/pymountboot/archive/v${PV}.tar.gz - -> ${P}.tar.gz" + -> ${P}.tar.gz +" LICENSE="BSD" SLOT="0" KEYWORDS="amd64 ~arm ~arm64 ~riscv x86" -RDEPEND=">=sys-apps/util-linux-2.20" -DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" +DEPEND=" + >=sys-apps/util-linux-2.20 +" +RDEPEND=" + ${DEPEND} +" +BDEPEND=" + virtual/pkgconfig +" |