diff options
| author | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-11-15 13:55:06 +0000 |
|---|---|---|
| committer | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-11-15 13:55:06 +0000 |
| commit | 3cfbc3b20b524748ec7253d6dfdc0c5eb17836cc (patch) | |
| tree | d6731c1df8707972687bac18db0336599cfffe66 /meta-extras/packages/python/python-native_2.5.1.bb | |
| parent | eaafa55d861b0a31e62895845730e778a0253ec9 (diff) | |
| download | poky-3cfbc3b20b524748ec7253d6dfdc0c5eb17836cc.tar.gz | |
python: update to 2.5.1 from OE (without tcl/tk deps)
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3176 311d38ba-8fff-0310-9ca6-ca027cbcb966
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, 34 insertions, 0 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 new file mode 100644 index 0000000000..ea6e257043 --- /dev/null +++ b/meta-extras/packages/python/python-native_2.5.1.bb | |||
| @@ -0,0 +1,34 @@ | |||
| 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 = "ml1" | ||
| 8 | |||
| 9 | EXCLUDE_FROM_WORLD = "1" | ||
| 10 | |||
| 11 | SRC_URI = "http://www.python.org/ftp/python/${PV}/Python-${PV}.tar.bz2 \ | ||
| 12 | file://bindir-libdir.patch;patch=1 \ | ||
| 13 | file://cross-distutils.patch;patch=1 \ | ||
| 14 | file://dont-modify-shebang-line.patch;patch=1 \ | ||
| 15 | file://default-is-optimized.patch;patch=1" | ||
| 16 | S = "${WORKDIR}/Python-${PV}" | ||
| 17 | |||
| 18 | inherit autotools native | ||
| 19 | |||
| 20 | prefix = "${STAGING_DIR_NATIVE}/${layout_prefix}" | ||
| 21 | exec_prefix = "${STAGING_DIR_NATIVE}/${layout_exec_prefix}" | ||
| 22 | |||
| 23 | EXTRA_OECONF = "--with-threads --with-pymalloc --with-cyclic-gc \ | ||
| 24 | --without-cxx --with-signal-module --with-wctype-functions" | ||
| 25 | EXTRA_OEMAKE = 'BUILD_SYS="" HOST_SYS=""' | ||
| 26 | |||
| 27 | #do_configure() { | ||
| 28 | # # the autofoo stuff is too old to allow regenerating | ||
| 29 | # oe_runconf | ||
| 30 | #} | ||
| 31 | |||
| 32 | do_stage_append() { | ||
| 33 | install -m 0755 Parser/pgen ${STAGING_BINDIR_NATIVE}/ | ||
| 34 | } | ||
