commit plasma-nm5 for openSUSE:Leap:15.2

2020-05-18 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Leap:15.2 
checked in at 2020-05-18 10:58:41

Comparing /work/SRC/openSUSE:Leap:15.2/plasma-nm5 (Old)
 and  /work/SRC/openSUSE:Leap:15.2/.plasma-nm5.new.2738 (New)


Package is "plasma-nm5"

Mon May 18 10:58:41 2020 rev:98 rq:805689 version:5.18.5

Changes:

--- /work/SRC/openSUSE:Leap:15.2/plasma-nm5/plasma-nm5.changes  2020-05-12 
11:36:44.852292278 +0200
+++ /work/SRC/openSUSE:Leap:15.2/.plasma-nm5.new.2738/plasma-nm5.changes
2020-05-18 10:58:42.398551066 +0200
@@ -1,0 +2,7 @@
+Wed May 13 08:25:17 UTC 2020 - Fabian Vogt 
+
+- Add patches to fix appearance of the KCM (kde#418416):
+  * 0001-Use-system-color-scheme-from-Kirigami-instead-of-Pla.patch
+  * 0002-KCM-restore-original-color.patch
+
+---

New:

  0001-Use-system-color-scheme-from-Kirigami-instead-of-Pla.patch
  0002-KCM-restore-original-color.patch



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.UnJrF2/_old  2020-05-18 10:58:42.990552292 +0200
+++ /var/tmp/diff_new_pack.UnJrF2/_new  2020-05-18 10:58:42.994552300 +0200
@@ -35,6 +35,9 @@
 Patch1: 0001-Revert-Require-NM-1.4.0-and-newer.patch
 Patch2: 0001-Revert-Use-NetworkManager-DeviceStatistics-instead-o.patch
 Patch3: 0001-Revert-Inform-about-missing-NetworkManager-VPN-plugi.patch
+# PATCH-FIX-UPSTREAM (master)
+Patch100:   0001-Use-system-color-scheme-from-Kirigami-instead-of-Pla.patch
+Patch101:   0002-KCM-restore-original-color.patch
 BuildRequires:  NetworkManager-devel >= 0.9.8.4
 BuildRequires:  extra-cmake-modules >= 1.3.0
 BuildRequires:  fdupes
@@ -71,6 +74,7 @@
 BuildRequires:  pkgconfig(openconnect) >= 5.2
 Requires:   NetworkManager
 Requires:   kded
+Requires:   kirigami2
 Requires:   kwalletd5
 Requires:   prison-qt5-imports
 Recommends: mobile-broadband-provider-info

++ 0001-Use-system-color-scheme-from-Kirigami-instead-of-Pla.patch ++
>From a380fadeb1357a56223ca0e8d0c9c319271f48e3 Mon Sep 17 00:00:00 2001
From: Jan Grulich 
Date: Tue, 3 Mar 2020 11:19:36 +0100
Subject: [PATCH 1/2] Use system color scheme from Kirigami instead of Plasma
 theme color

Summary: BUG: 418416

Reviewers: ngraham, #plasma, davidedmundson

Reviewed By: #plasma, davidedmundson

Subscribers: davidre, plasma-devel

Tags: #plasma

Differential Revision: https://phabricator.kde.org/D27799
---
 CMakeLists.txt   | 15 +++
 kcm/qml/main.qml |  5 -
 2 files changed, 11 insertions(+), 9 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 1339b789..22134c89 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -55,14 +55,13 @@ set_package_properties(KF5ModemManagerQt PROPERTIES
 
 ecm_find_qmlmodule(org.kde.prison 1.0)
 
-if (BUILD_MOBILE)
-find_package(KF5Kirigami2 ${KF5_MIN_VERSION} CONFIG)
-set_package_properties(KF5Kirigami2 PROPERTIES
-DESCRIPTION "A QtQuick based components set"
-PURPOSE "Required at runtime by the mobile KCMs"
-TYPE RUNTIME
-)
-endif()
+find_package(KF5Kirigami2 ${KF5_MIN_VERSION} CONFIG)
+set_package_properties(KF5Kirigami2 PROPERTIES
+DESCRIPTION "A QtQuick based components set"
+PURPOSE "Required at runtime by the KCMs"
+TYPE RUNTIME
+)
+
 
 # Required only for getting information about NetworkManager version in CMake
 find_package(NetworkManager 1.4.0)
diff --git a/kcm/qml/main.qml b/kcm/qml/main.qml
index dd7e9a2e..cb21a280 100755
--- a/kcm/qml/main.qml
+++ b/kcm/qml/main.qml
@@ -24,6 +24,7 @@ import QtQuick.Controls 2.5 as QQC2
 import org.kde.plasma.core 2.0 as PlasmaCore
 import org.kde.plasma.extras 2.0 as PlasmaExtras
 import org.kde.plasma.networkmanagement 0.2 as PlasmaNM
+import org.kde.kirigami 2.9 as Kirigami
 
 Item {
 id: root
@@ -35,11 +36,13 @@ Item {
 signal requestExportConnection(string connection)
 signal requestToChangeConnection(string name, string path)
 
+Kirigami.Theme.colorSet: Kirigami.Theme.View
+
 Rectangle {
 id: background
 anchors.fill: parent
 focus: true
-color: theme.backgroundColor
+color: Kirigami.Theme.backgroundColor
 }
 
 PlasmaNM.Handler {
-- 
2.25.1

++ 0002-KCM-restore-original-color.patch ++
>From 750308b13e78fbe0bab0d323c18fdb92183995ac Mon Sep 17 00:00:00 2001
From: Jan Grulich 
Date: Tue, 3 Mar 2020 14:53:37 +0100
Subject: [PATCH 2/2] KCM: restore original color BUG: 418416

---
 kcm/qml/main.qml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kcm/qml/main.qml b/kcm/qml/main.qml
index cb21a280..3ada6ac6 100755
--- a/kcm/qml/main.qml
+++ b/kcm/qml/main.qml
@@ -36,7 +36,7 @@ Item 

commit plasma-nm5 for openSUSE:Leap:15.2

2020-05-12 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Leap:15.2 
checked in at 2020-05-12 11:36:43

Comparing /work/SRC/openSUSE:Leap:15.2/plasma-nm5 (Old)
 and  /work/SRC/openSUSE:Leap:15.2/.plasma-nm5.new.2738 (New)


Package is "plasma-nm5"

Tue May 12 11:36:43 2020 rev:97 rq:801326 version:5.18.5

Changes:

--- /work/SRC/openSUSE:Leap:15.2/plasma-nm5/plasma-nm5.changes  2020-04-14 
14:19:55.373227099 +0200
+++ /work/SRC/openSUSE:Leap:15.2/.plasma-nm5.new.2738/plasma-nm5.changes
2020-05-12 11:36:44.852292278 +0200
@@ -1,0 +2,9 @@
+Tue May  5 13:01:56 UTC 2020 - Fabian Vogt 
+
+- Update to 5.18.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.18.5.php
+- No code changes since 5.18.4.1
+
+---

Old:

  plasma-nm-5.18.4.1.tar.xz
  plasma-nm-5.18.4.1.tar.xz.sig

New:

  plasma-nm-5.18.5.tar.xz
  plasma-nm-5.18.5.tar.xz.sig



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.nxwPcF/_old  2020-05-12 11:36:45.252293118 +0200
+++ /var/tmp/diff_new_pack.nxwPcF/_new  2020-05-12 11:36:45.256293127 +0200
@@ -19,15 +19,15 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.18.4.1
+Version:5.18.5
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1-only OR LGPL-3.0-only) AND (GPL-2.0-only OR 
GPL-3.0-only)
 Group:  System/GUI/KDE
 URL:http://www.kde.org
-Source: 
https://download.kde.org/stable/plasma/5.18.4/plasma-nm-%{version}.tar.xz
+Source: 
https://download.kde.org/stable/plasma/%{version}/plasma-nm-%{version}.tar.xz
 %if %{with lang}
-Source1:
https://download.kde.org/stable/plasma/5.18.4/plasma-nm-%{version}.tar.xz.sig
+Source1:
https://download.kde.org/stable/plasma/%{version}/plasma-nm-%{version}.tar.xz.sig
 Source2:plasma.keyring
 %endif
 # PATCH-FIX-OPENSUSE

++ plasma-nm-5.18.4.1.tar.xz -> plasma-nm-5.18.5.tar.xz ++
 2157 lines of diff (skipped)





commit plasma-nm5 for openSUSE:Leap:15.2

2020-04-14 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Leap:15.2 
checked in at 2020-04-14 14:19:54

Comparing /work/SRC/openSUSE:Leap:15.2/plasma-nm5 (Old)
 and  /work/SRC/openSUSE:Leap:15.2/.plasma-nm5.new.3248 (New)


Package is "plasma-nm5"

Tue Apr 14 14:19:54 2020 rev:96 rq:793328 version:5.18.4.1

Changes:

--- /work/SRC/openSUSE:Leap:15.2/plasma-nm5/plasma-nm5.changes  2020-03-15 
07:09:31.548897447 +0100
+++ /work/SRC/openSUSE:Leap:15.2/.plasma-nm5.new.3248/plasma-nm5.changes
2020-04-14 14:19:55.373227099 +0200
@@ -1,0 +2,16 @@
+Tue Mar 31 15:16:41 UTC 2020 - Fabian Vogt 
+
+- Update to 5.18.4.1:
+  * Version fixed
+
+---
+Tue Mar 31 14:47:43 UTC 2020 - Fabian Vogt 
+
+- Update to 5.18.4
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.18.4.php
+- Changes since 5.18.3:
+  * Openconnect: make sure the UI fits into the password dialog (kde#403480)
+
+---

Old:

  plasma-nm-5.18.3.tar.xz
  plasma-nm-5.18.3.tar.xz.sig

New:

  plasma-nm-5.18.4.1.tar.xz
  plasma-nm-5.18.4.1.tar.xz.sig



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.1zG81E/_old  2020-04-14 14:19:55.873227472 +0200
+++ /var/tmp/diff_new_pack.1zG81E/_new  2020-04-14 14:19:55.877227475 +0200
@@ -19,15 +19,15 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.18.3
+Version:5.18.4.1
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1-only OR LGPL-3.0-only) AND (GPL-2.0-only OR 
GPL-3.0-only)
 Group:  System/GUI/KDE
 URL:http://www.kde.org
-Source: 
https://download.kde.org/stable/plasma/%{version}/plasma-nm-%{version}.tar.xz
+Source: 
https://download.kde.org/stable/plasma/5.18.4/plasma-nm-%{version}.tar.xz
 %if %{with lang}
-Source1:
https://download.kde.org/stable/plasma/%{version}/plasma-nm-%{version}.tar.xz.sig
+Source1:
https://download.kde.org/stable/plasma/5.18.4/plasma-nm-%{version}.tar.xz.sig
 Source2:plasma.keyring
 %endif
 # PATCH-FIX-OPENSUSE

++ plasma-nm-5.18.3.tar.xz -> plasma-nm-5.18.4.1.tar.xz ++
 7451 lines of diff (skipped)





commit plasma-nm5 for openSUSE:Leap:15.2

2020-03-15 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Leap:15.2 
checked in at 2020-03-15 07:09:26

Comparing /work/SRC/openSUSE:Leap:15.2/plasma-nm5 (Old)
 and  /work/SRC/openSUSE:Leap:15.2/.plasma-nm5.new.3160 (New)


Package is "plasma-nm5"

Sun Mar 15 07:09:26 2020 rev:95 rq:784462 version:5.18.3

Changes:

--- /work/SRC/openSUSE:Leap:15.2/plasma-nm5/plasma-nm5.changes  2020-03-09 
17:59:21.416638545 +0100
+++ /work/SRC/openSUSE:Leap:15.2/.plasma-nm5.new.3160/plasma-nm5.changes
2020-03-15 07:09:31.548897447 +0100
@@ -1,0 +2,10 @@
+Tue Mar 10 14:55:34 UTC 2020 - Fabian Vogt 
+
+- Update to 5.18.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.18.3.php
+- Changes since 5.18.2:
+  * [kded] Remove html tags from password dialog (kde#418625)
+
+---

Old:

  plasma-nm-5.18.2.tar.xz
  plasma-nm-5.18.2.tar.xz.sig

New:

  plasma-nm-5.18.3.tar.xz
  plasma-nm-5.18.3.tar.xz.sig



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.asu4St/_old  2020-03-15 07:09:32.080897765 +0100
+++ /var/tmp/diff_new_pack.asu4St/_new  2020-03-15 07:09:32.080897765 +0100
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.18.2
+Version:5.18.3
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1-only OR LGPL-3.0-only) AND (GPL-2.0-only OR 
GPL-3.0-only)

++ plasma-nm-5.18.2.tar.xz -> plasma-nm-5.18.3.tar.xz ++
 2522 lines of diff (skipped)





commit plasma-nm5 for openSUSE:Leap:15.2

2020-03-09 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Leap:15.2 
checked in at 2020-03-09 17:59:21

Comparing /work/SRC/openSUSE:Leap:15.2/plasma-nm5 (Old)
 and  /work/SRC/openSUSE:Leap:15.2/.plasma-nm5.new.26092 (New)


Package is "plasma-nm5"

Mon Mar  9 17:59:21 2020 rev:94 rq:780747 version:5.18.2

Changes:

--- /work/SRC/openSUSE:Leap:15.2/plasma-nm5/plasma-nm5.changes  2020-02-27 
06:41:07.177561653 +0100
+++ /work/SRC/openSUSE:Leap:15.2/.plasma-nm5.new.26092/plasma-nm5.changes   
2020-03-09 17:59:21.416638545 +0100
@@ -1,0 +2,16 @@
+Tue Feb 25 14:07:19 UTC 2020 - Fabian Vogt 
+
+- Update to 5.18.2
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.18.2.php
+- Changes since 5.18.1:
+  * Fix build with missing includes
+  * [kded] Set password dialog boxes to plaintext
+  * [kded] Escape notifications
+  * [kcm] Escape connection name in close dialog
+  * KCM: Fix connection list background and padding
+  * Fix ampersand and other characters in tooltip (kde#398225)
+  * Make sure we change icon on NM connectivity change
+
+---

Old:

  plasma-nm-5.18.1.tar.xz
  plasma-nm-5.18.1.tar.xz.sig

New:

  plasma-nm-5.18.2.tar.xz
  plasma-nm-5.18.2.tar.xz.sig



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.E15VMU/_old  2020-03-09 17:59:21.800638736 +0100
+++ /var/tmp/diff_new_pack.E15VMU/_new  2020-03-09 17:59:21.800638736 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package plasma-nm5
 #
-# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.18.1
+Version:5.18.2
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1-only OR LGPL-3.0-only) AND (GPL-2.0-only OR 
GPL-3.0-only)

++ plasma-nm-5.18.1.tar.xz -> plasma-nm-5.18.2.tar.xz ++
 3225 lines of diff (skipped)





commit plasma-nm5 for openSUSE:Leap:15.2

2020-02-26 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Leap:15.2 
checked in at 2020-02-27 06:41:02

Comparing /work/SRC/openSUSE:Leap:15.2/plasma-nm5 (Old)
 and  /work/SRC/openSUSE:Leap:15.2/.plasma-nm5.new.26092 (New)


Package is "plasma-nm5"

Thu Feb 27 06:41:02 2020 rev:93 rq:779049 version:5.18.1

Changes:

--- /work/SRC/openSUSE:Leap:15.2/plasma-nm5/plasma-nm5.changes  2020-02-16 
18:29:20.858750266 +0100
+++ /work/SRC/openSUSE:Leap:15.2/.plasma-nm5.new.26092/plasma-nm5.changes   
2020-02-27 06:41:07.177561653 +0100
@@ -1,0 +2,10 @@
+Tue Feb 18 14:05:59 UTC 2020 - Fabian Vogt 
+
+- Update to 5.18.1
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.18.1.php
+- Changes since 5.18.0:
+  * Fix crash when asking for a modem unlock (kde#417545)
+
+---

Old:

  plasma-nm-5.18.0.tar.xz
  plasma-nm-5.18.0.tar.xz.sig

New:

  plasma-nm-5.18.1.tar.xz
  plasma-nm-5.18.1.tar.xz.sig



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.J6sE4w/_old  2020-02-27 06:41:07.549562428 +0100
+++ /var/tmp/diff_new_pack.J6sE4w/_new  2020-02-27 06:41:07.557562445 +0100
@@ -19,15 +19,15 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.18.0
+Version:5.18.1
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1-only OR LGPL-3.0-only) AND (GPL-2.0-only OR 
GPL-3.0-only)
 Group:  System/GUI/KDE
 URL:http://www.kde.org
-Source: plasma-nm-%{version}.tar.xz
+Source: 
https://download.kde.org/stable/plasma/%{version}/plasma-nm-%{version}.tar.xz
 %if %{with lang}
-Source1:plasma-nm-%{version}.tar.xz.sig
+Source1:
https://download.kde.org/stable/plasma/%{version}/plasma-nm-%{version}.tar.xz.sig
 Source2:plasma.keyring
 %endif
 # PATCH-FIX-OPENSUSE

++ plasma-nm-5.18.0.tar.xz -> plasma-nm-5.18.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.18.0/CMakeLists.txt 
new/plasma-nm-5.18.1/CMakeLists.txt
--- old/plasma-nm-5.18.0/CMakeLists.txt 2020-02-06 14:24:10.0 +0100
+++ new/plasma-nm-5.18.1/CMakeLists.txt 2020-02-18 14:18:31.0 +0100
@@ -2,7 +2,7 @@
 
 project(plasma-networkmanagement)
 
-set(PROJECT_VERSION "5.18.0")
+set(PROJECT_VERSION "5.18.1")
 set(PROJECT_VERSION_MAJOR 5)
 
 set(QT_MIN_VERSION "5.12.0")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.18.0/kded/modemmonitor.cpp 
new/plasma-nm-5.18.1/kded/modemmonitor.cpp
--- old/plasma-nm-5.18.0/kded/modemmonitor.cpp  2020-02-06 14:23:18.0 
+0100
+++ new/plasma-nm-5.18.1/kded/modemmonitor.cpp  2020-02-18 14:17:42.0 
+0100
@@ -45,7 +45,7 @@
 class ModemMonitorPrivate
 {
 public:
-QWeakPointer dialog;
+QPointer dialog;
 };
 
 ModemMonitor::ModemMonitor(QObject * parent)
@@ -117,38 +117,38 @@
 }
 
 if (lock == MM_MODEM_LOCK_SIM_PIN) {
-d->dialog = new PinDialog(modem, PinDialog::SimPin);
+d->dialog = QPointer(new PinDialog(modem, 
PinDialog::SimPin));
 } else if (lock == MM_MODEM_LOCK_SIM_PIN2) {
-d->dialog = new PinDialog(modem, PinDialog::SimPin2);
+d->dialog = QPointer(new PinDialog(modem, 
PinDialog::SimPin2));
 } else if (lock == MM_MODEM_LOCK_SIM_PUK) {
-d->dialog = new PinDialog(modem, PinDialog::SimPuk);
+d->dialog = QPointer(new PinDialog(modem, 
PinDialog::SimPuk));
 } else if (lock == MM_MODEM_LOCK_SIM_PUK2 ) {
-d->dialog = new PinDialog(modem, PinDialog::SimPuk);
+d->dialog = QPointer(new PinDialog(modem, 
PinDialog::SimPuk));
 } else if (lock == MM_MODEM_LOCK_PH_SP_PIN) {
-d->dialog = new PinDialog(modem, PinDialog::ModemServiceProviderPin);
+d->dialog = QPointer(new PinDialog(modem, 
PinDialog::ModemServiceProviderPin));
 } else if (lock == MM_MODEM_LOCK_PH_SP_PUK) {
-d->dialog = new PinDialog(modem, PinDialog::ModemServiceProviderPuk);
+d->dialog = QPointer(new PinDialog(modem, 
PinDialog::ModemServiceProviderPuk));
 } else if (lock == MM_MODEM_LOCK_PH_NET_PIN) {
-d->dialog = new PinDialog(modem, PinDialog::ModemNetworkPin);
+d->dialog = QPointer(new PinDialog(modem, 
PinDialog::ModemNetworkPin));
 } else if (lock == MM_MODEM_LOCK_PH_NET_PUK) {
-d->dialog = new PinDialog(modem, PinDialog::ModemNetworkPuk);
+d->dialog = QPointer(new PinDialog(modem, 
PinDialog::ModemNetworkPuk));
 } else if (lock == MM_MODEM_LOCK_PH_SIM_PIN) {
-

commit plasma-nm5 for openSUSE:Leap:15.2

2020-02-16 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Leap:15.2 
checked in at 2020-02-16 18:28:24

Comparing /work/SRC/openSUSE:Leap:15.2/plasma-nm5 (Old)
 and  /work/SRC/openSUSE:Leap:15.2/.plasma-nm5.new.26092 (New)


Package is "plasma-nm5"

Sun Feb 16 18:28:24 2020 rev:92 rq:774564 version:5.18.0

Changes:

--- /work/SRC/openSUSE:Leap:15.2/plasma-nm5/plasma-nm5.changes  2020-01-15 
15:44:13.671281862 +0100
+++ /work/SRC/openSUSE:Leap:15.2/.plasma-nm5.new.26092/plasma-nm5.changes   
2020-02-16 18:29:20.858750266 +0100
@@ -1,0 +2,41 @@
+Thu Feb  6 15:10:08 UTC 2020 - Fabian Vogt 
+
+- Update to 5.18.0
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.18.0.php
+- Changes since 5.17.90:
+  * [Applet] Focus search field after showing it (kde#416482)
+  * Do not emit signals from lambda slot and constructor
+  * Do not hardcode icon sizes
+  * Remove notification inhibitor lock
+
+---
+Thu Jan 23 11:20:40 UTC 2020 - Christophe Giboudeaux 
+
+- Replace %make_jobs with %cmake_build
+
+---
+Mon Jan 20 13:32:18 UTC 2020 - Fabian Vogt 
+
+- Fix version in source URL
+
+---
+Thu Jan 16 15:15:18 UTC 2020 - Fabian Vogt 
+
+- Update to 5.17.90.4
+  * New bugfix release
+- Changes since 5.17.90:
+  * Do not hardcode icon sizes
+  * Remove notification inhibitor lock
+
+---
+Thu Jan 16 14:04:21 UTC 2020 - Fabian Vogt 
+
+- Update to 5.17.90
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.17.90.php
+- Too many changes to list here
+
+---

Old:

  plasma-nm-5.17.5.tar.xz
  plasma-nm-5.17.5.tar.xz.sig

New:

  plasma-nm-5.18.0.tar.xz
  plasma-nm-5.18.0.tar.xz.sig



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.aGVo7d/_old  2020-02-16 18:29:21.194750442 +0100
+++ /var/tmp/diff_new_pack.aGVo7d/_new  2020-02-16 18:29:21.198750444 +0100
@@ -19,15 +19,15 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.17.5
+Version:5.18.0
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1-only OR LGPL-3.0-only) AND (GPL-2.0-only OR 
GPL-3.0-only)
 Group:  System/GUI/KDE
 URL:http://www.kde.org
-Source: 
https://download.kde.org/stable/plasma/%{version}/plasma-nm-%{version}.tar.xz
+Source: plasma-nm-%{version}.tar.xz
 %if %{with lang}
-Source1:
https://download.kde.org/stable/plasma/%{version}/plasma-nm-%{version}.tar.xz.sig
+Source1:plasma-nm-%{version}.tar.xz.sig
 Source2:plasma.keyring
 %endif
 # PATCH-FIX-OPENSUSE
@@ -268,7 +268,7 @@
 
 %build
   %cmake_kf5 -d build -- -DCMAKE_INSTALL_LOCALEDIR=%{_kf5_localedir}
-  %make_jobs
+  %cmake_build
 
 %install
   %kf5_makeinstall -C build

++ plasma-nm-5.17.5.tar.xz -> plasma-nm-5.18.0.tar.xz ++
 85672 lines of diff (skipped)