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 592231581C1 for ; Sat, 6 Jul 2024 11:19:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 65FC8E2AEC; Sat, 6 Jul 2024 11:19:27 +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 4A542E2AEC for ; Sat, 6 Jul 2024 11:19:27 +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 446E5342FA5 for ; Sat, 6 Jul 2024 11:19:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A02D21DD0 for ; Sat, 6 Jul 2024 11:19:24 +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: <1720264739.7e01ef6d45b9c23d24456a9f2d92688f0de9d52f.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/cysignals/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/cysignals/cysignals-1.11.4.ebuild X-VCS-Directories: dev-python/cysignals/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 7e01ef6d45b9c23d24456a9f2d92688f0de9d52f X-VCS-Branch: master Date: Sat, 6 Jul 2024 11:19:24 +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: 0e392043-0b6b-435c-b5ed-8492876d3ff9 X-Archives-Hash: c3d2eb2fdb151e3e62e056f1f2a34a36 commit: 7e01ef6d45b9c23d24456a9f2d92688f0de9d52f Author: Michał Górny gentoo org> AuthorDate: Sat Jul 6 10:28:23 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Jul 6 11:18:59 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e01ef6d dev-python/cysignals: Enable py3.13 Signed-off-by: Michał Górny gentoo.org> dev-python/cysignals/cysignals-1.11.4.ebuild | 29 +++++++++++++++++----------- 1 file changed, 18 insertions(+), 11 deletions(-) diff --git a/dev-python/cysignals/cysignals-1.11.4.ebuild b/dev-python/cysignals/cysignals-1.11.4.ebuild index 8adad553bbb2..6e68c71bcc4b 100644 --- a/dev-python/cysignals/cysignals-1.11.4.ebuild +++ b/dev-python/cysignals/cysignals-1.11.4.ebuild @@ -1,17 +1,19 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -PYTHON_COMPAT=( python3_{10..12} ) -DISTUTILS_USE_PEP517=setuptools DISTUTILS_EXT=1 +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..13} ) inherit distutils-r1 pypi DESCRIPTION="Interrupt and signal handling for Cython" -HOMEPAGE="https://pypi.org/project/cysignals/ - https://github.com/sagemath/cysignals" +HOMEPAGE=" + https://github.com/sagemath/cysignals/ + https://pypi.org/project/cysignals/ +" # setup.py has "or later" LICENSE="LGPL-3+" @@ -19,12 +21,17 @@ SLOT="0" KEYWORDS="amd64" IUSE="" -DEPEND="sci-mathematics/pari:=" -RDEPEND="${DEPEND}" -BDEPEND=">=dev-python/cython-3.0.0[${PYTHON_USEDEP}]" +DEPEND=" + sci-mathematics/pari:= +" +RDEPEND=" + ${DEPEND} +" +BDEPEND=" + >=dev-python/cython-3.0.0[${PYTHON_USEDEP}] +" python_test(){ - PATH="${BUILD_DIR}/scripts:${PATH}" \ - "${EPYTHON}" -B "${S}"/rundoctests.py \ - "${S}"/src/cysignals/*.pyx || die + local -x PATH="${BUILD_DIR}/scripts:${PATH}" + "${EPYTHON}" -B rundoctests.py src/cysignals/*.pyx || die }