Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kf6-knotifyconfig for 
openSUSE:Factory checked in at 2024-07-14 08:50:01
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kf6-knotifyconfig (Old)
 and      /work/SRC/openSUSE:Factory/.kf6-knotifyconfig.new.17339 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kf6-knotifyconfig"

Sun Jul 14 08:50:01 2024 rev:5 rq:1187128 version:6.4.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kf6-knotifyconfig/kf6-knotifyconfig.changes      
2024-06-09 20:23:02.343596591 +0200
+++ 
/work/SRC/openSUSE:Factory/.kf6-knotifyconfig.new.17339/kf6-knotifyconfig.changes
   2024-07-14 08:53:21.754726284 +0200
@@ -1,0 +2,11 @@
+Tue Jul  9 09:41:52 UTC 2024 - Christophe Marin <christo...@krop.fr>
+
+- Update to 6.4.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/frameworks/6/6.4.0
+- Changes since 6.3.0:
+  * support USE_DBUS option to enable/disable dbus use
+  * Port to KStandardActions
+
+-------------------------------------------------------------------

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

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

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

Other differences:
------------------
++++++ kf6-knotifyconfig.spec ++++++
--- /var/tmp/diff_new_pack.qeoNiI/_old  2024-07-14 08:53:22.494753322 +0200
+++ /var/tmp/diff_new_pack.qeoNiI/_new  2024-07-14 08:53:22.498753469 +0200
@@ -19,13 +19,13 @@
 %define qt6_version 6.6.0
 
 %define rname knotifyconfig
-# Full KF6 version (e.g. 6.3.0)
+# Full KF6 version (e.g. 6.4.0)
 %{!?_kf6_version: %global _kf6_version %{version}}
 # Last major and minor KF6 version (e.g. 6.0)
 %{!?_kf6_bugfix_version: %define _kf6_bugfix_version %(echo %{_kf6_version} | 
awk -F. '{print $1"."$2}')}
 %bcond_without released
 Name:           kf6-knotifyconfig
-Version:        6.3.0
+Version:        6.4.0
 Release:        0
 Summary:        Configuration dialog for desktop notifications
 License:        LGPL-2.1-or-later


++++++ knotifyconfig-6.3.0.tar.xz -> knotifyconfig-6.4.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/knotifyconfig-6.3.0/CMakeLists.txt 
new/knotifyconfig-6.4.0/CMakeLists.txt
--- old/knotifyconfig-6.3.0/CMakeLists.txt      2024-05-31 15:27:28.000000000 
+0200
+++ new/knotifyconfig-6.4.0/CMakeLists.txt      2024-07-05 22:08:19.000000000 
+0200
@@ -1,12 +1,12 @@
 cmake_minimum_required(VERSION 3.16)
 
-set(KF_VERSION "6.3.0") # handled by release scripts
-set(KF_DEP_VERSION "6.3.0") # handled by release scripts
+set(KF_VERSION "6.4.0") # handled by release scripts
+set(KF_DEP_VERSION "6.4.0") # handled by release scripts
 project(KNotifyConfig VERSION ${KF_VERSION})
 
 # Dependencies
 include(FeatureSummary)
-find_package(ECM 6.3.0  NO_MODULE)
+find_package(ECM 6.4.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)
 
@@ -30,8 +30,17 @@
 set(REQUIRED_QT_VERSION 6.5.0)
 find_package(Qt6 ${REQUIRED_QT_VERSION} NO_MODULE REQUIRED Widgets)
 
-if (UNIX AND NOT APPLE)
-  find_package(Qt6 ${REQUIRED_QT_VERSION} NO_MODULE REQUIRED DBus)
+# shall we use DBus?
+# enabled per default on Linux & BSD systems
+set(USE_DBUS_DEFAULT OFF)
+if(UNIX AND NOT APPLE AND NOT ANDROID AND NOT HAIKU)
+    set(USE_DBUS_DEFAULT ON)
+endif()
+option(USE_DBUS "Build components using DBus" ${USE_DBUS_DEFAULT})
+if(USE_DBUS)
+    find_package(Qt6 ${REQUIRED_QT_VERSION} NO_MODULE REQUIRED DBus)
+    set(HAVE_DBUS TRUE)
+    add_definitions(-DHAVE_DBUS)
 endif()
 
 find_package(KF6Completion ${KF_DEP_VERSION} REQUIRED)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/knotifyconfig-6.3.0/po/ar/knotifyconfig6.po 
new/knotifyconfig-6.4.0/po/ar/knotifyconfig6.po
--- old/knotifyconfig-6.3.0/po/ar/knotifyconfig6.po     2024-05-31 
15:27:28.000000000 +0200
+++ new/knotifyconfig-6.4.0/po/ar/knotifyconfig6.po     2024-07-05 
22:08:19.000000000 +0200
@@ -31,7 +31,6 @@
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
 "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
