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


1.40
date	2012.04.18.06.22.59;	author gvermeul;	state Exp;
branches;
next	1.39;

1.39
date	2012.04.16.15.28.47;	author gvermeul;	state Exp;
branches;
next	1.38;

1.38
date	2011.08.04.21.31.33;	author gvermeul;	state Exp;
branches;
next	1.37;

1.37
date	2011.07.08.14.35.47;	author gvermeul;	state Exp;
branches;
next	1.36;

1.36
date	2011.01.08.16.27.53;	author gvermeul;	state Exp;
branches;
next	1.35;

1.35
date	2010.09.27.06.29.13;	author gvermeul;	state Exp;
branches;
next	1.34;

1.34
date	2010.07.17.19.47.32;	author gvermeul;	state Exp;
branches;
next	1.33;

1.33
date	2010.01.19.21.45.44;	author gvermeul;	state Exp;
branches;
next	1.32;

1.32
date	2010.01.12.06.44.46;	author gvermeul;	state Exp;
branches;
next	1.31;

1.31
date	2009.11.22.12.27.51;	author gvermeul;	state Exp;
branches;
next	1.30;

1.30
date	2009.11.14.11.41.44;	author gvermeul;	state Exp;
branches;
next	1.29;

1.29
date	2009.09.30.03.03.20;	author gvermeul;	state Exp;
branches;
next	1.28;

1.28
date	2009.07.31.05.18.25;	author gvermeul;	state Exp;
branches;
next	1.27;

1.27
date	2009.07.11.10.58.54;	author gvermeul;	state Exp;
branches;
next	1.26;

1.26
date	2008.11.10.11.07.26;	author gvermeul;	state Exp;
branches;
next	1.25;

1.25
date	2008.09.01.22.42.22;	author gvermeul;	state Exp;
branches;
next	1.24;

1.24
date	2008.09.01.16.03.28;	author gvermeul;	state Exp;
branches;
next	1.23;

1.23
date	2008.05.23.17.15.32;	author gvermeul;	state Exp;
branches;
next	1.22;

1.22
date	2007.12.06.18.31.26;	author gvermeul;	state Exp;
branches;
next	1.21;

1.21
date	2007.07.30.19.59.12;	author gvermeul;	state Exp;
branches;
next	1.20;

1.20
date	2007.04.11.14.35.29;	author gvermeul;	state Exp;
branches;
next	1.19;

1.19
date	2007.01.21.15.41.39;	author gvermeul;	state Exp;
branches;
next	1.18;

1.18
date	2007.01.21.10.54.44;	author gvermeul;	state Exp;
branches;
next	1.17;

1.17
date	2006.12.11.07.20.20;	author gvermeul;	state Exp;
branches;
next	1.16;

1.16
date	2006.11.05.08.23.05;	author gvermeul;	state Exp;
branches;
next	1.15;

1.15
date	2006.11.04.07.06.50;	author gvermeul;	state Exp;
branches;
next	1.14;

1.14
date	2006.10.30.06.06.03;	author gvermeul;	state Exp;
branches;
next	1.13;

1.13
date	2006.10.29.15.09.07;	author gvermeul;	state Exp;
branches;
next	1.12;

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

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

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

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

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

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

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

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

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

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

1.2
date	2006.09.24.03.46.54;	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.40
log
@Build for all Python versions.
@
text
@#!/bin/bash

WHERE=http://www.riverbankcomputing.com/static/Downloads/PyQt4
PKG=PyQt-x11-gpl-4.9.1
JOBS=$(getconf _NPROCESSORS_ONLN)

pushd ../SOURCES
if [ ! -f $PKG.tar.gz ]; then
    wget $WHERE/$PKG.tar.gz
fi
popd

