From 7a277a1b9252b5674517b3e1d2c69f57970b6b1e Mon Sep 17 00:00:00 2001 From: Wang Mingyu Date: Mon, 19 Jun 2023 14:48:26 +0800 Subject: 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 Signed-off-by: Khem Raj --- .../recipes-devtools/python/python3-xmodem_0.4.6.bb | 19 ------------------- .../recipes-devtools/python/python3-xmodem_0.4.7.bb | 19 +++++++++++++++++++ 2 files changed, 19 insertions(+), 19 deletions(-) delete mode 100644 meta-python/recipes-devtools/python/python3-xmodem_0.4.6.bb create mode 100644 meta-python/recipes-devtools/python/python3-xmodem_0.4.7.bb (limited to 'meta-python/recipes-devtools/python') diff --git a/meta-python/recipes-devtools/python/python3-xmodem_0.4.6.bb b/meta-python/recipes-devtools/python/python3-xmodem_0.4.6.bb deleted file mode 100644 index 6df392e2d6..0000000000 --- a/meta-python/recipes-devtools/python/python3-xmodem_0.4.6.bb +++ /dev/null @@ -1,19 +0,0 @@ -DESCRIPTION = "XMODEM protocol implementation" - -LICENSE = "MIT" -LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302" - -SRC_URI[sha256sum] = "089737298f5738eabc43f2519efdc80b402693768f16383f7013b9e6f8f279d7" - -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" diff --git a/meta-python/recipes-devtools/python/python3-xmodem_0.4.7.bb b/meta-python/recipes-devtools/python/python3-xmodem_0.4.7.bb new file mode 100644 index 0000000000..80fe945552 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-xmodem_0.4.7.bb @@ -0,0 +1,19 @@ +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" -- cgit v1.2.3-54-g00ecf