diff options
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-lz4_4.4.4.bb')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-lz4_4.4.4.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-lz4_4.4.4.bb b/meta-python/recipes-devtools/python/python3-lz4_4.4.4.bb new file mode 100644 index 0000000000..8d336df4a9 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-lz4_4.4.4.bb | |||
@@ -0,0 +1,29 @@ | |||
1 | DESCRIPTION = "python bindings for the lz4 compression library by Yann Collet" | ||
2 | |||
3 | LICENSE = "BSD-3-Clause" | ||
4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=6231efa4dd4811e62407314d90a57573" | ||
5 | |||
6 | DEPENDS += " \ | ||
7 | lz4 \ | ||
8 | python3-setuptools-scm-native \ | ||
9 | python3-pkgconfig-native \ | ||
10 | " | ||
11 | |||
12 | SRC_URI[sha256sum] = "070fd0627ec4393011251a094e08ed9fdcc78cb4e7ab28f507638eee4e39abda" | ||
13 | |||
14 | inherit pkgconfig pypi python_setuptools_build_meta ptest-python-pytest | ||
15 | |||
16 | RDEPENDS:${PN}-ptest += "\ | ||
17 | python3-coverage \ | ||
18 | python3-pytest-cov \ | ||
19 | python3-pytest-runner \ | ||
20 | python3-multiprocessing \ | ||
21 | python3-psutil \ | ||
22 | " | ||
23 | |||
24 | do_install_ptest:append () { | ||
25 | # The stream API is experimental and not enabled yet, so don't ship the test suite | ||
26 | rm -rf ${D}${PTEST_PATH}/tests/stream | ||
27 | } | ||
28 | |||
29 | BBCLASSEXTEND = "native nativesdk" | ||