diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-07-20 11:40:14 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-07-20 11:40:14 -0300 |
commit | 2f352ca8b911d96566b10adc049f76a552ab93aa (patch) | |
tree | a70b2a875856fbf847f12ae33f9434ea8ca1ef56 /extra/python-numpy/PKGBUILD | |
parent | 12c074375919d2de177eb9456352866902118a03 (diff) | |
parent | 94e3eb45cd3402cbc5efd70ae725e8d48ed696af (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
community/pbzip2/PKGBUILD
extra/audacious/PKGBUILD
extra/stardict/PKGBUILD
Diffstat (limited to 'extra/python-numpy/PKGBUILD')
-rwxr-xr-x | extra/python-numpy/PKGBUILD | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/extra/python-numpy/PKGBUILD b/extra/python-numpy/PKGBUILD index c4fc319d6..7db9530c0 100755 --- a/extra/python-numpy/PKGBUILD +++ b/extra/python-numpy/PKGBUILD @@ -1,19 +1,19 @@ -# $Id: PKGBUILD 110670 2011-02-21 12:18:28Z stephane $ +# $Id: PKGBUILD 131668 2011-07-13 13:42:02Z stephane $ # Maintainer: Jan de Groot <jgc@archlinux.org> # Contributor: Douglas Soares de Andrade <dsa@aur.archlinux.org> # Contributor: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve> pkgbase=python-numpy -pkgname=('python2-numpy' 'python3-numpy') -pkgver=1.5.1 -pkgrel=2 +pkgname=('python2-numpy' 'python-numpy') +pkgver=1.6.0 +pkgrel=1 pkgdesc="Scientific tools for Python" arch=('i686' 'x86_64' 'mips64el') license=('custom') url="http://numpy.scipy.org/" makedepends=('lapack' 'python' 'python2' 'python-distribute' 'python2-distribute' 'gcc-fortran' 'python-nose') source=(http://downloads.sourceforge.net/numpy/numpy-${pkgver}.tar.gz) -md5sums=('376ef150df41b5353944ab742145352d') +md5sums=('e0993c74cb8e83292e560eac1a9be8e9') build() { cd "${srcdir}" @@ -33,9 +33,6 @@ build() { package_python2-numpy() { depends=('lapack' 'python2') - provides=("python-numpy=${pkgver}") - replaces=('python-numpy') - conflicts=('python-numpy') optdepends=('python-nose: testsuite') cd "${srcdir}/numpy-py2-${pkgver}" @@ -50,8 +47,11 @@ package_python2-numpy() { $(find ${pkgdir} -name '*.py') } -package_python3-numpy() { +package_python-numpy() { depends=('lapack' 'python') + provides=("python3-numpy=${pkgver}") + replaces=('python3-numpy') + conflicts=('python3-numpy') cd "${srcdir}/numpy-${pkgver}" python setup.py config_fc --fcompiler=gnu95 install --prefix=/usr --root="${pkgdir}" --optimize=1 |