Hello community,

here is the log from the commit of package kwrited5 for openSUSE:Leap:15.2 
checked in at 2020-02-16 18:28:07
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Leap:15.2/kwrited5 (Old)
 and      /work/SRC/openSUSE:Leap:15.2/.kwrited5.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kwrited5"

Sun Feb 16 18:28:07 2020 rev:85 rq:774510 version:5.18.0

Changes:
--------
--- /work/SRC/openSUSE:Leap:15.2/kwrited5/kwrited5.changes      2020-01-15 
15:18:08.922333181 +0100
+++ /work/SRC/openSUSE:Leap:15.2/.kwrited5.new.26092/kwrited5.changes   
2020-02-16 18:29:08.510743801 +0100
@@ -1,0 +2,26 @@
+Thu Feb  6 15:10:05 UTC 2020 - Fabian Vogt <[email protected]>
+
+- Update to 5.18.0
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.18.0.php
+- No code changes since 5.17.90
+
+-------------------------------------------------------------------
+Thu Jan 23 11:20:26 UTC 2020 - Christophe Giboudeaux <[email protected]>
+
+- Replace %make_jobs with %cmake_build
+
+-------------------------------------------------------------------
+Thu Jan 16 14:04:18 UTC 2020 - Fabian Vogt <[email protected]>
+
+- Update to 5.17.90
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.17.90.php
+- Changes since 5.17.5:
+  * KF5_MIN_VERSION for plasma 5.18 is KF5 5.66.0
+  * port old style connects
+  * Add KDEClangFormat cmake support
+
+-------------------------------------------------------------------

Old:
----
  kwrited-5.17.5.tar.xz
  kwrited-5.17.5.tar.xz.sig

New:
----
  kwrited-5.18.0.tar.xz
  kwrited-5.18.0.tar.xz.sig

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ kwrited5.spec ++++++
--- /var/tmp/diff_new_pack.sOQ7Yn/_old  2020-02-16 18:29:08.830743969 +0100
+++ /var/tmp/diff_new_pack.sOQ7Yn/_new  2020-02-16 18:29:08.834743971 +0100
@@ -18,15 +18,15 @@
 
 %bcond_without lang
 Name:           kwrited5
-Version:        5.17.5
+Version:        5.18.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:         
https://download.kde.org/stable/plasma/%{version}/kwrited-%{version}.tar.xz
+Source:         kwrited-%{version}.tar.xz
 %if %{with lang}
-Source1:        
https://download.kde.org/stable/plasma/%{version}/kwrited-%{version}.tar.xz.sig
+Source1:        kwrited-%{version}.tar.xz.sig
 Source2:        plasma.keyring
 %endif
 BuildRequires:  extra-cmake-modules >= 0.0.11
@@ -48,7 +48,7 @@
 
 %build
   %cmake_kf5 -d build -- -DBUILD_AS_EXECUTABLE=OFF -DBUILD_po=OFF
-  %make_jobs
+  %cmake_build
 
 %install
   %kf5_makeinstall -C build

++++++ kwrited-5.17.5.tar.xz -> kwrited-5.18.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwrited-5.17.5/CMakeLists.txt 
new/kwrited-5.18.0/CMakeLists.txt
--- old/kwrited-5.17.5/CMakeLists.txt   2020-01-07 16:34:20.000000000 +0100
+++ new/kwrited-5.18.0/CMakeLists.txt   2020-02-06 14:16:01.000000000 +0100
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
 project(kwrited)
-set(PROJECT_VERSION "5.17.5")
+set(PROJECT_VERSION "5.18.0")
 
 set(QT_MIN_VERSION "5.12.0")
-set(KF5_MIN_VERSION "5.62.0")
+set(KF5_MIN_VERSION "5.66.0")
 
 find_package(ECM ${KF5_MIN_VERSION} REQUIRED NO_MODULE)
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
@@ -14,6 +14,7 @@
 include(KDECMakeSettings)
 include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
 include(FeatureSummary)
+include(KDEClangFormat)
 
 find_package(Qt5 ${QT_MIN_VERSION} CONFIG REQUIRED COMPONENTS
     Widgets
@@ -42,6 +43,7 @@
 
 if (EXISTS "${CMAKE_SOURCE_DIR}/.git")
    add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x060000)
+   add_definitions(-DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x060000)
 endif()
 
 # If libutempter is not available on the system, we build
@@ -94,4 +96,8 @@
 # The .notifyrc file is common
 install(FILES kwrited.notifyrc DESTINATION ${KNOTIFYRC_INSTALL_DIR})
 
