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 743FD158090 for ; Wed, 11 May 2022 14:33:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EFAE7E09A7; Wed, 11 May 2022 14:32:47 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 C3A79E09A7 for ; Wed, 11 May 2022 14:32:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 E0B6A341957 for ; Wed, 11 May 2022 14:32:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C0D1D466 for ; Wed, 11 May 2022 14:32:42 +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: <1652279514.3ee918fd9daca7e295e50925c5fc1cf007455cd6.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/rfc3987/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/rfc3987/rfc3987-1.3.8-r2.ebuild X-VCS-Directories: dev-python/rfc3987/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 3ee918fd9daca7e295e50925c5fc1cf007455cd6 X-VCS-Branch: master Date: Wed, 11 May 2022 14:32:42 +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: b9782231-7bb1-4b21-ab4e-235841e15f32 X-Archives-Hash: cfd601ee64bac58e54491b88aa347fc4 commit: 3ee918fd9daca7e295e50925c5fc1cf007455cd6 Author: Michał Górny gentoo org> AuthorDate: Wed May 11 14:14:38 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed May 11 14:31:54 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ee918fd dev-python/rfc3987: Enable py3.11 Signed-off-by: Michał Górny gentoo.org> dev-python/rfc3987/rfc3987-1.3.8-r2.ebuild | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/dev-python/rfc3987/rfc3987-1.3.8-r2.ebuild b/dev-python/rfc3987/rfc3987-1.3.8-r2.ebuild index 2b5665fd53ed..f27e19e1778c 100644 --- a/dev-python/rfc3987/rfc3987-1.3.8-r2.ebuild +++ b/dev-python/rfc3987/rfc3987-1.3.8-r2.ebuild @@ -4,20 +4,28 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{8..10} pypy3 ) +PYTHON_COMPAT=( python3_{8..11} pypy3 ) + inherit distutils-r1 DESCRIPTION="Parsing and validation of URIs (RFC 3986) and IRIs (RFC 3987)" -HOMEPAGE="https://github.com/dgerber/rfc3987 https://pypi.org/project/rfc3987/" +HOMEPAGE=" + https://github.com/dgerber/rfc3987/ + https://pypi.org/project/rfc3987/ +" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="GPL-3" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux" -RDEPEND="dev-python/regex[${PYTHON_USEDEP}]" -DEPEND="${RDEPEND}" +RDEPEND=" + dev-python/regex[${PYTHON_USEDEP}] +" +BDEPEND=" + ${RDEPEND} +" python_test() { - ${EPYTHON} -m doctest -v "${S}/${PN}.py" || die + "${EPYTHON}" -m doctest -v "${S}/${PN}.py" || die }