Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/gevent/
Date: Wed, 22 Sep 2021 06:51:18
Message-Id: 1632293458.9e1319859536445a340b1ebda54ea9a8b8b33173.arthurzam@gentoo
1 commit: 9e1319859536445a340b1ebda54ea9a8b8b33173
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 22 06:48:36 2021 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 22 06:50:58 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e131985
7
8 dev-python/gevent: add 21.8.0
9
10 remove events USE flag as upstream use it unconditionally and it
11 isn't optional dependency anymore
12
13 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
14
15 dev-python/gevent/Manifest | 1 +
16 dev-python/gevent/gevent-21.8.0.ebuild | 88 ++++++++++++++++++++++++++++++++++
17 2 files changed, 89 insertions(+)
18
19 diff --git a/dev-python/gevent/Manifest b/dev-python/gevent/Manifest
20 index cbc3cd64ece..c55adeb8320 100644
21 --- a/dev-python/gevent/Manifest
22 +++ b/dev-python/gevent/Manifest
23 @@ -1 +1,2 @@
24 DIST gevent-21.1.2.tar.gz 5943652 BLAKE2B ef85e9941a8e46370437a34728c012f9d8976b5680b22bf9b13ab35d7417019ac0e85fac5cfc8632972e38a2f70028a00ba3fe9f8be11aa2ff64e364052da594 SHA512 1ee2b748a97fa40f67ad2c3b83c6b9f48dbfaae9f2b4f1c118919cfd642c1ca27de0e33a00d950f003f90131354b56a4868ce3051864dbe2ea9b7f22eeafc1eb
25 +DIST gevent-21.8.0.tar.gz 6162938 BLAKE2B f24770cdbf229d4a4ebe7e6c102c43ab0c89a52389ada40c8abaf032eada323333ca9ac965c65d335d96d69c97cdc239e193dd5a38076c81a2f3c80daa13b339 SHA512 dae95f986530e79b07a0006f6fb4cbd3911ac0bf2e58c4896ee5fa6d2e2a9ed5785c346958ee23cd57c2dcafb0a34c585b1f6375a29fd653e061a382482fc9fb
26
27 diff --git a/dev-python/gevent/gevent-21.8.0.ebuild b/dev-python/gevent/gevent-21.8.0.ebuild
28 new file mode 100644
29 index 00000000000..58a9248de6b
30 --- /dev/null
31 +++ b/dev-python/gevent/gevent-21.8.0.ebuild
32 @@ -0,0 +1,88 @@
33 +# Copyright 1999-2021 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +DISTUTILS_USE_SETUPTOOLS=rdepend
39 +PYTHON_COMPAT=( pypy3 python3_{8..10} )
40 +PYTHON_REQ_USE="ssl(+),threads(+)"
41 +
42 +inherit distutils-r1 flag-o-matic
43 +
44 +DESCRIPTION="Coroutine-based network library"
45 +HOMEPAGE="https://www.gevent.org/ https://pypi.org/project/gevent/"
46 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
47 +
48 +LICENSE="MIT"
49 +SLOT="0"
50 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
51 +IUSE="doc examples test"
52 +RESTRICT="!test? ( test )"
53 +
54 +DEPEND="
55 + >=dev-libs/libev-4.31:=
56 + dev-libs/libuv:=
57 + >=net-dns/c-ares-1.12:=
58 +"
59 +RDEPEND="${DEPEND}
60 + virtual/python-greenlet[${PYTHON_USEDEP}]
61 + dev-python/zope-event[${PYTHON_USEDEP}]
62 + dev-python/zope-interface[${PYTHON_USEDEP}]
63 +"
64 +BDEPEND="
65 + test? (
66 + dev-python/psutil[${PYTHON_USEDEP}]
67 + dev-python/requests[${PYTHON_USEDEP}]
68 + )"
69 +
70 +distutils_enable_sphinx doc
71 +
72 +# Tests take long and fail terribly a few times.
73 +# It also seems that they require network access.
74 +#RESTRICT="test"
75 +
76 +python_prepare_all() {
77 + export LIBEV_EMBED="false"
78 + export CARES_EMBED="false"
79 + export EMBED="false"
80 +
81 + distutils-r1_python_prepare_all
82 +}
83 +
84 +python_configure_all() {
85 + append-flags -fno-strict-aliasing
86 +}
87 +
88 +python_test() {
89 + cd src/gevent/tests || die
90 + # TODO: figure out how to make them work and not hang
91 +# GEVENT_RESOLVER=ares \
92 +# "${EPYTHON}" -m gevent.tests \
93 +# -uall,-network \
94 +# --config known_failures.py \
95 +# --ignore tests_that_dont_use_resolver.txt || die
96 +# GEVENT_RESOLVER=dnspython \
97 +# "${EPYTHON}" -m gevent.tests \
98 +# -uall,-network \
99 +# --config known_failures.py \
100 +# --ignore tests_that_dont_use_resolver.txt || die
101 +# GEVENT_RESOLVER=thread \
102 +# "${EPYTHON}" -m gevent.tests \
103 +# --verbose \
104 +# -uall,-network \
105 +# --config known_failures.py \
106 +# --ignore tests_that_dont_use_resolver.txt || die
107 + GEVENT_FILE=thread \
108 + "${EPYTHON}" -m gevent.tests \
109 + --verbose \
110 + -uall,-network \
111 + --config known_failures.py \
112 + test__*subprocess*.py || die
113 +}
114 +
115 +python_install_all() {
116 + local DOCS=( AUTHORS README.rst )
117 + use examples && dodoc -r examples
118 +
119 + distutils-r1_python_install_all
120 +}