+# add clang-format target for all our real source files
+file(GLOB_RECURSE ALL_CLANG_FORMAT_SOURCE_FILES *.cpp *.h)
+kde_clang_format(${ALL_CLANG_FORMAT_SOURCE_FILES})
+
 feature_summary(WHAT ALL INCLUDE_QUIET_PACKAGES 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwrited-5.17.5/kwrited-autostart.desktop 
new/kwrited-5.18.0/kwrited-autostart.desktop
--- old/kwrited-5.17.5/kwrited-autostart.desktop        2020-01-07 
16:34:20.000000000 +0100
+++ new/kwrited-5.18.0/kwrited-autostart.desktop        2020-02-06 
14:16:01.000000000 +0100
@@ -161,6 +161,7 @@
 Comment[sv]=Titta efter meddelanden från lokala användare som skickas med 
write(1) eller wall(1)
 Comment[ta]=உள் பயனர் அணுப்பியதுடன் write(1) or wall(1) அதிலிருந்து 
பார்க்கவேண்டிய தகவல்கள்
 Comment[te]=స్థానిక వినియోగదారులనుండి write(1) లేదా wall(1) తో పంపబడిన 
సందేశాలనకొరకు గమనించండి
+Comment[tg]=Назорати паёмҳои ирсолшуда бо write(1) ё wall(1) аз корбарони 
маҳаллӣ
 Comment[th]=เฝ้าดูข้อความจากผู้ใช้ภายในระบบที่ถูกส่งมาด้วย write(1) หรือ 
wall(1)
 Comment[tr]=Yerel kullanıcılarda write(1) veya wall(1) ile gönderilmiş 
mesajları izle
 Comment[ug]=يەرلىك ئىشلەتكۈچى يوللىغان write(1) ياكى wall(1) نى نازارەت قىلىدۇ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwrited-5.17.5/kwrited.cpp 
new/kwrited-5.18.0/kwrited.cpp
--- old/kwrited-5.17.5/kwrited.cpp      2020-01-07 16:34:20.000000000 +0100
+++ new/kwrited-5.18.0/kwrited.cpp      2020-02-06 14:16:01.000000000 +0100
@@ -125,7 +125,7 @@
   setegid(getgid());
 #endif
 
-  connect(pty, SIGNAL(readyRead()), this, SLOT(block_in()));
+  connect(pty, &QIODevice::readyRead, this, &KWrited::block_in);
   //qDebug() << "listening on device" << pty->ttyName();
 }
 
@@ -162,7 +162,7 @@
 #endif
   notification->setText( msg );
   notification->setFlags( KNotification::SkipGrouping );
-  connect(notification, SIGNAL(closed()), notification, SLOT(deleteLater()) );
+  connect(notification, &KNotification::closed, notification, 
&QObject::deleteLater );
   notification->sendEvent();
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwrited-5.17.5/kwrited.notifyrc 
new/kwrited-5.18.0/kwrited.notifyrc
--- old/kwrited-5.17.5/kwrited.notifyrc 2020-01-07 16:34:20.000000000 +0100
+++ new/kwrited-5.18.0/kwrited.notifyrc 2020-02-06 14:16:01.000000000 +0100
@@ -53,6 +53,7 @@
 Comment[sr@ijekavianlatin]=Servis poruka na lokalnom sistemu
 Comment[sr@latin]=Servis poruka na lokalnom sistemu
 Comment[sv]=Lokal systemmeddelandetjänst
+Comment[tg]=Хизмати паёмҳои низоми маҳаллӣ
 Comment[th]=บริการรับส่งข้อความภายในระบบ
 Comment[tr]=Yerel sistem iletisi hizmeti
 Comment[ug]=يەرلىك سىستېما ئۇچۇر مۇلازىمىتى
@@ -127,6 +128,7 @@
 Name[sv]=Nytt meddelande mottaget
 Name[ta]=New message received
 Name[te]=కొత్త సందేశము స్వీకరించబడింది
+Name[tg]=Паёми нав қабул шуд
 Name[th]=ได้รับข้อความใหม่
 Name[tr]=Yeni ileti alındı
 Name[ug]=يېڭى ئۇچۇر قوبۇللاندى
@@ -196,6 +198,7 @@
 Comment[sv]=Demonen tog emot ett nytt meddelande skickat med wall(1) eller 
write(1)
 Comment[ta]=The daemon received a new message sent with wall(1) or write(1)
 Comment[te]=wall(1) లేదా write(1)తో పంపబడిన కొత్త సందేశమును డెమోన్ 
స్వీకరించినది
+Comment[tg]=Раванди дохилӣ паёми ирсолшудаи наверо бо wall(1) ё write(1) қабул 
кард
 Comment[th]=ดีมอนที่จะทำการรับข้อความใหม่ที่ถูกส่งมาจาก wall(1) หรือ write(1)
 Comment[tr]=Servis wall(1) ya da write(1) ile gönderilen yeni bir ileti aldı
 Comment[ug]=بۇ نازارەتچى wall(1) ياكى write(1) يوللىغان يېڭى بىر ئۇچۇرنى 
قوبۇللىدى



Reply via email to