summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-xmodem_0.5.0.bb
diff options
context:
space:
mode:
authorLiu Yiding <liuyd.fnst@fujitsu.com>2026-03-10 16:22:19 +0800
committerKhem Raj <raj.khem@gmail.com>2026-03-17 13:25:20 -0700
commitc1c7af9680965b367899bcc47df44b113c804a75 (patch)
tree4a5fa34f85064d9275af609f76c783bbf6d211b1 /meta-python/recipes-devtools/python/python3-xmodem_0.5.0.bb
parent8ea57b9143b580e2903dcbb77e4bb096a45992dc (diff)
downloadmeta-openembedded-c1c7af9680965b367899bcc47df44b113c804a75.tar.gz
python3-xmodem: upgrade 0.4.7 -> 0.5.0
bugfix: retry_limit was never actually triggered during the data transfer phase because errors never accumulated, and enhancement: replace 3x getc() calls with a single recv() call, reducing timing and failed packets when using fast serial lines without flow control. Signed-off-by: Liu Yiding <liuyd.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-xmodem_0.5.0.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-xmodem_0.5.0.bb19
1 files changed, 19 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-xmodem_0.5.0.bb b/meta-python/recipes-devtools/python/python3-xmodem_0.5.0.bb
new file mode 100644
index 0000000000..55305c6cb9
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-xmodem_0.5.0.bb
@@ -0,0 +1,19 @@
1DESCRIPTION = "XMODEM protocol implementation"
2
3LICENSE = "MIT"
4LIC_FILES_CHKSUM = "file://LICENSE;md5=90bc9522130d68de0dcbf33707bbf124"
5
6SRC_URI[sha256sum] = "a1a818f31c29412f1cab0cd69deccd7be77bc1feb516723af990d00161f6fb6a"
7
8inherit pypi python_setuptools_build_meta
9
10do_install:append() {
11 install -d ${D}${docdir}/${PN}
12 mv ${D}${prefix}/doc/* ${D}${docdir}/${PN}/
13 rmdir ${D}${prefix}/doc
14}
15
16RDEPENDS:${PN} += " \
17 python3-logging \
18"
19BBCLASSEXTEND = "native nativesdk"