summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-lz4_4.0.2.bb
diff options
context:
space:
mode:
authorXu Huan <xuhuan.fnst@fujitsu.com>2022-07-27 18:10:02 +0800
committerKhem Raj <raj.khem@gmail.com>2022-07-27 11:59:41 -0400
commitb83cc192bee20bf4e1007ac442e26ad4c236bead (patch)
tree3f9e05a04b7de4e66438eb6c29d3d731260c4077 /meta-python/recipes-devtools/python/python3-lz4_4.0.2.bb
parentf85965f02719a37967056c1d408a00307d6d8279 (diff)
downloadmeta-openembedded-b83cc192bee20bf4e1007ac442e26ad4c236bead.tar.gz
python3-lz4: upgrade 4.0.1 -> 4.0.2
Fix a memory leak when frame decompression fails Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-lz4_4.0.2.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-lz4_4.0.2.bb26
1 files changed, 26 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-lz4_4.0.2.bb b/meta-python/recipes-devtools/python/python3-lz4_4.0.2.bb
new file mode 100644
index 0000000000..ad006e61b1
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-lz4_4.0.2.bb
@@ -0,0 +1,26 @@
1DESCRIPTION = "python bindings for the lz4 compression library by Yann Collet"
2
3LICENSE = "BSD-3-Clause"
4LIC_FILES_CHKSUM = "file://LICENSE;md5=6231efa4dd4811e62407314d90a57573"
5
6DEPENDS += " \
7 lz4 \
8 ${PYTHON_PN}-setuptools-scm-native \
9 ${PYTHON_PN}-pkgconfig-native \
10"
11
12SRC_URI += "file://run-ptest"
13
14SRC_URI[sha256sum] = "083b7172c2938412ae37c3a090250bfdd9e4a6e855442594f86c3608ed12729b"
15
16inherit pkgconfig pypi python_setuptools_build_meta ptest
17
18RDEPENDS:${PN}-ptest += "${PYTHON_PN}-pytest ${PYTHON_PN}-multiprocessing ${PYTHON_PN}-psutil"
19
20do_install_ptest() {
21 cp -rf ${S}/tests/ ${D}${PTEST_PATH}/
22 # The stream API is experimental and not enabled yet, so don't ship the test suite
23 rm -rf ${D}${PTEST_PATH}/tests/stream
24}
25
26BBCLASSEXTEND = "native nativesdk"