Hello community, here is the log from the commit of package kwindowsystem for openSUSE:Factory checked in at 2018-10-22 11:16:13 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kwindowsystem (Old) and /work/SRC/openSUSE:Factory/.kwindowsystem.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kwindowsystem" Mon Oct 22 11:16:13 2018 rev:62 rq:642351 version:5.51.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kwindowsystem/kwindowsystem.changes 2018-10-01 08:09:54.326240842 +0200 +++ /work/SRC/openSUSE:Factory/.kwindowsystem.new/kwindowsystem.changes 2018-10-22 11:16:17.703594217 +0200 @@ -1,0 +2,17 @@ +Tue Oct 16 08:02:42 UTC 2018 - Luca Beltrame <[email protected]> + +- Run spec-cleaner + +------------------------------------------------------------------- +Mon Oct 15 11:50:39 UTC 2018 - [email protected] + +- Update to 5.51.0 + * New feature release + * For more details please see: + * https://www.kde.org/announcements/kde-frameworks-5.51.0.php +- Changes since 5.50.0: + * Use _NET_WM_WINDOW_TYPE_COMBO instead of _NET_WM_WINDOW_TYPE_COMBOBOX + * API dox: 0 -> nullptr + * Use QString's multi-arg with multiple string args + +------------------------------------------------------------------- Old: ---- kwindowsystem-5.50.0.tar.xz New: ---- kwindowsystem-5.51.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kwindowsystem.spec ++++++ --- /var/tmp/diff_new_pack.GoYoN8/_old 2018-10-22 11:16:18.987592843 +0200 +++ /var/tmp/diff_new_pack.GoYoN8/_new 2018-10-22 11:16:18.991592839 +0200 @@ -12,24 +12,24 @@ # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. -# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# Please submit bugfixes or comments via https://bugs.opensuse.org/ # %define lname libKF5WindowSystem5 -%define _tar_path 5.50 +%define _tar_path 5.51 # Full KF5 version (e.g. 5.33.0) %{!?_kf5_version: %global _kf5_version %{version}} # Last major and minor KF5 version (e.g. 5.33) %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | awk -F. '{print $1"."$2}')} %bcond_without lang Name: kwindowsystem -Version: 5.50.0 +Version: 5.51.0 Release: 0 Summary: KDE Access to window manager License: LGPL-2.1-or-later Group: System/GUI/KDE -URL: http://www.kde.org +URL: https://www.kde.org Source: http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz Source1: baselibs.conf BuildRequires: cmake >= 3.0 ++++++ kwindowsystem-5.50.0.tar.xz -> kwindowsystem-5.51.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kwindowsystem-5.50.0/CMakeLists.txt new/kwindowsystem-5.51.0/CMakeLists.txt --- old/kwindowsystem-5.50.0/CMakeLists.txt 2018-09-02 21:36:12.000000000 +0200 +++ new/kwindowsystem-5.51.0/CMakeLists.txt 2018-10-08 10:24:24.000000000 +0200 @@ -1,11 +1,11 @@ cmake_minimum_required(VERSION 3.0) -set(KF5_VERSION "5.50.0") # handled by release scripts +set(KF5_VERSION "5.51.0") # handled by release scripts project(KWindowSystem VERSION ${KF5_VERSION}) # ECM setup include(FeatureSummary) -find_package(ECM 5.50.0 NO_MODULE) +find_package(ECM 5.51.0 NO_MODULE) set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake Modules." URL "https://projects.kde.org/projects/kdesupport/extra-cmake-modules") feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND FATAL_ON_MISSING_REQUIRED_PACKAGES) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kwindowsystem-5.50.0/autotests/netwininfotestclient.cpp new/kwindowsystem-5.51.0/autotests/netwininfotestclient.cpp --- old/kwindowsystem-5.50.0/autotests/netwininfotestclient.cpp 2018-09-02 21:36:12.000000000 +0200 +++ new/kwindowsystem-5.51.0/autotests/netwininfotestclient.cpp 2018-10-08 10:24:24.000000000 +0200 @@ -597,7 +597,7 @@ QTest::newRow("Dock") << NET::Dock << 1 << QByteArrayLiteral("_NET_WM_WINDOW_TYPE_DOCK") << QByteArray(); QTest::newRow("Desktop") << NET::Desktop << 1 << QByteArrayLiteral("_NET_WM_WINDOW_TYPE_DESKTOP") << QByteArray(); QTest::newRow("Tooltip") << NET::Tooltip << 1 << QByteArrayLiteral("_NET_WM_WINDOW_TYPE_TOOLTIP") << QByteArray(); - QTest::newRow("ComboBox") << NET::ComboBox << 1 << QByteArrayLiteral("_NET_WM_WINDOW_TYPE_COMBOBOX") << QByteArray(); + QTest::newRow("ComboBox") << NET::ComboBox << 1 << QByteArrayLiteral("_NET_WM_WINDOW_TYPE_COMBO") << QByteArray(); QTest::newRow("DNDIcon") << NET::DNDIcon << 1 << QByteArrayLiteral("_NET_WM_WINDOW_TYPE_DND") << QByteArray(); QTest::newRow("Normal") << NET::Normal << 1 << QByteArrayLiteral("_NET_WM_WINDOW_TYPE_NORMAL") << QByteArray(); QTest::newRow("OnScreenDisplay") << NET::OnScreenDisplay << 1 << QByteArrayLiteral("_KDE_NET_WM_WINDOW_TYPE_ON_SCREEN_DISPLAY") << QByteArray(); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kwindowsystem-5.50.0/po/zh_CN/kwindowsystem5_qt.po new/kwindowsystem-5.51.0/po/zh_CN/kwindowsystem5_qt.po --- old/kwindowsystem-5.50.0/po/zh_CN/kwindowsystem5_qt.po 2018-09-02 21:36:12.000000000 +0200 +++ new/kwindowsystem-5.51.0/po/zh_CN/kwindowsystem5_qt.po 2018-10-08 10:24:24.000000000 +0200 @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: kdeorg\n" -"PO-Revision-Date: 2018-08-30 13:09\n" -"Last-Translator: guoyunhebrave <[email protected]>\n" +"PO-Revision-Date: 2018-09-28 19:47\n" +"Last-Translator: guoyunhe <[email protected]>\n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kwindowsystem-5.50.0/src/kstartupinfo.cpp new/kwindowsystem-5.51.0/src/kstartupinfo.cpp --- old/kwindowsystem-5.50.0/src/kstartupinfo.cpp 2018-09-02 21:36:12.000000000 +0200 +++ new/kwindowsystem-5.51.0/src/kstartupinfo.cpp 2018-10-08 10:24:24.000000000 +0200 @@ -486,7 +486,7 @@ } #if KWINDOWSYSTEM_HAVE_X11 QString msg = QString::fromLatin1("new: %1 %2") - .arg(id_P.d->to_text()).arg(data_P.d->to_text()); + .arg(id_P.d->to_text(), data_P.d->to_text()); msg = Private::check_required_startup_fields(msg, data_P, DefaultScreen(disp_P)); #ifdef KSTARTUPINFO_ALL_DEBUG qCDebug(LOG_KWINDOWSYSTEM) << "sending " << msg; @@ -508,7 +508,7 @@ } #if KWINDOWSYSTEM_HAVE_X11 QString msg = QString::fromLatin1("new: %1 %2") - .arg(id_P.d->to_text()).arg(data_P.d->to_text()); + .arg(id_P.d->to_text(), data_P.d->to_text()); msg = Private::check_required_startup_fields(msg, data_P, screen); #ifdef KSTARTUPINFO_ALL_DEBUG qCDebug(LOG_KWINDOWSYSTEM) << "sending " << msg; @@ -562,7 +562,7 @@ } #if KWINDOWSYSTEM_HAVE_X11 QString msg = QString::fromLatin1("change: %1 %2") - .arg(id_P.d->to_text()).arg(data_P.d->to_text()); + .arg(id_P.d->to_text(), data_P.d->to_text()); #ifdef KSTARTUPINFO_ALL_DEBUG qCDebug(LOG_KWINDOWSYSTEM) << "sending " << msg; #endif @@ -583,7 +583,7 @@ } #if KWINDOWSYSTEM_HAVE_X11 QString msg = QString::fromLatin1("change: %1 %2") - .arg(id_P.d->to_text()).arg(data_P.d->to_text()); + .arg(id_P.d->to_text(), data_P.d->to_text()); #ifdef KSTARTUPINFO_ALL_DEBUG qCDebug(LOG_KWINDOWSYSTEM) << "sending " << msg; #endif @@ -665,7 +665,7 @@ // return false; #if KWINDOWSYSTEM_HAVE_X11 QString msg = QString::fromLatin1("remove: %1 %2") - .arg(id_P.d->to_text()).arg(data_P.d->to_text()); + .arg(id_P.d->to_text(), data_P.d->to_text()); #ifdef KSTARTUPINFO_ALL_DEBUG qCDebug(LOG_KWINDOWSYSTEM) << "sending " << msg; #endif @@ -686,7 +686,7 @@ // return false; #if KWINDOWSYSTEM_HAVE_X11 QString msg = QString::fromLatin1("remove: %1 %2") - .arg(id_P.d->to_text()).arg(data_P.d->to_text()); + .arg(id_P.d->to_text(), data_P.d->to_text()); #ifdef KSTARTUPINFO_ALL_DEBUG qCDebug(LOG_KWINDOWSYSTEM) << "sending " << msg; #endif diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kwindowsystem-5.50.0/src/kstartupinfo.h new/kwindowsystem-5.51.0/src/kstartupinfo.h --- old/kwindowsystem-5.50.0/src/kstartupinfo.h 2018-09-02 21:36:12.000000000 +0200 +++ new/kwindowsystem-5.51.0/src/kstartupinfo.h 2018-10-08 10:24:24.000000000 +0200 @@ -164,7 +164,7 @@ * With this flag, the change is normally announced with gotStartupChange(). * * @param flags OR-ed combination of flags - * @param parent the parent of this QObject (can be 0 for no parent) + * @param parent the parent of this QObject (can be @c nullptr for no parent) * */ explicit KStartupInfo(int flags, QObject *parent = nullptr); @@ -174,7 +174,7 @@ * @param clean_on_cantdetect if true, and a new unknown window appears, * removes all notification for applications that are not compliant * with the app startup protocol - * @param parent the parent of this QObject (can be 0 for no parent) + * @param parent the parent of this QObject (can be @c nullptr for no parent) * * @obsolete * @deprecated since 5.0 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kwindowsystem-5.50.0/src/platforms/xcb/atoms_p.h new/kwindowsystem-5.51.0/src/platforms/xcb/atoms_p.h --- old/kwindowsystem-5.50.0/src/platforms/xcb/atoms_p.h 2018-09-02 21:36:12.000000000 +0200 +++ new/kwindowsystem-5.51.0/src/platforms/xcb/atoms_p.h 2018-10-08 10:24:24.000000000 +0200 @@ -117,7 +117,7 @@ ENUM(_NET_WM_WINDOW_TYPE_POPUP_MENU), ENUM(_NET_WM_WINDOW_TYPE_TOOLTIP), ENUM(_NET_WM_WINDOW_TYPE_NOTIFICATION), - ENUM(_NET_WM_WINDOW_TYPE_COMBOBOX), + ENUM(_NET_WM_WINDOW_TYPE_COMBO), ENUM(_NET_WM_WINDOW_TYPE_DND), // application window state diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kwindowsystem-5.50.0/src/platforms/xcb/netwm.cpp new/kwindowsystem-5.51.0/src/platforms/xcb/netwm.cpp --- old/kwindowsystem-5.50.0/src/platforms/xcb/netwm.cpp 2018-09-02 21:36:12.000000000 +0200 +++ new/kwindowsystem-5.51.0/src/platforms/xcb/netwm.cpp 2018-10-08 10:24:24.000000000 +0200 @@ -961,7 +961,7 @@ atoms[pnum++] = p->atom(_NET_WM_WINDOW_TYPE_NOTIFICATION); } if (p->windowTypes & ComboBoxMask) { - atoms[pnum++] = p->atom(_NET_WM_WINDOW_TYPE_COMBOBOX); + atoms[pnum++] = p->atom(_NET_WM_WINDOW_TYPE_COMBO); } if (p->windowTypes & DNDIconMask) { atoms[pnum++] = p->atom(_NET_WM_WINDOW_TYPE_DND); @@ -1286,7 +1286,7 @@ p->windowTypes |= TooltipMask; } else if (atom == p->atom(_NET_WM_WINDOW_TYPE_NOTIFICATION)) { p->windowTypes |= NotificationMask; - } else if (atom == p->atom(_NET_WM_WINDOW_TYPE_COMBOBOX)) { + } else if (atom == p->atom(_NET_WM_WINDOW_TYPE_COMBO)) { p->windowTypes |= ComboBoxMask; } else if (atom == p->atom(_NET_WM_WINDOW_TYPE_DND)) { p->windowTypes |= DNDIconMask; @@ -3194,7 +3194,7 @@ break; case ComboBox: - data[0] = p->atom(_NET_WM_WINDOW_TYPE_COMBOBOX); + data[0] = p->atom(_NET_WM_WINDOW_TYPE_COMBO); data[1] = XCB_NONE; len = 1; break; @@ -4213,7 +4213,7 @@ p->types[pos++] = Notification; } - else if (type == p->atom(_NET_WM_WINDOW_TYPE_COMBOBOX)) { + else if (type == p->atom(_NET_WM_WINDOW_TYPE_COMBO)) { p->types[pos++] = ComboBox; }
