mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-10 02:17:36 +00:00
b323e486bc
Changelog: ============= - Fix exception leaks - MsgpackSerializer.loadsCall: honor ext_hook (symmetric with loads) - Fixed slow locate_ns() on Windows: skipped reverse DNS lookup of 127.0.1.1 which caused 5+ second delays due to DNS timeout. - Fixed exception leaks in message handling - Fixed GC issue with daemon property - Fixed thread race condition in nameserver remove() - Fixed possible resource leaks in client - Fixed IPv6 NAT port parse error in server - Fixed crash related to None environment variable handling - Fixed a deadlock scenario when using multiple proxies with different daemon connections - Improved logging performance by avoiding eager string formatting - Gracefully handle unreachable network in ip address resolution fallback - Fixed potential socket leak from broadcast discovery when nameserver is unreachable - Added extra message protocol validation for robustness - Fixed nameserver metadata lookup returning incorrect results for None values - Fix msgpack serializer loadsCall to make sure custom arguments get properly deserialized - Various documentation and spelling corrections Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
28 lines
611 B
BlitzBasic
28 lines
611 B
BlitzBasic
SUMMARY = "Python Remote Objects"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=c1c9ccd5f4ca5d0f5057c0e690a0153d"
|
|
|
|
SRC_URI[sha256sum] = "cfac69638d80943aff9cc5f1466755dd0fef8aed0bb4bda41b5eb045818ce6fc"
|
|
|
|
PYPI_PACKAGE = "pyro5"
|
|
UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}"
|
|
|
|
inherit pypi setuptools3 ptest-python-pytest
|
|
|
|
RDEPENDS:${PN} += " \
|
|
python3-json \
|
|
python3-logging \
|
|
python3-serpent \
|
|
python3-threading \
|
|
"
|
|
|
|
RDEPENDS:${PN}-ptest += " \
|
|
python3-html \
|
|
python3-misc \
|
|
python3-sqlite3 \
|
|
"
|
|
|
|
do_install_ptest:append(){
|
|
cp -r ${S}/certs ${D}${PTEST_PATH}/
|
|
}
|