function version() {
    rm -rf $PKG
    tar xfz ../SOURCES/$PKG.tar.gz
    pushd $PKG
    $1 configure.py -u -a -c -j $((2*$JOBS)) \
        -q $HOME/usr/lib/qt4.8/bin/qmake \
        CXXFLAGS+="-fno-exceptions" <<EOF
yes
EOF
    make -j $JOBS
    make install
    mkdir -p $HOME/usr/share/doc/PyQt4
    cp -R doc/* $HOME/usr/share/doc/PyQt4
    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: ***

@


1.39
log
@Upgrade to Qt-4.8.1 and upgrade many other packages.
@
text
@d30 2
a31 2
#version python2.5
#version python2.6
d33 2
a34 2
#version python3.1
#version python3.2
@


1.38
log
@Upgrade to the latest version of PyQt and sip.
Add build-lxml.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4.8.5
d18 1
a18 1
        -q $HOME/usr/lib/qt4.7/bin/qmake \
d30 2
a31 2
version python2.5
version python2.6
d33 2
a34 2
version python3.1
version python3.2
@


1.37
log
@Upgrade to latest versions.
Follow switch of numpy and scipy from svn to git.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4.8.4
@


1.36
log
@Update to newer versions.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4.8.2
d18 1
a18 1
        -q $HOME/usr/lib/qt4.6/bin/qmake \
d34 1
@


1.35
log
@Upgrade to latest versions of PyQt and SIP.
Look at guiqwt and guidata.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4.7.7
d18 2
a19 2
	-q $HOME/usr/lib/qt4.6/bin/qmake \
	CXXFLAGS+="-fno-exceptions" <<EOF
@


1.34
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
@d4 1
a4 1
PKG=PyQt-x11-gpl-4.7.4
@


1.33
log
@Update to latest releases and snapshots.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4.7
d13 7
a19 7
pushd ../BUILD
rm -rf $PKG
tar xfz ../SOURCES/$PKG.tar.gz
pushd $PKG
python configure.py -u -a -c -j $((2*$JOBS)) \
    -q $HOME/usr/lib/qt4.6/bin/qmake \
    CXXFLAGS+="-fno-exceptions" <<EOF
d22 6
a27 5
make -j $JOBS
make install
mkdir -p $HOME/usr/share/doc/PyQt4
cp -R doc/* $HOME/usr/share/doc/PyQt4
popd # PKG
d29 6
a34 11
rm -rf $PKG
tar xfz ../SOURCES/$PKG.tar.gz
pushd $PKG
python3 configure.py -u -a -c -j $((2*$JOBS)) \
    -q $HOME/usr/lib/qt4.6/bin/qmake \
    CXXFLAGS+="-fno-exceptions" <<EOF
yes
EOF
make -j $JOBS
make install
popd # PKG
d36 3
a38 1
popd # ../BUILD
a39 1
# EOF
@


1.32
log
@Upgrade to the latest releases.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4.6.2
d18 1
a18 1
    -q $HOME/usr/lib/qt4.5/bin/qmake \
d27 13
@


1.31
log
@Upgrade to new releases.
@
text
@d18 1
a18 1
    -q /home/packer/usr/lib/qt4.5/bin/qmake \
@


1.30
log
@Upgrade to latest releases.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4.6.1
d29 1
a29 1
# EOF@


1.29
log
@Upgrade to latest releases and snapshots.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4.6
@


1.28
log
@Upgrade to the latest PyQt4 and SIP releases.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4.5.4
@


1.27
log
@Upgrade to the latest releases.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4.5.1
@


1.26
log
@Upgrade to the latest releases of PyQt3, PyQt4, QScintilla, and SIP.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4.4.4
d18 1
a18 1
    -q /home/packer/usr/lib/qt4.4/bin/qmake \
@


1.25
log
@Fixed mixing up the releases and subversion snapshots.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4.4.3
@


1.24
log
@Upgrade to the latest releases and snapshots.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4.4.4-snapshot-20080827
@


1.23
log
@Update to the latest releases from Riverbank Computing.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4.4.2
@


1.22
log
@Sync with the latest releases of Qt, PyQt and SIP.
Sync with some older snapshots of PyQt and SIP (forgot to do it
earlier).
@
text
@d3 2
a4 2
WHERE=http://www.riverbankcomputing.com/Downloads/PyQt4/GPL
PKG=PyQt-x11-gpl-4.3.3
d18 1
a18 1
    -q /home/packer/usr/lib/qt4.3/bin/qmake \
@


1.21
log
@Sync with the latest releases and snapshots.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4.3
@


1.20
log
@Sync with the new releases of PyQt, PyQt4, and SIP.
Build the PyQt, PyQt4, and SIP releases instead of the snapshots.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4.2
d18 1
a18 1
    -q /home/packer/usr/lib/qt4.2/bin/qmake \
@


1.19
log
@Add separate scripts to build SIP, PyQt-3, and PyQt-4 snapshots.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4.1.1
@


1.18
log
@Update to the latest releases and/or snapshots.
@
text
@a2 2
#WHERE=http://www.riverbankcomputing.com/Downloads/Snapshots/PyQt4
#PKG=PyQt-x11-gpl-4-snapshot-20061103
@


1.17
log
@Sync with the releases of Qt-4.2.2, SIP-4.5.2 and PyQt-4.1.1.
@
text
@d19 1
a19 1
python configure.py -a -c -j $((2*$JOBS)) \
@


1.16
log
@Sync with the release of SIP-4.5, PyQt-3.17, and PyQt-4.1.
@
text
@d6 1
a6 1
PKG=PyQt-x11-gpl-4.1
@


1.15
log
@Sync with the latest snapshots from Riverbank Computing.
@
text
@d3 4
a6 2
WHERE=http://www.riverbankcomputing.com/Downloads/Snapshots/PyQt4
PKG=PyQt-x11-gpl-4-snapshot-20061103
@


1.14
log
@Sync with the latest snapshots from Riverbank Computing.
----------------------------------------------------------------------
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4-snapshot-20061029
@


1.13
log
@Sync with the latest snapshots from Riverbank Computing.
----------------------------------------------------------------------
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4-snapshot-20061028
@


1.12
log
@Add documentation for Eric-4.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4-snapshot-20061022
@


1.11
log
@Sync with the latest snapshots from Riverbank Computing.
@
text
@d24 2
@


1.10
log
@Sync with the latest snapshots from Riverbank Computing.
@
text
@d17 1
a17 1
python configure.py -c -j $((2*$JOBS)) \
@


1.9
log
@Sync with the new snapshots from Riverbank Computing.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4-snapshot-20061021
@


1.8
log
@Sync with the PyQt and SIP snapshots.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4-snapshot-20061015
@


1.7
log
@Sync with the snapshots from Riverbank Computing.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4-snapshot-20061014
@


1.6
log
@Sync with Riverbank.
----------------------------------------------------------------------
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4-snapshot-20061008
@


1.5
log
@Switch from Qt-4.1.4 to Qt-4.2.0.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4-snapshot-20061007
@


1.4
log
@Sync with Riverbank's 20060930 snapshots.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4-snapshot-20060930
d18 1
a18 1
    -q /home/packer/usr/lib/qt4.1/bin/qmake \
@


1.3
log
@Adapt to gcc-4.1.1 on small machines.

----------------------------------------------------------------------
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4-snapshot-20060924
@


1.2
log
@Add build-gccxml, build-qwt, and build-qwtplot3d.
Add build-celementtree, build-elementtree (not needed for Python-2.5)
@
text
@d17 1
a17 1
python configure.py -c -j $JOBS \
@


1.1
log
@Initial revision
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4-snapshot-20060922
@


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

@
text
@@
