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


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


desc
@@


1.1
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
    git clone git://github.com/scipy/scipy.git
else
    pushd scipy
    git pull
    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
version python3.1
version python3.2
popd # ../BUILD

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