diff options
author | Nitin A Kamble <nitin.a.kamble@intel.com> | 2011-10-14 07:06:13 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-10-31 22:03:20 +0000 |
commit | 01103b2f299fd9aa05ecae40760c2011f235f710 (patch) | |
tree | 43ebed3560003af61dccfefeb2d3da4932ad7167 /meta/recipes-devtools/python/python.inc | |
parent | 0d18f03b225ffaffb1e17b40ff909f4948880647 (diff) | |
download | poky-01103b2f299fd9aa05ecae40760c2011f235f710.tar.gz |
python, python-native: upgrade from 2.6.6 to 2.7.2
Rebased these patches to the newer code
modified: python-native/nohostlibs.patch
modified: python/01-use-proper-tools-for-cross-build.patch
modified: python/06-avoid_usr_lib_termcap_path_in_linking.patch
modified: python/06-ctypes-libffi-fix-configure.patch
modified: python/multilib.patch
Deleted these patches are the are now upstream
deleted: python/02-remove-test-for-cross.patch
deleted: python/security_issue_2254_fix.patch
Added this patch to python-native
new file: python-native/multilib.patch
Updated site config file for python
modified: ../../site/common-linux : add ac_cv_have_long_long_format for python
avoid this error in python:
Include/pyport.h:243:13: error: #error "This platform's pyconfig.h needs to define PY_FORMAT_LONG_LONG"
Updated default python version
modified: ../../conf/distro/include/default-versions.inc
(From OE-Core rev: b284e9a512860b8a8380be80f96cebce6b92ff80)
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python.inc')
-rw-r--r-- | meta/recipes-devtools/python/python.inc | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/meta/recipes-devtools/python/python.inc b/meta/recipes-devtools/python/python.inc index a6cc91789c..3e970a7161 100644 --- a/meta/recipes-devtools/python/python.inc +++ b/meta/recipes-devtools/python/python.inc | |||
@@ -1,13 +1,18 @@ | |||
1 | DESCRIPTION = "The Python Programming Language" | 1 | DESCRIPTION = "The Python Programming Language" |
2 | HOMEPAGE = "http://www.python.org" | 2 | HOMEPAGE = "http://www.python.org" |
3 | LICENSE = "PSF" | 3 | LICENSE = "PSFv2" |
4 | SECTION = "devel/python" | 4 | SECTION = "devel/python" |
5 | # bump this on every change in contrib/python/generate-manifest-2.6.py | 5 | # bump this on every change in contrib/python/generate-manifest-2.7.py |
6 | INC_PR = "r2" | 6 | INC_PR = "r0" |
7 | 7 | ||
8 | DEFAULT_PREFERENCE = "-26" | 8 | LIC_FILES_CHKSUM = "file://LICENSE;md5=2dffb81509b47974467ea23409909b1c" |
9 | 9 | ||
10 | PYTHON_MAJMIN = "2.6" | 10 | SRC_URI = "http://www.python.org/ftp/python/${PV}/Python-${PV}.tar.bz2" |
11 | |||
12 | SRC_URI[md5sum] = "ba7b2f11ffdbf195ee0d111b9455a5bd" | ||
13 | SRC_URI[sha256sum] = "5057eb067eb5b5a6040dbd0e889e06550bde9ec041dadaa855ee9490034cbdab" | ||
14 | |||
15 | PYTHON_MAJMIN = "2.7" | ||
11 | 16 | ||
12 | inherit autotools | 17 | inherit autotools |
13 | 18 | ||
@@ -30,5 +35,3 @@ EXTRA_OECONF_linuxstdbase = "\ | |||
30 | --enable-shared \ | 35 | --enable-shared \ |
31 | ac_cv_sizeof_off_t=8 \ | 36 | ac_cv_sizeof_off_t=8 \ |
32 | " | 37 | " |
33 | |||
34 | PARALLEL_MAKE = "" | ||