Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package knotifications for openSUSE:Factory 
checked in at 2022-07-11 19:08:53
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/knotifications (Old)
 and      /work/SRC/openSUSE:Factory/.knotifications.new.1523 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "knotifications"

Mon Jul 11 19:08:53 2022 rev:106 rq:988155 version:5.96.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/knotifications/knotifications.changes    
2022-06-17 21:21:27.598739114 +0200
+++ /work/SRC/openSUSE:Factory/.knotifications.new.1523/knotifications.changes  
2022-07-11 19:10:19.275689183 +0200
@@ -1,0 +2,10 @@
+Sun Jul  3 11:56:05 UTC 2022 - Christophe Giboudeaux <christo...@krop.fr>
+
+- Update to 5.96.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/frameworks/5/5.96.0
+- Changes since 5.95.0:
+  * Remove extra ';'
+
+-------------------------------------------------------------------

Old:
----
  knotifications-5.95.0.tar.xz
  knotifications-5.95.0.tar.xz.sig

New:
----
  knotifications-5.96.0.tar.xz
  knotifications-5.96.0.tar.xz.sig

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

Other differences:
------------------
++++++ knotifications.spec ++++++
--- /var/tmp/diff_new_pack.khL4mF/_old  2022-07-11 19:10:19.771689903 +0200
+++ /var/tmp/diff_new_pack.khL4mF/_new  2022-07-11 19:10:19.775689909 +0200
@@ -17,14 +17,14 @@
 
 
 %define lname   libKF5Notifications5
-%define _tar_path 5.95
+%define _tar_path 5.96
 # 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 released
 Name:           knotifications
-Version:        5.95.0
+Version:        5.96.0
 Release:        0
 Summary:        KDE Desktop notifications
 License:        LGPL-2.1-or-later


++++++ knotifications-5.95.0.tar.xz -> knotifications-5.96.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/knotifications-5.95.0/CMakeLists.txt 
new/knotifications-5.96.0/CMakeLists.txt
--- old/knotifications-5.95.0/CMakeLists.txt    2022-06-09 23:23:47.000000000 
+0200
+++ new/knotifications-5.96.0/CMakeLists.txt    2022-07-02 17:56:32.000000000 
+0200
@@ -1,18 +1,22 @@
 cmake_minimum_required(VERSION 3.16)
 
-set(KF_VERSION "5.95.0") # handled by release scripts
-set(KF_DEP_VERSION "5.95.0") # handled by release scripts
+set(KF_VERSION "5.96.0") # handled by release scripts
+set(KF_DEP_VERSION "5.96.0") # handled by release scripts
 project(KNotifications VERSION ${KF_VERSION})
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.95.0  NO_MODULE)
+find_package(ECM 5.96.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL "https://commits.kde.org/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} 
${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules)
 
+include(KDEInstallDirs)
+include(KDECMakeSettings)
+include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
 
+include(KDEGitCommitHooks)
 include(GenerateExportHeader)
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
@@ -20,6 +24,7 @@
 include(ECMPoQmTools)
 include(ECMAddQch)
 include(ECMGenerateExportHeader)
+include(ECMDeprecationSettings)
 
 set(EXCLUDE_DEPRECATED_BEFORE_AND_AT 0 CACHE STRING "Control the range of 
deprecated API excluded from the build [default=0].")
 
@@ -69,11 +74,6 @@
     endif()
 endif()
 
-include(KDEInstallDirs)
-include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
-include(KDECMakeSettings)
-include(KDEGitCommitHooks)
-
 if (NOT APPLE AND NOT WIN32)
     find_package(X11)
 endif()
@@ -139,11 +139,14 @@
 endif()
 
 remove_definitions(-DQT_NO_CAST_FROM_BYTEARRAY)
+
 ecm_install_po_files_as_qm(po)
+
 if (NOT APPLE) # QtMac::setBadgeLabelText is deprecated
-add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x050f02)
+ecm_set_disabled_deprecation_versions(QT 5.15.2)
 endif()
-add_definitions(-DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x055900)
+ecm_set_disabled_deprecation_versions(KF 5.95)
+
 add_subdirectory(src)
 if (BUILD_TESTING)
     add_subdirectory(tests)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/knotifications-5.95.0/Mainpage.dox 
new/knotifications-5.96.0/Mainpage.dox
--- old/knotifications-5.95.0/Mainpage.dox      2022-06-09 23:23:47.000000000 
+0200
+++ new/knotifications-5.96.0/Mainpage.dox      2022-07-02 17:56:32.000000000 
+0200
@@ -4,7 +4,7 @@
 
 It currently supports Linux (and other Unix platforms that implement 
freedesktop.org notifications), Windows (8 or later), macOS and Android 
(version 5.0 or later).
 
-Please consult the <a href="https://hig.kde.org/platform/notification/";>KDE 
Human Interface Guidelines</a> for when using Notifications is appropriate.
+Please consult the <a 
href="https://develop.kde.org/hig/platform/notification//";>KDE Human Interface 
Guidelines</a> for when using Notifications is appropriate.
 
 KNotification is the main entry point for using KNotifications.
 
@@ -18,8 +18,10 @@
 component name to the KNotification object.
 @warning Notifications won't be visible otherwise.
 
-You can do this with the following CMake command:
-install(FILES appname.notifyrc  DESTINATION ${KNOTIFYRC_INSTALL_DIR}))
+You can do this with the following CMake command, if you use ECM's 
KDEInstallDirs:
+@code
+install(FILES appname.notifyrc  DESTINATION ${KDE_INSTALL_KNOTIFYRCDIR})
+@endcode
 
  This file contains  mainly 3 parts
   <ol>
