Script 'mail_helper' called by obssrc
Hello community,

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

Package is "knotifyconfig"

Mon Jul 11 19:08:54 2022 rev:104 rq:988156 version:5.96.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/knotifyconfig/knotifyconfig.changes      
2022-06-17 21:21:28.438739569 +0200
+++ /work/SRC/openSUSE:Factory/.knotifyconfig.new.1523/knotifyconfig.changes    
2022-07-11 19:10:20.271690628 +0200
@@ -1,0 +2,11 @@
+Sun Jul  3 11:56:06 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:
+  * Require unit tests to pass for the CI to pass
+  * Use cmakedefine01
+
+-------------------------------------------------------------------

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

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

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

Other differences:
------------------
++++++ knotifyconfig.spec ++++++
--- /var/tmp/diff_new_pack.kK2qIr/_old  2022-07-11 19:10:20.999691684 +0200
+++ /var/tmp/diff_new_pack.kK2qIr/_new  2022-07-11 19:10:21.003691690 +0200
@@ -17,14 +17,14 @@
 
 
 %define lname   libKF5NotifyConfig5
-%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:           knotifyconfig
-Version:        5.95.0
+Version:        5.96.0
 Release:        0
 Summary:        Configuration dialog for desktop notifications
 License:        LGPL-2.1-or-later


++++++ knotifyconfig-5.95.0.tar.xz -> knotifyconfig-5.96.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/knotifyconfig-5.95.0/.kde-ci.yml 
new/knotifyconfig-5.96.0/.kde-ci.yml
--- old/knotifyconfig-5.95.0/.kde-ci.yml        2022-06-09 23:23:59.000000000 
+0200
+++ new/knotifyconfig-5.96.0/.kde-ci.yml        2022-07-02 17:56:45.000000000 
+0200
@@ -9,3 +9,4 @@
 
 Options:
   test-before-installing: True
+  require-passing-tests-on: [ 'Linux', 'FreeBSD', 'Windows' ]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/knotifyconfig-5.95.0/CMakeLists.txt 
new/knotifyconfig-5.96.0/CMakeLists.txt
--- old/knotifyconfig-5.95.0/CMakeLists.txt     2022-06-09 23:23:59.000000000 
+0200
+++ new/knotifyconfig-5.96.0/CMakeLists.txt     2022-07-02 17:56:45.000000000 
+0200
@@ -1,21 +1,33 @@
 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(KNotifyConfig VERSION ${KF_VERSION})
 
 # Dependencies
 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})
 
-set(REQUIRED_QT_VERSION 5.15.2)
+# Includes
 include(KDEInstallDirs)
+include(KDECMakeSettings)
+include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
+
+include(GenerateExportHeader)
+include(ECMSetupVersion)
+include(ECMGenerateHeaders)
+include(ECMQtDeclareLoggingCategory)
+include(ECMAddQch)
+include(CMakePackageConfigHelpers)
+include(KDEGitCommitHooks)
+include(ECMDeprecationSettings)
 
 # Required Qt components to build this framework
+set(REQUIRED_QT_VERSION 5.15.2)
 find_package(Qt${QT_MAJOR_VERSION} ${REQUIRED_QT_VERSION} NO_MODULE REQUIRED 
Widgets DBus)
 
 find_package(Qt5 ${REQUIRED_QT_VERSION} QUIET OPTIONAL_COMPONENTS TextToSpeech)
@@ -24,9 +36,6 @@
 else()
   add_definitions(-DHAVE_SPEECH)
 endif()
-include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
-include(KDECMakeSettings)
-include(KDEGitCommitHooks)
 
 find_package(KF5Completion ${KF_DEP_VERSION} REQUIRED)
 find_package(KF5Config ${KF_DEP_VERSION} REQUIRED)
@@ -45,15 +54,6 @@
         PURPOSE "Needed to preview notification sounds when Canberra isn't 
available")
 endif()
 
