Hello community, here is the log from the commit of package kwrited5 for openSUSE:Factory checked in at 2018-10-08 17:46:09 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kwrited5 (Old) and /work/SRC/openSUSE:Factory/.kwrited5.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kwrited5" Mon Oct 8 17:46:09 2018 rev:65 rq:640303 version:5.14.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kwrited5/kwrited5.changes 2018-09-05 13:49:11.926322388 +0200 +++ /work/SRC/openSUSE:Factory/.kwrited5.new/kwrited5.changes 2018-10-08 17:49:21.942182496 +0200 @@ -1,0 +2,28 @@ +Fri Oct 5 10:01:11 UTC 2018 - [email protected] + +- Update to 5.14.0 + * New bugfix release + * For more details please see: + * https://www.kde.org/announcements/plasma-5.14.0.php +- No code changes since 5.13.90 + +------------------------------------------------------------------- +Sat Sep 15 16:25:29 UTC 2018 - [email protected] + +- Add tarball signature and keyring containing keys of release managers + Jonathan Riddell and Bhushan Shah + +------------------------------------------------------------------- +Thu Sep 13 17:25:01 UTC 2018 - [email protected] + +- Update to 5.13.90 + * New feature release + * For more details please see: + * https://www.kde.org/announcements/plasma-5.13.90.php +- Changes since 5.13.5: + * QT_MIN_VERSIONS is Qt 5.11 for Plasma 5.14. Agreed at kickoff meeting. Set everywhere for clearity and consistency. + * Trim kwrited text + * Make it build with strict compile flags + * Remove unused entry X-KDE-DBus-ModuleName from the kded plugin metadata + +------------------------------------------------------------------- Old: ---- kwrited-5.13.5.tar.xz New: ---- kwrited-5.14.0.tar.xz kwrited-5.14.0.tar.xz.sig plasma.keyring ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kwrited5.spec ++++++ --- /var/tmp/diff_new_pack.irTYpP/_old 2018-10-08 17:49:22.446181853 +0200 +++ /var/tmp/diff_new_pack.irTYpP/_new 2018-10-08 17:49:22.450181848 +0200 @@ -16,14 +16,20 @@ # +%bcond_without lang + Name: kwrited5 -Version: 5.13.5 +Version: 5.14.0 Release: 0 Summary: Daemon listening for wall and write messages License: GPL-2.0-or-later Group: System/GUI/KDE Url: http://www.kde.org -Source: http://download.kde.org/stable/plasma/%{version}/kwrited-%{version}.tar.xz +Source: kwrited-%{version}.tar.xz +%if %{with lang} +Source1: kwrited-%{version}.tar.xz.sig +Source2: plasma.keyring +%endif BuildRequires: extra-cmake-modules >= 0.0.11 BuildRequires: kf5-filesystem BuildRequires: xz ++++++ kwrited-5.13.5.tar.xz -> kwrited-5.14.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kwrited-5.13.5/CMakeLists.txt new/kwrited-5.14.0/CMakeLists.txt --- old/kwrited-5.13.5/CMakeLists.txt 2018-09-04 12:14:28.000000000 +0200 +++ new/kwrited-5.14.0/CMakeLists.txt 2018-10-05 19:15:13.000000000 +0200 @@ -1,10 +1,10 @@ cmake_minimum_required(VERSION 3.0) project(kwrited) -set(PROJECT_VERSION "5.13.5") +set(PROJECT_VERSION "5.14.0") -set(QT_MIN_VERSION "5.9.0") -set(KF5_MIN_VERSION "5.42.0") +set(QT_MIN_VERSION "5.11.0") +set(KF5_MIN_VERSION "5.50.0") find_package(ECM ${KF5_MIN_VERSION} REQUIRED NO_MODULE) set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR}) @@ -37,6 +37,12 @@ ) endif () +add_definitions("-DQT_NO_CAST_FROM_ASCII -DQT_NO_CAST_TO_ASCII") +add_definitions(-DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT) +#add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x050a00) +add_definitions(-DQT_NO_URL_CAST_FROM_STRING) +add_definitions(-DQT_USE_QSTRINGBUILDER) + # If libutempter is not available on the system, we build # kwrited as an executable that is installed with setuid root # (or setgid utmp) in order to be able to login successfully diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kwrited-5.13.5/kwrited.cpp new/kwrited-5.14.0/kwrited.cpp --- old/kwrited-5.13.5/kwrited.cpp 2018-09-04 12:14:28.000000000 +0200 +++ new/kwrited-5.14.0/kwrited.cpp 2018-10-05 19:15:13.000000000 +0200 @@ -42,7 +42,7 @@ static inline KAboutData aboutData() { - return KAboutData("kwrited", i18n("kwrited"), PROJECT_VERSION); + return KAboutData(QStringLiteral("kwrited"), i18n("kwrited"), QLatin1String(PROJECT_VERSION)); } #if defined(BUILD_AS_EXECUTABLE) @@ -152,10 +152,11 @@ { QByteArray buf = pty->readAll(); QString msg = QString::fromLocal8Bit( buf.constData(), buf.size() ); - msg.remove('\r'); - msg.remove('\a'); + msg.remove(QLatin1Char('\r')); + msg.remove(QLatin1Char('\a')); + msg = msg.trimmed(); - KNotification *notification = new KNotification("NewMessage", nullptr, KNotification::Persistent); + KNotification *notification = new KNotification(QStringLiteral("NewMessage"), nullptr, KNotification::Persistent); #if !defined(BUILD_AS_EXECUTABLE) notification->setComponentName( QStringLiteral("kwrited") ); #endif diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kwrited-5.13.5/kwrited.json new/kwrited-5.14.0/kwrited.json --- old/kwrited-5.13.5/kwrited.json 2018-09-04 12:14:28.000000000 +0200 +++ new/kwrited-5.14.0/kwrited.json 2018-10-05 19:15:13.000000000 +0200 @@ -76,7 +76,6 @@ "KDEDModule" ] }, - "X-KDE-DBus-ModuleName": "kwrited", "X-KDE-Kded-autoload": true, "X-KDE-Kded-load-on-demand": true }