@@ -42,7 +44,7 @@
   The Name field may be used as the application name for popup, it may also be 
used
   to visualize the application's notification settings in KCModule instances.
   If Name is not present, Comment is used instead. Either must be present.
-  Make sure to follow <a 
href="https://hig.kde.org/style/writing/capitalization.html";>the HIG</a>
+  Make sure to follow <a 
href="https://develop.kde.org/hig/style/writing/capitalization/";>the HIG</a>
 
   The DesktopEntry field is required in order for the application to be listed
   in the notifications KCModule, and for its notifications to appear in the
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/knotifications-5.95.0/po/bg/knotifications5_qt.po 
new/knotifications-5.96.0/po/bg/knotifications5_qt.po
--- old/knotifications-5.95.0/po/bg/knotifications5_qt.po       2022-06-09 
23:23:47.000000000 +0200
+++ new/knotifications-5.96.0/po/bg/knotifications5_qt.po       2022-07-02 
17:56:32.000000000 +0200
@@ -3,75 +3,62 @@
 #
 # Zlatko Popov <zlatkopo...@fsa-bg.org>, 2006, 2007, 2008, 2009.
 # Yasen Pramatarov <ya...@lindeas.com>, 2009, 2010, 2011, 2012, 2013.
+# Mincho Kondarev <mkonda...@yahoo.de>, 2022.
 msgid ""
 msgstr ""
 "Project-Id-Version: kdelibs4\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2014-03-23 01:50+0000\n"
-"PO-Revision-Date: 2013-07-23 01:52+0300\n"
-"Last-Translator: Yasen Pramatarov <ya...@lindeas.com>\n"
+"PO-Revision-Date: 2022-05-21 12:28+0200\n"
+"Last-Translator: Mincho Kondarev <mkonda...@yahoo.de>\n"
 "Language-Team: Bulgarian <d...@ludost.net>\n"
 "Language: bg\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 1.5\n"
+"X-Generator: Lokalize 22.04.0\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Qt-Contexts: true\n"
 
 #. Job name, e.g. Copying has failed
 #: knotificationjobuidelegate.cpp:28
-#, fuzzy, qt-format
-#| msgid "%1 (Link)"
+#, qt-format
 msgctxt "KNotificationJobUiDelegate|"
 msgid "%1 (Failed)"
-msgstr "%1 (????????????)"
+msgstr "%1 (??????????????????)"
 
 #: knotificationrestrictions.cpp:195
-#, fuzzy
-#| msgid "Unknown Application"
 msgctxt "KNotificationRestrictions|"
 msgid "Unknown Application"
-msgstr "???????????????????? ????????????????"
+msgstr "???????????????????? ????????????????????"
 
 #: kstatusnotifieritem.cpp:515 kstatusnotifieritem.cpp:1124
-#, fuzzy
-#| msgid "&Minimize"
 msgctxt "KStatusNotifierItem|@action:inmenu"
 msgid "&Minimize"
 msgstr "&????????????????????????"
 
 #: kstatusnotifieritem.cpp:864
-#, fuzzy
-#| msgid "Quit"
 msgctxt "KStatusNotifierItem|@action:inmenu"
 msgid "Quit"
 msgstr "??????????"
 
 #: kstatusnotifieritem.cpp:1122
-#, fuzzy
-#| msgid "&Restore"
 msgctxt "KStatusNotifierItem|@action:inmenu"
 msgid "&Restore"
 msgstr "&????????????????????????????"
 
 #: kstatusnotifieritem.cpp:1136
-#, fuzzy
-#| msgid "Confirm Quit From System Tray"
 msgctxt "KStatusNotifierItem|@title:window"
 msgid "Confirm Quit From System Tray"
-msgstr "???????????????????????? ?????? ???????????????? ???? 
?????????????????? ??????????"
+msgstr "???????????????????????? ???? ?????????? ???? ???????????????????? 
????????????"
 
 #: kstatusnotifieritem.cpp:1137
