diff options
Diffstat (limited to 'meta-extras/packages/python/python-native_2.5.1.bb')
-rw-r--r-- | meta-extras/packages/python/python-native_2.5.1.bb | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/meta-extras/packages/python/python-native_2.5.1.bb b/meta-extras/packages/python/python-native_2.5.1.bb deleted file mode 100644 index 21e5c7999f..0000000000 --- a/meta-extras/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 | SECTION = "devel/python" | ||
5 | PRIORITY = "optional" | ||
6 | DEPENDS = "" | ||
7 | PR = "ml3" | ||
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 | " | ||
20 | S = "${WORKDIR}/Python-${PV}" | ||
21 | |||
22 | inherit autotools native | ||
23 | |||
24 | prefix = "${STAGING_DIR_NATIVE}/${layout_prefix}" | ||
25 | exec_prefix = "${STAGING_DIR_NATIVE}/${layout_exec_prefix}" | ||
26 | |||
27 | EXTRA_OECONF = "--with-threads --with-pymalloc --with-cyclic-gc \ | ||
28 | --without-cxx --with-signal-module --with-wctype-functions" | ||
29 | EXTRA_OEMAKE = 'BUILD_SYS="" HOST_SYS="" STAGING_LIBDIR=${STAGING_LIBDIR} \ | ||
30 | STAGING_INCDIR=${STAGING_INCDIR}' | ||
31 | |||
32 | do_stage_append() { | ||
33 | install -m 0755 Parser/pgen ${STAGING_BINDIR_NATIVE}/ | ||
34 | } | ||