development/numpy: Updated for version 1.3.0

This commit is contained in:
Aleksandar Samardzic 2010-05-12 17:38:43 +02:00 committed by David Somero
parent 0cae248ac1
commit 9dccbbf561
2 changed files with 9 additions and 7 deletions

View File

@ -5,7 +5,7 @@
# Written by Aleksandar Samardzic <asamardzic@gmail.com>
PRGNAM=numpy
VERSION=${VERSION:-1.2.0}
VERSION=${VERSION:-1.3.0}
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@ -34,8 +34,10 @@ python setup.py build
python setup.py install --root $PKG
( cd $PKG
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \
xargs strip --strip-unneeded 2> /dev/null || true
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \
xargs strip --strip-unneeded 2> /dev/null
)
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION

View File

@ -1,8 +1,8 @@
PRGNAM="numpy"
VERSION="1.2.0"
VERSION="1.3.0"
HOMEPAGE="http://numpy.scipy.org/"
DOWNLOAD="http://downloads.sourceforge.net/numpy/numpy-1.2.0.tar.gz"
MD5SUM="1e760a8bca54f6116c42cd1b124673af"
DOWNLOAD="http://downloads.sourceforge.net/numpy/numpy-1.3.0.tar.gz"
MD5SUM="3f7773ff0971a5ebb8591536d8ec7bd6"
MAINTAINER="Aleksandar Samardzic"
EMAIL="asamardzic@gmail.com"
APPROVED="rworkman"
APPROVED="dsomero,rworkman"