diff options
| author | Leon Anavi <leon.anavi@konsulko.com> | 2021-01-13 16:26:19 +0200 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2021-01-14 11:58:26 -0800 |
| commit | 48aa4712e53f91cfc3816bd693966bbe411754c1 (patch) | |
| tree | 849875e401ca15c49e1f2f780b19a3ed5fa62220 /meta-python/recipes-devtools/python/python3-msgpack_1.0.2.bb | |
| parent | 9da01fe4d407a6508794784da3b6bd0d1f870d5e (diff) | |
| download | meta-openembedded-48aa4712e53f91cfc3816bd693966bbe411754c1.tar.gz | |
python3-msgpack: Upgrade 1.0.0 -> 1.0.2
Upgrade to release 1.0.2:
- Fix overflow in unpacking timestamp to datetime
- Format markdown
- Update readme
Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-msgpack_1.0.2.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-msgpack_1.0.2.bb | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-msgpack_1.0.2.bb b/meta-python/recipes-devtools/python/python3-msgpack_1.0.2.bb new file mode 100644 index 0000000000..989a7ae3fd --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-msgpack_1.0.2.bb | |||
| @@ -0,0 +1,27 @@ | |||
| 1 | SUMMARY = "MessagePack (de)serializer" | ||
| 2 | LICENSE = "Apache-2.0" | ||
| 3 | LIC_FILES_CHKSUM = "file://COPYING;md5=cd9523181d9d4fbf7ffca52eaa2a5751" | ||
| 4 | |||
| 5 | PYPI_PACKAGE = "msgpack" | ||
| 6 | inherit pypi setuptools3 ptest | ||
| 7 | |||
| 8 | SRC_URI[sha256sum] = "fae04496f5bc150eefad4e9571d1a76c55d021325dcd484ce45065ebbdd00984" | ||
| 9 | |||
| 10 | RDEPENDS_${PN}_class-target += "\ | ||
| 11 | ${PYTHON_PN}-io \ | ||
| 12 | " | ||
| 13 | |||
| 14 | BBCLASSEXTEND = "native nativesdk" | ||
| 15 | |||
| 16 | SRC_URI += " \ | ||
| 17 | file://run-ptest \ | ||
| 18 | " | ||
| 19 | |||
| 20 | RDEPENDS_${PN}-ptest += " \ | ||
| 21 | ${PYTHON_PN}-pytest \ | ||
| 22 | " | ||
| 23 | |||
| 24 | do_install_ptest() { | ||
| 25 | install -d ${D}${PTEST_PATH}/test | ||
| 26 | cp -rf ${S}/test/* ${D}${PTEST_PATH}/test/ | ||
| 27 | } | ||
