Date: Sunday, April 25, 2010 @ 11:16:49 Author: andrea Revision: 78542
lapack needs blas Modified: python-numpy/trunk/PKGBUILD Deleted: python-numpy/trunk/ChangeLog -----------+ ChangeLog | 34 ---------------------------------- PKGBUILD | 9 +++++++-- 2 files changed, 7 insertions(+), 36 deletions(-) Deleted: ChangeLog =================================================================== --- ChangeLog 2010-04-25 14:12:27 UTC (rev 78541) +++ ChangeLog 2010-04-25 15:16:49 UTC (rev 78542) @@ -1,34 +0,0 @@ -2009-05-28 Jan de Groot <[email protected]> - - * Remove dependency on python-nose - * Force disable Atlas to avoid linking to it - * Remove patch, it does not apply and should not be needed - -2009-01-26 Angel 'angvp' Velasquez <[email protected]> - - * Added a patch to fix FS#12869 - -2008-11-04 Douglas Soares de Andrade <[email protected]> - - * Updated for python2.6: 1.2.1 - -2008-09-30 Douglas Soares de Andrade <[email protected]> - - * Updated for i686: 1.2.0 - -2008-08-12 Douglas Soares de Andrade <[email protected]> - - * Updated for i686: 1.1.1 - -2008-06-02 Douglas Soares de Andrade <[email protected]> - - * Updated for i686 - 1.1.0 - -2008-02-12 Douglas Soares de Andrade <[email protected]> - - * Updated to new version - 1.0.4 - -2007-10-29 Douglas Soares de Andrade <[email protected]> - - * Updated to new version - 1.0.3.1 - Modified: PKGBUILD =================================================================== --- PKGBUILD 2010-04-25 14:12:27 UTC (rev 78541) +++ PKGBUILD 2010-04-25 15:16:49 UTC (rev 78542) @@ -1,5 +1,6 @@ # $Id: PKGBUILD,v 1.20 2009/01/26 17:07:33 angvp Exp $ -# Maintainer: Douglas Soares de Andrade <[email protected]> +# Maintainer: +# Contributor: Douglas Soares de Andrade <[email protected]> # Contributor: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve> pkgname=python-numpy @@ -9,7 +10,7 @@ arch=('i686' 'x86_64') license=('custom') url="http://numpy.scipy.org/" -depends=('blas' 'lapack') +depends=('lapack') makedepends=('python-nose' 'gcc-fortran') optdepends=('python-nose: test suite') source=(http://downloads.sourceforge.net/numpy/numpy-${pkgver}.tar.gz) @@ -20,6 +21,10 @@ export Atlas=None export LDFLAGS="$LDFLAGS -shared" python setup.py config_fc --fcompiler=gnu95 build || return 1 +} + +package() { + cd "${srcdir}/numpy-${pkgver}" python setup.py config_fc --fcompiler=gnu95 install --prefix=/usr --root="${pkgdir}" || return 1 install -D -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" || return 1
