diff options
| author | Ankur Tyagi <ankur.tyagi85@gmail.com> | 2026-01-15 02:00:41 +1300 |
|---|---|---|
| committer | Anuj Mittal <anuj.mittal@oss.qualcomm.com> | 2026-01-19 12:15:38 +0530 |
| commit | 54ac795d1af0fa9cff7cfc82d883454026a22837 (patch) | |
| tree | b4ccd5dcef667daf0dcdab3e8fa578467af5d751 /meta-python/recipes-devtools/python/python3-cbor2_5.6.4.bb | |
| parent | e061e04825a7455d2c1575c7b9d13146b76d764d (diff) | |
| download | meta-openembedded-54ac795d1af0fa9cff7cfc82d883454026a22837.tar.gz | |
python3-cob2: upgrade 5.6.3 -> 5.6.4
- Fixed compilation of C extension failing on GCC 14
- Fixed compiler warnings when building C extension
https://github.com/agronholm/cbor2/releases/tag/5.6.4
Signed-off-by: Ankur Tyagi <ankur.tyagi85@gmail.com>
Signed-off-by: Anuj Mittal <anuj.mittal@oss.qualcomm.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-cbor2_5.6.4.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-cbor2_5.6.4.bb | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-cbor2_5.6.4.bb b/meta-python/recipes-devtools/python/python3-cbor2_5.6.4.bb new file mode 100644 index 0000000000..a5c4154e49 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-cbor2_5.6.4.bb | |||
| @@ -0,0 +1,34 @@ | |||
| 1 | DESCRIPTION = "An implementation of RFC 7049 - Concise Binary Object Representation (CBOR)." | ||
| 2 | DEPENDS +="python3-setuptools-scm-native" | ||
| 3 | |||
| 4 | LICENSE = "MIT" | ||
| 5 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=a79e64179819c7ce293372c059f1dbd8" | ||
| 6 | |||
| 7 | SRC_URI[sha256sum] = "1c533c50dde86bef1c6950602054a0ffa3c376e8b0e20c7b8f5b108793f6983e" | ||
| 8 | |||
| 9 | inherit pypi python_setuptools_build_meta ptest | ||
| 10 | |||
| 11 | DEPENDS += "python3-setuptools-scm-native" | ||
| 12 | |||
| 13 | SRC_URI += " \ | ||
| 14 | file://run-ptest \ | ||
| 15 | file://CVE-2025-64076.patch \ | ||
| 16 | " | ||
| 17 | |||
| 18 | RDEPENDS:${PN}-ptest += " \ | ||
| 19 | python3-hypothesis \ | ||
| 20 | python3-pytest \ | ||
| 21 | python3-unittest-automake-output \ | ||
| 22 | python3-unixadmin \ | ||
| 23 | " | ||
| 24 | |||
| 25 | do_install_ptest() { | ||
| 26 | install -d ${D}${PTEST_PATH}/tests | ||
| 27 | cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/ | ||
| 28 | } | ||
| 29 | |||
| 30 | RDEPENDS:${PN} += " \ | ||
| 31 | python3-datetime \ | ||
| 32 | " | ||
| 33 | |||
| 34 | BBCLASSEXTEND = "native nativesdk" | ||
