meta-openembedded/meta-python/recipes-devtools/python/python3-xmodem_0.4.7.bb
Wang Mingyu 7a277a1b92 python3-xmodem: upgrade 0.4.6 -> 0.4.7
Changelog:
==========
  bugfix: stall on some kinds of error in recv(), PR #56
  bugfix: sequence number miscalculation in send(), PR #52
  enhancement: callback function added for recv() method, PR #53
  bugfix: receiving empty file and stall condition in recv(), PR #50
  bugfix: callback is now called for some kinds of errors and some CLI fixes, 8a798e8
  bugfix: remove DepreactionWarning for logging.warn(), PR #49

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-06-19 10:24:49 -07:00

20 lines
483 B
BlitzBasic

DESCRIPTION = "XMODEM protocol implementation"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
SRC_URI[sha256sum] = "2f1068aa8676f0d1d112498b5786c4f8ea4f89d8f25d07d3a0f293cd21db1c35"
inherit pypi setuptools3
do_install:append() {
install -d ${D}${docdir}/${PN}
mv ${D}/usr/doc/* ${D}${docdir}/${PN}/
rmdir ${D}/usr/doc
}
RDEPENDS:${PN} += " \
${PYTHON_PN}-logging \
"
BBCLASSEXTEND = "native nativesdk"