# $Id: PKGBUILD 119684 2011-04-13 16:35:24Z stephane $ # Maintainer: Allan McRae # Contributer: Stéphane Gaudreault # Contributer: Jason Chu pkgname=python2 pkgver=2.7.1 pkgrel=8 _pybasever=2.7 pkgdesc="A high-level scripting language" arch=('i686' 'x86_64') license=('PSF') url="http://www.python.org/" depends=('db' 'bzip2' 'gdbm' 'openssl' 'zlib' 'expat' 'sqlite3' 'libffi') makedepends=('tk') optdepends=('tk: for IDLE') conflicts=('python<3') options=('!makeflags') source=(http://www.python.org/ftp/python/${pkgver}/Python-${pkgver}.tar.bz2 python-2.7-db51.diff python-2.7.1-fix-decimal-in-turkish-locale.patch) md5sums=('aa27bc25725137ba155910bd8e5ddc4f' 'd9b8161568ce17a305c1b71e61ccd4b5' '5032449f1ff2abfe18d14cc674165b23') build() { cd "${srcdir}/Python-${pkgver}" patch -Np1 -i ../python-2.7-db51.diff # Fix "import decimal" in the Turkish locale # cf : https://bugzilla.redhat.com/show_bug.cgi?id=694928 patch -Np1 -i ../python-2.7.1-fix-decimal-in-turkish-locale.patch # Temporary workaround for FS#22322 # See http://bugs.python.org/issue10835 for upstream report sed -i "/progname =/s/python/python${_pybasever}/" Python/pythonrun.c # Enable built-in SQLite3 module to load extensions (fix FS#22122) sed -i "/SQLITE_OMIT_LOAD_EXTENSION/d" setup.py # Ensure that we are using the system copy of various libraries (expat, zlib and libffi), # rather than copies shipped in the tarball rm -r Modules/expat rm -r Modules/zlib rm -r Modules/_ctypes/{darwin,libffi}* export OPT="${CFLAGS}" ./configure --prefix=/usr --enable-shared --with-threads --enable-ipv6 \ --enable-unicode=ucs4 --with-system-expat --with-system-ffi make } package() { cd "${srcdir}/Python-${pkgver}" make DESTDIR="${pkgdir}" altinstall maninstall ln -sf python${_pybasever} "${pkgdir}/usr/bin/python2" ln -sf python${_pybasever}-config "${pkgdir}/usr/bin/python2-config" ln -sf python${_pybasever}.1 "${pkgdir}/usr/share/man/man1/python2.1" ln -sf ../../libpython${_pybasever}.so \ "${pkgdir}/usr/lib/python${_pybasever}/config/libpython${_pybasever}.so" mv "${pkgdir}/usr/bin/smtpd.py" "${pkgdir}/usr/lib/python${_pybasever}/" # some useful "stuff" install -dm755 "${pkgdir}"/usr/lib/python${_pybasever}/Tools/{i18n,scripts} install -m755 Tools/i18n/{msgfmt,pygettext}.py \ "${pkgdir}/usr/lib/python${_pybasever}/Tools/i18n/" install -m755 Tools/scripts/{README,*py} \ "${pkgdir}/usr/lib/python${_pybasever}/Tools/scripts/" # fix conflicts with python mv "${pkgdir}"/usr/bin/idle{,2} mv "${pkgdir}"/usr/bin/pydoc{,2} mv "${pkgdir}"/usr/bin/2to3{,-2.7} # clean up #!s find "${pkgdir}/usr/lib/python${_pybasever}/" -name '*.py' | \ xargs sed -i "s|#[ ]*![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" # clean-up reference to build directory sed -i "s#${srcdir}/Python-${pkgver}:##" \ "${pkgdir}/usr/lib/python${_pybasever}/config/Makefile" # license install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" }