From 56ac2a69a83eed0b32540b133510ec07b7b90320 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Sat, 15 Apr 2023 10:49:10 -0700 Subject: python3-h5py: Fix TMPDIR references in dbg files These are embedded into comments in C source code generated with cython during do_compile. Fixes WARNING: python3-h5py-3.8.0-r0 do_package_qa: QA Issue: File /usr/src/debug/python3-h5py/3.8.0-r0/h5py/_conv.c in package python3-h5py-src contains reference to TMPDIR File /usr/src/debug/python3-h5py/3.8.0-r0/h5py/h5fd.c in package python3-h5py-src contains reference to TMPDIR [buildpaths] Signed-off-by: Khem Raj --- meta-python/recipes-devtools/python/python3-h5py_3.8.0.bb | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'meta-python/recipes-devtools/python') diff --git a/meta-python/recipes-devtools/python/python3-h5py_3.8.0.bb b/meta-python/recipes-devtools/python/python3-h5py_3.8.0.bb index 75a41e29dc..3436444695 100644 --- a/meta-python/recipes-devtools/python/python3-h5py_3.8.0.bb +++ b/meta-python/recipes-devtools/python/python3-h5py_3.8.0.bb @@ -21,6 +21,16 @@ DEPENDS = "python3-pkgconfig-native \ hdf5 \ " +PACKAGESPLITFUNCS =+ "fix_cythonized_sources" + +fix_cythonized_sources() { + for f in `grep -l -r -e '\/* Generated by Cython.*/$' ${PKGD}/usr/src/debug/${PN}/${EXTENDPE}${PV}-${PR}`; do + if [ -e $f ]; then + sed -i -e 's#${RECIPE_SYSROOT_NATIVE}##g' $f + fi + done +} + RDEPENDS:${PN} = "python3-numpy \ python3-six \ python3-json \ -- cgit v1.2.3-54-g00ecf