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 C0261158094 for ; Mon, 29 Aug 2022 10:37:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AA9C4E0809; Mon, 29 Aug 2022 10:37:37 +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 8F6AFE0809 for ; Mon, 29 Aug 2022 10:37:37 +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 87D43340FB2 for ; Mon, 29 Aug 2022 10:37:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DB21C57D for ; Mon, 29 Aug 2022 10:37:34 +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: <1661769199.b4400e0b8c0953829a00f3fae699d0bc2b686c98.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jaraco-collections/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/jaraco-collections/jaraco-collections-3.5.2.ebuild X-VCS-Directories: dev-python/jaraco-collections/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: b4400e0b8c0953829a00f3fae699d0bc2b686c98 X-VCS-Branch: master Date: Mon, 29 Aug 2022 10:37:34 +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: ab351f96-f1e6-45f6-a025-3270c4087e2d X-Archives-Hash: bb03e98936126de779273fc7e501d6f0 commit: b4400e0b8c0953829a00f3fae699d0bc2b686c98 Author: Michał Górny gentoo org> AuthorDate: Mon Aug 29 10:33:19 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Aug 29 10:33:19 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4400e0b dev-python/jaraco-collections: Modernize & cleanup Signed-off-by: Michał Górny gentoo.org> .../jaraco-collections/jaraco-collections-3.5.2.ebuild | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/dev-python/jaraco-collections/jaraco-collections-3.5.2.ebuild b/dev-python/jaraco-collections/jaraco-collections-3.5.2.ebuild index 3962c5c51519..c05bf6e60547 100644 --- a/dev-python/jaraco-collections/jaraco-collections-3.5.2.ebuild +++ b/dev-python/jaraco-collections/jaraco-collections-3.5.2.ebuild @@ -5,13 +5,17 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools PYTHON_COMPAT=( python3_{8..11} pypy3 ) + inherit distutils-r1 -MY_PN="${PN/-/.}" +MY_P=${P/-/.} DESCRIPTION="Models and classes to supplement the stdlib collections module" -HOMEPAGE="https://github.com/jaraco/jaraco.collections" -SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz" -S="${WORKDIR}/${MY_PN}-${PV}" +HOMEPAGE=" + https://github.com/jaraco/jaraco.collections/ + https://pypi.org/project/jaraco.collections/ +" +SRC_URI="mirror://pypi/${PN:0:1}/${PN/-/.}/${MY_P}.tar.gz" +S=${WORKDIR}/${MY_P} LICENSE="MIT" SLOT="0" @@ -25,7 +29,4 @@ BDEPEND=" >=dev-python/setuptools_scm-1.15.0[${PYTHON_USEDEP}] " -distutils_enable_sphinx docs \ - '>=dev-python/jaraco-packaging-3.2' \ - '>=dev-python/rst-linker-1.9' distutils_enable_tests pytest