diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2009-12-03 12:07:18 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2009-12-03 12:07:18 +0000 |
commit | 3b5336f7cf1c01c23e2fd81b54fbf89558fc2cd4 (patch) | |
tree | e1b0dda81e40da45f269b81a89f4145f350037bf /meta/packages/python/python-native_2.5.1.bb | |
parent | de73c65121ff57ca094e86401bcbc02f6629ebf2 (diff) | |
download | poky-3b5336f7cf1c01c23e2fd81b54fbf89558fc2cd4.tar.gz |
python: Update 2.5 -> 2.6 (from OE.dev)
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/packages/python/python-native_2.5.1.bb')
-rw-r--r-- | meta/packages/python/python-native_2.5.1.bb | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/meta/packages/python/python-native_2.5.1.bb b/meta/packages/python/python-native_2.5.1.bb deleted file mode 100644 index 421bcaf1bd..0000000000 --- a/meta/packages/python/python-native_2.5.1.bb +++ /dev/null | |||
@@ -1,34 +0,0 @@ | |||
1 | DESCRIPTION = "The Python Programming Language" | ||
2 | HOMEPAGE = "http://www.python.org" | ||
3 | LICENSE = "PSF" | ||
4 | DEPENDS = "openssl-native bzip2-full-native sqlite3-native" | ||
5 | SECTION = "devel/python" | ||
6 | PRIORITY = "optional" | ||
7 | PR = "ml6" | ||
8 | |||
9 | EXCLUDE_FROM_WORLD = "1" | ||
10 | |||
11 | SRC_URI = "\ | ||
12 | http://www.python.org/ftp/python/${PV}/Python-${PV}.tar.bz2 \ | ||
13 | file://bindir-libdir.patch;patch=1 \ | ||
14 | file://cross-distutils.patch;patch=1 \ | ||
15 | file://dont-modify-shebang-line.patch;patch=1 \ | ||
16 | file://default-is-optimized.patch;patch=1 \ | ||
17 | file://catchup-with-swig.patch;patch=1 \ | ||
18 | file://fix-staging.patch;patch=1 \ | ||
19 | file://enable-ctypes-module.patch;patch=1 \ | ||
20 | " | ||
21 | S = "${WORKDIR}/Python-${PV}" | ||
22 | |||
23 | inherit autotools native | ||
24 | |||
25 | EXTRA_OECONF = "--with-threads --with-pymalloc --with-cyclic-gc \ | ||
26 | --without-cxx --with-signal-module --with-wctype-functions" | ||
27 | EXTRA_OEMAKE = 'BUILD_SYS="" HOST_SYS="" STAGING_LIBDIR=${STAGING_LIBDIR} \ | ||
28 | STAGING_INCDIR=${STAGING_INCDIR}' | ||
29 | |||
30 | do_install() { | ||
31 | oe_runmake 'DESTDIR=${D}' install | ||
32 | install -d ${D}${bindir}/ | ||
33 | install -m 0755 Parser/pgen ${D}${bindir}/ | ||
34 | } | ||