diff mbox series

[meta-python,1/2] python3-h5py: Fix TMPDIR references in dbg files

Message ID 20230416145802.2419372-1-raj.khem@gmail.com
State New
Headers show
Series [meta-python,1/2] python3-h5py: Fix TMPDIR references in dbg files | expand

Commit Message

Khem Raj April 16, 2023, 2:58 p.m. UTC
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 <raj.khem@gmail.com>
---
 .../recipes-devtools/python/python3-h5py_3.8.0.bb      | 10 ++++++++++
 1 file changed, 10 insertions(+)
diff mbox series

Patch

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 \