diff options
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-gevent_24.2.1.bb')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-gevent_24.2.1.bb | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/meta-python/recipes-devtools/python/python3-gevent_24.2.1.bb b/meta-python/recipes-devtools/python/python3-gevent_24.2.1.bb deleted file mode 100644 index 0a74f52820..0000000000 --- a/meta-python/recipes-devtools/python/python3-gevent_24.2.1.bb +++ /dev/null | |||
@@ -1,38 +0,0 @@ | |||
1 | SUMMARY = "A coroutine-based Python networking library" | ||
2 | DESCRIPTION = "gevent is a coroutine-based Python networking library that uses greenlet to provide \ | ||
3 | a high-level synchronous API on top of the libevent event loop." | ||
4 | HOMEPAGE = "http://www.gevent.org" | ||
5 | LICENSE = "MIT & Python-2.0" | ||
6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=4de99aac27b470c29c6c309e0c279b65" | ||
7 | DEPENDS += "python3-greenlet libev libuv c-ares python3-cython-native" | ||
8 | |||
9 | RDEPENDS:${PN} = "python3-greenlet \ | ||
10 | python3-mime \ | ||
11 | python3-pprint \ | ||
12 | python3-zopeevent \ | ||
13 | python3-zopeinterface \ | ||
14 | " | ||
15 | |||
16 | SRC_URI += "file://0001-_setuputils.py-Do-not-add-sys_inc_dir.patch \ | ||
17 | file://not-final.patch" | ||
18 | |||
19 | SRC_URI[sha256sum] = "432fc76f680acf7cf188c2ee0f5d3ab73b63c1f03114c7cd8a34cebbe5aa2056" | ||
20 | |||
21 | inherit pypi setuptools3 | ||
22 | |||
23 | # Don't embed libraries, link to the system provided libs instead | ||
24 | export GEVENTSETUP_EMBED_CARES = "0" | ||
25 | export GEVENTSETUP_EMBED_LIBEV = "0" | ||
26 | export GEVENTSETUP_EMBED_LIBUV = "0" | ||
27 | |||
28 | do_configure:append() { | ||
29 | # Delete the embedded copies of libraries so we can't accidentally link to them | ||
30 | rm -rf ${S}/deps | ||
31 | |||
32 | # Delete the generated cython files, as they are all out of date with python 3.11 | ||
33 | rm -rf ${S}/src/gevent/*.c | ||
34 | } | ||
35 | |||
36 | do_compile:append() { | ||
37 | sed -i -e 's#${WORKDIR}##g' ${S}/src/gevent/*.c ${S}/src/gevent/libev/*.c ${S}/src/gevent/resolver/*.c | ||
38 | } | ||