academic/sympy: Updated for version 0.7.1.

Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
This commit is contained in:
Serban Udrea 2011-11-04 18:17:57 -02:00 committed by Niels Horn
parent 83ad715c57
commit 5a4f77a6c2
3 changed files with 20 additions and 13 deletions

View file

@ -1,6 +1,14 @@
SymPy is a Python library for symbolic mathematics. It aims to become a
full-featured computer algebra system (CAS) while keeping the code as simple as
possible in order to be comprehensible and easily extensible. SymPy is written
entirely in Python and does not require any external libraries.
SymPy is a Python library for symbolic mathematics. It aims to become
a full-featured computer algebra system (CAS) while keeping the
code as simple as possible in order to be comprehensible and easily
extensible. SymPy is written entirely in Python and does not require
any external libraries.
If you install iPython on your machine, sympy could take advantage of it.
Optional dependency (as of version 0.7.1): pyglet, needed only for
plotting.
NOTE: Please read
https://github.com/sympy/sympy/wiki/Release-Notes-for-0.7.0 for backward
compatibility issues with sympy 0.6.x.

View file

@ -4,9 +4,10 @@
# Written by Grissiom <chaos.proton@gmail.com>
# Updated for 0.6.7 by João Felipe Santos <joao.eel@gmail.com>
# Updated for 0.7.1 by Serban Udrea <S.Udrea@gsi.de>
PRGNAM=sympy
VERSION=${VERSION:-0.6.7}
VERSION=${VERSION:-0.7.1}
BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
@ -42,10 +43,8 @@ python setup.py install --root=$PKG
mv $PKG/usr/share/man $PKG/usr/man
rmdir $PKG/usr/share
( cd $PKG/usr/man
find . -type f -exec gzip -9 {} \;
for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
)
find $PKG/usr/man -type f -exec gzip -9 {} \;
for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a \

View file

@ -1,10 +1,10 @@
PRGNAM="sympy"
VERSION="0.6.7"
VERSION="0.7.1"
HOMEPAGE="http://code.google.com/p/sympy/"
DOWNLOAD="http://sympy.googlecode.com/files/sympy-0.6.7.tar.gz"
MD5SUM="d73e0a5a128f38f930d566110f4b668b"
DOWNLOAD="http://sympy.googlecode.com/files/sympy-0.7.1.tar.gz"
MD5SUM="3847b5ed5c1531bf3c1b849dc2337253"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
MAINTAINER="Serban Udrea"
EMAIL="S.Udrea@gsi.de"
APPROVED="rworkman"
APPROVED="rworkman,Niels Horn"