diff options
| author | Leon Anavi <leon.anavi@konsulko.com> | 2020-09-02 14:28:08 +0300 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2020-09-05 13:04:40 -0700 |
| commit | aac74bcb8135a44514821551b1126946f2a30434 (patch) | |
| tree | 5ead1d8b42b1481e398d6a7f26bd0ed3b4f980f6 /meta-python/recipes-devtools/python/python3-gevent_20.6.2.bb | |
| parent | a425609f8bddc22c74216b4d613492c25b0970c7 (diff) | |
| download | meta-openembedded-aac74bcb8135a44514821551b1126946f2a30434.tar.gz | |
python3-gevent: Upgrade 1.4.0 -> 20.6.2
Upgrade to release 20.6.2:
- It is now possible to build and use the embedded libuv on a
Cygwin platform.
- Bug fix: relax the version constraint for psutil on PyPy.
- The include directories used to compile the C extensions have
been tweaked with the intent of making it easier to use older
debug versions of Python.
Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-gevent_20.6.2.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-gevent_20.6.2.bb | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-gevent_20.6.2.bb b/meta-python/recipes-devtools/python/python3-gevent_20.6.2.bb new file mode 100644 index 0000000000..dbeb3a60c1 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-gevent_20.6.2.bb | |||
| @@ -0,0 +1,34 @@ | |||
| 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 & BSD" | ||
| 6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=4de99aac27b470c29c6c309e0c279b65 \ | ||
| 7 | file://NOTICE;md5=18108df3583462cafd457f024b9b09b5 \ | ||
| 8 | file://deps/libev/LICENSE;md5=d6ad416afd040c90698edcdf1cbee347 \ | ||
| 9 | " | ||
| 10 | DEPENDS += "libevent" | ||
| 11 | DEPENDS += "${PYTHON_PN}-greenlet" | ||
| 12 | RDEPENDS_${PN} = "${PYTHON_PN}-greenlet \ | ||
| 13 | ${PYTHON_PN}-mime \ | ||
| 14 | ${PYTHON_PN}-pprint \ | ||
| 15 | " | ||
| 16 | |||
| 17 | FILESEXTRAPATHS_prepend := "${THISDIR}/python-gevent:" | ||
| 18 | |||
| 19 | SRC_URI_append = " \ | ||
| 20 | file://libev-conf.patch;patch=1;pnum=1 \ | ||
| 21 | " | ||
| 22 | |||
| 23 | SRC_URI[md5sum] = "27b07fe9fdfff2d75e3d140e890489b1" | ||
| 24 | SRC_URI[sha256sum] = "a23c2abf08e851c988723f6a2996d495f513a2c0dc70f9956af03af8debdb5d1" | ||
| 25 | |||
| 26 | # The python-gevent has no autoreconf ability | ||
| 27 | # and the logic for detecting a cross compile is flawed | ||
| 28 | # so always force a cross compile | ||
| 29 | do_configure_append() { | ||
| 30 | sed -i -e 's/^cross_compiling=no/cross_compiling=yes/' ${S}/deps/libev/configure | ||
| 31 | sed -i -e 's/^cross_compiling=no/cross_compiling=yes/' ${S}/deps/c-ares/configure | ||
| 32 | } | ||
| 33 | |||
| 34 | inherit pypi setuptools3 | ||
