mirror of
https://git.yoctoproject.org/poky
synced 2026-02-05 16:28:43 +01:00
Changelog: ============ - Supported max_queue=None in the asyncio and threading implementations for consistency with the legacy implementation, even though this is never a good idea. - Added close_code and close_reason attributes in the asyncio and threading implementations for consistency with the legacy implementation. - Once the connection is closed, messages previously received and buffered can be read in the asyncio and threading implementations, just like in the legacy implementation. (From OE-Core rev: b36742c5153873832fbf5fb1788d5c333286a583) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
16 lines
433 B
BlitzBasic
16 lines
433 B
BlitzBasic
SUMMARY = "An implementation of the WebSocket Protocol (RFC 6455)"
|
|
HOMEPAGE = "https://github.com/aaugustin/websockets"
|
|
|
|
LICENSE = "BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=51924a6af4495b8cfaee1b1da869b6f4"
|
|
|
|
inherit pypi python_setuptools_build_meta
|
|
|
|
SRC_URI[sha256sum] = "398b10c77d471c0aab20a845e7a60076b6390bfdaac7a6d2edb0d2c59d75e8d8"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|
|
|
|
RDEPENDS:${PN} = " \
|
|
python3-asyncio \
|
|
"
|