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 07D8F158090 for ; Wed, 11 May 2022 14:33:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7C08CE098F; Wed, 11 May 2022 14:32:45 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 66C83E0986 for ; Wed, 11 May 2022 14:32:45 +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 4E3DA341957 for ; Wed, 11 May 2022 14:32:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 83E55463 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: <1652279512.eba9983b123d8c94ef93c3dcd8f02a3139e07b87.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/strict-rfc3339/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/strict-rfc3339/strict-rfc3339-0.7-r2.ebuild X-VCS-Directories: dev-python/strict-rfc3339/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: eba9983b123d8c94ef93c3dcd8f02a3139e07b87 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: a5d4b2a7-613a-4cd0-b355-39914788d884 X-Archives-Hash: 679bcba304aa6e93b4ee8f88197e0129 commit: eba9983b123d8c94ef93c3dcd8f02a3139e07b87 Author: Michał Górny gentoo org> AuthorDate: Wed May 11 14:10:05 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed May 11 14:31:52 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eba9983b dev-python/strict-rfc3339: Enable py3.11 Signed-off-by: Michał Górny gentoo.org> dev-python/strict-rfc3339/strict-rfc3339-0.7-r2.ebuild | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/dev-python/strict-rfc3339/strict-rfc3339-0.7-r2.ebuild b/dev-python/strict-rfc3339/strict-rfc3339-0.7-r2.ebuild index bc75e01f1faf..128cf024e743 100644 --- a/dev-python/strict-rfc3339/strict-rfc3339-0.7-r2.ebuild +++ b/dev-python/strict-rfc3339/strict-rfc3339-0.7-r2.ebuild @@ -4,14 +4,20 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{8..10} pypy3 ) +PYTHON_COMPAT=( python3_{8..11} pypy3 ) inherit distutils-r1 MY_P="${PN}-version-${PV}" DESCRIPTION="Strict, simple, lightweight RFC3339 functions" -HOMEPAGE="https://pypi.org/project/strict-rfc3339/ https://github.com/danielrichman/strict-rfc3339" -SRC_URI="https://github.com/danielrichman/${PN}/archive/version-${PV}.tar.gz -> ${MY_P}.tar.gz" +HOMEPAGE=" + https://pypi.org/project/strict-rfc3339/ + https://github.com/danielrichman/strict-rfc3339 +" +SRC_URI=" + https://github.com/danielrichman/${PN}/archive/version-${PV}.tar.gz + -> ${MY_P}.tar.gz +" S="${WORKDIR}/${MY_P}" LICENSE="GPL-3+"