Hi Because of shellshock I decided to update my daisy repo to latest revision (old version was from about June).
Everybody know: "NEVER EVER CHANGE A RUNNING SYSTEM" :-) Well, I needed to because of shellshock. And now I need to try to repair everything that broke (currently at 7 packages). One that I am completely stuck with is a custom recipe (which of course worked nicely before the repo sync). This is the recipe: pyotherside.bb: --------------- SUMMARY = "Python3 bindings for Qt5" DESCRIPTION = "New framework for including python interpreter into Qt5 apps" HOMEPAGE = "http://thp.io/2011/pyotherside/" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302" PV = "1.3+git${SRCPV}" SRCREV = "f870396346bec40b1bb64f95e27d4e3dafeda799" SRC_URI = "git://github.com/thp/pyotherside.git;branch=master;protocol=git" S = "${WORKDIR}/git/" DEPENDS = "qtdeclarative python3 python3-native" RDEPENDS_${PN} = "qtdeclarative-qmlplugins" inherit python3native require recipes-qt/qt5/qt5.inc I did need to bbappend the original python3 recipe with this here (just the last part is changed), because python-config used python2.7 instead of 3.3: python3-native_3.3.3.bbappend: ------------------------------ do_install() { install -d ${D}${libdir}/pkgconfig oe_runmake 'DESTDIR=${D}' install if [ -e ${WORKDIR}/sitecustomize.py ]; then install -m 0644 ${WORKDIR}/sitecustomize.py ${D}/${libdir}/python${PYTHON_MAJMIN} fi install -d ${D}${bindir}/${PN} install -m 0755 Parser/pgen ${D}${bindir}/${PN} # Make sure we use /usr/bin/env python3 for PYTHSCRIPT in `grep -rIl ${bindir}/${PN}/python ${D}${bindir}/${PN}`; do sed -i -e '1s|^#!.*|#!/usr/bin/env python3|' $PYTHSCRIPT done } Unfortunately, after upgrading daisy I get the following error during compilation: In file included from ../../git/src/pyotherside_plugin.cpp:19:0: ../../git/src/qpython_priv.h:22:20: fatal error: Python.h: No such file or directory #include "Python.h" ^ compilation terminated. In file included from ../../git/src/qml_python_bridge.h:22:0, from ../../git/src/qpython.cpp:19: ../../git/src/pyobject_converter.h:24:20: fatal error: Python.h: No such file or directory #include "Python.h" ^ compilation terminated. make[1]: *** [pyotherside_plugin.o] Error 1 make[1]: *** Waiting for unfinished jobs.... make[1]: *** [qpython.o] Error 1 In file included from ../../git/src/qpython_imageprovider.cpp:19:0: ../../git/src/qpython_priv.h:22:20: fatal error: Python.h: No such file or directory #include "Python.h" ^ compilation terminated. In file included from ../../git/src/qml_python_bridge.h:22:0, from ../../git/src/qpython_priv.cpp:19: ../../git/src/pyobject_converter.h:24:20: fatal error: Python.h: No such file or directory #include "Python.h" ^ compilation terminated. make[1]: *** [qpython_priv.o] Error 1 make[1]: *** [qpython_imageprovider.o] Error 1 ../../git/src/global_libpython_loader.cpp:25:0: warning: "_GNU_SOURCE" redefined [enabled by default] #define _GNU_SOURCE ^ <command-line>:0:0: note: this is the location of the previous definition ../../git/src/global_libpython_loader.cpp:31:12: warning: unused parameter 'size' [-Wunused-parameter] static int load_python_globally_callback(struct dl_phdr_info *info, size_t size, void *data) ^ make[1]: Leaving directory `/home/ubuntu/yocto/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/pyotherside/1.3+gitAUTOINC+f870396346-r0/build/src' make: *** [sub-src-make_first] Error 2 ERROR: oe_runmake failed WARNING: exit code 1 from a shell command. Does anybody have any idea, why Python.h is no longer found? $ find tmp/work -name "Python.h" tmp/work/i686-linux/python3-native/3.3.3-r0.0/sysroot-destdir/home/ubuntu/yocto/build/tmp/sysroots/i686-linux/usr/include/python3.3m/Python.h tmp/work/i686-linux/python3-native/3.3.3-r0.0/Python-3.3.3/Include/Python.h tmp/work/i686-linux/python-native/2.7.3-r0.1/Python-2.7.3/Include/Python.h tmp/work/i686-linux/python-native/2.7.3-r0.1/image/home/ubuntu/yocto/build/tmp/sysroots/i686-linux/usr/include/python2.7/Python.h tmp/work/i686-linux/python-native/2.7.3-r0.1/sysroot-destdir/home/ubuntu/yocto/build/tmp/sysroots/i686-linux/usr/include/python2.7/Python.h tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/python3/3.3.3-r0.0/package/usr/include/python3.3m/Python.h tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/python3/3.3.3-r0.0/sysroot-destdir/usr/include/python3.3m/Python.h tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/python3/3.3.3-r0.0/packages-split/python3-dev/usr/include/python3.3m/Python.h tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/python/2.7.3-r0.3/Python-2.7.3/Include/Python.h tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/python/2.7.3-r0.3/package/usr/include/python2.7/Python.h tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/python/2.7.3-r0.3/package/usr/src/debug/python/2.7.3-r0.3/Python-2.7.3/Include/Python.h tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/python/2.7.3-r0.3/image/usr/include/python2.7/Python.h tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/python/2.7.3-r0.3/sysroot-destdir/usr/include/python2.7/Python.h tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-dbg/usr/src/debug/python/2.7.3-r0.3/Python-2.7.3/Include/Python.h tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/python/2.7.3-r0.3/packages-split/python-dev/usr/include/python2.7/Python.h -- _______________________________________________ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto