mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-27 20:07:25 +00:00
9cca0fa277
do_compile failed to find ninja, and after providing it CMake's C++20 module dependency scanning (clang-scan-deps) failed in the cross environment with "'cstddef' file not found". Add ninja-native and python3-scikit-build-core-native to DEPENDS so the --no-isolation build finds its build tools, and disable C++20 module scanning via CMAKE_ARGS since pikepdf uses the C++20 language but no named modules. Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
35 lines
914 B
BlitzBasic
35 lines
914 B
BlitzBasic
SUMMARY = "Read and write PDFs with Python, powered by qpdf"
|
|
HOMEPAGE = "https://github.com/pikepdf/pikepdf"
|
|
LICENSE = "MPL-2.0"
|
|
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=9741c346eef56131163e13b9db1241b3"
|
|
|
|
SRC_URI[sha256sum] = "410fcf32bc9c8a0a96d94bbd6268ba7585333b1423b93a5fa2ef3c05f4eba3da"
|
|
|
|
SRC_URI += "file://0001-pyproject.toml-Do-not-strip.patch"
|
|
|
|
inherit pypi python_setuptools_build_meta
|
|
|
|
# pikepdf uses the C++20 language but no C++20 named modules. CMake's module
|
|
# dependency scanning (clang-scan-deps) does not work in the cross environment,
|
|
# so turn it off.
|
|
export CMAKE_ARGS = "-DCMAKE_CXX_SCAN_FOR_MODULES=OFF"
|
|
|
|
PYPI_PACKAGE = "pikepdf"
|
|
|
|
CVE_PRODUCT = "pikepdf"
|
|
|
|
DEPENDS += " \
|
|
python3-pybind11-native \
|
|
python3-nanobind-native \
|
|
python3-scikit-build-core-native \
|
|
ninja-native \
|
|
qpdf \
|
|
"
|
|
|
|
RDEPENDS:${PN} += " \
|
|
python3-pillow \
|
|
python3-lxml \
|
|
"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|