Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/gevent/
Date: Wed, 29 Nov 2017 20:13:58
Message-Id: 1511986427.9109de0cc31d614883560ad2b63ddb1ae30e19de.zmedico@gentoo
1 commit: 9109de0cc31d614883560ad2b63ddb1ae30e19de
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 29 20:07:16 2017 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 29 20:13:47 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9109de0c
7
8 dev-python/gevent: version bump to 1.2.2
9
10 Package-Manager: Portage-2.3.16, Repoman-2.3.6
11
12 dev-python/gevent/Manifest | 1 +
13 dev-python/gevent/gevent-1.2.2.ebuild | 73 +++++++++++++++++++++++++++++++++++
14 2 files changed, 74 insertions(+)
15
16 diff --git a/dev-python/gevent/Manifest b/dev-python/gevent/Manifest
17 index f691bc2a516..f04ee6d9ec2 100644
18 --- a/dev-python/gevent/Manifest
19 +++ b/dev-python/gevent/Manifest
20 @@ -1,2 +1,3 @@
21 DIST gevent-1.0.1.tar.gz 1455636 SHA256 4627e215d058f71d95e6b26d9e7be4c263788a4756bd2858a93775f6c072df43 SHA512 4790e06b49536ad15856cf551c7ad4d717be2ceda8bc7d39fc35a0132d21f302e033f3294da426be4f6c0476554163776e5ffd82d89962503a720c453ff96461 WHIRLPOOL a1d552f89e9d3db1720fd0db1dbfb6ffc7ed4db87ee5816e5c44843f3c5bba9afbfc21ab2cfcf5bfc84ea70fea3caf6f8fbdbc2807c868b27105bce7e58d6290
22 DIST gevent-1.2.1.tar.gz 2808619 BLAKE2B 2e3c15adb33401012951f0f93fe7f17c1c7597bb4021a4a9ebc7ecae390565d9892bb2fffe9cdac4f7e207d97d50da5d335ed8e42070d67d6be617cf955eb0b4 SHA512 22740e8e114869c1f53bcfd6796226927a3a726d4fd49d104b947f0c97546c7490eabea98b4492db794e21d26d0aee85f1e40b01d386a47063b042a719e61726
23 +DIST gevent-1.2.2.tar.gz 3108671 BLAKE2B f80df00f58ae2f65aa7f65fc9eac5cbf63a0084f24ccebc71ba9bafba72cd48fff2e7d0b1d8de7939dc669d7708e120fc14077cc845fe3ce212d6a80a42b5158 SHA512 1e2dd544cffea62ee32de2e4066b3f4c121058a1211b89da281ec3882f3763217fe2d346ce38b66e27df9f59cfe05bb137d1608a681dd10eaf06a33dc22f531c
24
25 diff --git a/dev-python/gevent/gevent-1.2.2.ebuild b/dev-python/gevent/gevent-1.2.2.ebuild
26 new file mode 100644
27 index 00000000000..bb595bf37c2
28 --- /dev/null
29 +++ b/dev-python/gevent/gevent-1.2.2.ebuild
30 @@ -0,0 +1,73 @@
31 +# Copyright 1999-2017 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +# http://www.gevent.org/whatsnew_1_1.html#broader-platform-support
37 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy )
38 +PYTHON_REQ_USE="ssl(+),threads(+)"
39 +
40 +inherit distutils-r1 flag-o-matic
41 +
42 +MY_PV=${PV/_beta/b}
43 +MY_P=${PN}-${MY_PV}
44 +
45 +DESCRIPTION="Coroutine-based network library"
46 +HOMEPAGE="http://gevent.org/ https://pypi.python.org/pypi/gevent/"
47 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
48 +
49 +LICENSE="MIT"
50 +SLOT="0"
51 +KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
52 +IUSE="doc examples"
53 +
54 +RDEPEND="
55 + >=dev-libs/libev-4.23
56 + >=net-dns/c-ares-1.12
57 + >=dev-python/greenlet-0.4.10
58 + virtual/python-greenlet[${PYTHON_USEDEP}]"
59 +DEPEND="${RDEPEND}
60 + dev-python/setuptools[${PYTHON_USEDEP}]
61 + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
62 +
63 +# Tests take long and fail terribly a few times.
64 +# It also seems that they require network access.
65 +RESTRICT="test"
66 +
67 +S=${WORKDIR}/${MY_P}
68 +
69 +python_prepare_all() {
70 + export LIBEV_EMBED="false"
71 + export CARES_EMBED="false"
72 + export EMBED="false"
73 +
74 + distutils-r1_python_prepare_all
75 +}
76 +
77 +python_configure_all() {
78 + append-flags -fno-strict-aliasing
79 +}
80 +
81 +python_compile_all() {
82 + use doc && emake -C doc html
83 +}
84 +
85 +python_test() {
86 + cd src/greentest || die
87 +
88 + GEVENT_RESOLVER=thread \
89 + "${PYTHON}" testrunner.py --config known_failures.py || die
90 + GEVENT_RESOLVER=ares GEVENTARES_SERVERS=8.8.8.8 \
91 + "${PYTHON}" testrunner.py --config known_failures.py \
92 + --ignore tests_that_dont_use_resolver.txt || die
93 + GEVENT_FILE=thread \
94 + "${PYTHON}" testrunner.py --config known_failures.py $(grep -l subprocess test_*.py) || die
95 +}
96 +
97 +python_install_all() {
98 + local DOCS=( AUTHORS README.rst )
99 + use doc && local HTML_DOCS=( doc/_build/html/. )
100 + use examples && dodoc -r examples
101 +
102 + distutils-r1_python_install_all
103 +}