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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 53622139335 for ; Sun, 27 Jun 2021 14:20:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 91056E08F3; Sun, 27 Jun 2021 14:20:46 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6FA8CE08F3 for ; Sun, 27 Jun 2021 14:20:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0A3C1340A2B for ; Sun, 27 Jun 2021 14:20:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 92A087AF for ; Sun, 27 Jun 2021 14:20:43 +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: <1624803534.dc00b5bcb48a55e82d67e979e1ef908b0512955c.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/priority/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/priority/Manifest dev-python/priority/priority-2.0.0.ebuild X-VCS-Directories: dev-python/priority/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: dc00b5bcb48a55e82d67e979e1ef908b0512955c X-VCS-Branch: master Date: Sun, 27 Jun 2021 14:20:43 +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: 55ed21e8-0310-48be-ade7-1c0ad0f21090 X-Archives-Hash: 3bc12c3480c98c371a08843f7c09e047 commit: dc00b5bcb48a55e82d67e979e1ef908b0512955c Author: Michał Górny gentoo org> AuthorDate: Sun Jun 27 14:09:04 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Jun 27 14:18:54 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc00b5bc dev-python/priority: Bump to 2.0.0 Signed-off-by: Michał Górny gentoo.org> dev-python/priority/Manifest | 1 + dev-python/priority/priority-2.0.0.ebuild | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/dev-python/priority/Manifest b/dev-python/priority/Manifest index 4af93851557..87b0b1dd977 100644 --- a/dev-python/priority/Manifest +++ b/dev-python/priority/Manifest @@ -1 +1,2 @@ DIST priority-1.3.0.tar.gz 13827 BLAKE2B 8c100eb44ed42f4f624bfb37dd6f698a3da84812783bd44ba82afef565562379a7677b3cbc9e16c4ea5a5dcc91d0897fa47c341a81bc1875461a72aff328fcff SHA512 cefb13b15e99ef98c37fdd1486466c9e1d7d04b4574cbca1665fde7b7b44cc7d66964bed41184315a9b51bd6f9d0e02bbe113bfa004a754ac270170309b71e0a +DIST priority-2.0.0.tar.gz 24792 BLAKE2B c230f74aba3153edafba4bf85965a726ac3d3f5e2293d7c496b65fda260722cc44e4582666eee9d715e0d0686695434f8e0cbbd089c105bb45b777bf6eb4d72c SHA512 f90648a3ff1ee4131f30e99ecd8c36110abf484733f507edefcede8fdcb9ec3a618b9278e85724855709f41facee438061e4c5cae201b6e916c22f4a451db575 diff --git a/dev-python/priority/priority-2.0.0.ebuild b/dev-python/priority/priority-2.0.0.ebuild new file mode 100644 index 00000000000..ddf8d8fde3d --- /dev/null +++ b/dev-python/priority/priority-2.0.0.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="A pure-Python implementation of the HTTP/2 priority tree" +HOMEPAGE="https://python-hyper.org/priority/en/latest/ + https://github.com/python-hyper/priority + https://pypi.org/project/priority/" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" + +BDEPEND=" + test? ( >=dev-python/hypothesis-3.4.2[${PYTHON_USEDEP}] ) +" + +distutils_enable_tests pytest