From 46762a68016cd06be0d7124c34efb3d9cfccbe0e Mon Sep 17 00:00:00 2001 From: Wang Mingyu Date: Tue, 26 Nov 2024 09:29:58 +0800 Subject: python3-websockets: upgrade 14.0 -> 14.1 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 Signed-off-by: Richard Purdie --- meta/recipes-devtools/python/python3-websockets_14.0.bb | 15 --------------- meta/recipes-devtools/python/python3-websockets_14.1.bb | 15 +++++++++++++++ 2 files changed, 15 insertions(+), 15 deletions(-) delete mode 100644 meta/recipes-devtools/python/python3-websockets_14.0.bb create mode 100644 meta/recipes-devtools/python/python3-websockets_14.1.bb (limited to 'meta/recipes-devtools/python') diff --git a/meta/recipes-devtools/python/python3-websockets_14.0.bb b/meta/recipes-devtools/python/python3-websockets_14.0.bb deleted file mode 100644 index 00c6109864..0000000000 --- a/meta/recipes-devtools/python/python3-websockets_14.0.bb +++ /dev/null @@ -1,15 +0,0 @@ -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] = "be90aa6dab180fed523c0c10a6729ad16c9ba79067402d01a4d8aa7ce48d4084" - -BBCLASSEXTEND = "native nativesdk" - -RDEPENDS:${PN} = " \ - python3-asyncio \ -" diff --git a/meta/recipes-devtools/python/python3-websockets_14.1.bb b/meta/recipes-devtools/python/python3-websockets_14.1.bb new file mode 100644 index 0000000000..ead833a2ac --- /dev/null +++ b/meta/recipes-devtools/python/python3-websockets_14.1.bb @@ -0,0 +1,15 @@ +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 \ +" -- cgit v1.2.3-54-g00ecf