summaryrefslogtreecommitdiff
path: root/extra/python/PKGBUILD
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2014-03-13 03:50:12 +0000
committerNicolás Reynolds <fauno@endefensadelsl.org>2014-03-13 03:50:12 +0000
commit4e5db57790dfb7243ca8b1d7c82f834a6294d8ab (patch)
tree5fa56a9aaad99bff3be377187b518aa7938dd746 /extra/python/PKGBUILD
parent5d4b5782f03734e12c907cbc7e4b8c35926e9554 (diff)
Thu Mar 13 03:41:44 UTC 2014
Diffstat (limited to 'extra/python/PKGBUILD')
-rw-r--r--extra/python/PKGBUILD21
1 files changed, 13 insertions, 8 deletions
diff --git a/extra/python/PKGBUILD b/extra/python/PKGBUILD
index 5654b4db8..9c8783dc4 100644
--- a/extra/python/PKGBUILD
+++ b/extra/python/PKGBUILD
@@ -1,11 +1,12 @@
-# $Id: PKGBUILD 205909 2014-02-13 23:29:34Z angvp $
-# Maintainer: Angel Velasquez <angvp@archlinux.org>
+# $Id: PKGBUILD 207597 2014-03-12 17:46:22Z fyan $
+# Maintainer: Angel Velasquez <angvp@archlinux.org>
+# 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=python
-pkgver=3.3.4
+pkgver=3.3.5
pkgrel=1
_pybasever=3.3
pkgdesc="Next generation of the python high-level scripting language"
@@ -13,13 +14,16 @@ arch=('i686' 'x86_64')
license=('custom')
url="http://www.python.org/"
depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib')
-makedepends=('tk>=8.6.0' 'sqlite' 'valgrind' 'bluez-libs')
-optdepends=('tk: for tkinter' 'sqlite')
+makedepends=('tk>=8.6.0' 'sqlite' 'valgrind' 'bluez-libs' 'mpdecimal')
+optdepends=('sqlite'
+ 'mpdecimal: for decimal'
+ 'xz: for lzma'
+ 'tk: for tkinter')
options=('!makeflags')
provides=('python3')
replaces=('python3')
source=(http://www.python.org/ftp/python/${pkgver%rc*}/Python-${pkgver}.tar.xz)
-sha1sums=('2c9586eeb4b6e45e9ebc28372c0856c709d9a522')
+sha1sums=('6683b26dd2cfd23af852abfcf1aedf25bbd44839')
prepare() {
cd "${srcdir}/Python-${pkgver}"
@@ -32,7 +36,7 @@ prepare() {
rm -r Modules/expat
rm -r Modules/zlib
rm -r Modules/_ctypes/{darwin,libffi}*
-
+ rm -r Modules/_decimal/libmpdec
}
build() {
@@ -46,7 +50,8 @@ build() {
--with-valgrind \
--with-system-expat \
--with-dbmliborder=gdbm:ndbm \
- --with-system-ffi
+ --with-system-ffi \
+ --with-system-libmpdec
make
}