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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


desc
@@


1.40
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

WHERE=http://www.riverbankcomputing.com/static/Downloads/PyQt4
PKG=PyQt-x11-gpl-snapshot-4.7.4-43537429b15a

JOBS=$(getconf _NPROCESSORS_ONLN)

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

function version() {
    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
yes
EOF
    make -j $JOBS
    make install
    mkdir -p $HOME/usr/share/doc/PyQt4
    cp -R doc/* $HOME/usr/share/doc/PyQt4
    popd # PKG
    popd # ../BUILD
}

version python2.5
version python2.6
version python2.7
version python3.1

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


1.39
log
@Update to latest snapshots.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-snapshot-4.7.4-51d5d4f1db28
d14 8
a21 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
d24 16
a39 21
make -j $JOBS
make install
mkdir -p $HOME/usr/share/doc/PyQt4
cp -R doc/* $HOME/usr/share/doc/PyQt4
popd # PKG

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

popd # ../BUILD

# EOF@


1.38
log
@Upgrade to the latest snapshots and releases.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-snapshot-4.7.4-0c4363a40ccf
@


1.37
log
@Upgrade to the latest releases and snapshots.
Use python2.6 and python3.1 explicitly.
@
text
@d4 2
a5 1
PKG=PyQt-x11-gpl-snapshot-4.7.3-4cf6d2fa926f
@


1.36
log
@Upgrade to latest releases and snapshots.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-snapshot-4.7.1-106919e3444b
@


1.35
log
@Update to latest releases and snapshots.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4.7-snapshot-20100110
@


1.34
log
@Upgrade to latest snapshots.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4.6.2-snapshot-20091108
d18 1
a18 1
    -q /home/packer/usr/lib/qt4.5/bin/qmake \
d27 13
@


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


1.32
log
@Qt-4.5.2 requires a PyQt 4.5.2 snapshot.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4.5.2-snapshot-20090709
@


1.31
log
@Upgrade to the latest releases and snapshots.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4.5-snapshot-20090527
@


1.30
log
@Update to the latest snapshots.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4.5-snapshot-20090414
@


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


1.28
log
@Upgrade to the latest snapshots.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4.4.4-snapshot-20081101
d18 1
a18 1
    -q /home/packer/usr/lib/qt4.4/bin/qmake \
@


1.27
log
@Upgrade to the latest SVN snapshots.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4.4.4-snapshot-20081024
@


1.26
log
@Upgrade to the latest releases and subversion snapshots.
Add build-qscintilla2-svn.
Zap build-celementtree and build-engauge.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4.4.4-snapshot-20081011
@


1.25
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
@d4 1
a4 1
PKG=PyQt-x11-gpl-4.4.4-snapshot-20081007
@


1.24
log
@Fixed mixing up the releases and subversion snapshots.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4.4.4-snapshot-20080827
@


1.23
log
@Upgrade to latest snapshots from Riverbank Computing.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4.4-snapshot-20080504
d17 1
a17 1
python configure.py -w -u -c -j $((2*$JOBS)) \
d29 1
a29 1
# EOF
@


1.22
log
@Upgrade to the latest Trolltech release and Riverbank snapshots.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4.4-snapshot-20080503
@


1.21
log
@Upgrade to latest release candidate and snapshots.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4.4-snapshot-20080424
@


1.20
log
@Back out to Qt-4.3.4.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4.3.4-snapshot-20080409
d17 2
a18 2
python configure.py -u -c -j $((2*$JOBS)) \
    -q /home/packer/usr/lib/qt4.3/bin/qmake \
@


1.19
log
@Upgrade to Qt-4.4rc1 and to latest releases and snapshots.
@
text
@d18 1
a18 1
    -q /home/packer/usr/lib/qt4.4/bin/qmake \
@


1.18
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/Snapshots/PyQt4
PKG=PyQt-x11-gpl-4.3-snapshot-20071116
d18 1
a18 1
    -q /home/packer/usr/lib/qt4.3/bin/qmake \
@


1.17
log
@Sync with the latest releases and snapshots.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4-snapshot-20070727
@


1.16
log
@Sync with the latest SVN snapshot.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4-snapshot-20070723
@


1.15
log
@Sync with the latest releases and snapshots.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4-snapshot-20070721
@


1.14
log
@Sync with latest SVN snapshots.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4-snapshot-20070625
d17 1
a17 1
python configure.py -u -a -c -j $((2*$JOBS)) \
@


1.13
log
@Sync with the latest subversion snapshots.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4-snapshot-20070622
@


1.12
log
@Sync with the latest SVN snapshots.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4-snapshot-20070612
@


1.11
log
@Upgrade to the latest versions and snapshots of Qt, ipython, PyQt3,
PyQt4, QScintilla2, SIP and SoQt.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4-snapshot-20070606
@


1.10
log
@Sync with the latest snapshots of PyQt4, QScintilla, and SIP.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4-snapshot-20070409
d18 1
a18 1
    -q /home/packer/usr/lib/qt4.2/bin/qmake \
d29 1
a29 1
# EOF@


1.9
log
@Sync with the latest snapshots of Eric4, PyQt, PyQt4, QScintilla2, and sip.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4-snapshot-20070405
@


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


1.7
log
@Sync with the latest SVN revisions.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4-snapshot-20070318
@


1.6
log
@Replace build-qwt by build-qwt-qt3 and build-qwt-qt4.
Sync with the latest PyQt4 SVN revision.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4-snapshot-20070316
@


1.5
log
@Upgrade to the latest releases and snapshots.
Compile Qt and Qwt in debug mode.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4-snapshot-20070310
@


1.4
log
@Upgrade to the latest releases and snapshots.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4-snapshot-20070307
@


1.3
log
@Update to the latest versions and/or snapshots.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4-snapshot-20070304
@


1.2
log
@Sync with the latest versions.
@
text
@d4 1
a4 1
PKG=PyQt-x11-gpl-4-snapshot-20070127
@


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

