Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/priority/
Date: Sun, 27 Jun 2021 14:20:47
Message-Id: 1624803534.dc00b5bcb48a55e82d67e979e1ef908b0512955c.mgorny@gentoo
1 commit: dc00b5bcb48a55e82d67e979e1ef908b0512955c
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 27 14:09:04 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 27 14:18:54 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc00b5bc
7
8 dev-python/priority: Bump to 2.0.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/priority/Manifest | 1 +
13 dev-python/priority/priority-2.0.0.ebuild | 24 ++++++++++++++++++++++++
14 2 files changed, 25 insertions(+)
15
16 diff --git a/dev-python/priority/Manifest b/dev-python/priority/Manifest
17 index 4af93851557..87b0b1dd977 100644
18 --- a/dev-python/priority/Manifest
19 +++ b/dev-python/priority/Manifest
20 @@ -1 +1,2 @@
21 DIST priority-1.3.0.tar.gz 13827 BLAKE2B 8c100eb44ed42f4f624bfb37dd6f698a3da84812783bd44ba82afef565562379a7677b3cbc9e16c4ea5a5dcc91d0897fa47c341a81bc1875461a72aff328fcff SHA512 cefb13b15e99ef98c37fdd1486466c9e1d7d04b4574cbca1665fde7b7b44cc7d66964bed41184315a9b51bd6f9d0e02bbe113bfa004a754ac270170309b71e0a
22 +DIST priority-2.0.0.tar.gz 24792 BLAKE2B c230f74aba3153edafba4bf85965a726ac3d3f5e2293d7c496b65fda260722cc44e4582666eee9d715e0d0686695434f8e0cbbd089c105bb45b777bf6eb4d72c SHA512 f90648a3ff1ee4131f30e99ecd8c36110abf484733f507edefcede8fdcb9ec3a618b9278e85724855709f41facee438061e4c5cae201b6e916c22f4a451db575
23
24 diff --git a/dev-python/priority/priority-2.0.0.ebuild b/dev-python/priority/priority-2.0.0.ebuild
25 new file mode 100644
26 index 00000000000..ddf8d8fde3d
27 --- /dev/null
28 +++ b/dev-python/priority/priority-2.0.0.ebuild
29 @@ -0,0 +1,24 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +PYTHON_COMPAT=( python3_{8..10} )
36 +
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="A pure-Python implementation of the HTTP/2 priority tree"
40 +HOMEPAGE="https://python-hyper.org/priority/en/latest/
41 + https://github.com/python-hyper/priority
42 + https://pypi.org/project/priority/"
43 +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
44 +
45 +LICENSE="MIT"
46 +SLOT="0"
47 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
48 +
49 +BDEPEND="
50 + test? ( >=dev-python/hypothesis-3.4.2[${PYTHON_USEDEP}] )
51 +"
52 +
53 +distutils_enable_tests pytest