Hello community, here is the log from the commit of package python-qt5 for openSUSE:Factory checked in at 2018-05-06 15:00:01 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-qt5 (Old) and /work/SRC/openSUSE:Factory/.python-qt5.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-qt5" Sun May 6 15:00:01 2018 rev:28 rq:603567 version:5.10.1 Changes: -------- --- /work/SRC/openSUSE:Factory/python-qt5/python-qt5.changes 2018-05-01 22:57:59.904408016 +0200 +++ /work/SRC/openSUSE:Factory/.python-qt5.new/python-qt5.changes 2018-05-06 15:00:02.616163707 +0200 @@ -1,0 +2,6 @@ +Thu May 3 07:49:19 UTC 2018 - [email protected] + +- Add patch to remove use of internal Qt function: + * remove-qtest-waitforevents.patch + +------------------------------------------------------------------- New: ---- remove-qtest-waitforevents.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-qt5.spec ++++++ --- /var/tmp/diff_new_pack.TzmmS5/_old 2018-05-06 15:00:03.500131265 +0200 +++ /var/tmp/diff_new_pack.TzmmS5/_new 2018-05-06 15:00:03.504131118 +0200 @@ -30,6 +30,8 @@ Patch1: disable-rpaths.diff # PATCH-FIX-UPSTREAM Patch2: update-timeline.patch +# PATCH-FIX-UPSTREAM +Patch3: remove-qtest-waitforevents.patch BuildRequires: pkgconfig(Qt5Bluetooth) BuildRequires: pkgconfig(Qt5Designer) BuildRequires: pkgconfig(Qt5Help) ++++++ remove-qtest-waitforevents.patch ++++++ From: Fabian Vogt <[email protected]> Subject: QTest::waitForEvents() is internal only Must not be used, got removed with Qt 5.11. Index: PyQt5_gpl-5.10.1/sip/QtTest/qtestmouse.sip =================================================================== --- PyQt5_gpl-5.10.1.orig/sip/QtTest/qtestmouse.sip +++ PyQt5_gpl-5.10.1/sip/QtTest/qtestmouse.sip @@ -41,7 +41,6 @@ namespace QTest void mousePress(QWidget *widget, Qt::MouseButton button, Qt::KeyboardModifiers modifier = 0, QPoint pos = QPoint(), int delay = -1); void mouseRelease(QWidget *widget, Qt::MouseButton button, Qt::KeyboardModifiers modifier = 0, QPoint pos = QPoint(), int delay = -1); void mouseEvent(QTest::MouseAction action, QWidget *widget, Qt::MouseButton button, Qt::KeyboardModifiers modifier, QPoint pos, int delay = -1); - void waitForEvents() /ReleaseGIL/; void mouseEvent(QTest::MouseAction action, QWindow *window, Qt::MouseButton button, Qt::KeyboardModifiers modifier, QPoint pos, int delay = -1); void mousePress(QWindow *window, Qt::MouseButton button, Qt::KeyboardModifiers modifier = Qt::KeyboardModifiers(), QPoint pos = QPoint(), int delay = -1); void mouseRelease(QWindow *window, Qt::MouseButton button, Qt::KeyboardModifiers modifier = Qt::KeyboardModifiers(), QPoint pos = QPoint(), int delay = -1);