-"X-Generator: Lokalize 2.0\n"
 
 #. i18n: ectx: property (toolTip), widget (KUrlRequester, Sound_select)
 #: knotifyconfigactionswidgetbase.ui:48
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/knotifyconfig-6.3.0/po/be/knotifyconfig6.po 
new/knotifyconfig-6.4.0/po/be/knotifyconfig6.po
--- old/knotifyconfig-6.3.0/po/be/knotifyconfig6.po     2024-05-31 
15:27:28.000000000 +0200
+++ new/knotifyconfig-6.4.0/po/be/knotifyconfig6.po     2024-07-05 
22:08:19.000000000 +0200
@@ -9,10 +9,10 @@
 # kom <m...@komzpa.net>, 2008.
 msgid ""
 msgstr ""
-"Project-Id-Version: 86ff119b1606fcaa910d6b44fc14b611\n"
+"Project-Id-Version: fc57ad16a28d02dea100ceb1c60de14e\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2024-03-25 00:36+0000\n"
-"PO-Revision-Date: 2023-01-18 07:31\n"
+"PO-Revision-Date: 2024-04-05 19:36\n"
 "Last-Translator: Darafei Praliaskouski <kom...@gmail.com>\n"
 "Language-Team: Belarusian\n"
 "Language: be\n"
@@ -23,11 +23,12 @@
 "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
 "%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || n%10>=5 && n%10<=9 || n"
 "%100>=11 && n%100<=14 ? 2 : 3);\n"
-"X-Crowdin-Project: 86ff119b1606fcaa910d6b44fc14b611\n"
-"X-Crowdin-Project-ID: 127\n"
+"X-Crowdin-Project: fc57ad16a28d02dea100ceb1c60de14e\n"
+"X-Crowdin-Project-ID: 136\n"
 "X-Crowdin-Language: be\n"
-"X-Crowdin-File: /main/be/knotifyconfig/knotifyconfig5.po\n"
-"X-Crowdin-File-ID: 8139\n"
+"X-Crowdin-File: /[antikruk.KDE] main/KDE6/be/messages/knotifyconfig/"
+"knotifyconfig6.po\n"
+"X-Crowdin-File-ID: 10238\n"
 
 #. i18n: ectx: property (toolTip), widget (KUrlRequester, Sound_select)
 #: knotifyconfigactionswidgetbase.ui:48
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/knotifyconfig-6.3.0/po/ro/knotifyconfig6.po 
new/knotifyconfig-6.4.0/po/ro/knotifyconfig6.po
--- old/knotifyconfig-6.3.0/po/ro/knotifyconfig6.po     2024-05-31 
15:27:28.000000000 +0200
+++ new/knotifyconfig-6.4.0/po/ro/knotifyconfig6.po     2024-07-05 
22:08:19.000000000 +0200
@@ -117,7 +117,7 @@
 
 #~ msgctxt "EMAIL OF TRANSLATORS"
 #~ msgid "Your emails"
-#~ msgstr ",ser...@ase.md,l...@rolix.org,onet.crist...@gmail.com"
+#~ msgstr ",ser...@cip.md,l...@rolix.org,onet.crist...@gmail.com"
 
 #~ msgid "Name"
 #~ msgstr "Denumire"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/knotifyconfig-6.3.0/po/sv/knotifyconfig6.po 
new/knotifyconfig-6.4.0/po/sv/knotifyconfig6.po
--- old/knotifyconfig-6.3.0/po/sv/knotifyconfig6.po     2024-05-31 
15:27:28.000000000 +0200
+++ new/knotifyconfig-6.4.0/po/sv/knotifyconfig6.po     2024-07-05 
22:08:19.000000000 +0200
@@ -6,9 +6,9 @@
 # Anders Widell <a...@hem.passagen.se>, 1998-2000.
 # Per Lindström <pelin...@algonet.se>, 2000.
 # Mattias Newzella <newze...@linux.nu>, 2000, 2001, 2002,2003, 2004, 2005.
-# Stefan Asserhäll <stefan.asserh...@bredband.net>, 2002.
-# Stefan Asserhäll <stefan.asserh...@bredband.net>, 2004, 2005, 2006, 2007, 
2008, 2009, 2010.
-# Stefan Asserhall <stefan.asserh...@bredband.net>, 2010, 2011, 2012, 2013, 
2015.
+# Stefan Asserhäll <stefan.asserh...@gmail.com>, 2002.
+# Stefan Asserhäll <stefan.asserh...@gmail.com>, 2004, 2005, 2006, 2007, 
2008, 2009, 2010.
+# Stefan Asserhall <stefan.asserh...@gmail.com>, 2010, 2011, 2012, 2013, 2015.
 # Arve Eriksson <031299...@telia.com>, 2011.
 msgid ""
 msgstr ""