-# Includes
-
-include(GenerateExportHeader)
-include(ECMSetupVersion)
-include(ECMGenerateHeaders)
-include(ECMQtDeclareLoggingCategory)
-include(ECMAddQch)
-include(CMakePackageConfigHelpers)
-
 # ECM setup
 ecm_setup_version(
   PROJECT
@@ -64,8 +64,12 @@
 
 option(BUILD_QCH "Build API documentation in QCH format (for e.g. Qt 
Assistant, Qt Creator & KDevelop)" OFF)
 add_feature_info(QCH ${BUILD_QCH} "API documentation in QCH format (for e.g. 
Qt Assistant, Qt Creator & KDevelop)")
-add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x050f02)
-add_definitions(-DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x055900)
+
+ecm_set_disabled_deprecation_versions(
+    QT 5.15.2
+    KF 5.95
+)
+
 # Subdirectories
 add_definitions(-DTRANSLATION_DOMAIN=\"knotifyconfig5\")
 ki18n_install(po)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/knotifyconfig-5.95.0/po/bg/knotifyconfig5.po 
new/knotifyconfig-5.96.0/po/bg/knotifyconfig5.po
--- old/knotifyconfig-5.95.0/po/bg/knotifyconfig5.po    2022-06-09 
23:23:59.000000000 +0200
+++ new/knotifyconfig-5.96.0/po/bg/knotifyconfig5.po    2022-07-02 
17:56:45.000000000 +0200
@@ -3,19 +3,20 @@
 #
 # 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: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-03-13 02:23+0100\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:32+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"
 
 #. i18n: ectx: property (text), widget (QCheckBox, Sound_check)
@@ -46,7 +47,7 @@
 #: knotifyconfigactionswidgetbase.ui:88
 #, kde-format
 msgid "Mark &taskbar entry"
-msgstr ""
+msgstr "?????????????????? ???? &?????????? ?? ?????????????? ???? 
????????????????"
 
 #. i18n: ectx: property (text), widget (QCheckBox, Execute_check)
 #: knotifyconfigactionswidgetbase.ui:95
@@ -68,13 +69,7 @@
 
 #. i18n: ectx: property (whatsThis), widget (QComboBox, TTS_combo)
 #: knotifyconfigactionswidgetbase.ui:131
-#, fuzzy, no-c-format, kde-format
-#| msgid ""
-#| "<qt>Specifies how KTTS should speak the event when received.  If you "
-#| "select \"Speak custom text\", enter the text in the box.  You may use the "
-#| "following substitution strings in the text:<dl><dt>%e</dt><dd>Name of the "
-#| "event</dd><dt>%a</dt><dd>Application that sent the event</dd><dt>%m</"
-#| "dt><dd>The message sent by the application</dd></dl></qt>"
+#, no-c-format, kde-format
 msgid ""
 "<qt>Specifies how knotify should speak the event when received.  If you "
 "select \"Speak custom text\", enter the text in the box.  You may use the "
@@ -82,10 +77,11 @@
 "event</dd><dt>%a</dt><dd>Application that sent the event</dd><dt>%m</"
 "dt><dd>The message sent by the application</dd></dl></qt>"
 msgstr ""
-"<qt>?????????????????? ???? ????????????????????????. ?????? ???????????????? 
?????????????????????????? ??????????, ???? ???????? ???? "
-"???????????????????? ???????????????? ?????????????????? ?? 
????????:<dl><dt>%e</dt><dd>??????????????, ?????????? ???? ?? "
-"??????????????</dd><dt>%a</dt><dd>????????????????, ?????????? ?????????????? 
??????????????????</dd><dt>%m</"
-"dt><dd>??????????????????, ?????????? ?? ?????????????????? ???? 
????????????????????</dd></dl></qt>"
+"<qt> ???????????? ?????? knotify ???????????? ???? ?????????????????? 
??????????????????, ???????????? ?? ????????????????. "
+"?????? ???????????????? \"???????????????????? ???? ??????????\", 
???????????????? ???????????? ?? ????????????. ???????????? ???? "
+"???????????????????? ???????????????? ???????????????????? ???????????? ?? 
????????????: <dl> <dt> %e </dt> <dd> ?????? "
+"???? ?????????????? </dd> <dt> %a </dt> <dd> ????????????????????, 
?????????????????? ?????????????????? </dd> "
+"<dt> %m </dt> <dd> ??????????????????, ?????????????????? ???? 
???????????????????????? </dd> </dl> </qt>"
 
 #. i18n: ectx: property (text), item, widget (QComboBox, TTS_combo)
 #: knotifyconfigactionswidgetbase.ui:135
@@ -107,13 +103,7 @@
 
 #. i18n: ectx: property (whatsThis), widget (QLineEdit, TTS_select)
 #: knotifyconfigactionswidgetbase.ui:153
-#, fuzzy, no-c-format, kde-format
-#| msgid ""
-#| "<qt>Specifies how KTTS should speak the event when received.  If you "
-#| "select \"Speak custom text\", enter the text in the box.  You may use the "
-#| "following substitution strings in the text:<dl><dt>%e</dt><dd>Name of the "
-#| "event</dd><dt>%a</dt><dd>Application that sent the event</dd><dt>%m</"
-#| "dt><dd>The message sent by the application</dd></dl></qt>"
+#, no-c-format, kde-format
 msgid ""
 "<qt>Specifies how Jovie should speak the event when received.  If you select "
 "\"Speak custom text\", enter the text in the box.  You may use the following "
@@ -121,10 +111,11 @@
 "dd><dt>%a</dt><dd>Application that sent the event</dd><dt>%m</dt><dd>The "
 "message sent by the application</dd></dl></qt>"
 msgstr ""
-"<qt>?????????????????? ???? ????????????????????????. ?????? ???????????????? 
?????????????????????????? ??????????, ???? ???????? ???? "
-"???????????????????? ???????????????? ?????????????????? ?? 
????????:<dl><dt>%e</dt><dd>??????????????, ?????????? ???? ?? "
-"??????????????</dd><dt>%a</dt><dd>????????????????, ?????????? ?????????????? 
??????????????????</dd><dt>%m</"
-"dt><dd>??????????????????, ?????????? ?? ?????????????????? ???? 
????????????????????</dd></dl></qt>"
+"<qt> ???????????? ?????? Jovie ???????????? ???? ???????????????? 
??????????????????, ???????????? ???????? ????????????????. "
+"?????? ????????????????\"???????????????????? ???? ??????????\", 
???????????????? ???????????? ?? ????????????. ???????????? ???? "
+"???????????????????? ???????????????? ???????????????????? ???????????? ?? 
????????????: <dl> <dt> %e </dt> <dd> ?????? "
+"???? ?????????????????? </dd> <dt> %a </dt> <dd> ????????????????????, 
?????????????????? ?????????????????? </dd> "
+"<dt> % m </dt> <dd>??????????????????, ?????????????????? ???? 
???????????????????????? </dd> </dl> </qt>"
 
 #: knotifyconfigwidget.cpp:119
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/knotifyconfig-5.95.0/po/ca@valencia/knotifyconfig5.po 
new/knotifyconfig-5.96.0/po/ca@valencia/knotifyconfig5.po
--- old/knotifyconfig-5.95.0/po/ca@valencia/knotifyconfig5.po   2022-06-09 
23:23:59.000000000 +0200
+++ new/knotifyconfig-5.96.0/po/ca@valencia/knotifyconfig5.po   2022-07-02 
17:56:45.000000000 +0200
@@ -84,29 +84,29 @@
 "event</dd><dt>%a</dt><dd>Application that sent the event</dd><dt>%m</"
 "dt><dd>The message sent by the application</dd></dl></qt>"
 msgstr ""
-"<qt>Especifica com ha de llegir el knotify quan reba el succ??s. Si "
-"seleccioneu ??Llig un text personalisat??, introdu??u el text al quadro. 
Podeu "
+"<qt>Especifica com ha de llegir el knotify quan reba l'esdeveniment. Si "
+"seleccioneu ??Llig un text personalitzat??, introdu??u el text al quadro. 
Podeu "
 "emprar les seg??ents cadenes de substituci?? en el 
text:<dl><dt>%e</dt><dd>Nom "
-"del succ??s</dd><dt>%a</dt><dd>Aplicaci?? que envia el succ??s</dd><dt>%m</"
-"dt><dd>Missatge enviat per l'aplicaci??</dd></dl></qt>"
+"de l'esdeveniment</dd><dt>%a</dt><dd>Aplicaci?? que envia l'esdeveniment</"
+"dd><dt>%m</dt><dd>Missatge enviat per l'aplicaci??</dd></dl></qt>"
 
 #. i18n: ectx: property (text), item, widget (QComboBox, TTS_combo)
 #: knotifyconfigactionswidgetbase.ui:135
 #, kde-format
 msgid "Speak Event Message"
-msgstr "Llig el missatge del succ??s"
+msgstr "Llig el missatge de l'esdeveniment"
 
 #. i18n: ectx: property (text), item, widget (QComboBox, TTS_combo)
 #: knotifyconfigactionswidgetbase.ui:140
 #, kde-format
 msgid "Speak Event Name"
-msgstr "Llig el nom del succ??s"
+msgstr "Llig el nom de l'esdeveniment"
 
 #. i18n: ectx: property (text), item, widget (QComboBox, TTS_combo)
 #: knotifyconfigactionswidgetbase.ui:145
 #, kde-format
 msgid "Speak Custom Text"
-msgstr "Llig un text personalisat"
+msgstr "Llig un text personalitzat"
 
 #. i18n: ectx: property (whatsThis), widget (QLineEdit, TTS_select)
 #: knotifyconfigactionswidgetbase.ui:153
@@ -118,11 +118,11 @@
 "dd><dt>%a</dt><dd>Application that sent the event</dd><dt>%m</dt><dd>The "
 "message sent by the application</dd></dl></qt>"
 msgstr ""
-"<qt>Indiqueu qu?? ha de llegir Jovie quan reba el succ??s. Si seleccioneu "
-"??Llig un text personalisat??, introdu??u el text al quadro. Podeu emprar les 
"
-"seg??ents cadenes de substituci?? en el text:<dl><dt>%e</dt><dd>Nom del "
-"succ??s</dd><dt>%a</dt><dd>Aplicaci?? que envia el succ??s</dd><dt>%m</"
-"dt><dd>Missatge enviat per l'aplicaci??</dd></dl></qt>"
+"<qt>Indiqueu qu?? ha de llegir Jovie quan reba l'esdeveniment. Si seleccioneu 
"
+"??Llig un text personalitzat??, introdu??u el text al quadro. Podeu emprar 
les "
+"seg??ents cadenes de substituci?? en el text:<dl><dt>%e</dt><dd>Nom de "
+"l'esdeveniment</dd><dt>%a</dt><dd>Aplicaci?? que envia 
l'esdeveniment</dd><dt>"
+"%m</dt><dd>Missatge enviat per l'aplicaci??</dd></dl></qt>"
 
 #: knotifyconfigwidget.cpp:119
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/knotifyconfig-5.95.0/po/zh_CN/knotifyconfig5.po 
new/knotifyconfig-5.96.0/po/zh_CN/knotifyconfig5.po
--- old/knotifyconfig-5.95.0/po/zh_CN/knotifyconfig5.po 2022-06-09 
23:23:59.000000000 +0200
+++ new/knotifyconfig-5.96.0/po/zh_CN/knotifyconfig5.po 2022-07-02 
17:56:45.000000000 +0200
@@ -15,7 +15,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-03-13 02:23+0100\n"
-"PO-Revision-Date: 2022-06-05 04:17\n"
+"PO-Revision-Date: 2022-07-02 10:59\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/knotifyconfig-5.95.0/src/knotify-config.h.cmake 
new/knotifyconfig-5.96.0/src/knotify-config.h.cmake
--- old/knotifyconfig-5.95.0/src/knotify-config.h.cmake 2022-06-09 
23:23:59.000000000 +0200
+++ new/knotifyconfig-5.96.0/src/knotify-config.h.cmake 2022-07-02 
17:56:45.000000000 +0200
@@ -1,8 +1,8 @@
 #ifndef KNOTIFY_CONFIG_H
 #define KNOTIFY_CONFIG_H
 
-#cmakedefine HAVE_CANBERRA
-#cmakedefine HAVE_PHONON
+#cmakedefine01 HAVE_CANBERRA
+#cmakedefine01 HAVE_PHONON
 
 #endif /* KNOTIFY_CONFIG_H */
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/knotifyconfig-5.95.0/src/knotifyconfigactionswidget.cpp 
new/knotifyconfig-5.96.0/src/knotifyconfigactionswidget.cpp
--- old/knotifyconfig-5.95.0/src/knotifyconfigactionswidget.cpp 2022-06-09 
23:23:59.000000000 +0200
+++ new/knotifyconfig-5.96.0/src/knotifyconfigactionswidget.cpp 2022-07-02 
17:56:45.000000000 +0200
@@ -14,9 +14,9 @@
 #include <QStandardPaths>
 #include <QUrl>
 
-#if defined(HAVE_CANBERRA)
+#if HAVE_CANBERRA
 #include <canberra.h>
-#elif defined(HAVE_PHONON)
+#elif HAVE_PHONON
 #include <phonon/mediaobject.h>
 #endif
 
@@ -61,7 +61,7 @@
 
 KNotifyConfigActionsWidget::~KNotifyConfigActionsWidget()
 {
-#if defined(HAVE_CANBERRA)
+#if HAVE_CANBERRA
     if (m_context) {
         ca_context_destroy(m_context);
     }
@@ -152,7 +152,7 @@
         soundURL.clear();
     }
 
-#if defined(HAVE_CANBERRA)
+#if HAVE_CANBERRA
     if (!m_context) {
         int ret = ca_context_create(&m_context);
         if (ret != CA_SUCCESS) {
@@ -196,7 +196,7 @@
         qCWarning(KNOTIFYCONFIG_LOG) << "Failed to play sound with canberra:" 
<< ca_strerror(ret);
         return;
     }
-#elif defined(HAVE_PHONON)
+#elif HAVE_PHONON
     Phonon::MediaObject *media = 
Phonon::createPlayer(Phonon::NotificationCategory, soundURL);
     media->play();
     connect(media, SIGNAL(finished()), media, SLOT(deleteLater()));
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/knotifyconfig-5.95.0/src/knotifyconfigactionswidget.h 
new/knotifyconfig-5.96.0/src/knotifyconfigactionswidget.h
--- old/knotifyconfig-5.95.0/src/knotifyconfigactionswidget.h   2022-06-09 
23:23:59.000000000 +0200
+++ new/knotifyconfig-5.96.0/src/knotifyconfigactionswidget.h   2022-07-02 
17:56:45.000000000 +0200
@@ -12,7 +12,7 @@
 #include "ui_knotifyconfigactionswidgetbase.h"
 #include <QWidget>
 
-#ifdef HAVE_CANBERRA
+#if HAVE_CANBERRA
 struct ca_context;
 #endif
 
@@ -40,7 +40,7 @@
 
 private:
     Ui::KNotifyConfigActionsWidgetBase m_ui;
-#ifdef HAVE_CANBERRA
+#if HAVE_CANBERRA
     ca_context *m_context = nullptr;
 #endif
 };

Reply via email to