Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kf6-bluez-qt for openSUSE:Factory checked in at 2026-08-17 16:55:52 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kf6-bluez-qt (Old) and /work/SRC/openSUSE:Factory/.kf6-bluez-qt.new.1258 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kf6-bluez-qt" Mon Aug 17 16:55:52 2026 rev:31 rq:1371354 version:6.29.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kf6-bluez-qt/kf6-bluez-qt.changes 2026-07-15 16:31:55.998723377 +0200 +++ /work/SRC/openSUSE:Factory/.kf6-bluez-qt.new.1258/kf6-bluez-qt.changes 2026-08-17 16:55:58.854667573 +0200 @@ -1,0 +2,14 @@ +Sun Aug 9 10:38:20 UTC 2026 - Christophe Marin <[email protected]> + +- Update to 6.29.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/frameworks/6/6.29.0 +- Changes since 6.28.0: + * Update dependency version to 6.29.0 + * Remove obsolete doxygen file + * mediatypes.h services.h types.h: provide version macros to consumers + * fix: resolve race condition in Bluetooth object manager initialization. + * Update version to 6.29.0 + +------------------------------------------------------------------- Old: ---- bluez-qt-6.28.0.tar.xz bluez-qt-6.28.0.tar.xz.sig New: ---- bluez-qt-6.29.0.tar.xz bluez-qt-6.29.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kf6-bluez-qt.spec ++++++ --- /var/tmp/diff_new_pack.0nNNi9/_old 2026-08-17 16:55:59.672696366 +0200 +++ /var/tmp/diff_new_pack.0nNNi9/_new 2026-08-17 16:55:59.674696436 +0200 @@ -19,11 +19,11 @@ %define qt6_version 6.9.0 %define rname bluez-qt -# Full KF6 version (e.g. 6.28.0) +# Full KF6 version (e.g. 6.29.0) %{!?_kf6_version: %global _kf6_version %{version}} %bcond_without released Name: kf6-bluez-qt -Version: 6.28.0 +Version: 6.29.0 Release: 0 Summary: Async Bluez wrapper library License: LGPL-2.1-or-later ++++++ bluez-qt-6.28.0.tar.xz -> bluez-qt-6.29.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bluez-qt-6.28.0/CMakeLists.txt new/bluez-qt-6.29.0/CMakeLists.txt --- old/bluez-qt-6.28.0/CMakeLists.txt 2026-07-03 12:50:53.000000000 +0200 +++ new/bluez-qt-6.29.0/CMakeLists.txt 2026-08-07 22:38:29.000000000 +0200 @@ -1,10 +1,10 @@ cmake_minimum_required(VERSION 3.29) -set(KF_VERSION "6.28.0") # handled by release scripts +set(KF_VERSION "6.29.0") # handled by release scripts project(BluezQt VERSION ${KF_VERSION}) include(FeatureSummary) -find_package(ECM 6.28.0 NO_MODULE) +find_package(ECM 6.29.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) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bluez-qt-6.28.0/docs/Doxyfile.local new/bluez-qt-6.29.0/docs/Doxyfile.local --- old/bluez-qt-6.28.0/docs/Doxyfile.local 2026-07-03 12:50:53.000000000 +0200 +++ new/bluez-qt-6.29.0/docs/Doxyfile.local 1970-01-01 01:00:00.000000000 +0100 @@ -1,7 +0,0 @@ -### KApiDox Project-specific Overrides File - -# define so that deprecated API is not skipped -PREDEFINED += \ - "BLUEZQT_ENABLE_DEPRECATED_SINCE(x, y)=1" \ - "BLUEZQT_BUILD_DEPRECATED_SINCE(x, y)=1" \ - "BLUEZQT_DEPRECATED_VERSION(x, y, t)=" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bluez-qt-6.28.0/src/manager_p.cpp new/bluez-qt-6.29.0/src/manager_p.cpp --- old/bluez-qt-6.28.0/src/manager_p.cpp 2026-07-03 12:50:53.000000000 +0200 +++ new/bluez-qt-6.29.0/src/manager_p.cpp 2026-08-07 22:38:29.000000000 +0200 @@ -104,7 +104,10 @@ DBusConnection::orgBluez().connect(Strings::orgBluez(), QStringLiteral("/"), Strings::orgFreedesktopDBus(), QStringLiteral("Dummy"), this, SLOT(dummy())); m_dbusObjectManager = new DBusObjectManager(Strings::orgBluez(), QStringLiteral("/"), DBusConnection::orgBluez(), this); - + + connect(m_dbusObjectManager, &DBusObjectManager::InterfacesAdded, this, &ManagerPrivate::interfacesAdded); + connect(m_dbusObjectManager, &DBusObjectManager::InterfacesRemoved, this, &ManagerPrivate::interfacesRemoved); + QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(m_dbusObjectManager->GetManagedObjects(), this); connect(watcher, &QDBusPendingCallWatcher::finished, this, &ManagerPrivate::getManagedObjectsFinished); } @@ -146,9 +149,6 @@ return; } - connect(m_dbusObjectManager, &DBusObjectManager::InterfacesAdded, this, &ManagerPrivate::interfacesAdded); - connect(m_dbusObjectManager, &DBusObjectManager::InterfacesRemoved, this, &ManagerPrivate::interfacesRemoved); - m_loaded = true; m_initialized = true; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bluez-qt-6.28.0/src/mediatypes.h new/bluez-qt-6.29.0/src/mediatypes.h --- old/bluez-qt-6.28.0/src/mediatypes.h 2026-07-03 12:50:53.000000000 +0200 +++ new/bluez-qt-6.29.0/src/mediatypes.h 2026-08-07 22:38:29.000000000 +0200 @@ -9,6 +9,11 @@ #ifndef BLUEZQT_MEDIATYPES_H #define BLUEZQT_MEDIATYPES_H +// All KF6 public headers should provide the version macros. +// Include version header explicitly because the export header +// (which usually takes care of that) isn't used here +#include <bluezqt_version.h> // IWYU pragma: export + namespace BluezQt { /*! diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bluez-qt-6.28.0/src/services.h new/bluez-qt-6.29.0/src/services.h --- old/bluez-qt-6.28.0/src/services.h 2026-07-03 12:50:53.000000000 +0200 +++ new/bluez-qt-6.29.0/src/services.h 2026-08-07 22:38:29.000000000 +0200 @@ -9,6 +9,11 @@ #ifndef BLUEZQT_SERVICES_H #define BLUEZQT_SERVICES_H +// All KF6 public headers should provide the version macros. +// Include version header explicitly because the export header +// (which usually takes care of that) isn't used here +#include <bluezqt_version.h> // IWYU pragma: export + #include <QString> namespace BluezQt diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bluez-qt-6.28.0/src/types.h new/bluez-qt-6.29.0/src/types.h --- old/bluez-qt-6.28.0/src/types.h 2026-07-03 12:50:53.000000000 +0200 +++ new/bluez-qt-6.29.0/src/types.h 2026-08-07 22:38:29.000000000 +0200 @@ -9,6 +9,11 @@ #ifndef BLUEZQT_TYPES_H #define BLUEZQT_TYPES_H +// All KF6 public headers should provide the version macros. +// Include version header explicitly because the export header +// (which usually takes care of that) isn't used here +#include <bluezqt_version.h> // IWYU pragma: export + #include <QMap> #include <QSharedPointer>
