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 3A62415806E for ; Tue, 23 May 2023 15:42:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 90F40E0957; Tue, 23 May 2023 15:42:19 +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 13A67E0953 for ; Tue, 23 May 2023 15:42:19 +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 F2BE8340ECD for ; Tue, 23 May 2023 15:42:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C726FA68 for ; Tue, 23 May 2023 15:42:14 +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: <1684856528.ae24712194fa30cb64c57d7beb08e6f5ecdb94b5.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyparsing/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyparsing/Manifest dev-python/pyparsing/pyparsing-3.0.9.ebuild X-VCS-Directories: dev-python/pyparsing/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: ae24712194fa30cb64c57d7beb08e6f5ecdb94b5 X-VCS-Branch: master Date: Tue, 23 May 2023 15:42:14 +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: 1b79866f-8fcf-43f2-9a8f-8d3b95ce4c1d X-Archives-Hash: 26d3cb020448306cd797d9c98d83fe07 commit: ae24712194fa30cb64c57d7beb08e6f5ecdb94b5 Author: Michał Górny gentoo org> AuthorDate: Tue May 23 15:40:34 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue May 23 15:42:08 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae247121 dev-python/pyparsing: Fix distfile name Signed-off-by: Michał Górny gentoo.org> dev-python/pyparsing/Manifest | 2 +- dev-python/pyparsing/pyparsing-3.0.9.ebuild | 10 ++++++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/dev-python/pyparsing/Manifest b/dev-python/pyparsing/Manifest index fef86e5a9f4d..27ccb2046679 100644 --- a/dev-python/pyparsing/Manifest +++ b/dev-python/pyparsing/Manifest @@ -1 +1 @@ -DIST pyparsing_3.0.9.tar.gz 967771 BLAKE2B c13c74661b9e0d53b4886c9949b01951d220991f916362a13ce0c32c0ab05a6b1cab4d5e5a626acb7563c0ec1716348ede205cb67bf22c0710904f07404ad82a SHA512 1158f27e31f8eced540217b7234b09005eac416fad74faf59678fdae93fe2f76e0e3b5f4adfd3ceb42c8aef19150950293e989c9a5189741175073eb7a03cd6d +DIST pyparsing_3.0.9.gh.tar.gz 967771 BLAKE2B c13c74661b9e0d53b4886c9949b01951d220991f916362a13ce0c32c0ab05a6b1cab4d5e5a626acb7563c0ec1716348ede205cb67bf22c0710904f07404ad82a SHA512 1158f27e31f8eced540217b7234b09005eac416fad74faf59678fdae93fe2f76e0e3b5f4adfd3ceb42c8aef19150950293e989c9a5189741175073eb7a03cd6d diff --git a/dev-python/pyparsing/pyparsing-3.0.9.ebuild b/dev-python/pyparsing/pyparsing-3.0.9.ebuild index 59e544bafdcf..d45b3f88effb 100644 --- a/dev-python/pyparsing/pyparsing-3.0.9.ebuild +++ b/dev-python/pyparsing/pyparsing-3.0.9.ebuild @@ -11,8 +11,14 @@ inherit distutils-r1 MY_P=${P/-/_} DESCRIPTION="Easy-to-use Python module for text parsing" -HOMEPAGE="https://github.com/pyparsing/pyparsing https://pypi.org/project/pyparsing/" -SRC_URI="https://github.com/${PN}/${PN}/archive/${MY_P}.tar.gz" +HOMEPAGE=" + https://github.com/pyparsing/pyparsing/ + https://pypi.org/project/pyparsing/ +" +SRC_URI=" + https://github.com/pyparsing/pyparsing/archive/${MY_P}.tar.gz + -> ${MY_P}.gh.tar.gz +" S="${WORKDIR}/${PN}-${MY_P}" LICENSE="MIT"