diff options
| author | Thomas Perrot <thomas.perrot@bootlin.com> | 2024-11-03 22:54:09 +0100 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2024-11-05 09:42:49 -0800 |
| commit | 3822241d2ba790ebc612da930340ceabfbb4fd4b (patch) | |
| tree | b35342a7533bb811665e1db1119829a65e32b136 /meta-python | |
| parent | 98c18177fd70c8be0d69c6984aeb8fb98b9b89ae (diff) | |
| download | meta-openembedded-3822241d2ba790ebc612da930340ceabfbb4fd4b.tar.gz | |
python3-zstandard: add a recipe for version 0.23.0
This package offers Python bindings to interface with the
Zstandard compression library.
Signed-off-by: Thomas Perrot <thomas.perrot@bootlin.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python')
| -rw-r--r-- | meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb | 1 | ||||
| -rw-r--r-- | meta-python/recipes-devtools/python3-zstandard/python3-zstandard_0.23.0.bb | 23 |
2 files changed, 24 insertions, 0 deletions
diff --git a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb index 81f45fb78d..8ee1cdc101 100644 --- a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb +++ b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb | |||
| @@ -465,6 +465,7 @@ RDEPENDS:packagegroup-meta-python3 = "\ | |||
| 465 | python3-yappi \ | 465 | python3-yappi \ |
| 466 | python3-yarl \ | 466 | python3-yarl \ |
| 467 | python3-zopeinterface \ | 467 | python3-zopeinterface \ |
| 468 | python3-zstandard \ | ||
| 468 | telepathy-python3 \ | 469 | telepathy-python3 \ |
| 469 | unattended-upgrades \ | 470 | unattended-upgrades \ |
| 470 | " | 471 | " |
diff --git a/meta-python/recipes-devtools/python3-zstandard/python3-zstandard_0.23.0.bb b/meta-python/recipes-devtools/python3-zstandard/python3-zstandard_0.23.0.bb new file mode 100644 index 0000000000..e44e04038c --- /dev/null +++ b/meta-python/recipes-devtools/python3-zstandard/python3-zstandard_0.23.0.bb | |||
| @@ -0,0 +1,23 @@ | |||
| 1 | SUMMARY = "Python bindings for interfacing with the Zstandard compression library" | ||
| 2 | DESCRIPTION = "This project provides Python bindings for interfacing with the \ | ||
| 3 | Zstandard compression library. A C extension and CFFI interface \ | ||
| 4 | are provided." | ||
| 5 | HOMEPAGE = "https://github.com/indygreg/python-zstandard" | ||
| 6 | BUGTRACKER = "https://github.com/indygreg/python-zstandard/issues" | ||
| 7 | LICENSE = "BSD-3-Clause" | ||
| 8 | LIC_FILES_CHKSUM = "file://LICENSE;md5=3ae87c50fd64b6f0942823686871e758" | ||
| 9 | |||
| 10 | DEPENDS = "python3-cffi" | ||
| 11 | |||
| 12 | RDEPENDS_${PN} = "\ | ||
| 13 | libzstd (>= 1.4.0) \ | ||
| 14 | python3-cffi \ | ||
| 15 | " | ||
| 16 | |||
| 17 | inherit setuptools3 pypi | ||
| 18 | |||
| 19 | SRC_URI[sha256sum] = "b2d8c62d08e7255f68f7a740bae85b3c9b8e5466baa9cbf7f57f1cde0ac6bc09" | ||
| 20 | |||
| 21 | # Because the pyproject.toml is still in development and it contains invalid | ||
| 22 | # requirements. | ||
| 23 | INSANE_SKIP += "pep517-backend" | ||
