Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kf6-kxmlgui for openSUSE:Factory checked in at 2024-05-11 18:19:57 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kf6-kxmlgui (Old) and /work/SRC/openSUSE:Factory/.kf6-kxmlgui.new.1880 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kf6-kxmlgui" Sat May 11 18:19:57 2024 rev:3 rq:1173169 version:6.2.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kf6-kxmlgui/kf6-kxmlgui.changes 2024-04-15 20:16:12.067566834 +0200 +++ /work/SRC/openSUSE:Factory/.kf6-kxmlgui.new.1880/kf6-kxmlgui.changes 2024-05-11 18:23:53.600103191 +0200 @@ -1,0 +2,10 @@ +Mon May 6 12:23:02 UTC 2024 - Christophe Marin <[email protected]> + +- Update to 6.2.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/gear/6.2.0/ +- Changes since 6.1.0: + * improve dbus disabling + +------------------------------------------------------------------- Old: ---- kxmlgui-6.1.0.tar.xz kxmlgui-6.1.0.tar.xz.sig New: ---- kxmlgui-6.2.0.tar.xz kxmlgui-6.2.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kf6-kxmlgui.spec ++++++ --- /var/tmp/diff_new_pack.wVx1Ip/_old 2024-05-11 18:23:54.976153298 +0200 +++ /var/tmp/diff_new_pack.wVx1Ip/_new 2024-05-11 18:23:54.980153444 +0200 @@ -19,13 +19,13 @@ %define qt6_version 6.6.0 %define rname kxmlgui -# Full KF6 version (e.g. 6.1.0) +# Full KF6 version (e.g. 6.2.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-kxmlgui -Version: 6.1.0 +Version: 6.2.0 Release: 0 Summary: Framework for managing menu and toolbar actions License: LGPL-2.1-or-later AND GPL-2.0-or-later ++++++ frameworks.keyring ++++++ Binary files /var/tmp/diff_new_pack.wVx1Ip/_old and /var/tmp/diff_new_pack.wVx1Ip/_new differ ++++++ kxmlgui-6.1.0.tar.xz -> kxmlgui-6.2.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kxmlgui-6.1.0/CMakeLists.txt new/kxmlgui-6.2.0/CMakeLists.txt --- old/kxmlgui-6.1.0/CMakeLists.txt 2024-04-05 12:59:40.000000000 +0200 +++ new/kxmlgui-6.2.0/CMakeLists.txt 2024-05-03 14:27:36.000000000 +0200 @@ -1,12 +1,12 @@ cmake_minimum_required(VERSION 3.16) -set(KF_VERSION "6.1.0") # handled by release scripts -set(KF_DEP_VERSION "6.1.0") # handled by release scripts +set(KF_VERSION "6.2.0") # handled by release scripts +set(KF_DEP_VERSION "6.2.0") # handled by release scripts project(KXmlGui VERSION ${KF_VERSION}) # ECM setup include(FeatureSummary) -find_package(ECM 6.1.0 NO_MODULE) +find_package(ECM 6.2.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) @@ -48,6 +48,7 @@ find_package(Qt6 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Widgets Xml Network PrintSupport) if(UNIX AND NOT APPLE AND NOT ANDROID) find_package(Qt6 ${REQUIRED_QT_VERSION} CONFIG REQUIRED DBus) + set(HAVE_QTDBUS ${Qt6DBus_FOUND}) endif() find_package(KF6CoreAddons ${KF_DEP_VERSION} REQUIRED) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kxmlgui-6.1.0/KF6XmlGuiConfig.cmake.in new/kxmlgui-6.2.0/KF6XmlGuiConfig.cmake.in --- old/kxmlgui-6.1.0/KF6XmlGuiConfig.cmake.in 2024-04-05 12:59:40.000000000 +0200 +++ new/kxmlgui-6.2.0/KF6XmlGuiConfig.cmake.in 2024-05-03 14:27:36.000000000 +0200 @@ -1,7 +1,7 @@ @PACKAGE_INIT@ include(CMakeFindDependencyMacro) -if ("@Qt6DBus_FOUND@") +if (@HAVE_QTDBUS@) find_dependency(Qt6DBus @REQUIRED_QT_VERSION@) endif() find_dependency(Qt6Widgets @REQUIRED_QT_VERSION@) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kxmlgui-6.1.0/autotests/CMakeLists.txt new/kxmlgui-6.2.0/autotests/CMakeLists.txt --- old/kxmlgui-6.1.0/autotests/CMakeLists.txt 2024-04-05 12:59:40.000000000 +0200 +++ new/kxmlgui-6.2.0/autotests/CMakeLists.txt 2024-05-03 14:27:36.000000000 +0200 @@ -3,6 +3,10 @@ include(ECMAddTests) +if (HAVE_QTDBUS) + add_definitions(-DWITH_QTDBUS) +endif() + ecm_add_tests( kactioncategorytest.cpp kactioncollectiontest.cpp diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kxmlgui-6.1.0/autotests/ktoolbar_unittest.cpp new/kxmlgui-6.2.0/autotests/ktoolbar_unittest.cpp --- old/kxmlgui-6.1.0/autotests/ktoolbar_unittest.cpp 2024-04-05 12:59:40.000000000 +0200 +++ new/kxmlgui-6.2.0/autotests/ktoolbar_unittest.cpp 2024-05-03 14:27:36.000000000 +0200 @@ -8,7 +8,7 @@ #include "testguiclient.h" #include "testxmlguiwindow.h" -#ifdef QT_DBUS_LIB +#ifdef WITH_QTDBUS #include <QDBusConnection> #endif #include <QDir> @@ -345,7 +345,7 @@ QCOMPARE((int)mainToolBar->toolButtonStyle(), (int)toolButtonStyle); QCOMPARE((int)otherToolBar->toolButtonStyle(), (int)toolButtonStyle); -#ifndef Q_OS_WIN // the change notification uses DBus +#ifdef WITH_QTDBUS // the change notification uses DBus // Now change KDE-global setting changeGlobalToolButtonStyleSetting(QStringLiteral("IconOnly"), QStringLiteral("TextOnly")); @@ -409,7 +409,7 @@ // Save settings kmw.saveMainWindowSettings(group); -#ifndef Q_OS_WIN // the change notification uses DBus +#ifdef WITH_QTDBUS // the change notification uses DBus // Now change KDE-global setting changeGlobalToolButtonStyleSetting(QStringLiteral("IconOnly"), QStringLiteral("TextOnly")); @@ -428,7 +428,7 @@ group.sync(); // Same dbus connect as the one in KToolBar. We want our spy to be notified of receiving it. -#ifdef QT_DBUS_LIB +#ifdef WITH_QTDBUS QDBusConnection::sessionBus().connect(QString(), QStringLiteral("/KToolBar"), QStringLiteral("org.kde.KToolBar"), diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kxmlgui-6.1.0/po/tr/kxmlgui6.po new/kxmlgui-6.2.0/po/tr/kxmlgui6.po --- old/kxmlgui-6.1.0/po/tr/kxmlgui6.po 2024-04-05 12:59:40.000000000 +0200 +++ new/kxmlgui-6.2.0/po/tr/kxmlgui6.po 2024-05-03 14:27:36.000000000 +0200 @@ -23,7 +23,7 @@ "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2024-03-24 00:36+0000\n" -"PO-Revision-Date: 2024-03-17 02:48+0300\n" +"PO-Revision-Date: 2024-04-30 00:21+0300\n" "Last-Translator: Emir SARI <[email protected]>\n" "Language-Team: Turkish <[email protected]>\n" "Language: tr\n" @@ -31,7 +31,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Lokalize 24.02.0\n" +"X-Generator: Lokalize 24.07.70\n" #: kaboutapplicationcomponentlistdelegate_p.cpp:51 #, kde-format @@ -325,7 +325,7 @@ "from the 'Settings' menu to solve the ambiguity.\n" "No action will be triggered." msgstr "" -"â%1â düÄme sıralaması belirsiz. âAyarlarâ menüsünden âKısayolları\n" +"â%1â düÄme sıralaması belirsiz. âAyarlarâ menüsünden âKısayolları\n" "Yapılandırâ seçeneÄini kullanarak bu sorunu çözebilirsiniz.\n" "Hiçbir eylem tetiklenmeyecek." @@ -649,7 +649,7 @@ #: kkeysequencewidget.cpp:171 #, kde-format msgid "Shortcut '%1' for action '%2'\n" -msgstr "â%2â eylemi için %1 kısayolu\n" +msgstr "â%2â eylemi için %1 kısayolu\n" #: kkeysequencewidget.cpp:176 #, kde-format @@ -663,11 +663,11 @@ "Do you want to assign an empty shortcut to these actions?\n" "%3" msgstr[0] "" -"â%2â kısayolu aÅaÄıdaki kısayolla çakıÅıyor.\n" +"â%2â kısayolu aÅaÄıdaki kısayolla çakıÅıyor.\n" "Bu eyleme boÅ bir kısayol atamak istiyor musunuz?\n" "%3" msgstr[1] "" -"â%2â kısayolu aÅaÄıdaki kısayollarla çakıÅıyor.\n" +"â%2â kısayolu aÅaÄıdaki kısayollarla çakıÅıyor.\n" "Bu eylemlere boÅ bir kısayol atamak istiyor musunuz?\n" "%3" @@ -690,13 +690,13 @@ "<qt>The '%1' key combination is already used by the <b>%2</b> action." "<br>Please select a different one.</qt>" msgstr "" -"<qt>â%1â kısayolu <b>%2</b> eylemi için kullanılıyor.<br>Lütfen baÅka bir " +"<qt>â%1â kısayolu <b>%2</b> eylemi için kullanılıyor.<br>Lütfen baÅka bir " "tane seçin.</qt>" #: kkeysequencewidget.cpp:273 #, kde-format msgid "Shortcut '%1' in Application '%2' for action '%3'\n" -msgstr "â%3â eylemi için â%2â uygulamasındaki â%1â kısayolu\n" +msgstr "â%3â eylemi için â%2â uygulamasındaki â%1â kısayolu\n" #: kkeysequencewidget.cpp:282 #, kde-format @@ -706,8 +706,8 @@ msgid "The shortcut '%2' conflicts with the following key combination:\n" msgid_plural "" "The shortcut '%2' conflicts with the following key combinations:\n" -msgstr[0] "â%2â kısayolu aÅaÄıdaki düÄme kombinasyonu ile çakıÅıyor:\n" -msgstr[1] "â%2â kısayolu aÅaÄıdaki düÄme kombinasyonları ile çakıÅıyor:\n" +msgstr[0] "â%2â kısayolu aÅaÄıdaki düÄme kombinasyonu ile çakıÅıyor:\n" +msgstr[1] "â%2â kısayolu aÅaÄıdaki düÄme kombinasyonları ile çakıÅıyor:\n" #: kkeysequencewidget.cpp:289 #, kde-format @@ -746,7 +746,7 @@ "some applications use.\n" "Do you really want to use it as a global shortcut as well?" msgstr "" -"â%1â düÄme kombinasyonu, halihazırda baÅka bir uygulamanın â%2â eylemi için " +"â%1â düÄme kombinasyonu, halihazırda baÅka bir uygulamanın â%2â eylemi için " "kullanılıyor.\n" "Bunu bir global kısayol olarak kullanmayı gerçekten istiyor musunuz?" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kxmlgui-6.1.0/po/zh_CN/kxmlgui6.po new/kxmlgui-6.2.0/po/zh_CN/kxmlgui6.po --- old/kxmlgui-6.1.0/po/zh_CN/kxmlgui6.po 2024-04-05 12:59:40.000000000 +0200 +++ new/kxmlgui-6.2.0/po/zh_CN/kxmlgui6.po 2024-05-03 14:27:36.000000000 +0200 @@ -3,7 +3,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2024-03-24 00:36+0000\n" -"PO-Revision-Date: 2024-04-03 19:13\n" +"PO-Revision-Date: 2024-04-22 15:58\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kxmlgui-6.1.0/src/CMakeLists.txt new/kxmlgui-6.2.0/src/CMakeLists.txt --- old/kxmlgui-6.1.0/src/CMakeLists.txt 2024-04-05 12:59:40.000000000 +0200 +++ new/kxmlgui-6.2.0/src/CMakeLists.txt 2024-05-03 14:27:36.000000000 +0200 @@ -59,10 +59,9 @@ kundoactions.cpp kcheckaccelerators.cpp ) -if (TARGET Qt6::DBus) - target_sources(KF6XmlGui PRIVATE - kmainwindowiface.cpp - ) +if (HAVE_QTDBUS) + target_sources(KF6XmlGui PRIVATE kmainwindowiface.cpp) + target_compile_definitions(KF6XmlGui PRIVATE WITH_QTDBUS) endif() # add the resource file @@ -114,7 +113,7 @@ KF6::IconThemes #KIconLoader and KIconThemes in KToolBar KF6::IconWidgets #KIconDialog ) -if (TARGET Qt6::DBus) +if (HAVE_QTDBUS) target_link_libraries(KF6XmlGui PUBLIC Qt6::DBus) #QDBus connect to signal in KToolBar endif() diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kxmlgui-6.1.0/src/kmainwindow.cpp new/kxmlgui-6.2.0/src/kmainwindow.cpp --- old/kxmlgui-6.1.0/src/kmainwindow.cpp 2024-04-05 12:59:40.000000000 +0200 +++ new/kxmlgui-6.2.0/src/kmainwindow.cpp 2024-05-03 14:27:36.000000000 +0200 @@ -15,7 +15,7 @@ #include "kmainwindow.h" #include "kmainwindow_p.h" -#ifdef QT_DBUS_LIB +#ifdef WITH_QTDBUS #include "kmainwindowiface_p.h" #endif #include "khelpmenu.h" @@ -38,7 +38,7 @@ #include <QTimer> #include <QWidget> #include <QWindow> -#ifdef QT_DBUS_LIB +#ifdef WITH_QTDBUS #include <QDBusConnection> #endif @@ -377,7 +377,7 @@ } } -#ifdef QT_DBUS_LIB +#ifdef WITH_QTDBUS /* clang-format off */ constexpr auto opts = QDBusConnection::ExportScriptableSlots | QDBusConnection::ExportScriptableProperties diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kxmlgui-6.1.0/src/ktoolbar.cpp new/kxmlgui-6.2.0/src/ktoolbar.cpp --- old/kxmlgui-6.1.0/src/ktoolbar.cpp 2024-04-05 12:59:40.000000000 +0200 +++ new/kxmlgui-6.2.0/src/ktoolbar.cpp 2024-05-03 14:27:36.000000000 +0200 @@ -25,7 +25,7 @@ #include <QMimeData> #include <QMouseEvent> #include <QPointer> -#ifdef QT_DBUS_LIB +#ifdef WITH_QTDBUS #include <QDBusConnection> #include <QDBusMessage> #endif @@ -261,7 +261,7 @@ q->setAcceptDrops(true); -#ifdef QT_DBUS_LIB +#ifdef WITH_QTDBUS QDBusConnection::sessionBus() .connect(QString(), QStringLiteral("/KToolBar"), QStringLiteral("org.kde.KToolBar"), QStringLiteral("styleChanged"), q, SLOT(slotAppearanceChanged())); #endif @@ -1471,7 +1471,7 @@ void KToolBar::emitToolbarStyleChanged() { -#ifdef QT_DBUS_LIB +#ifdef WITH_QTDBUS QDBusMessage message = QDBusMessage::createSignal(QStringLiteral("/KToolBar"), QStringLiteral("org.kde.KToolBar"), QStringLiteral("styleChanged")); QDBusConnection::sessionBus().send(message); #endif diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kxmlgui-6.1.0/src/kxmlguiwindow.cpp new/kxmlgui-6.2.0/src/kxmlguiwindow.cpp --- old/kxmlgui-6.1.0/src/kxmlguiwindow.cpp 2024-04-05 12:59:40.000000000 +0200 +++ new/kxmlgui-6.2.0/src/kxmlguiwindow.cpp 2024-05-03 14:27:36.000000000 +0200 @@ -18,7 +18,7 @@ #include "kmainwindow_p.h" #include <KMessageBox> #include <kcommandbar.h> -#ifdef QT_DBUS_LIB +#ifdef WITH_QTDBUS #include "kmainwindowiface_p.h" #endif #include "kedittoolbar.h" @@ -27,7 +27,7 @@ #include "ktoolbarhandler_p.h" #include "kxmlguifactory.h" -#ifdef QT_DBUS_LIB +#ifdef WITH_QTDBUS #include <QDBusConnection> #endif #include <QDomDocument> @@ -154,7 +154,7 @@ d->toolBarHandler = nullptr; d->showStatusBarAction = nullptr; d->factory = nullptr; -#ifdef QT_DBUS_LIB +#ifdef WITH_QTDBUS new KMainWindowInterface(this); #endif @@ -220,7 +220,7 @@ { bool ret = KMainWindow::event(ev); if (ev->type() == QEvent::Polish) { -#ifdef QT_DBUS_LIB +#ifdef WITH_QTDBUS /* clang-format off */ constexpr auto opts = QDBusConnection::ExportScriptableSlots | QDBusConnection::ExportScriptableProperties