-#, fuzzy, qt-format
-#| msgid "<qt>Are you sure you want to quit <b>%1</b>?</qt>"
+#, qt-format
 msgctxt "KStatusNotifierItem|"
 msgid "<qt>Are you sure you want to quit <b>%1</b>?</qt>"
-msgstr "<qt>?????????????? ???? ??????, ???? ???????????? ???? 
???????????????? ???? <b>%1</b>?</qt>"
+msgstr "<qt> ???????????????? ???? ???????????? ???? ???????????????? ???? 
<b>%1</b>?</qt>"
 
 #: kstatusnotifieritem.cpp:1141
-#, fuzzy
-#| msgid "Quit"
 msgctxt "KStatusNotifierItem|@action:button"
 msgid "Quit"
 msgstr "??????????"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/knotifications-5.95.0/po/ca@valencia/knotifications5_qt.po 
new/knotifications-5.96.0/po/ca@valencia/knotifications5_qt.po
--- old/knotifications-5.95.0/po/ca@valencia/knotifications5_qt.po      
2022-06-09 23:23:47.000000000 +0200
+++ new/knotifications-5.96.0/po/ca@valencia/knotifications5_qt.po      
2022-07-02 17:56:32.000000000 +0200
@@ -42,7 +42,7 @@
 #: kstatusnotifieritem.cpp:515 kstatusnotifieritem.cpp:1124
 msgctxt "KStatusNotifierItem|@action:inmenu"
 msgid "&Minimize"
-msgstr "&Minimisa"
+msgstr "&Minimitza"
 
 #: kstatusnotifieritem.cpp:864
 msgctxt "KStatusNotifierItem|@action:inmenu"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/knotifications-5.95.0/po/zh_CN/knotifications5_qt.po 
new/knotifications-5.96.0/po/zh_CN/knotifications5_qt.po
--- old/knotifications-5.95.0/po/zh_CN/knotifications5_qt.po    2022-06-09 
23:23:47.000000000 +0200
+++ new/knotifications-5.96.0/po/zh_CN/knotifications5_qt.po    2022-07-02 
17:56:32.000000000 +0200
@@ -12,10 +12,6 @@
 # Weng Xuetian <wen...@gmail.com>, 2011, 2012, 2013.
 msgid ""
 msgstr ""
-"Project-Id-Version: kdeorg\n"
-"PO-Revision-Date: 2022-06-05 04:17\n"
-"Language-Team: Chinese Simplified\n"
-"Language: zh_CN\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -26,6 +22,10 @@
 "X-Crowdin-Language: zh-CN\n"
 "X-Crowdin-File: /kf5-trunk/messages/knotifications/knotifications5_qt.pot\n"
 "X-Crowdin-File-ID: 5541\n"
+"Project-Id-Version: kdeorg\n"
+"Language-Team: Chinese Simplified\n"
+"Language: zh_CN\n"
+"PO-Revision-Date: 2022-07-02 10:59\n"
 
 #. Job name, e.g. Copying has failed
 #: knotificationjobuidelegate.cpp:28
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/knotifications-5.95.0/src/CMakeLists.txt 
new/knotifications-5.96.0/src/CMakeLists.txt
--- old/knotifications-5.95.0/src/CMakeLists.txt        2022-06-09 
23:23:47.000000000 +0200
+++ new/knotifications-5.96.0/src/CMakeLists.txt        2022-07-02 
17:56:32.000000000 +0200
@@ -208,7 +208,7 @@
         ORG_DOMAIN org.kde
         SOURCES # using only public headers, to cover only public API
             ${KNotifications_HEADERS}
-        MD_MAINPAGE "${CMAKE_SOURCE_DIR}/README.md"
+            "${CMAKE_SOURCE_DIR}/Mainpage.dox"
         IMAGE_DIRS "${CMAKE_SOURCE_DIR}/docs/pics"
         LINK_QCHS
             Qt5Widgets_QCH
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/knotifications-5.95.0/src/android_defaults.notifyrc 
new/knotifications-5.96.0/src/android_defaults.notifyrc
--- old/knotifications-5.95.0/src/android_defaults.notifyrc     2022-06-09 
23:23:47.000000000 +0200
+++ new/knotifications-5.96.0/src/android_defaults.notifyrc     2022-07-02 
17:56:32.000000000 +0200
@@ -3,6 +3,7 @@
 Name[ar]=?????? ????????
 Name[ast]=Fallu fatal
 Name[az]=Ciddi X??ta
+Name[bg]=?????????????? ????????????
 Name[bs]=Kobna gre??ka
 Name[ca]=Error fatal
 Name[ca@valencia]=Error fatal