@@ -16,7 +16,7 @@
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2024-03-25 00:36+0000\n"
 "PO-Revision-Date: 2015-02-18 19:07+0100\n"
-"Last-Translator: Stefan Asserhäll <stefan.asserh...@bredband.net>\n"
+"Last-Translator: Stefan Asserhäll <stefan.asserh...@gmail.com>\n"
 "Language-Team: Swedish <kde-i18n-...@kde.org>\n"
 "Language: sv\n"
 "MIME-Version: 1.0\n"
@@ -126,7 +126,7 @@
 #~ msgid "Your emails"
 #~ msgstr ""
 #~ "d96re...@dtek.chalmers.se,a...@hem.passagen.se,pelin...@algonet.se,"
-#~ "newze...@linux.nu,stefan.asserh...@telia.com"
+#~ "newze...@linux.nu,stefan.asserh...@gmail.com"
 
 #~ msgid "Name"
 #~ msgstr "Namn"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/knotifyconfig-6.3.0/src/CMakeLists.txt 
new/knotifyconfig-6.4.0/src/CMakeLists.txt
--- old/knotifyconfig-6.3.0/src/CMakeLists.txt  2024-05-31 15:27:28.000000000 
+0200
+++ new/knotifyconfig-6.4.0/src/CMakeLists.txt  2024-07-05 22:08:19.000000000 
+0200
@@ -46,7 +46,7 @@
             KF6::KIOWidgets     # KUrlRequester
 )
 
-if (UNIX AND NOT APPLE)
+if (HAVE_DBUS)
     target_link_libraries(KF6NotifyConfig PRIVATE Qt6::DBus)
 endif()
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/knotifyconfig-6.3.0/src/knotifyconfigwidget.cpp 
new/knotifyconfig-6.4.0/src/knotifyconfigwidget.cpp
--- old/knotifyconfig-6.3.0/src/knotifyconfigwidget.cpp 2024-05-31 
15:27:28.000000000 +0200
+++ new/knotifyconfig-6.4.0/src/knotifyconfigwidget.cpp 2024-07-05 
22:08:19.000000000 +0200
@@ -15,7 +15,7 @@
 #include <QPushButton>
 #include <QVBoxLayout>
 
-#ifdef QT_DBUS_LIB
+#ifdef HAVE_DBUS
 #include <QDBusConnectionInterface>
 #endif
 
@@ -85,7 +85,7 @@
     d->eventList->save();
     Q_EMIT changed(false);
 
-#ifdef QT_DBUS_LIB
+#ifdef HAVE_DBUS
     // ask KNotification objects to reload their config
     QDBusMessage message =
         QDBusMessage::createSignal(QStringLiteral("/Config"), 
QStringLiteral("org.kde.knotification"), 
QStringLiteral("reparseConfiguration"));
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/knotifyconfig-6.3.0/tests/CMakeLists.txt 
new/knotifyconfig-6.4.0/tests/CMakeLists.txt
--- old/knotifyconfig-6.3.0/tests/CMakeLists.txt        2024-05-31 
15:27:28.000000000 +0200
+++ new/knotifyconfig-6.4.0/tests/CMakeLists.txt        2024-07-05 
22:08:19.000000000 +0200
@@ -35,6 +35,5 @@
    KF6::I18n
    KF6::XmlGui
    KF6::Completion
-   KF6::ConfigWidgets # KStandardAction
    KF6::WidgetsAddons # KMessageBox
 )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/knotifyconfig-6.3.0/tests/knotifytestwindow.cpp 
new/knotifyconfig-6.4.0/tests/knotifytestwindow.cpp
--- old/knotifyconfig-6.3.0/tests/knotifytestwindow.cpp 2024-05-31 
15:27:28.000000000 +0200
+++ new/knotifyconfig-6.4.0/tests/knotifytestwindow.cpp 2024-07-05 
22:08:19.000000000 +0200
@@ -9,7 +9,7 @@
 #include <KActionCollection>
 #include <KLocalizedString>
 #include <KMessageBox>
-#include <KStandardAction>
+#include <KStandardActions>
 #include <KXMLGUIFactory>
 
 #include <QDialog>
@@ -32,9 +32,9 @@
     setCentralWidget(w);
 
     // set up the actions
-    actionCollection()->addAction(KStandardAction::Quit, this, SLOT(close()));
+    actionCollection()->addAction(KStandardActions::Quit, this, 
&KNotifyTestWindow::close);
 
-    KStandardAction::keyBindings(guiFactory(), 
&KXMLGUIFactory::showConfigureShortcutsDialog, actionCollection());
+    KStandardActions::keyBindings(guiFactory(), 
&KXMLGUIFactory::showConfigureShortcutsDialog, actionCollection());
 
     createGUI(QFINDTESTDATA("knotifytestui.rc"));
 

Reply via email to