Gentoo Archives: gentoo-commits

From: Brian Dolbec <dolsen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/priority/
Date: Fri, 28 Oct 2016 01:27:21
Message-Id: 1477618017.c0462ef2b84eba0afac3c2f7b261ba22e73b0f0b.dolsen@gentoo
1 commit: c0462ef2b84eba0afac3c2f7b261ba22e73b0f0b
2 Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 27 23:50:34 2016 +0000
4 Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 28 01:26:57 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0462ef2
7
8 dev-python/priority: Version bump
9
10 Package-Manager: portage-2.3.2_p3
11
12 dev-python/priority/Manifest | 1 +
13 dev-python/priority/priority-1.2.1.ebuild | 33 +++++++++++++++++++++++++++++++
14 2 files changed, 34 insertions(+)
15
16 diff --git a/dev-python/priority/Manifest b/dev-python/priority/Manifest
17 index f15a8e2..2c306d7 100644
18 --- a/dev-python/priority/Manifest
19 +++ b/dev-python/priority/Manifest
20 @@ -1 +1,2 @@
21 DIST priority-1.2.0.tar.gz 12064 SHA256 70468e7f43c4bb19cd966d63f78367d8c5af68828611aa3f3e5d77b8948cd2d4 SHA512 00cac802a7d4a6960e71d6d5552c2649becb07e9bd124421b8a391f3681ecdfcc4928725cfffe1011143789b75b8660bd178dbef1f7ebfadd25057d9d7f22dee WHIRLPOOL b1a2d5d9f64e22f341d6ee8f0e0dc43e4fdd2cebb0330ff186be12dbf3e676a20e17b1e27dae1eb7679e6debffaed92eeb2cc88f45fc8180bbc13cca8df2b7e4
22 +DIST priority-1.2.1.tar.gz 12558 SHA256 21e3b5a3b64cda106556023c9ac1223a026a45252536dd33b992a35e557280a4 SHA512 f396ffddcb574fc9e672f2211c39aa2643ab66953c2c3fb2d1b21b1714d48fcca2a2b122c703d6a684ebdc829253c6b42e4cfb935b1caa43e18d1c6d5b7912cb WHIRLPOOL a4d1032fde4cf41d4709eda56a8b18a5fb896e0ce25d392d0fa7613078223c294e4f181a0a1aa59acaa8e68cb50045d305ccd81411c7c9ef2e3d114d6c4e9795
23
24 diff --git a/dev-python/priority/priority-1.2.1.ebuild b/dev-python/priority/priority-1.2.1.ebuild
25 new file mode 100644
26 index 00000000..e7b9d0d
27 --- /dev/null
28 +++ b/dev-python/priority/priority-1.2.1.ebuild
29 @@ -0,0 +1,33 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=6
35 +PYTHON_COMPAT=( python2_7 python3_{4,5} pypy)
36 +
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="A pure-Python implementation of the HTTP/2 priority tree"
40 +HOMEPAGE="http://python-hyper.org/priority https://github.com/python-hyper/priority https://pypi.python.org/pypi/priority"
41 +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
42 +
43 +LICENSE="MIT"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86"
46 +IUSE="test"
47 +
48 +RDEPEND=""
49 +
50 +DEPEND="
51 + test? (
52 + >=dev-python/pytest-2.9.2[${PYTHON_USEDEP}]
53 + >=dev-python/pytest-cov-2.3.0[${PYTHON_USEDEP}]
54 + >=dev-python/pytest-xdist-1.14.0[${PYTHON_USEDEP}]
55 + >=dev-python/hypothesis-3.4.2[${PYTHON_USEDEP}]
56 + )
57 +"
58 +
59 +python_test() {
60 + PYTHONPATH="${S}/test:${BUILD_DIR}/lib" py.test -v || die "Tests failed under ${EPYTHON}"
61 + cd test
62 +}