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 CE5FF158090 for ; Thu, 12 May 2022 16:17:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7D508E095D; Thu, 12 May 2022 16:17:14 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 60227E095D for ; Thu, 12 May 2022 16:17:14 +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 96C50340F8A for ; Thu, 12 May 2022 16:17:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 97DDE46D for ; Thu, 12 May 2022 16:17:10 +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: <1652372224.66ec0aa47ac2014634d79f1f518401920a7a7f19.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/hpack/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/hpack/hpack-3.0.0-r1.ebuild 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: 66ec0aa47ac2014634d79f1f518401920a7a7f19 X-VCS-Branch: master Date: Thu, 12 May 2022 16:17:10 +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: b78aac5c-253b-4625-8b00-59220a44024e X-Archives-Hash: ff7ebfc0d9be2723c9e792eef47c6e52 commit: 66ec0aa47ac2014634d79f1f518401920a7a7f19 Author: Michał Górny gentoo org> AuthorDate: Thu May 12 15:41:24 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu May 12 16:17:04 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66ec0aa4 dev-python/hpack: EAPI 8, PEP517 Signed-off-by: Michał Górny gentoo.org> .../{hpack-4.0.0-r1.ebuild => hpack-3.0.0-r1.ebuild} | 18 ++++++++++++++++-- dev-python/hpack/hpack-4.0.0-r1.ebuild | 3 ++- 2 files changed, 18 insertions(+), 3 deletions(-) diff --git a/dev-python/hpack/hpack-4.0.0-r1.ebuild b/dev-python/hpack/hpack-3.0.0-r1.ebuild similarity index 64% copy from dev-python/hpack/hpack-4.0.0-r1.ebuild copy to dev-python/hpack/hpack-3.0.0-r1.ebuild index e13be709b52f..22154a1a396e 100644 --- a/dev-python/hpack/hpack-4.0.0-r1.ebuild +++ b/dev-python/hpack/hpack-3.0.0-r1.ebuild @@ -12,12 +12,13 @@ DESCRIPTION="Pure-Python HPACK header compression" HOMEPAGE=" https://python-hyper.org/projects/hpack/en/latest/ https://github.com/python-hyper/hpack/ - https://pypi.org/project/hpack/" + https://pypi.org/project/hpack/ +" SRC_URI="https://github.com/python-hyper/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" # dev-python/pytest-relaxed causes tests to fail BDEPEND=" @@ -28,3 +29,16 @@ BDEPEND=" " distutils_enable_tests pytest + +PATCHES=( + "${FILESDIR}"/hpack-3.0.0-hypothesis-healthcheck.patch +) + +EPYTEST_DESELECT=( + # relies on outdated exception strings + test/test_table.py::TestHeaderTable::test_get_by_index_out_of_range +) + +EPYTEST_IGNORE=( + bench +) diff --git a/dev-python/hpack/hpack-4.0.0-r1.ebuild b/dev-python/hpack/hpack-4.0.0-r1.ebuild index e13be709b52f..3e28dbdeb984 100644 --- a/dev-python/hpack/hpack-4.0.0-r1.ebuild +++ b/dev-python/hpack/hpack-4.0.0-r1.ebuild @@ -12,7 +12,8 @@ DESCRIPTION="Pure-Python HPACK header compression" HOMEPAGE=" https://python-hyper.org/projects/hpack/en/latest/ https://github.com/python-hyper/hpack/ - https://pypi.org/project/hpack/" + https://pypi.org/project/hpack/ +" SRC_URI="https://github.com/python-hyper/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MIT"