Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package libKF5NetworkManagerQt for
openSUSE:Factory checked in at 2023-04-09 18:40:19
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libKF5NetworkManagerQt (Old)
and /work/SRC/openSUSE:Factory/.libKF5NetworkManagerQt.new.19717 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libKF5NetworkManagerQt"
Sun Apr 9 18:40:19 2023 rev:113 rq:1078095 version:5.105.0
Changes:
--------
---
/work/SRC/openSUSE:Factory/libKF5NetworkManagerQt/libKF5NetworkManagerQt.changes
2023-03-12 16:25:47.569173500 +0100
+++
/work/SRC/openSUSE:Factory/.libKF5NetworkManagerQt.new.19717/libKF5NetworkManagerQt.changes
2023-04-09 18:42:34.810282056 +0200
@@ -1,0 +2,9 @@
+Sat Apr 1 17:00:57 UTC 2023 - Christophe Marin <[email protected]>
+
+- Update to 5.105.0
+ * New feature release
+ * For more details please see:
+ * https://kde.org/announcements/frameworks/5/5.105.0
+- No code change since 5.104.0
+
+-------------------------------------------------------------------
Old:
----
networkmanager-qt-5.104.0.tar.xz
networkmanager-qt-5.104.0.tar.xz.sig
New:
----
networkmanager-qt-5.105.0.tar.xz
networkmanager-qt-5.105.0.tar.xz.sig
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ libKF5NetworkManagerQt.spec ++++++
--- /var/tmp/diff_new_pack.vyUjpo/_old 2023-04-09 18:42:35.294284794 +0200
+++ /var/tmp/diff_new_pack.vyUjpo/_new 2023-04-09 18:42:35.302284839 +0200
@@ -17,7 +17,7 @@
%define soversion 6
-%define _tar_path 5.104
+%define _tar_path 5.103
# Full KF5 version (e.g. 5.33.0)
%{!?_kf5_version: %global _kf5_version %{version}}
# Last major and minor KF5 version (e.g. 5.33)
@@ -25,7 +25,7 @@
# Only needed for the package signature condition
%bcond_without released
Name: libKF5NetworkManagerQt
-Version: 5.104.0
+Version: 5.105.0
Release: 0
Summary: A Qt wrapper for NetworkManager DBus API
License: LGPL-2.1-only OR LGPL-3.0-only
++++++ networkmanager-qt-5.104.0.tar.xz -> networkmanager-qt-5.105.0.tar.xz
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/networkmanager-qt-5.104.0/CMakeLists.txt
new/networkmanager-qt-5.105.0/CMakeLists.txt
--- old/networkmanager-qt-5.104.0/CMakeLists.txt 2023-03-04
11:10:05.000000000 +0100
+++ new/networkmanager-qt-5.105.0/CMakeLists.txt 2023-03-31
11:17:33.000000000 +0200
@@ -1,10 +1,10 @@
cmake_minimum_required(VERSION 3.16)
-set(KF_VERSION "5.104.0") # handled by release scripts
+set(KF_VERSION "5.105.0") # handled by release scripts
project(NetworkManagerQt VERSION ${KF_VERSION})
include(FeatureSummary)
-find_package(ECM 5.104.0 NO_MODULE)
+find_package(ECM 5.105.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/networkmanager-qt-5.104.0/src/activeconnection.h
new/networkmanager-qt-5.105.0/src/activeconnection.h
--- old/networkmanager-qt-5.104.0/src/activeconnection.h 2023-03-04
11:10:05.000000000 +0100
+++ new/networkmanager-qt-5.105.0/src/activeconnection.h 2023-03-31
11:17:33.000000000 +0200
@@ -68,7 +68,7 @@
* @param path the DBus path of the device
*/
explicit ActiveConnection(const QString &path, QObject *parent = nullptr);
- explicit ActiveConnection(ActiveConnectionPrivate &dd, QObject *parent =
nullptr);
+
/**
* Destroys an ActiveConnection object.
*/
@@ -221,6 +221,8 @@
void devicesChanged();
protected:
+ NETWORKMANAGERQT_NO_EXPORT explicit
ActiveConnection(ActiveConnectionPrivate &dd, QObject *parent = nullptr);
+
ActiveConnectionPrivate *const d_ptr;
private:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/networkmanager-qt-5.104.0/src/device.h
new/networkmanager-qt-5.105.0/src/device.h
--- old/networkmanager-qt-5.104.0/src/device.h 2023-03-04 11:10:05.000000000
+0100
+++ new/networkmanager-qt-5.105.0/src/device.h 2023-03-31 11:17:33.000000000
+0200
@@ -218,7 +218,6 @@
* @param path UNI of the device
*/
explicit Device(const QString &path, QObject *parent = nullptr);
- Device(DevicePrivate &dd, QObject *parent);
/**
* Destroys a device object.
*/
@@ -594,6 +593,8 @@
void udiChanged();
protected:
+ NETWORKMANAGERQT_NO_EXPORT Device(DevicePrivate &dd, QObject *parent);
+
DevicePrivate *const d_ptr;
private:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/networkmanager-qt-5.104.0/src/modemdevice.h
new/networkmanager-qt-5.105.0/src/modemdevice.h
--- old/networkmanager-qt-5.104.0/src/modemdevice.h 2023-03-04
11:10:05.000000000 +0100
+++ new/networkmanager-qt-5.105.0/src/modemdevice.h 2023-03-31
11:17:33.000000000 +0200
@@ -35,7 +35,6 @@
};
Q_DECLARE_FLAGS(Capabilities, Capability)
explicit ModemDevice(const QString &path, QObject *parent = nullptr);
- explicit ModemDevice(ModemDevicePrivate &dd, QObject *parent = nullptr);
~ModemDevice() override;
/**
* Return the type
@@ -59,6 +58,9 @@
*/
void currentCapabilitiesChanged(Capabilities);
+protected:
+ NETWORKMANAGERQT_NO_EXPORT explicit ModemDevice(ModemDevicePrivate &dd,
QObject *parent = nullptr);
+
private:
Q_DECLARE_PRIVATE(ModemDevice)
};
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/networkmanager-qt-5.104.0/src/wirelessnetwork.h
new/networkmanager-qt-5.105.0/src/wirelessnetwork.h
--- old/networkmanager-qt-5.104.0/src/wirelessnetwork.h 2023-03-04
11:10:05.000000000 +0100
+++ new/networkmanager-qt-5.105.0/src/wirelessnetwork.h 2023-03-31
11:17:33.000000000 +0200
@@ -90,7 +90,7 @@
WirelessNetworkPrivate *const d_ptr;
- explicit WirelessNetwork(const AccessPoint::Ptr &accessPoint,
WirelessDevice *device);
+ NETWORKMANAGERQT_NO_EXPORT explicit WirelessNetwork(const AccessPoint::Ptr
&accessPoint, WirelessDevice *device);
};
}