head	1.13;
access;
symbols
	start:1.1.1.1 gvermeul:1.1.1;
locks; strict;
comment	@# @;


1.13
date	2010.07.17.19.47.32;	author gvermeul;	state dead;
branches;
next	1.12;

1.12
date	2010.03.28.16.37.58;	author gvermeul;	state Exp;
branches;
next	1.11;

1.11
date	2010.03.27.20.52.32;	author gvermeul;	state Exp;
branches;
next	1.10;

1.10
date	2009.11.25.08.36.33;	author gvermeul;	state Exp;
branches;
next	1.9;

1.9
date	2009.07.11.10.58.54;	author gvermeul;	state Exp;
branches;
next	1.8;

1.8
date	2009.01.04.19.42.33;	author gvermeul;	state Exp;
branches;
next	1.7;

1.7
date	2008.10.09.05.42.18;	author gvermeul;	state Exp;
branches;
next	1.6;

1.6
date	2008.09.01.16.03.28;	author gvermeul;	state Exp;
branches;
next	1.5;

1.5
date	2008.04.12.18.39.01;	author gvermeul;	state Exp;
branches;
next	1.4;

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

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

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

1.1
date	2006.09.23.14.05.42;	author gvermeul;	state Exp;
branches
	1.1.1.1;
next	;

1.1.1.1
date	2006.09.23.14.05.42;	author gvermeul;	state Exp;
branches;
next	;


desc
@@


1.13
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
@#!/bin/bash

VER=2.6.5
PKG=Python-$VER
JOBS=$(getconf _NPROCESSORS_ONLN)

pushd ../SOURCES
if [ ! -f $PKG.tar.bz2 ]; then
    wget http://www.python.org/ftp/python/$VER/$PKG.tar.bz2
fi
popd

pushd ../BUILD
rm -rf $PKG
tar xfj ../SOURCES/$PKG.tar.bz2
pushd $PKG
./configure --prefix=$HOME/usr --with-cxx=g++ --enable-shared --enable-unicode=ucs4
make -j $JOBS
make install
pushd Doc
make html
mkdir -p $HOME/usr/share/doc/python2.6
cp -R build/html $HOME/usr/share/doc/python2.6
popd # Doc
popd # $PKG
popd # ../BUILD

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

@


1.12
log
@Enable UCS4.
@
text
@@


1.11
log
@Upgrade to the latest releases and snapshots.
Use python2.6 and python3.1 explicitly.
@
text
@d17 1
a17 1
./configure --prefix=$HOME/usr --with-cxx=g++ --enable-shared
@


1.10
log
@Upgrade to the latest release.
@
text
@d3 2
a4 1
PKG=Python-2.6.4
d9 1
a9 1
    wget http://www.python.org/ftp/python/2.6.4/$PKG.tar.bz2
d17 1
a17 1
./configure --prefix=$HOME/usr --with-cxx=g++ --enable-shared --with-pydebug
@


1.9
log
@Upgrade to the latest releases.
@
text
@d3 1
a3 1
PKG=Python-2.6.2
d8 1
a8 1
    wget http://www.python.org/ftp/python/2.6.2/$PKG.tar.bz2
@


1.8
log
@Sync with the latest releases of matplotlib, pyglet, pygments, Python,
and sphinx.
@
text
@d3 1
a3 1
PKG=Python-2.6.1
d8 1
a8 1
    wget http://www.python.org/ftp/python/2.6.1/$PKG.tar.bz2
@


1.7
log
@Upgrade to Python-2.6, enable debugging and add support packages.
Upgrade to latests PyQt4/SIP snapshots and enable debugging.
Enable debugging in PyQwt5.
Add Python Imaging Library to help debugging QImage -> array conversion.
@
text
@d3 1
a3 1
PKG=Python-2.6
d8 1
a8 1
    wget http://www.python.org/ftp/python/2.6/$PKG.tar.bz2
@


1.6
log
@Upgrade to the latest releases and snapshots.
@
text
@d3 1
a3 1
PKG=Python-2.6b3
d16 1
a16 1
OPT="-O3 -Wall" ./configure --prefix=$HOME/usr --with-cxx=g++ --enable-shared
@


1.5
log
@Upgrade to Qt-4.4rc1 and to latest releases and snapshots.
@
text
@d3 1
a3 1
PKG=Python-2.5.2
d8 1
a8 1
    wget http://www.python.org/ftp/python/2.5.2/$PKG.tar.bz2
d21 2
a22 2
mkdir -p $HOME/usr/share/doc/python2.5
cp -R html $HOME/usr/share/doc/python2.5
@


1.4
log
@Sync with the latest releases.
@
text
@d3 1
a3 1
PKG=Python-2.5.1
d8 1
a8 1
    wget http://www.python.org/ftp/python/2.5.1/$PKG.tar.bz2
@


1.3
log
@Enable a shared Python library, because PyQt4 uses it.
@
text
@d3 1
a3 1
PKG=Python-2.5
d8 1
a8 1
    wget http://www.python.org/ftp/python/2.5/$PKG.tar.bz2
@


1.2
log
@Add documentation for Eric-4.
@
text
@d16 1
a16 1
OPT="-O3 -Wall" ./configure --prefix=$HOME/usr --with-cxx=g++
@


1.1
log
@Initial revision
@
text
@d19 5
@


1.1.1.1
log
@Import build scripts for a Python development environment in $HOME/usr.

@
text
@@
