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_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_2.5.1.bb')
| -rw-r--r-- | meta-extras/packages/python/python_2.5.1.bb | 96 |
1 files changed, 96 insertions, 0 deletions
diff --git a/meta-extras/packages/python/python_2.5.1.bb b/meta-extras/packages/python/python_2.5.1.bb new file mode 100644 index 0000000000..63b7c368a8 --- /dev/null +++ b/meta-extras/packages/python/python_2.5.1.bb | |||
| @@ -0,0 +1,96 @@ | |||
| 1 | DESCRIPTION = "Python Programming Language" | ||
| 2 | HOMEPAGE = "http://www.python.org" | ||
| 3 | LICENSE = "PSF" | ||
| 4 | SECTION = "devel/python" | ||
| 5 | PRIORITY = "optional" | ||
| 6 | DEPENDS = "python-native readline zlib gdbm openssl sqlite3" | ||
| 7 | DEPENDS_sharprom = "python-native readline zlib gdbm openssl" | ||
| 8 | |||
| 9 | # NOTE: Keep the digit in sync with BASEREV in contrib/generate-manifest-2.5.py | ||
| 10 | PR = "ml1" | ||
| 11 | |||
| 12 | PYTHON_MAJMIN = "2.5" | ||
| 13 | |||
| 14 | SRC_URI = "http://www.python.org/ftp/python/${PV}/Python-${PV}.tar.bz2 \ | ||
| 15 | file://bindir-libdir.patch;patch=1 \ | ||
| 16 | file://crosscompile.patch;patch=1 \ | ||
| 17 | file://fix-tkinter-detection.patch;patch=1 \ | ||
| 18 | file://autohell.patch;patch=1 \ | ||
| 19 | file://sitebranding.patch;patch=1 \ | ||
| 20 | file://default-is-optimized.patch;patch=1" | ||
| 21 | S = "${WORKDIR}/Python-${PV}" | ||
| 22 | |||
| 23 | inherit autotools | ||
| 24 | |||
| 25 | EXTRA_OECONF = "--with-threads --with-pymalloc --with-cyclic-gc \ | ||
| 26 | --without-cxx --with-signal-module --with-wctype-functions \ | ||
| 27 | --enable-shared" | ||
| 28 | |||
| 29 | # | ||
| 30 | # copy config.h and an appropriate Makefile for distutils.sysconfig | ||
| 31 | # which laters uses the information out of these to compile extensions | ||
| 32 | # | ||
| 33 | do_compile_prepend() { | ||
| 34 | install -d ${STAGING_INCDIR}/python${PYTHON_MAJMIN}/ | ||
| 35 | install -d ${STAGING_LIBDIR}/python${PYTHON_MAJMIN}/config/ | ||
| 36 | install -m 0644 pyconfig.h ${STAGING_INCDIR}/python${PYTHON_MAJMIN}/ | ||
| 37 | install -m 0644 Makefile Makefile.orig | ||
| 38 | install -m 0644 Makefile Makefile.backup | ||
| 39 | sed -e 's,${includedir},${STAGING_INCDIR},' < Makefile.backup > Makefile | ||
| 40 | install -m 0644 Makefile Makefile.backup | ||
| 41 | sed -e 's,${libdir},${STAGING_LIBDIR},' < Makefile.backup > Makefile | ||
| 42 | install -m 0644 Makefile ${STAGING_LIBDIR}/python${PYTHON_MAJMIN}/config/ | ||
| 43 | } | ||
| 44 | |||
| 45 | do_compile() { | ||
| 46 | oe_runmake HOSTPGEN=${STAGING_BINDIR_NATIVE}/pgen \ | ||
| 47 | HOSTPYTHON=${STAGING_BINDIR_NATIVE}/python \ | ||
| 48 | STAGING_LIBDIR=${STAGING_LIBDIR} \ | ||
| 49 | STAGING_INCDIR=${STAGING_INCDIR} \ | ||
| 50 | BUILD_SYS=${BUILD_SYS} HOST_SYS=${HOST_SYS} \ | ||
| 51 | OPT="${CFLAGS}" libpython2.5.so | ||
| 52 | |||
| 53 | oe_libinstall -so libpython2.5 ${STAGING_LIBDIR} | ||
| 54 | |||
| 55 | oe_runmake HOSTPGEN=${STAGING_BINDIR_NATIVE}/pgen \ | ||
| 56 | HOSTPYTHON=${STAGING_BINDIR_NATIVE}/python \ | ||
| 57 | STAGING_LIBDIR=${STAGING_LIBDIR} \ | ||
| 58 | STAGING_INCDIR=${STAGING_INCDIR} \ | ||
| 59 | BUILD_SYS=${BUILD_SYS} HOST_SYS=${HOST_SYS} \ | ||
| 60 | OPT="${CFLAGS}" | ||
| 61 | } | ||
| 62 | |||
| 63 | do_stage() { | ||
| 64 | install -m 0644 Include/*.h ${STAGING_INCDIR}/python${PYTHON_MAJMIN}/ | ||
| 65 | oe_libinstall -a -so libpython${PYTHON_MAJMIN} ${STAGING_LIBDIR} | ||
| 66 | } | ||
| 67 | |||
| 68 | do_install() { | ||
| 69 | install -m 0644 Makefile.orig Makefile | ||
| 70 | oe_runmake HOSTPGEN=${STAGING_BINDIR_NATIVE}/pgen \ | ||
| 71 | HOSTPYTHON=${STAGING_BINDIR_NATIVE}/python \ | ||
| 72 | STAGING_LIBDIR=${STAGING_LIBDIR} \ | ||
| 73 | STAGING_INCDIR=${STAGING_INCDIR} \ | ||
| 74 | BUILD_SYS=${BUILD_SYS} HOST_SYS=${HOST_SYS} \ | ||
| 75 | DESTDIR=${D} LIBDIR=${libdir} install | ||
| 76 | } | ||
| 77 | |||
| 78 | require python-${PYTHON_MAJMIN}-manifest.inc | ||
| 79 | |||
| 80 | RPROVIDES_python-core = "python" | ||
| 81 | RPROVIDES_python-curses = "python" | ||
| 82 | |||
| 83 | PACKAGES =+ "libpython2" | ||
| 84 | FILES_libpython2 = "${libdir}/libpython*" | ||
| 85 | |||
| 86 | # catch debug extensions | ||
| 87 | FILES_python-dbg += "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/.debug" | ||
| 88 | |||
| 89 | # catch all the rest (unsorted) | ||
| 90 | PACKAGES += "python-misc" | ||
| 91 | FILES_python-misc = "${libdir}/python${PYTHON_MAJMIN}" | ||
| 92 | |||
| 93 | # catch manpage | ||
| 94 | PACKAGES += "python-man" | ||
| 95 | FILES_python-man = "${datadir}/man" | ||
| 96 | |||
