Gentoo Archives: gentoo-commits

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