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 6244B158064 for ; Sat, 11 May 2024 11:05:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4949CE2A15; Sat, 11 May 2024 11:05: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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CAD7DE2A14 for ; Sat, 11 May 2024 11:05:35 +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 6F084343085 for ; Sat, 11 May 2024 11:05:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1BAC31AAF for ; Sat, 11 May 2024 11:05:31 +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: <1715425410.3e6342b380bf6630c83c1b533b2fb80ca617f2b9.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/hpack/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/hpack/Manifest dev-python/hpack/hpack-4.0.0-r1.ebuild X-VCS-Directories: dev-python/hpack/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 3e6342b380bf6630c83c1b533b2fb80ca617f2b9 X-VCS-Branch: master Date: Sat, 11 May 2024 11:05:31 +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: ca1cde6b-4cf0-47a7-ad58-58358f129046 X-Archives-Hash: e572f5fa7dc76ce12ef2a782b544ffca commit: 3e6342b380bf6630c83c1b533b2fb80ca617f2b9 Author: Michał Górny gentoo org> AuthorDate: Sat May 11 11:00:54 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat May 11 11:03:30 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e6342b3 dev-python/hpack: Fix distfile name Signed-off-by: Michał Górny gentoo.org> dev-python/hpack/Manifest | 2 +- dev-python/hpack/hpack-4.0.0-r1.ebuild | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/dev-python/hpack/Manifest b/dev-python/hpack/Manifest index 854dd72c0ae9..6b5558390e71 100644 --- a/dev-python/hpack/Manifest +++ b/dev-python/hpack/Manifest @@ -1 +1 @@ -DIST hpack-4.0.0.tar.gz 5301419 BLAKE2B 0164f6aafc0d1f17f6c397efe710503a22501faae3c7dbba4e57ca2dc76e4d373bc5e65bf55acda8bc61975d12f8a2084de0e0c4587539e5a3102e3cf66d562b SHA512 f482d086d7a82649393e3cfea55c98966ce57055cb1826bc4dec1ea334661c02708e7903f2e8e588ee1c30df41373e1de9fb960c2e7bbc18d0ace0b8f97b195b +DIST hpack-4.0.0.gh.tar.gz 5301419 BLAKE2B 0164f6aafc0d1f17f6c397efe710503a22501faae3c7dbba4e57ca2dc76e4d373bc5e65bf55acda8bc61975d12f8a2084de0e0c4587539e5a3102e3cf66d562b SHA512 f482d086d7a82649393e3cfea55c98966ce57055cb1826bc4dec1ea334661c02708e7903f2e8e588ee1c30df41373e1de9fb960c2e7bbc18d0ace0b8f97b195b diff --git a/dev-python/hpack/hpack-4.0.0-r1.ebuild b/dev-python/hpack/hpack-4.0.0-r1.ebuild index f11144f203aa..6f140d78135a 100644 --- a/dev-python/hpack/hpack-4.0.0-r1.ebuild +++ b/dev-python/hpack/hpack-4.0.0-r1.ebuild @@ -14,7 +14,11 @@ HOMEPAGE=" https://github.com/python-hyper/hpack/ https://pypi.org/project/hpack/ " -SRC_URI="https://github.com/python-hyper/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +# PyPI sdist is missing test fixtures, as of 4.0.0 +SRC_URI=" + https://github.com/python-hyper/hpack/archive/v${PV}.tar.gz + -> ${P}.gh.tar.gz +" LICENSE="MIT" SLOT="0"