Date: Monday, January 10, 2011 @ 20:51:21 Author: andrea Revision: 105724
add python3 support to pyqt Added: python-qt/ python-qt/repos/ python-qt/trunk/ python-qt/trunk/PKGBUILD python-qt/trunk/fix-stackedwidget-bug.patch -----------------------------+ PKGBUILD | 45 ++++++++++++++++++++++++++++++++++++++++++ fix-stackedwidget-bug.patch | 11 ++++++++++ 2 files changed, 56 insertions(+) Added: python-qt/trunk/PKGBUILD =================================================================== --- python-qt/trunk/PKGBUILD (rev 0) +++ python-qt/trunk/PKGBUILD 2011-01-11 01:51:21 UTC (rev 105724) @@ -0,0 +1,45 @@ +# $Id$ +# Maintainer: Andrea Scarpino <[email protected]> + +pkgname=python-qt +pkgver=4.8.2 +pkgrel=1 +pkgdesc="A set of Python bindings for the Qt toolkit" +arch=('i686' 'x86_64') +url="http://riverbankcomputing.co.uk/software/pyqt/intro" +license=('GPL') +depends=('python-sip' 'qt') +makedepends=('phonon' 'qt-assistant-compat') +optdepends=('phonon: enable audio and video in PyQt applications' + 'qscintilla: QScintilla API' + 'qt-assistant-compat: add PyQt online help in Qt Assistant') +provides=('pyqt4') +replaces=('pyqt4') +conflicts=('pyqt4') +source=("http://riverbankcomputing.co.uk/static/Downloads/PyQt4/PyQt-x11-gpl-${pkgver}.tar.gz" + 'fix-stackedwidget-bug.patch') +md5sums=('142a32f126f205a2bd77f6a9910f5333' + '42cfd44a8ec063cce3e328ddb9892565') + +build() { + cd ${srcdir}/PyQt-x11-gpl-${pkgver} + + # Already fixed upstream + patch -Np1 -i ${srcdir}/fix-stackedwidget-bug.patch + + python configure.py \ + --confirm-license \ + -v /usr/share/sip \ + --qsci-api + + # Thanks Gerardo for the rpath fix + find -name 'Makefile' | xargs sed -i 's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g' + + make +} + +package(){ + cd ${srcdir}/PyQt-x11-gpl-${pkgver} + # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use DESTDIR + make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install +} Property changes on: python-qt/trunk/PKGBUILD ___________________________________________________________________ Added: svn:keywords + Id Added: python-qt/trunk/fix-stackedwidget-bug.patch =================================================================== --- python-qt/trunk/fix-stackedwidget-bug.patch (rev 0) +++ python-qt/trunk/fix-stackedwidget-bug.patch 2011-01-11 01:51:21 UTC (rev 105724) @@ -0,0 +1,11 @@ +--- PyQt-x11-gpl-4.8.2/pyuic/uic/uiparser.py~ 2010-12-27 14:01:31.500057960 -0800 ++++ PyQt-x11-gpl-4.8.2/pyuic/uic/uiparser.py 2010-12-27 14:01:44.460058033 -0800 +@@ -158,7 +158,7 @@ + # Ignore the parent if it is a container. + parent = self.stack.topwidget + if isinstance(parent, (QtGui.QDockWidget, QtGui.QMdiArea, +- QtGui.QScrollArea, QtGui.StackedWidget, ++ QtGui.QScrollArea, QtGui.QStackedWidget, + QtGui.QToolBox, QtGui.QTabWidget, + QtGui.QWizard)): + parent = None
