summaryrefslogtreecommitdiff
path: root/extra/python2
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2014-07-05 03:56:09 +0000
committerNicolás Reynolds <fauno@endefensadelsl.org>2014-07-05 03:56:09 +0000
commit4cd3fcfccda5c0375669bd300834ac77a0a617fb (patch)
tree45654211fb7434273df8b8fdc98c761fe1eef5e8 /extra/python2
parent32fb2c222ff8558d8abdfa411e8487dc9a3c0696 (diff)
Sat Jul 5 03:51:53 UTC 2014
Diffstat (limited to 'extra/python2')
-rw-r--r--extra/python2/PKGBUILD12
1 files changed, 6 insertions, 6 deletions
diff --git a/extra/python2/PKGBUILD b/extra/python2/PKGBUILD
index 26d205200..bab408200 100644
--- a/extra/python2/PKGBUILD
+++ b/extra/python2/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 214287 2014-06-05 03:59:39Z fyan $
+# $Id: PKGBUILD 216452 2014-07-04 03:58:53Z fyan $
# Maintainer: Felix Yan <felixonmars@gmail.com>
# Contributor: Stéphane Gaudreault <stephane@archlinux.org>
# Contributor: Allan McRae <allan@archlinux.org>
# Contributor: Jason Chu <jason@archlinux.org>
pkgname=python2
-pkgver=2.7.7
+pkgver=2.7.8
pkgrel=1
_pybasever=2.7
pkgdesc="A high-level scripting language"
@@ -13,11 +13,11 @@ arch=('i686' 'x86_64')
license=('PSF')
url="http://www.python.org/"
depends=('bzip2' 'gdbm' 'openssl' 'zlib' 'expat' 'sqlite' 'libffi')
-makedepends=('tk>=8.6.0' 'bluez-libs')
+makedepends=('tk' 'bluez-libs')
optdepends=('tk: for IDLE')
conflicts=('python<3')
source=(http://www.python.org/ftp/python/${pkgver%rc?}/Python-${pkgver}.tar.xz)
-sha1sums=('5f82557cac5abf18d1df6f8bb2029aa335b321f4')
+sha1sums=('9c6281eeace0c3646fa556c8087bb1b7e033c9c4')
prepare() {
cd Python-${pkgver}
@@ -33,7 +33,7 @@ prepare() {
sed -i -e "s|^#.* /usr/local/bin/python|#!/usr/bin/python2|" Lib/cgi.py
sed -i "s/python2.3/python2/g" Lib/distutils/tests/test_build_scripts.py \
- Lib/distutils/tests/test_install_scripts.py Tools/scripts/gprof2html.py
+ Lib/distutils/tests/test_install_scripts.py
# Ensure that we are using the system copy of various libraries (expat, zlib and libffi),
# rather than copies shipped in the tarball
@@ -45,7 +45,7 @@ prepare() {
find . -name '*.py' | \
xargs sed -i "s|#[ ]*![ ]*/usr/bin/env python$|#!/usr/bin/env python2|"
- # Workaround asdl_c.py error
+ # Workaround asdl_c.py error after we touched the shebangs
touch Include/Python-ast.h Python/Python-ast.c
}