diff options
| author | Nitin A Kamble <nitin.a.kamble@intel.com> | 2012-05-01 10:23:29 -0700 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-05-03 15:48:04 +0100 |
| commit | 7b08f6a9a11c76aa6b0910feb49accae5db25de3 (patch) | |
| tree | d5333890dd7a553eef6b8a32a16e5ff446fb4fbb /meta/recipes-devtools/python/python-native_2.7.3.bb | |
| parent | 4f4ab8bfe33283105112e81ee242a2e72527dd18 (diff) | |
| download | poky-7b08f6a9a11c76aa6b0910feb49accae5db25de3.tar.gz | |
python: upgrade from 2.7.2 to 2.7.3
bin/python2 link is provided by the python install process,
so no need to create it.
rebase these patches to the newer code:
fix_for_using_different_libdir.patch
04-default-is-optimized.patch
remove this patch as it is upstream now:
sys_platform_is_now_always_linux2.patch
Change default python version to 2.7.3 in the distro config
(From OE-Core rev: 5d92a95ea9b480235b7c9ca5949a681376eba725)
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python-native_2.7.3.bb')
| -rw-r--r-- | meta/recipes-devtools/python/python-native_2.7.3.bb | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python-native_2.7.3.bb b/meta/recipes-devtools/python/python-native_2.7.3.bb new file mode 100644 index 0000000000..50bf894d0c --- /dev/null +++ b/meta/recipes-devtools/python/python-native_2.7.3.bb | |||
| @@ -0,0 +1,44 @@ | |||
| 1 | require python.inc | ||
| 2 | DEPENDS = "openssl-native bzip2-full-native zlib-native readline-native sqlite3-native" | ||
| 3 | PR = "${INC_PR}.0" | ||
| 4 | |||
| 5 | SRC_URI += "file://04-default-is-optimized.patch \ | ||
| 6 | file://05-enable-ctypes-cross-build.patch \ | ||
| 7 | file://06-ctypes-libffi-fix-configure.patch \ | ||
| 8 | file://10-distutils-fix-swig-parameter.patch \ | ||
| 9 | file://11-distutils-never-modify-shebang-line.patch \ | ||
| 10 | file://12-distutils-prefix-is-inside-staging-area.patch \ | ||
| 11 | file://debug.patch \ | ||
| 12 | file://unixccompiler.patch \ | ||
| 13 | file://nohostlibs.patch \ | ||
| 14 | file://multilib.patch \ | ||
| 15 | file://add-md5module-support.patch \ | ||
| 16 | " | ||
| 17 | S = "${WORKDIR}/Python-${PV}" | ||
| 18 | |||
| 19 | inherit native | ||
| 20 | |||
| 21 | RPROVIDES += "python-distutils-native python-compression-native python-textutils-native python-core-native" | ||
| 22 | |||
| 23 | EXTRA_OEMAKE = '\ | ||
| 24 | BUILD_SYS="" \ | ||
| 25 | HOST_SYS="" \ | ||
| 26 | LIBC="" \ | ||
| 27 | STAGING_LIBDIR=${STAGING_LIBDIR_NATIVE} \ | ||
| 28 | STAGING_INCDIR=${STAGING_INCDIR_NATIVE} \ | ||
| 29 | ' | ||
| 30 | |||
| 31 | do_configure_prepend() { | ||
| 32 | autoreconf --verbose --install --force --exclude=autopoint Modules/_ctypes/libffi || bbnote "_ctypes failed to autoreconf" | ||
| 33 | } | ||
| 34 | |||
| 35 | do_install() { | ||
| 36 | oe_runmake 'DESTDIR=${D}' install | ||
| 37 | install -d ${D}${bindir}/ | ||
| 38 | install -m 0755 Parser/pgen ${D}${bindir}/ | ||
| 39 | |||
| 40 | # Make sure we use /usr/bin/env python | ||
| 41 | for PYTHSCRIPT in `grep -rIl ${bindir}/python ${D}${bindir}`; do | ||
| 42 | sed -i -e '1s|^#!.*|#!/usr/bin/env python|' $PYTHSCRIPT | ||
| 43 | done | ||
| 44 | } | ||
