diff options
-rw-r--r-- | meta/classes/distutils-base.bbclass | 2 | ||||
-rw-r--r-- | meta/classes/distutils.bbclass | 8 | ||||
-rw-r--r-- | meta/classes/pythonnative.bbclass | 3 | ||||
-rw-r--r-- | meta/recipes-devtools/python/python-native_2.7.3.bb | 10 |
4 files changed, 14 insertions, 9 deletions
diff --git a/meta/classes/distutils-base.bbclass b/meta/classes/distutils-base.bbclass index 6d18e08f14..c761b3602b 100644 --- a/meta/classes/distutils-base.bbclass +++ b/meta/classes/distutils-base.bbclass | |||
@@ -1,5 +1,5 @@ | |||
1 | DEPENDS += "${@["python-native python", ""][(d.getVar('PACKAGES', True) == '')]}" | 1 | DEPENDS += "${@["python-native python", ""][(d.getVar('PACKAGES', True) == '')]}" |
2 | RDEPENDS_${PN} += "${@['', 'python-core']['${PN}' == '${BPN}']}" | 2 | RDEPENDS_${PN} += "${@['', 'python-core']['${PN}' == '${BPN}']}" |
3 | 3 | ||
4 | inherit distutils-common-base | 4 | inherit distutils-common-base pythonnative |
5 | 5 | ||
diff --git a/meta/classes/distutils.bbclass b/meta/classes/distutils.bbclass index bcddf8d978..690df73717 100644 --- a/meta/classes/distutils.bbclass +++ b/meta/classes/distutils.bbclass | |||
@@ -11,14 +11,14 @@ distutils_do_compile() { | |||
11 | STAGING_INCDIR=${STAGING_INCDIR} \ | 11 | STAGING_INCDIR=${STAGING_INCDIR} \ |
12 | STAGING_LIBDIR=${STAGING_LIBDIR} \ | 12 | STAGING_LIBDIR=${STAGING_LIBDIR} \ |
13 | BUILD_SYS=${BUILD_SYS} HOST_SYS=${HOST_SYS} \ | 13 | BUILD_SYS=${BUILD_SYS} HOST_SYS=${HOST_SYS} \ |
14 | ${STAGING_BINDIR_NATIVE}/python setup.py build ${DISTUTILS_BUILD_ARGS} || \ | 14 | ${STAGING_BINDIR_NATIVE}/python-native/python setup.py build ${DISTUTILS_BUILD_ARGS} || \ |
15 | bbfatal "python setup.py build_ext execution failed." | 15 | bbfatal "python setup.py build_ext execution failed." |
16 | } | 16 | } |
17 | 17 | ||
18 | distutils_stage_headers() { | 18 | distutils_stage_headers() { |
19 | install -d ${STAGING_DIR_HOST}${PYTHON_SITEPACKAGES_DIR} | 19 | install -d ${STAGING_DIR_HOST}${PYTHON_SITEPACKAGES_DIR} |
20 | BUILD_SYS=${BUILD_SYS} HOST_SYS=${HOST_SYS} \ | 20 | BUILD_SYS=${BUILD_SYS} HOST_SYS=${HOST_SYS} \ |
21 | ${STAGING_BINDIR_NATIVE}/python setup.py install_headers ${DISTUTILS_STAGE_HEADERS_ARGS} || \ | 21 | ${STAGING_BINDIR_NATIVE}/python-native/python setup.py install_headers ${DISTUTILS_STAGE_HEADERS_ARGS} || \ |
22 | bbfatal "python setup.py install_headers execution failed." | 22 | bbfatal "python setup.py install_headers execution failed." |
23 | } | 23 | } |
24 | 24 | ||
@@ -28,7 +28,7 @@ distutils_stage_all() { | |||
28 | install -d ${STAGING_DIR_HOST}${PYTHON_SITEPACKAGES_DIR} | 28 | install -d ${STAGING_DIR_HOST}${PYTHON_SITEPACKAGES_DIR} |
29 | PYTHONPATH=${STAGING_DIR_HOST}${PYTHON_SITEPACKAGES_DIR} \ | 29 | PYTHONPATH=${STAGING_DIR_HOST}${PYTHON_SITEPACKAGES_DIR} \ |
30 | BUILD_SYS=${BUILD_SYS} HOST_SYS=${HOST_SYS} \ | 30 | BUILD_SYS=${BUILD_SYS} HOST_SYS=${HOST_SYS} \ |
31 | ${STAGING_BINDIR_NATIVE}/python setup.py install ${DISTUTILS_STAGE_ALL_ARGS} || \ | 31 | ${STAGING_BINDIR_NATIVE}/python-native/python setup.py install ${DISTUTILS_STAGE_ALL_ARGS} || \ |
32 | bbfatal "python setup.py install (stage) execution failed." | 32 | bbfatal "python setup.py install (stage) execution failed." |
33 | } | 33 | } |
34 | 34 | ||
@@ -38,7 +38,7 @@ distutils_do_install() { | |||
38 | STAGING_LIBDIR=${STAGING_LIBDIR} \ | 38 | STAGING_LIBDIR=${STAGING_LIBDIR} \ |
39 | PYTHONPATH=${D}/${PYTHON_SITEPACKAGES_DIR} \ | 39 | PYTHONPATH=${D}/${PYTHON_SITEPACKAGES_DIR} \ |
40 | BUILD_SYS=${BUILD_SYS} HOST_SYS=${HOST_SYS} \ | 40 | BUILD_SYS=${BUILD_SYS} HOST_SYS=${HOST_SYS} \ |
41 | ${STAGING_BINDIR_NATIVE}/python setup.py install ${DISTUTILS_INSTALL_ARGS} || \ | 41 | ${STAGING_BINDIR_NATIVE}/python-native/python setup.py install ${DISTUTILS_INSTALL_ARGS} || \ |
42 | bbfatal "python setup.py install execution failed." | 42 | bbfatal "python setup.py install execution failed." |
43 | 43 | ||
44 | for i in `find ${D} -name "*.py"` ; do \ | 44 | for i in `find ${D} -name "*.py"` ; do \ |
diff --git a/meta/classes/pythonnative.bbclass b/meta/classes/pythonnative.bbclass new file mode 100644 index 0000000000..bc346da58d --- /dev/null +++ b/meta/classes/pythonnative.bbclass | |||
@@ -0,0 +1,3 @@ | |||
1 | PYTHON="${STAGING_BINDIR_NATIVE}/python-native/python" | ||
2 | PATH_prepend = "${STAGING_BINDIR_NATIVE}/python-native:" | ||
3 | DEPENDS += " python-native " | ||
diff --git a/meta/recipes-devtools/python/python-native_2.7.3.bb b/meta/recipes-devtools/python/python-native_2.7.3.bb index 50bf894d0c..bfdcd12687 100644 --- a/meta/recipes-devtools/python/python-native_2.7.3.bb +++ b/meta/recipes-devtools/python/python-native_2.7.3.bb | |||
@@ -1,6 +1,6 @@ | |||
1 | require python.inc | 1 | require python.inc |
2 | DEPENDS = "openssl-native bzip2-full-native zlib-native readline-native sqlite3-native" | 2 | DEPENDS = "openssl-native bzip2-full-native zlib-native readline-native sqlite3-native" |
3 | PR = "${INC_PR}.0" | 3 | PR = "${INC_PR}.1" |
4 | 4 | ||
5 | SRC_URI += "file://04-default-is-optimized.patch \ | 5 | SRC_URI += "file://04-default-is-optimized.patch \ |
6 | file://05-enable-ctypes-cross-build.patch \ | 6 | file://05-enable-ctypes-cross-build.patch \ |
@@ -20,6 +20,8 @@ inherit native | |||
20 | 20 | ||
21 | RPROVIDES += "python-distutils-native python-compression-native python-textutils-native python-core-native" | 21 | RPROVIDES += "python-distutils-native python-compression-native python-textutils-native python-core-native" |
22 | 22 | ||
23 | EXTRA_OECONF += " --bindir=${bindir}/${PN}" | ||
24 | |||
23 | EXTRA_OEMAKE = '\ | 25 | EXTRA_OEMAKE = '\ |
24 | BUILD_SYS="" \ | 26 | BUILD_SYS="" \ |
25 | HOST_SYS="" \ | 27 | HOST_SYS="" \ |
@@ -34,11 +36,11 @@ do_configure_prepend() { | |||
34 | 36 | ||
35 | do_install() { | 37 | do_install() { |
36 | oe_runmake 'DESTDIR=${D}' install | 38 | oe_runmake 'DESTDIR=${D}' install |
37 | install -d ${D}${bindir}/ | 39 | install -d ${D}${bindir}/${PN} |
38 | install -m 0755 Parser/pgen ${D}${bindir}/ | 40 | install -m 0755 Parser/pgen ${D}${bindir}/${PN} |
39 | 41 | ||
40 | # Make sure we use /usr/bin/env python | 42 | # Make sure we use /usr/bin/env python |
41 | for PYTHSCRIPT in `grep -rIl ${bindir}/python ${D}${bindir}`; do | 43 | for PYTHSCRIPT in `grep -rIl ${bindir}/${PN}/python ${D}${bindir}/${PN}`; do |
42 | sed -i -e '1s|^#!.*|#!/usr/bin/env python|' $PYTHSCRIPT | 44 | sed -i -e '1s|^#!.*|#!/usr/bin/env python|' $PYTHSCRIPT |
43 | done | 45 | done |
44 | } | 46 | } |