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


1.5
date	2011.07.08.14.35.47;	author gvermeul;	state dead;
branches;
next	1.4;

1.4
date	2010.07.17.19.47.32;	author gvermeul;	state Exp;
branches;
next	1.3;

1.3
date	2010.01.19.21.45.44;	author gvermeul;	state Exp;
branches;
next	1.2;

1.2
date	2006.10.22.16.06.48;	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.5
log
@Upgrade to latest versions.
Follow switch of numpy and scipy from svn to git.
@
text
@#!/bin/bash

PKG=numpy

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

function version() {
    rm -rf $PKG
    cp -r ../SOURCES/$PKG .
    pushd $PKG
    if [ -f /etc/gentoo-release ]; then
	cat >site.cfg <<EOF
[atlas]
atlas_libs = lapack, blas, cblas, atlas
EOF
    fi
    $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
popd # ../BUILD

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


1.4
log
@Upgrade to latest releases and snapshots.
Install python-2.5, -2.6, -2.7, and -3.1.
Compile several packages for several or all python versions.
@
text
@@


1.3
log
@Update to latest releases and snapshots.
@
text
@d5 1
a5 3
pushd ../BUILD

rm -rf $PKG
d8 4
d13 1
a13 10
pushd $PKG
if [ -f /etc/gentoo-release ]; then
cat >site.cfg <<EOF
[atlas]
atlas_libs = lapack, blas, cblas, atlas
EOF
fi
python setup.py build --force 
python setup.py install
popd # $PKG
d15 6
a20 7
rm -rf $PKG
if [ ! -e numpy ]; then
    svn co http://svn.scipy.org/svn/numpy/trunk numpy
fi
pushd $PKG
if [ -f /etc/gentoo-release ]; then
cat >site.cfg <<EOF
d24 5
a28 4
fi
python3 setup.py build --force
python3 setup.py install
popd # $PKG
d30 5
@


1.2
log
@Specify the ATLAS libraries.
@
text
@d6 2
a10 1

d12 1
a12 2
svn up
if [ -f /etc/mandrakelinux-release ]; then
d15 1
a15 1
atlas_libs = lapack, f77blas, cblas, atlas
d18 9
d33 2
a34 2
python setup.py build --force 
python setup.py install
d36 1
@


1.1
log
@Add the build scripts for NumPy and SciPy svn.
@
text
@d12 13
a24 1
python setup.py build --force
@

