diff options
| author | Leon Anavi <leon.anavi@konsulko.com> | 2025-11-24 13:52:58 +0200 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2025-11-24 21:54:46 -0800 |
| commit | 0f4d401d947f33144d7d0d0d7a50ffe5da2f5abf (patch) | |
| tree | 76034533f648af62629f4522f2eea7ab7fc46767 /meta-python | |
| parent | f029ebca5c2dac2e69aa1de88b1075df22c3d49b (diff) | |
| download | meta-openembedded-0f4d401d947f33144d7d0d0d7a50ffe5da2f5abf.tar.gz | |
python3-pikepdf: Add recipe
Add recipe for v10.0.2:
- Fixed presentation of strings using unparse_content_stream -
if the stream can be represented using PdfDocEncoding, it is
rendered in that way for ease of reading.
- Reformatted C++ source.
This work was sponsored by GOVCERT.LU.
Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-pikepdf_10.0.2.bb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-pikepdf_10.0.2.bb b/meta-python/recipes-devtools/python/python3-pikepdf_10.0.2.bb new file mode 100644 index 0000000000..4821e273d8 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-pikepdf_10.0.2.bb | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | SUMMARY = "Read and write PDFs with Python, powered by qpdf" | ||
| 2 | HOMEPAGE = "https://github.com/pikepdf/pikepdf" | ||
| 3 | LICENSE = "MPL-2.0" | ||
| 4 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=9741c346eef56131163e13b9db1241b3" | ||
| 5 | |||
| 6 | SRC_URI[sha256sum] = "7c85a2526253e35575edb2e28cdc740d004be4b7c5fda954f0e721ee1c423a52" | ||
| 7 | |||
| 8 | inherit pypi python_setuptools_build_meta | ||
| 9 | |||
| 10 | PYPI_PACKAGE = "pikepdf" | ||
| 11 | |||
| 12 | DEPENDS += " \ | ||
| 13 | python3-pybind11-native \ | ||
| 14 | qpdf \ | ||
| 15 | " | ||
| 16 | |||
| 17 | RDEPENDS:${PN} += " \ | ||
| 18 | python3-pillow \ | ||
| 19 | python3-lxml \ | ||
| 20 | " | ||
| 21 | |||
| 22 | BBCLASSEXTEND = "native nativesdk" | ||
