summaryrefslogtreecommitdiffstats
path: root/meta/classes
diff options
context:
space:
mode:
authorDouglas Royds <douglas.royds@taitradio.com>2019-05-06 18:47:25 +1200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-05-20 14:38:16 +0100
commit00092a27e284ba76c4fb989202d9d1066675ad32 (patch)
treea9145f0b29a1de1b31924084f5e5c98d4b439e1c /meta/classes
parentdaf48c00c2535b3bd51e712d9bcb9160ba0801d7 (diff)
downloadpoky-00092a27e284ba76c4fb989202d9d1066675ad32.tar.gz
distutils: Run python from the PATH in the -native case as well
The python distutils generate a python wrapper script for each package, containing shebang lines pointing to the python executable. In our case, this is a fully-qualified path to python-native in the recipe-sysroot-native. Ubuntu 18.04 restricts the useful length of the shebang line to 125 characters, and Ubuntu 16.04 restricts it to 77. In both cases, the staged python script fails to run due to the length of the path to the python-native executable. Replace the shebang line with nativepython or nativepython3 as appropriate. The nativepython symlink is installed by the python-native recipe: #!/usr/bin/env nativepython We were already doing this for on-target distutils components. This change applies the sed-line to -native distutils components as well. In this way, -native clients of these components can invoke the wrapper scripts directly, without themselves needing to inherit pythonnative. This works around a known setuptools issue: https://github.com/pypa/setuptools/issues/494 Even once this issue has been resolved upstream, we will still need to replace `python` with `nativepython` (From OE-Core rev: d32cd33b5aeaa8859cfd68b9167a3ab3b892e710) Signed-off-by: Douglas Royds <douglas.royds@taitradio.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r--meta/classes/distutils.bbclass11
-rw-r--r--meta/classes/distutils3.bbclass7
2 files changed, 10 insertions, 8 deletions
diff --git a/meta/classes/distutils.bbclass b/meta/classes/distutils.bbclass
index 9862731493..b5c9c2fbbd 100644
--- a/meta/classes/distutils.bbclass
+++ b/meta/classes/distutils.bbclass
@@ -9,6 +9,9 @@ DISTUTILS_INSTALL_ARGS ?= "--root=${D} \
9 --install-lib=${PYTHON_SITEPACKAGES_DIR} \ 9 --install-lib=${PYTHON_SITEPACKAGES_DIR} \
10 --install-data=${datadir}" 10 --install-data=${datadir}"
11 11
12DISTUTILS_PYTHON = "python"
13DISTUTILS_PYTHON_class-native = "nativepython"
14
12distutils_do_configure() { 15distutils_do_configure() {
13 if [ "${CLEANBROKEN}" != "1" ] ; then 16 if [ "${CLEANBROKEN}" != "1" ] ; then
14 NO_FETCH_BUILD=1 \ 17 NO_FETCH_BUILD=1 \
@@ -53,18 +56,14 @@ distutils_do_install() {
53 56
54 if test -e ${D}${bindir} ; then 57 if test -e ${D}${bindir} ; then
55 for i in ${D}${bindir}/* ; do \ 58 for i in ${D}${bindir}/* ; do \
56 if [ ${PN} != "${BPN}-native" ]; then 59 sed -i -e s:${STAGING_BINDIR_NATIVE}/python-native/python:${USRBINPATH}/env\ ${DISTUTILS_PYTHON}:g $i
57 sed -i -e s:${STAGING_BINDIR_NATIVE}/python-native/python:${USRBINPATH}/env\ python:g $i
58 fi
59 sed -i -e s:${STAGING_BINDIR_NATIVE}:${bindir}:g $i 60 sed -i -e s:${STAGING_BINDIR_NATIVE}:${bindir}:g $i
60 done 61 done
61 fi 62 fi
62 63
63 if [ -e ${D}${sbindir} ]; then 64 if [ -e ${D}${sbindir} ]; then
64 for i in ${D}${sbindir}/* ; do \ 65 for i in ${D}${sbindir}/* ; do \
65 if [ ${PN} != "${BPN}-native" ]; then 66 sed -i -e s:${STAGING_BINDIR_NATIVE}/python-native/python:${USRBINPATH}/env\ ${DISTUTILS_PYTHON}:g $i
66 sed -i -e s:${STAGING_BINDIR_NATIVE}/python-native/python:${USRBINPATH}/env\ python:g $i
67 fi
68 sed -i -e s:${STAGING_BINDIR_NATIVE}:${bindir}:g $i 67 sed -i -e s:${STAGING_BINDIR_NATIVE}:${bindir}:g $i
69 done 68 done
70 fi 69 fi
diff --git a/meta/classes/distutils3.bbclass b/meta/classes/distutils3.bbclass
index 834e322474..42e7f5ae53 100644
--- a/meta/classes/distutils3.bbclass
+++ b/meta/classes/distutils3.bbclass
@@ -10,6 +10,9 @@ DISTUTILS_INSTALL_ARGS ?= "--root=${D} \
10 --install-lib=${PYTHON_SITEPACKAGES_DIR} \ 10 --install-lib=${PYTHON_SITEPACKAGES_DIR} \
11 --install-data=${datadir}" 11 --install-data=${datadir}"
12 12
13DISTUTILS_PYTHON = "python3"
14DISTUTILS_PYTHON_class-native = "nativepython3"
15
13distutils3_do_configure() { 16distutils3_do_configure() {
14 if [ "${CLEANBROKEN}" != "1" ] ; then 17 if [ "${CLEANBROKEN}" != "1" ] ; then
15 NO_FETCH_BUILD=1 \ 18 NO_FETCH_BUILD=1 \
@@ -57,14 +60,14 @@ distutils3_do_install() {
57 60
58 if test -e ${D}${bindir} ; then 61 if test -e ${D}${bindir} ; then
59 for i in ${D}${bindir}/* ; do \ 62 for i in ${D}${bindir}/* ; do \
60 sed -i -e s:${STAGING_BINDIR_NATIVE}/${PYTHON_PN}-native/${PYTHON_PN}:${USRBINPATH}/env\ ${PYTHON_PN}:g $i 63 sed -i -e s:${STAGING_BINDIR_NATIVE}/${PYTHON_PN}-native/${PYTHON_PN}:${USRBINPATH}/env\ ${DISTUTILS_PYTHON}:g $i
61 sed -i -e s:${STAGING_BINDIR_NATIVE}:${bindir}:g $i 64 sed -i -e s:${STAGING_BINDIR_NATIVE}:${bindir}:g $i
62 done 65 done
63 fi 66 fi
64 67
65 if test -e ${D}${sbindir}; then 68 if test -e ${D}${sbindir}; then
66 for i in ${D}${sbindir}/* ; do \ 69 for i in ${D}${sbindir}/* ; do \
67 sed -i -e s:${STAGING_BINDIR_NATIVE}/python-${PYTHON_PN}/${PYTHON_PN}:${USRBINPATH}/env\ ${PYTHON_PN}:g $i 70 sed -i -e s:${STAGING_BINDIR_NATIVE}/python-${PYTHON_PN}/${PYTHON_PN}:${USRBINPATH}/env\ ${DISTUTILS_PYTHON}:g $i
68 sed -i -e s:${STAGING_BINDIR_NATIVE}:${bindir}:g $i 71 sed -i -e s:${STAGING_BINDIR_NATIVE}:${bindir}:g $i
69 done 72 done
70 fi 73 fi