@@ -57,6 +58,7 @@
 Comment[ar]=?????? ?????? ?????? ???????? ???????????????? ??????????????
 Comment[ast]=Hebo un fallu grave que caus?? la salida del programa
 Comment[az]=Proqramdan ????x???? zaman?? ciddi x??ta ba?? verdi
+Comment[bg]=?????????? ???????????????? ????????????, ???????????? ???? 
?????????? ???? ????????????????????
 Comment[bs]=Do??lo je do ozbiljne gre??ke zbog koje je program obustavljen
 Comment[ca]=S'ha produ??t un error seri??s que ha provocat la sortida del 
programa
 Comment[ca@valencia]=S'ha produ??t un error seri??s que ha provocat l'eixida 
del programa
@@ -114,6 +116,7 @@
 Name[ar]=??????????
 Name[ast]=Avisu
 Name[az]=Bildiri??
+Name[bg]=????????????????
 Name[bs]=Obavje??tenje
 Name[ca]=Notificaci??
 Name[ca@valencia]=Notificaci??
@@ -168,6 +171,7 @@
 Comment[ar]=?????? ?????? ?????? ???? ????????????????
 Comment[ast]=Asocedi?? daqu?? especial nel programa
 Comment[az]=Proqramda x??susi bir ??ey ba?? verdi
+Comment[bg]=?????????? ???? ???????? ???????????????????? ?????? 
???????????????????? ???? ????????????????????
 Comment[bs]=Ne??to posebno se dogodilo u programu
 Comment[ca]=Quelcom especial ha passat en el programa
 Comment[ca@valencia]=Alguna cosa especial ha passat en el programa
@@ -224,6 +228,7 @@
 Name[ar]=??????????
 Name[ast]=Alvertencia
 Name[az]=X??b??rdarl??q
+Name[bg]=????????????????????????????
 Name[bs]=Upozorenje
 Name[ca]=Av??s
 Name[ca@valencia]=Av??s
@@ -278,6 +283,7 @@
 Comment[ar]=?????? ?????? ???? ???????????????? ?????? ?????????? ????????????
 Comment[ast]=Hebo un fallu nel programa que pue causar problemes
 Comment[az]=Proqramda probleml??r yarada bil??c??k x??ta ba?? verdi
+Comment[bg]=?????????? ???????????? ?? ????????????????????, ?????????? 
???????? ???? ???????????? ???? ????????????????
 Comment[bs]=Do??lo je do gre??ke u programu koja mo??e izazvati probleme
 Comment[ca]=S'ha produ??t un error en el programa que pot provocar problemes
 Comment[ca@valencia]=S'ha produ??t un error en el programa que pot provocar 
problemes
@@ -334,6 +340,7 @@
 Name[ar]=??????????
 Name[ast]=Cat??strofe
 Name[az]=F??lak??t
+Name[bg]=????????
 Name[bs]=Katastrofa
 Name[ca]=Cat??strofe
 Name[ca@valencia]=Cat??strofe
@@ -387,6 +394,7 @@
 Comment[ar]=?????? ?????? ?????? ?????????? ?????????? ???????????????? 
?????????????? ?????? ?????? ??????????
 Comment[ast]=Asocedi?? un fallu pergrave que caus??, polo menos, la salida del 
programa
 Comment[az]=??n az?? proqram??n ba??lanmas??na s??b??b olan ??ox ciddi bir 
s??hv ba?? verdi
+Comment[bg]=???????????????? ?????????? ???????????????? ????????????, 
?????????? ???????????? ???? ???????????????????????? ???? ????????????????????
 Comment[bs]=Do??lo je do vrlo ozbiljne gre??ke, zbog koje je bar program 
obustavljen
 Comment[ca]=S'ha produ??t un error molt seri??s, com a m??nim ha provocat la 
sortida del programa
 Comment[ca@valencia]=S'ha produ??t un error molt seri??s, com a m??nim ha 
provocat l'eixida del programa
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/knotifications-5.95.0/src/kstatusnotifieritem.cpp 
new/knotifications-5.96.0/src/kstatusnotifieritem.cpp
--- old/knotifications-5.95.0/src/kstatusnotifieritem.cpp       2022-06-09 
23:23:47.000000000 +0200
+++ new/knotifications-5.96.0/src/kstatusnotifieritem.cpp       2022-07-02 
17:56:32.000000000 +0200
@@ -1140,7 +1140,6 @@
     dialog->setAttribute(Qt::WA_DeleteOnClose);
     auto *quitButton = dialog->addButton(KStatusNotifierItem::tr("Quit", 
"@action:button"), QMessageBox::AcceptRole);
     quitButton->setIcon(QIcon::fromTheme(QStringLiteral("application-exit")));
-    ;
     dialog->addButton(QMessageBox::Cancel);
     QObject::connect(dialog, &QDialog::accepted, qApp, &QApplication::quit);
     dialog->show();

Reply via email to