summaryrefslogtreecommitdiffstats
path: root/meta-python
diff options
context:
space:
mode:
authorLeon Anavi <leon.anavi@konsulko.com>2025-11-24 13:52:58 +0200
committerKhem Raj <raj.khem@gmail.com>2025-11-24 21:54:46 -0800
commit0f4d401d947f33144d7d0d0d7a50ffe5da2f5abf (patch)
tree76034533f648af62629f4522f2eea7ab7fc46767 /meta-python
parentf029ebca5c2dac2e69aa1de88b1075df22c3d49b (diff)
downloadmeta-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.bb22
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 @@
1SUMMARY = "Read and write PDFs with Python, powered by qpdf"
2HOMEPAGE = "https://github.com/pikepdf/pikepdf"
3LICENSE = "MPL-2.0"
4LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=9741c346eef56131163e13b9db1241b3"
5
6SRC_URI[sha256sum] = "7c85a2526253e35575edb2e28cdc740d004be4b7c5fda954f0e721ee1c423a52"
7
8inherit pypi python_setuptools_build_meta
9
10PYPI_PACKAGE = "pikepdf"
11
12DEPENDS += " \
13 python3-pybind11-native \
14 qpdf \
15"
16
17RDEPENDS:${PN} += " \
18 python3-pillow \
19 python3-lxml \
20"
21
22BBCLASSEXTEND = "native nativesdk"