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 8F030158010 for ; Fri, 17 Feb 2023 07:15:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 87B34E0870; Fri, 17 Feb 2023 07:15:30 +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 6C11FE0870 for ; Fri, 17 Feb 2023 07:15:30 +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 60EFD33C1EB for ; Fri, 17 Feb 2023 07:15:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 99C7C8B4 for ; Fri, 17 Feb 2023 07:15:27 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1676616492.4e235452fc9388905dccaf72f24c3f3ee0c07d02.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/semver/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/semver/Manifest dev-python/semver/semver-2.13.0-r1.ebuild dev-python/semver/semver-2.13.0.ebuild X-VCS-Directories: dev-python/semver/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 4e235452fc9388905dccaf72f24c3f3ee0c07d02 X-VCS-Branch: master Date: Fri, 17 Feb 2023 07:15:27 +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: 2420411a-6cd6-4c34-a4c0-1840f38dd96f X-Archives-Hash: 9a7a594ba88d9aae6f3cea6287012501 commit: 4e235452fc9388905dccaf72f24c3f3ee0c07d02 Author: Sam James gentoo org> AuthorDate: Fri Feb 17 06:36:51 2023 +0000 Commit: Sam James gentoo org> CommitDate: Fri Feb 17 06:48:12 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e235452 dev-python/semver: enable py3.11, PEP517 Signed-off-by: Sam James gentoo.org> dev-python/semver/Manifest | 2 +- .../semver/{semver-2.13.0.ebuild => semver-2.13.0-r1.ebuild} | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/dev-python/semver/Manifest b/dev-python/semver/Manifest index 83bf711cc293..fcb567acb5f3 100644 --- a/dev-python/semver/Manifest +++ b/dev-python/semver/Manifest @@ -1 +1 @@ -DIST semver-2.13.0.tar.gz 43674 BLAKE2B 35d0ca0b61836d0e6deb97f067a0c1cbba310dde6eb83d78f02f85c3f7485114ad549559d572d4494aa7c4444c7d6feabcb36394561a238489d56bfd04ed8590 SHA512 ca0d408d8bb7305e90802ea04d935cd7b76b8f166a9ec97ed3427dbc2cf60eeca0b2d27ad0cb2f15f32f5b2589d6717a63717c463183374c5335bf79e1eec222 +DIST semver-2.13.0.gh.tar.gz 43674 BLAKE2B 35d0ca0b61836d0e6deb97f067a0c1cbba310dde6eb83d78f02f85c3f7485114ad549559d572d4494aa7c4444c7d6feabcb36394561a238489d56bfd04ed8590 SHA512 ca0d408d8bb7305e90802ea04d935cd7b76b8f166a9ec97ed3427dbc2cf60eeca0b2d27ad0cb2f15f32f5b2589d6717a63717c463183374c5335bf79e1eec222 diff --git a/dev-python/semver/semver-2.13.0.ebuild b/dev-python/semver/semver-2.13.0-r1.ebuild similarity index 83% rename from dev-python/semver/semver-2.13.0.ebuild rename to dev-python/semver/semver-2.13.0-r1.ebuild index df1afc006d40..f534300fab4d 100644 --- a/dev-python/semver/semver-2.13.0.ebuild +++ b/dev-python/semver/semver-2.13.0-r1.ebuild @@ -1,14 +1,15 @@ # Copyright 2019-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 -PYTHON_COMPAT=( pypy3 python3_{9..10} ) +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( pypy3 python3_{9..11} ) inherit distutils-r1 DESCRIPTION="A Python module for semantic versioning" HOMEPAGE="https://github.com/python-semver/python-semver" -SRC_URI="https://github.com/python-${PN}/python-${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +SRC_URI="https://github.com/python-${PN}/python-${PN}/archive/${PV}.tar.gz -> ${P}.gh.tar.gz" S="${WORKDIR}/python-${P}" LICENSE="BSD"