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 82FFA1581C1 for ; Fri, 12 Jul 2024 06:56:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 856232BC138; Fri, 12 Jul 2024 06:56:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 67FCB2BC138 for ; Fri, 12 Jul 2024 06:56:11 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B20F633BEE8 for ; Fri, 12 Jul 2024 06:56:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3477D1E15 for ; Fri, 12 Jul 2024 06:56:08 +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: <1720767359.6dd5fcb8b8f5c033cf1e77eb68d4c6df8e34107b.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/xml2rfc/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/xml2rfc/xml2rfc-3.18.0.ebuild X-VCS-Directories: app-text/xml2rfc/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 6dd5fcb8b8f5c033cf1e77eb68d4c6df8e34107b X-VCS-Branch: master Date: Fri, 12 Jul 2024 06:56:08 +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: 13b6e3db-c18a-4b05-aff5-8633288af2e6 X-Archives-Hash: ed810a6b20ba764477a9ed6a0fe95b7c commit: 6dd5fcb8b8f5c033cf1e77eb68d4c6df8e34107b Author: Michał Górny gentoo org> AuthorDate: Fri Jul 12 06:53:13 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Jul 12 06:55:59 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6dd5fcb8 app-text/xml2rfc: Enable py3.13 Signed-off-by: Michał Górny gentoo.org> app-text/xml2rfc/xml2rfc-3.18.0.ebuild | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/app-text/xml2rfc/xml2rfc-3.18.0.ebuild b/app-text/xml2rfc/xml2rfc-3.18.0.ebuild index de4584d36aff..e0e2305fe1cf 100644 --- a/app-text/xml2rfc/xml2rfc-3.18.0.ebuild +++ b/app-text/xml2rfc/xml2rfc-3.18.0.ebuild @@ -4,13 +4,20 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{10..12} ) +PYTHON_COMPAT=( python3_{10..13} ) inherit distutils-r1 DESCRIPTION="Generates RFCs and IETF drafts from document source in XML" -HOMEPAGE="https://ietf-tools.github.io/xml2rfc/ https://github.com/ietf-tools/xml2rfc" -SRC_URI="https://github.com/ietf-tools/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz" +HOMEPAGE=" + https://ietf-tools.github.io/xml2rfc/ + https://github.com/ietf-tools/xml2rfc/ + https://pypi.org/project/xml2rfc/ +" +SRC_URI=" + https://github.com/ietf-tools/xml2rfc/archive/refs/tags/v${PV}.tar.gz + -> ${P}.gh.tar.gz +" RESTRICT="!test? ( test )" LICENSE="BSD"