summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBritney Fransen <brfransen@gmail.com>2016-06-08 20:57:24 (GMT)
committerBritney Fransen <brfransen@gmail.com>2016-06-08 20:57:24 (GMT)
commit0279d8cfdd8266b3869e34d912b61716bb1161c7 (patch)
treeb97e9c9673a4e237eecfac16db86e2f92e07eabd
parentd8a0bb105ac09f88068276409d41cfca54f197d8 (diff)
downloadlinhes_pkgbuild-0279d8cfdd8266b3869e34d912b61716bb1161c7.zip
linhes_pkgbuild-0279d8cfdd8266b3869e34d912b61716bb1161c7.tar.gz
linhes_pkgbuild-0279d8cfdd8266b3869e34d912b61716bb1161c7.tar.bz2
cython: update to 0.24
-rw-r--r--abs/core/cython/PKGBUILD21
1 files changed, 10 insertions, 11 deletions
diff --git a/abs/core/cython/PKGBUILD b/abs/core/cython/PKGBUILD
index 3665abe..1952091 100644
--- a/abs/core/cython/PKGBUILD
+++ b/abs/core/cython/PKGBUILD
@@ -1,36 +1,35 @@
-# $Id: PKGBUILD 69975 2012-04-27 16:14:15Z spupykin $
+# $Id$
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Igor Scabini <furester @ gmail.com>
-pkgname=( 'cython2')
+pkgname=('cython2')
pkgbase=cython
-pkgver=0.16
+pkgver=0.24
pkgrel=1
pkgdesc="C-Extensions for Python "
arch=(i686 x86_64)
url="http://www.cython.org"
license=('APACHE')
-makedepends=( 'python2-distribute')
+makedepends=('python2-setuptools')
source=("http://cython.org/release/Cython-$pkgver.tar.gz")
-md5sums=('7934186ada3552110aba92062fa88b1c')
-
-build() {
- true
-}
+md5sums=('14fbc970f4a856845e633cbc09e61048')
package_cython() {
- depends=('python')
+ depends=('python' 'python-setuptools')
cd $srcdir/Cython-$pkgver
python setup.py install --root=$pkgdir
+
+ sed -i 's|#!.*python|#!/usr/bin/python3|' $pkgdir/usr/bin/*
}
package_cython2() {
- depends=('python2')
+ depends=('python2' 'python2-setuptools')
cd $srcdir/Cython-$pkgver
python2 setup.py install --root=$pkgdir
mv $pkgdir/usr/bin/cygdb $pkgdir/usr/bin/cygdb2
mv $pkgdir/usr/bin/cython $pkgdir/usr/bin/cython2
+ mv $pkgdir/usr/bin/cythonize $pkgdir/usr/bin/cythonize2
}