summaryrefslogtreecommitdiffstats
path: root/extra
diff options
context:
space:
mode:
authortnut <thierryn1 at hispeed dot ch>2010-11-04 15:49:00 +0100
committertnut <thierryn1 at hispeed dot ch>2010-11-04 15:49:00 +0100
commitbd0b1b9509e0add7f4bea7a28f24e25059eedc5e (patch)
tree228da0c8aae25eb0f18afa9e92145e581a3acd5c /extra
parent20cb38d2e34c11963749ad4be2abf41dd47467b4 (diff)
downloadnutyx-pakxe-bd0b1b9509e0add7f4bea7a28f24e25059eedc5e.tar.gz
nutyx-pakxe-bd0b1b9509e0add7f4bea7a28f24e25059eedc5e.tar.bz2
nutyx-pakxe-bd0b1b9509e0add7f4bea7a28f24e25059eedc5e.tar.xz
nutyx-pakxe-bd0b1b9509e0add7f4bea7a28f24e25059eedc5e.zip
pyqt, port nettoyé
Diffstat (limited to 'extra')
-rw-r--r--extra/pyqt/Pkgfile2
-rw-r--r--extra/pyqt/fix-kdebindings-4.5.2.patch17
2 files changed, 1 insertions, 18 deletions
diff --git a/extra/pyqt/Pkgfile b/extra/pyqt/Pkgfile
index b4733e95a..2919ac36f 100644
--- a/extra/pyqt/Pkgfile
+++ b/extra/pyqt/Pkgfile
@@ -8,7 +8,7 @@ name=pyqt
version=4.7.7
release=2
source=(http://www.riverbankcomputing.com/static/Downloads/PyQt4/PyQt-x11-gpl-$version.tar.gz
- fix-kdebindings-4.5.2.patch)
+ http://nutyx.meticul.eu/files/patchs/$name/fix-kdebindings-4.5.2.patch)
build() {
cd PyQt-x11-gpl-$version
diff --git a/extra/pyqt/fix-kdebindings-4.5.2.patch b/extra/pyqt/fix-kdebindings-4.5.2.patch
deleted file mode 100644
index 49a915f09..000000000
--- a/extra/pyqt/fix-kdebindings-4.5.2.patch
+++ /dev/null
@@ -1,17 +0,0 @@
---- sip/QtCore/qglobal.sip~ 2010-09-20 15:10:28.000000000 +0200
-+++ sip/QtCore/qglobal.sip 2010-09-30 15:00:13.804577344 +0200
-@@ -312,12 +312,12 @@ public:
- // Qt.Alignment class.
- QFlags operator|(int f);
- %MethodCode
-- sipRes = new QFlags(*a0 | (ENUM(a1)));
-+ sipRes = new QFlags(*a0 | a1);
- %End
-
- QFlags operator^(int f);
- %MethodCode
-- sipRes = new QFlags(*a0 ^ (ENUM(a1)));
-+ sipRes = new QFlags(*a0 ^ a1);
- %End
-
- // These are necessary to prevent Python comparing object IDs.