head	1.3;
access;
symbols;
locks; strict;
comment	@# @;


1.3
date	2011.07.08.14.35.47;	author gvermeul;	state dead;
branches;
next	1.2;

1.2
date	2010.08.03.08.13.13;	author gvermeul;	state Exp;
branches;
next	1.1;

1.1
date	2006.10.14.06.14.38;	author gvermeul;	state Exp;
branches;
next	;


desc
@@


1.3
log
@Upgrade to latest versions.
Follow switch of numpy and scipy from svn to git.
@
text
@#!/bin/bash

PKG=scipy

pushd ../SOURCES
if [ ! -e scipy ]; then
    svn co http://svn.scipy.org/svn/scipy/trunk scipy
else
    pushd scipy
    svn up
    popd scipy
fi
popd # ../SOURCES

function version() {
    rm -rf $PKG
    cp -r ../SOURCES/$PKG .
    pushd $PKG
    $1 setup.py build --force
    $1 setup.py install
    popd # $PKG
}

pushd ../BUILD
version python2.5
version python2.6
version python2.7
popd # ../BUILD

# Local Variables: ***
# mode: sh ***
# End: ***
@


1.2
log
@Removed obsolete files.
Added build-xlwt.
Added more python versions to build-jinja2 and build-scipy-svn.
@
text
@@


1.1
log
@Add the build scripts for NumPy and SciPy svn.
@
text
@d5 1
a5 1
pushd ../BUILD
d8 4
d13 10
d24 4
a27 5
pushd $PKG
svn up
python setup.py build --force
python setup.py install
popd # $PKG
@

