mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

Option to disable the SIGINT handler in the client Do not invoke reserved events on a catch-all handler Use correct binary packet types in the msgpack packet encoder Add missing call() method to namespace classes Add missing to argument to namespace emit() and send() methods Configure Redis pubsub to skip subscription message Migrate async Redis client manager to aioredis 2 Update Python supported versions in docs Document how to get the connection state in the client Improved documentation of start_background_task() function Improved documentation of call() method Fixed intermittent test failures Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
29 lines
822 B
BlitzBasic
29 lines
822 B
BlitzBasic
SUMMARY = "Socket.IO server"
|
|
HOMEPAGE = "https://github.com/miguelgrinberg/python-socketio/"
|
|
SECTION = "devel/python"
|
|
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=42d0a9e728978f0eeb759c3be91536b8"
|
|
|
|
inherit pypi setuptools3
|
|
|
|
PYPI_PACKAGE = "python-socketio"
|
|
|
|
SRC_URI[sha256sum] = "ce972ea1b82aa1811fa10d30cf0d5c251b9a1558c3d66829b6fe70854bcccf0b"
|
|
|
|
PACKAGECONFIG ?= "asyncio_client client"
|
|
PACKAGECONFIG[asyncio_client] = ",,,${PYTHON_PN}-aiohttp ${PYTHON_PN}-websockets"
|
|
PACKAGECONFIG[client] = ",,,${PYTHON_PN}-requests ${PYTHON_PN}-websocket-client"
|
|
|
|
RDEPENDS:${PN} += "\
|
|
${PYTHON_PN}-engineio \
|
|
${PYTHON_PN}-logging \
|
|
${PYTHON_PN}-math \
|
|
${PYTHON_PN}-pickle \
|
|
${PYTHON_PN}-json \
|
|
${PYTHON_PN}-threading \
|
|
${PYTHON_PN}-six \
|
|
${PYTHON_PN}-attrs \
|
|
${PYTHON_PN}-bidict \
|
|
"
|