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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2AE3E15800A for ; Mon, 21 Aug 2023 02:20:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 32FD22BC01B; Mon, 21 Aug 2023 02:20:50 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 10D5B2BC016 for ; Mon, 21 Aug 2023 02:20:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 032B0341204 for ; Mon, 21 Aug 2023 02:20:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5BACF1045 for ; Mon, 21 Aug 2023 02:20:47 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1692584442.6f6c96862e14e0ce86b540b69e4b24747e7a3e3b.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pymountboot/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pymountboot/pymountboot-0.2.3-r1.ebuild X-VCS-Directories: dev-python/pymountboot/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 6f6c96862e14e0ce86b540b69e4b24747e7a3e3b X-VCS-Branch: master Date: Mon, 21 Aug 2023 02:20:47 +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: a05485df-7801-47a2-9502-b2c2aa3eb69b X-Archives-Hash: 1145a906d619b0c26d7d666412c31e8c commit: 6f6c96862e14e0ce86b540b69e4b24747e7a3e3b Author: Michał Górny gentoo org> AuthorDate: Mon Aug 21 02:18:46 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Aug 21 02:20:42 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f6c9686 dev-python/pymountboot: Enable py3.12 Signed-off-by: Michał Górny gentoo.org> dev-python/pymountboot/pymountboot-0.2.3-r1.ebuild | 17 ++++++++++++----- 1 file 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 +"