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 2BD87158043 for ; Sun, 14 Apr 2024 15:47:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C9520E29C0; Sun, 14 Apr 2024 15:47:10 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 8830CE29C0 for ; Sun, 14 Apr 2024 15:47:10 +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 211B9343378 for ; Sun, 14 Apr 2024 15:47:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 676EA9B6 for ; Sun, 14 Apr 2024 15:47:07 +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: <1713109621.01ad494a55bb1b6cbcafd3617e1865ef2b6b07cc.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-linux-procfs/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/python-linux-procfs/python-linux-procfs-0.7.1.ebuild X-VCS-Directories: dev-python/python-linux-procfs/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 01ad494a55bb1b6cbcafd3617e1865ef2b6b07cc X-VCS-Branch: master Date: Sun, 14 Apr 2024 15:47:07 +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: f36611e8-b7fb-4df8-9f57-6c163cd0c235 X-Archives-Hash: d628801f3bbba0ec94e8d8ed690a7020 commit: 01ad494a55bb1b6cbcafd3617e1865ef2b6b07cc Author: Michał Górny gentoo org> AuthorDate: Sun Apr 14 15:34:22 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Apr 14 15:47:01 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01ad494a dev-python/python-linux-procfs: Enable py3.12 Closes: https://bugs.gentoo.org/929501 Signed-off-by: Michał Górny gentoo.org> .../python-linux-procfs/python-linux-procfs-0.7.1.ebuild | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/dev-python/python-linux-procfs/python-linux-procfs-0.7.1.ebuild b/dev-python/python-linux-procfs/python-linux-procfs-0.7.1.ebuild index 89622b4136e5..741726f9f8c9 100644 --- a/dev-python/python-linux-procfs/python-linux-procfs-0.7.1.ebuild +++ b/dev-python/python-linux-procfs/python-linux-procfs-0.7.1.ebuild @@ -1,17 +1,16 @@ -# 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="Python classes to extract information from the Linux kernel /proc files" HOMEPAGE=" - https://git.kernel.org/pub/scm/libs/python/python-linux-procfs/ - https://kernel.googlesource.com/pub/scm/libs/python/python-linux-procfs/python-linux-procfs/ + https://git.kernel.org/pub/scm/libs/python/python-linux-procfs/python-linux-procfs.git/ " SRC_URI="https://cdn.kernel.org/pub/software/libs/python/${PN}/${P}.tar.xz" @@ -19,8 +18,10 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64" -RDEPEND="dev-python/six[${PYTHON_USEDEP}]" +RDEPEND=" + dev-python/six[${PYTHON_USEDEP}] +" python_test() { - ${EPYTHON} ./bitmasklist_test.py || die "Tests failed with ${EPYTHON}" + "${EPYTHON}" ./bitmasklist_test.py || die "Tests failed with ${EPYTHON}" }