From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A9C3F1584F2 for ; Mon, 17 Mar 2025 14:12:17 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 8EFF0343311 for ; Mon, 17 Mar 2025 14:12:17 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id B9ADE11037F; Mon, 17 Mar 2025 14:12:13 +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 bobolink.gentoo.org (Postfix) with ESMTPS id ACBA211037F for ; Mon, 17 Mar 2025 14:12:13 +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 66CE03432FA for ; Mon, 17 Mar 2025 14:12:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B96EA2144 for ; Mon, 17 Mar 2025 14:12:11 +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: <1742219796.708a2b48bc60bd8f7f6f5b1b3b0987a0a3371a03.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/keyutils/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/keyutils/keyutils-0.6-r2.ebuild X-VCS-Directories: dev-python/keyutils/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 708a2b48bc60bd8f7f6f5b1b3b0987a0a3371a03 X-VCS-Branch: master Date: Mon, 17 Mar 2025 14:12:11 +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: 01c352d6-b848-410f-b267-c7bef7880cab X-Archives-Hash: b58cc0023fcd4871579276d0c10661a6 commit: 708a2b48bc60bd8f7f6f5b1b3b0987a0a3371a03 Author: Michał Górny gentoo org> AuthorDate: Mon Mar 17 13:56:36 2025 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Mar 17 13:56:36 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=708a2b48 dev-python/keyutils: Enable py3.13 Signed-off-by: Michał Górny gentoo.org> dev-python/keyutils/keyutils-0.6-r2.ebuild | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/dev-python/keyutils/keyutils-0.6-r2.ebuild b/dev-python/keyutils/keyutils-0.6-r2.ebuild index b745cedffdc8..f16babeaa599 100644 --- a/dev-python/keyutils/keyutils-0.6-r2.ebuild +++ b/dev-python/keyutils/keyutils-0.6-r2.ebuild @@ -1,16 +1,21 @@ -# Copyright 2021-2024 Gentoo Authors +# Copyright 2021-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -PYTHON_COMPAT=( python3_{9..12} ) DISTUTILS_EXT=1 DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..13} ) + inherit distutils-r1 DESCRIPTION="A set of python bindings for keyutils" HOMEPAGE="https://github.com/sassoftware/python-keyutils/" -SRC_URI="https://github.com/sassoftware/python-keyutils/archive/refs/tags/${PV}.tar.gz -> python-keyutils-${PV}.gh.tar.gz" +SRC_URI=" + https://github.com/sassoftware/python-keyutils/archive/${PV}.tar.gz + -> python-keyutils-${PV}.gh.tar.gz +" +S="${WORKDIR}/python-keyutils-${PV}" LICENSE="Apache-2.0" SLOT="0" @@ -22,8 +27,6 @@ RDEPEND="${DEPEND}" distutils_enable_tests pytest -S="${WORKDIR}/python-keyutils-${PV}" - src_prepare() { default sed -i -e '/pytest-runner/d' setup.py || die