- Remove Source URL, the validator doesn't work too well with SourceForge - add patch to disable qml_debug: disable_qml_debug.diff. Without this, the message "QML debugging is enabled. Only use this in a safe environment." appears on PyQt5 apps startup, and allows qmljsdebugger to connect via network. - make utils dependent on exact version - Update to 5.7 * Added support for Qt v5.7.0. * Removed patch pyqt5-fix-dbus-config.diff as applyed upstream OBS-URL: https://build.opensuse.org/request/show/440372 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-qt5?expand=0&rev=17
14 lines
481 B
Diff
14 lines
481 B
Diff
Index: b/configure.py
|
|
===================================================================
|
|
--- a/configure.py
|
|
+++ b/configure.py
|
|
@@ -2243,7 +2243,7 @@ def pro_add_qt_dependencies(target_confi
|
|
pro_lines.append('QT += %s' % ' '.join(add))
|
|
|
|
pro_lines.append(
|
|
- 'CONFIG += %s' % ('debug qml_debug' if debug else 'release'))
|
|
+ 'CONFIG += %s' % ('debug' if debug else 'release'))
|
|
|
|
if metadata.cpp11:
|
|
pro_lines.append('CONFIG += c++11')
|