diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2024-01-08 21:47:57 +0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2024-01-08 19:54:44 -0800 |
| commit | e939b52573e3405c0f1863d56ee1da2a497028a1 (patch) | |
| tree | ca1bea307c04b0e87cb501dcc488cac4fd01d8ae /meta-python/recipes-devtools/python/python3-lz4_4.3.3.bb | |
| parent | ed772f2b80739a17cbf86717e56f41b71c16c791 (diff) | |
| download | meta-openembedded-e939b52573e3405c0f1863d56ee1da2a497028a1.tar.gz | |
python3-lz4: upgrade 4.3.2 -> 4.3.3
Changelog:
=============
-Add .readthedocs.yml
-Build wheels for Python 3.12
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-lz4_4.3.3.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-lz4_4.3.3.bb | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-lz4_4.3.3.bb b/meta-python/recipes-devtools/python/python3-lz4_4.3.3.bb new file mode 100644 index 0000000000..746926da4e --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-lz4_4.3.3.bb | |||
| @@ -0,0 +1,34 @@ | |||
| 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 += "file://run-ptest" | ||
| 13 | |||
| 14 | SRC_URI[sha256sum] = "01fe674ef2889dbb9899d8a67361e0c4a2c833af5aeb37dd505727cf5d2a131e" | ||
| 15 | |||
| 16 | inherit pkgconfig pypi python_setuptools_build_meta ptest | ||
| 17 | |||
| 18 | RDEPENDS:${PN}-ptest += "\ | ||
| 19 | python3-coverage \ | ||
| 20 | python3-pytest \ | ||
| 21 | python3-pytest-cov \ | ||
| 22 | python3-pytest-runner \ | ||
| 23 | python3-multiprocessing \ | ||
| 24 | python3-psutil \ | ||
| 25 | python3-unittest-automake-output \ | ||
| 26 | " | ||
| 27 | |||
| 28 | do_install_ptest() { | ||
| 29 | cp -rf ${S}/tests/ ${D}${PTEST_PATH}/ | ||
| 30 | # The stream API is experimental and not enabled yet, so don't ship the test suite | ||
| 31 | rm -rf ${D}${PTEST_PATH}/tests/stream | ||
| 32 | } | ||
| 33 | |||
| 34 | BBCLASSEXTEND = "native nativesdk" | ||
