diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2022-10-24 16:21:18 +0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2022-10-24 09:56:34 -0700 |
| commit | 940e750b826752f74ba6ed668573397aabe7eff9 (patch) | |
| tree | 20d97e66f6a94d246e3500d88533e7afc92cac98 /meta-python/recipes-devtools/python/python3-socketio_5.7.2.bb | |
| parent | 528bc40faee53872aabfba67eced41eff89b463f (diff) | |
| download | meta-openembedded-940e750b826752f74ba6ed668573397aabe7eff9.tar.gz | |
python3-socketio: upgrade 5.7.1 -> 5.7.2
Changelog:
==========
Fixed disconnect implementation when using a message queue #1002 (commit)
Fixed remote async disconnects via message queue #1003 (commit)
Support optional payloads in msgpack implementation #981 (commit) (thanks Cromfel!)
Recommend ASGI integration for Sanic in Documentation (commit)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-socketio_5.7.2.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-socketio_5.7.2.bb | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-socketio_5.7.2.bb b/meta-python/recipes-devtools/python/python3-socketio_5.7.2.bb new file mode 100644 index 0000000000..bfc5437349 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-socketio_5.7.2.bb | |||
| @@ -0,0 +1,28 @@ | |||
| 1 | SUMMARY = "Socket.IO server" | ||
| 2 | HOMEPAGE = "https://github.com/miguelgrinberg/python-socketio/" | ||
| 3 | SECTION = "devel/python" | ||
| 4 | |||
| 5 | LICENSE = "MIT" | ||
| 6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=42d0a9e728978f0eeb759c3be91536b8" | ||
| 7 | |||
| 8 | inherit pypi python_setuptools_build_meta | ||
| 9 | |||
| 10 | PYPI_PACKAGE = "python-socketio" | ||
| 11 | |||
| 12 | SRC_URI[sha256sum] = "92395062d9db3c13d30e7cdedaa0e1330bba78505645db695415f9a3c628d097" | ||
| 13 | |||
| 14 | PACKAGECONFIG ?= "asyncio_client client" | ||
| 15 | PACKAGECONFIG[asyncio_client] = ",,,${PYTHON_PN}-aiohttp ${PYTHON_PN}-websockets" | ||
| 16 | PACKAGECONFIG[client] = ",,,${PYTHON_PN}-requests ${PYTHON_PN}-websocket-client" | ||
| 17 | |||
| 18 | RDEPENDS:${PN} += "\ | ||
| 19 | ${PYTHON_PN}-engineio \ | ||
| 20 | ${PYTHON_PN}-logging \ | ||
| 21 | ${PYTHON_PN}-math \ | ||
| 22 | ${PYTHON_PN}-pickle \ | ||
| 23 | ${PYTHON_PN}-json \ | ||
| 24 | ${PYTHON_PN}-threading \ | ||
| 25 | ${PYTHON_PN}-six \ | ||
| 26 | ${PYTHON_PN}-attrs \ | ||
| 27 | ${PYTHON_PN}-bidict \ | ||
| 28 | " | ||
