#11560: update sympy to 0.7.0
---------------------------+------------------------------------------------
Reporter: fbissey | Owner: tbd
Type: enhancement | Status: new
Priority: major | Milestone: sage-4.7.2
Component: packages | Keywords:
Work_issues: | Upstream: N/A
Reviewer: | Author:
Merged: | Dependencies:
---------------------------+------------------------------------------------
Comment(by fbissey):
the README has the following text
{{{
How to create a SymPy spkg package:
$ ./get-orig-sources
Then rename the sympy-spkg directory to sympy-0.5.13 (choose the correct
version) and execute from the parent directory:
$ sage -pkg sympy-0.5.13
}}}
which calls
{{{
#! /bin/sh
#execute this script from the same directory, where spkg-install is.
#it will remove the src dir (!) and create a new one instead
ver=0.6.4
wget http://sympy.googlecode.com/files/sympy-$ver.tar.gz
tar xzf sympy-$ver.tar.gz
rm -rf src sympy-$ver.tar.gz
mv sympy-$ver src
}}}
which I guess would still work once "ver" is put to the right value. But
there is an old stale file (which the first one I saw) which pulls on hg
{{{
#! /bin/sh
# execute this script from the same directory, where spkg-install is.
# it will remove the src dir (!) and create a new one instead from the
# Mercurial sources of SymPy, located in ~/sympy
ver=0.5.15-hg
dir=`pwd`
cd ~/sympy
./setup.py sdist
cp dist/sympy-$ver.tar.gz $dir
cd $dir
tar xzf sympy-$ver.tar.gz
rm -rf src sympy-$ver.tar.gz
mv sympy-$ver src
}}}
This one will have to go.
--
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/11560#comment:6>
Sage <http://www.sagemath.org>
Sage: Creating a Viable Open Source Alternative to Magma, Maple, Mathematica,
and MATLAB
--
You received this message because you are subscribed to the Google Groups
"sage-trac" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/sage-trac?hl=en.