commit plasma-nm5 for openSUSE:Factory

2020-11-10 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2020-11-10 13:38:29

Comparing /work/SRC/openSUSE:Factory/plasma-nm5 (Old)
 and  /work/SRC/openSUSE:Factory/.plasma-nm5.new.11331 (New)


Package is "plasma-nm5"

Tue Nov 10 13:38:29 2020 rev:118 rq:846135 version:5.20.2

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2020-10-30 
11:47:49.309715516 +0100
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new.11331/plasma-nm5.changes 
2020-11-10 13:39:13.740500253 +0100
@@ -1,0 +2,6 @@
+Wed Nov  4 21:10:58 UTC 2020 - Fabian Vogt 
+
+- Add patch to support the compress parameter in .ovpn files (boo#1178258):
+  * 0001-Add-support-for-the-OpenVPN-parameter-compress.patch
+
+---

New:

  0001-Add-support-for-the-OpenVPN-parameter-compress.patch



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.T0Eccf/_old  2020-11-10 13:39:14.476498791 +0100
+++ /var/tmp/diff_new_pack.T0Eccf/_new  2020-11-10 13:39:14.480498783 +0100
@@ -30,6 +30,8 @@
 Source1:
https://download.kde.org/stable/plasma/%{version}/plasma-nm-%{version}.tar.xz.sig
 Source2:plasma.keyring
 %endif
+# PATCH-FIX-UPSTREAM
+Patch1: 0001-Add-support-for-the-OpenVPN-parameter-compress.patch
 BuildRequires:  NetworkManager-devel >= 0.9.8.4
 BuildRequires:  extra-cmake-modules >= 1.3.0
 BuildRequires:  fdupes

++ 0001-Add-support-for-the-OpenVPN-parameter-compress.patch ++
>From 089234a7e1941f3b5522add11e2f98d029859dcd Mon Sep 17 00:00:00 2001
From: Alfred Toth 
Date: Mon, 2 Nov 2020 09:43:04 +
Subject: [PATCH] Add support for the OpenVPN parameter compress

This adds support for the OpenVPN parameter compress. With this, it is
possible to use compression algorithms like lz4 or lz4-v2.

BUG: 387715
(cherry picked from commit 0fbf2b364c9104c833a495da09813fdf1ff23352)
---
 vpn/openvpn/nm-openvpn-service.h  |  1 +
 vpn/openvpn/openvpn.cpp   | 41 +--
 vpn/openvpn/openvpnadvanced.ui| 33 +-
 vpn/openvpn/openvpnadvancedwidget.cpp | 48 +--
 4 files changed, 102 insertions(+), 21 deletions(-)

diff --git a/vpn/openvpn/nm-openvpn-service.h b/vpn/openvpn/nm-openvpn-service.h
index b63ab5c1..e74a72d3 100644
--- a/vpn/openvpn/nm-openvpn-service.h
+++ b/vpn/openvpn/nm-openvpn-service.h
@@ -32,6 +32,7 @@
 #define NM_OPENVPN_KEY_CERT "cert"
 #define NM_OPENVPN_KEY_CIPHER "cipher"
 #define NM_OPENVPN_KEY_KEYSIZE "keysize"
+#define NM_OPENVPN_KEY_COMPRESS "compress"
 #define NM_OPENVPN_KEY_COMP_LZO "comp-lzo"
 #define NM_OPENVPN_KEY_CONNECTION_TYPE "connection-type"
 #define NM_OPENVPN_KEY_FLOAT "float"
diff --git a/vpn/openvpn/openvpn.cpp b/vpn/openvpn/openvpn.cpp
index 799d390a..10e265f1 100644
--- a/vpn/openvpn/openvpn.cpp
+++ b/vpn/openvpn/openvpn.cpp
@@ -50,6 +50,7 @@ K_PLUGIN_CLASS_WITH_JSON(OpenVpnUiPlugin, 
"plasmanetworkmanagement_openvpnui.jso
 #define CERT_TAG "cert"
 #define CIPHER_TAG "cipher"
 #define CLIENT_TAG "client"
+#define COMPRESS_TAG "compress"
 #define COMP_TAG "comp-lzo"
 #define DEV_TAG "dev"
 #define FRAGMENT_TAG "fragment"
@@ -300,6 +301,26 @@ NMVariantMapMap 
OpenVpnUiPlugin::importConnectionSettings(const QString 
 dataMap.insert(QLatin1String(NM_OPENVPN_KEY_COMP_LZO), "yes");
 continue;
 }
+if (key_value[0] == COMPRESS_TAG) {
+if (key_value.count() > 1) {
+if (key_value[1] == "yes") {
+dataMap.insert(QLatin1String(NM_OPENVPN_KEY_COMPRESS), 
"yes");
+continue;
+} else if (key_value[1] == "lzo") {
+dataMap.insert(QLatin1String(NM_OPENVPN_KEY_COMPRESS), 
"lzo");
+continue;
+} else if (key_value[1] == "lz4") {
+dataMap.insert(QLatin1String(NM_OPENVPN_KEY_COMPRESS), 
"lz4");
+continue;
+} else if (key_value[1] == "lz4-v2") {
+dataMap.insert(QLatin1String(NM_OPENVPN_KEY_COMPRESS), 
"lz4-v2");
+continue;
+}
+} else {
+dataMap.insert(QLatin1String(NM_OPENVPN_KEY_COMPRESS), "yes");
+continue;
+}
+}
 if (key_value[0] == RENEG_SEC_TAG) {
 if (key_value.count() == 2) {
 dataMap.insert(QLatin1String(NM_OPENVPN_KEY_RENEG_SECONDS), 
key_value[1]);
@@ -811,8 +832,24 @@ bool OpenVpnUiPlugin::exportConnectionSettings(const 
NetworkManager::ConnectionS
 line = QString(CIPHER_TAG) + ' ' + dataMap[NM_OPENVPN_KEY_CIPHER] + 
'\n';
 

commit plasma-nm5 for openSUSE:Factory

2020-10-30 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2020-10-30 11:47:19

Comparing /work/SRC/openSUSE:Factory/plasma-nm5 (Old)
 and  /work/SRC/openSUSE:Factory/.plasma-nm5.new.3463 (New)


Package is "plasma-nm5"

Fri Oct 30 11:47:19 2020 rev:117 rq:844603 version:5.20.2

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2020-10-22 
14:25:38.130930885 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new.3463/plasma-nm5.changes  
2020-10-30 11:47:49.309715516 +0100
@@ -1,0 +2,9 @@
+Tue Oct 27 20:43:53 UTC 2020 - Fabian Vogt 
+
+- Update to 5.20.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/plasma-5.20.2
+- No code changes since 5.20.1
+
+---

Old:

  plasma-nm-5.20.1.tar.xz
  plasma-nm-5.20.1.tar.xz.sig

New:

  plasma-nm-5.20.2.tar.xz
  plasma-nm-5.20.2.tar.xz.sig



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.tHPkTr/_old  2020-10-30 11:47:49.837715983 +0100
+++ /var/tmp/diff_new_pack.tHPkTr/_new  2020-10-30 11:47:49.841715986 +0100
@@ -19,15 +19,15 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.20.1
+Version:5.20.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)
 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
 BuildRequires:  NetworkManager-devel >= 0.9.8.4

++ plasma-nm-5.20.1.tar.xz -> plasma-nm-5.20.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.20.1/CMakeLists.txt 
new/plasma-nm-5.20.2/CMakeLists.txt
--- old/plasma-nm-5.20.1/CMakeLists.txt 2020-10-20 14:06:33.0 +0200
+++ new/plasma-nm-5.20.2/CMakeLists.txt 2020-10-27 13:26:54.0 +0100
@@ -2,7 +2,7 @@
 
 project(plasma-networkmanagement)
 
-set(PROJECT_VERSION "5.20.1")
+set(PROJECT_VERSION "5.20.2")
 set(PROJECT_VERSION_MAJOR 5)
 
 set(QT_MIN_VERSION "5.15.0")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-5.20.1/po/nn/plasmanetworkmanagement-kded.po 
new/plasma-nm-5.20.2/po/nn/plasmanetworkmanagement-kded.po
--- old/plasma-nm-5.20.1/po/nn/plasmanetworkmanagement-kded.po  2020-10-20 
14:06:23.0 +0200
+++ new/plasma-nm-5.20.2/po/nn/plasmanetworkmanagement-kded.po  2020-10-27 
13:26:42.0 +0100
@@ -17,7 +17,7 @@
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 20.08.1\n"
+"X-Generator: Lokalize 20.08.2\n"
 
 #: bluetoothmonitor.cpp:82
 #, kde-format





commit plasma-nm5 for openSUSE:Factory

2020-10-22 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2020-10-22 14:24:21

Comparing /work/SRC/openSUSE:Factory/plasma-nm5 (Old)
 and  /work/SRC/openSUSE:Factory/.plasma-nm5.new.3463 (New)


Package is "plasma-nm5"

Thu Oct 22 14:24:21 2020 rev:116 rq:843110 version:5.20.1

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2020-10-13 
15:30:32.100890408 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new.3463/plasma-nm5.changes  
2020-10-22 14:25:38.130930885 +0200
@@ -1,0 +2,9 @@
+Tue Oct 20 14:30:37 UTC 2020 - Fabian Vogt 
+
+- Update to 5.20.1
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/plasma-5.20.1
+- No code changes since 5.20.0
+
+---

Old:

  plasma-nm-5.20.0.tar.xz
  plasma-nm-5.20.0.tar.xz.sig

New:

  plasma-nm-5.20.1.tar.xz
  plasma-nm-5.20.1.tar.xz.sig



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.p6QJJL/_old  2020-10-22 14:25:39.246931887 +0200
+++ /var/tmp/diff_new_pack.p6QJJL/_new  2020-10-22 14:25:39.250931890 +0200
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.20.0
+Version:5.20.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)

++ plasma-nm-5.20.0.tar.xz -> plasma-nm-5.20.1.tar.xz ++
 2058 lines of diff (skipped)





commit plasma-nm5 for openSUSE:Factory

2020-10-13 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2020-10-13 15:30:12

Comparing /work/SRC/openSUSE:Factory/plasma-nm5 (Old)
 and  /work/SRC/openSUSE:Factory/.plasma-nm5.new.3486 (New)


Package is "plasma-nm5"

Tue Oct 13 15:30:12 2020 rev:115 rq:841010 version:5.20.0

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2020-09-04 
11:09:24.542949229 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new.3486/plasma-nm5.changes  
2020-10-13 15:30:32.100890408 +0200
@@ -1,0 +2,24 @@
+Thu Oct  8 16:55:26 UTC 2020 - Fabian Vogt 
+
+- Update to 5.20.0
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/plasma-5.20.0
+- No code changes since 5.19.90
+
+---
+Thu Sep 17 20:03:14 UTC 2020 - Fabian Vogt 
+
+- Update to 5.19.90
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/plasma-5.19.90
+- Too many changes to list here
+
+---
+Thu Sep 17 19:41:04 UTC 2020 - Fabian Vogt 
+
+- Drop patches, now upstream:
+  * 0001-WIP-applet-Fix-inline-password-field-component-not-w.patch
+
+---

Old:

  0001-WIP-applet-Fix-inline-password-field-component-not-w.patch
  plasma-nm-5.19.5.tar.xz
  plasma-nm-5.19.5.tar.xz.sig

New:

  plasma-nm-5.20.0.tar.xz
  plasma-nm-5.20.0.tar.xz.sig



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.OFxSSH/_old  2020-10-13 15:30:33.164890859 +0200
+++ /var/tmp/diff_new_pack.OFxSSH/_new  2020-10-13 15:30:33.168890860 +0200
@@ -19,19 +19,17 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.19.5
+Version:5.20.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-UPSTREAM
-Patch1: 0001-WIP-applet-Fix-inline-password-field-component-not-w.patch
 BuildRequires:  NetworkManager-devel >= 0.9.8.4
 BuildRequires:  extra-cmake-modules >= 1.3.0
 BuildRequires:  fdupes

++ plasma-nm-5.19.5.tar.xz -> plasma-nm-5.20.0.tar.xz ++
 37223 lines of diff (skipped)





commit plasma-nm5 for openSUSE:Factory

2020-09-04 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2020-09-04 11:08:58

Comparing /work/SRC/openSUSE:Factory/plasma-nm5 (Old)
 and  /work/SRC/openSUSE:Factory/.plasma-nm5.new.3399 (New)


Package is "plasma-nm5"

Fri Sep  4 11:08:58 2020 rev:114 rq:831185 version:5.19.5

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2020-07-29 
17:19:57.856535019 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new.3399/plasma-nm5.changes  
2020-09-04 11:09:24.542949229 +0200
@@ -1,0 +2,9 @@
+Tue Sep  1 11:38:52 UTC 2020 - Fabian Vogt 
+
+- Update to 5.19.5
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/plasma-5.19.5
+- No code changes since 5.19.4
+
+---

Old:

  plasma-nm-5.19.4.tar.xz
  plasma-nm-5.19.4.tar.xz.sig

New:

  plasma-nm-5.19.5.tar.xz
  plasma-nm-5.19.5.tar.xz.sig



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.pnJ4eu/_old  2020-09-04 11:09:25.586949753 +0200
+++ /var/tmp/diff_new_pack.pnJ4eu/_new  2020-09-04 11:09:25.586949753 +0200
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.19.4
+Version:5.19.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)

++ plasma-nm-5.19.4.tar.xz -> plasma-nm-5.19.5.tar.xz ++
 2022 lines of diff (skipped)





commit plasma-nm5 for openSUSE:Factory

2020-07-29 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2020-07-29 17:19:32

Comparing /work/SRC/openSUSE:Factory/plasma-nm5 (Old)
 and  /work/SRC/openSUSE:Factory/.plasma-nm5.new.3592 (New)


Package is "plasma-nm5"

Wed Jul 29 17:19:32 2020 rev:113 rq:823262 version:5.19.4

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2020-07-10 
14:12:11.387393157 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new.3592/plasma-nm5.changes  
2020-07-29 17:19:57.856535019 +0200
@@ -1,0 +2,11 @@
+Tue Jul 28 13:45:52 UTC 2020 - Fabian Vogt 
+
+- Update to 5.19.4
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/plasma-5.19.4
+- Changes since 5.19.3:
+  * Make hotspot configuration dialog bigger
+  * Remove (seemingly debug) warning statement from passworddialog
+
+---

Old:

  plasma-nm-5.19.3.tar.xz
  plasma-nm-5.19.3.tar.xz.sig

New:

  plasma-nm-5.19.4.tar.xz
  plasma-nm-5.19.4.tar.xz.sig



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.q4u6fn/_old  2020-07-29 17:19:59.184536104 +0200
+++ /var/tmp/diff_new_pack.q4u6fn/_new  2020-07-29 17:19:59.188536107 +0200
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.19.3
+Version:5.19.4
 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.19.3.tar.xz -> plasma-nm-5.19.4.tar.xz ++
 1747 lines of diff (skipped)





commit plasma-nm5 for openSUSE:Factory

2020-07-10 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2020-07-10 14:12:00

Comparing /work/SRC/openSUSE:Factory/plasma-nm5 (Old)
 and  /work/SRC/openSUSE:Factory/.plasma-nm5.new.3060 (New)


Package is "plasma-nm5"

Fri Jul 10 14:12:00 2020 rev:112 rq:819423 version:5.19.3

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2020-06-25 
15:06:14.893134609 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new.3060/plasma-nm5.changes  
2020-07-10 14:12:11.387393157 +0200
@@ -1,0 +2,9 @@
+Tue Jul  7 13:58:02 UTC 2020 - Fabian Vogt 
+
+- Update to 5.19.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/plasma-5.19.3
+- No code changes since 5.19.2
+
+---

Old:

  plasma-nm-5.19.2.tar.xz
  plasma-nm-5.19.2.tar.xz.sig

New:

  plasma-nm-5.19.3.tar.xz
  plasma-nm-5.19.3.tar.xz.sig



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.O706sI/_old  2020-07-10 14:12:12.139395627 +0200
+++ /var/tmp/diff_new_pack.O706sI/_new  2020-07-10 14:12:12.143395640 +0200
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.19.2
+Version:5.19.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.19.2.tar.xz -> plasma-nm-5.19.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.19.2/CMakeLists.txt 
new/plasma-nm-5.19.3/CMakeLists.txt
--- old/plasma-nm-5.19.2/CMakeLists.txt 2020-06-23 14:18:21.0 +0200
+++ new/plasma-nm-5.19.3/CMakeLists.txt 2020-07-07 13:18:18.0 +0200
@@ -2,7 +2,7 @@
 
 project(plasma-networkmanagement)
 
-set(PROJECT_VERSION "5.19.2")
+set(PROJECT_VERSION "5.19.3")
 set(PROJECT_VERSION_MAJOR 5)
 
 set(QT_MIN_VERSION "5.14.0")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-5.19.2/po/cs/plasma_applet_org.kde.plasma.networkmanagement.po 
new/plasma-nm-5.19.3/po/cs/plasma_applet_org.kde.plasma.networkmanagement.po
--- 
old/plasma-nm-5.19.2/po/cs/plasma_applet_org.kde.plasma.networkmanagement.po
2020-06-23 14:17:58.0 +0200
+++ 
new/plasma-nm-5.19.3/po/cs/plasma_applet_org.kde.plasma.networkmanagement.po
2020-07-07 13:17:58.0 +0200
@@ -52,7 +52,7 @@
 #: contents/ui/ConnectionItem.qml:271
 #, kde-format
 msgid "Connected, ⬇ %1/s, ⬆ %2/s"
-msgstr ""
+msgstr "Připojen, ⬇ %1/s, ⬆ %2/s"
 
 #: contents/ui/ConnectionItem.qml:275
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-5.19.2/po/fi/plasma_applet_org.kde.plasma.networkmanagement.po 
new/plasma-nm-5.19.3/po/fi/plasma_applet_org.kde.plasma.networkmanagement.po
--- 
old/plasma-nm-5.19.2/po/fi/plasma_applet_org.kde.plasma.networkmanagement.po
2020-06-23 14:18:01.0 +0200
+++ 
new/plasma-nm-5.19.3/po/fi/plasma_applet_org.kde.plasma.networkmanagement.po
2020-07-07 13:18:01.0 +0200
@@ -17,7 +17,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 18.12.3\n"
+"X-Generator: Lokalize 20.04.2\n"
 
 #: contents/ui/ConnectionItem.qml:61
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-5.19.2/po/fr/plasma_applet_org.kde.plasma.networkmanagement.po 
new/plasma-nm-5.19.3/po/fr/plasma_applet_org.kde.plasma.networkmanagement.po
--- 
old/plasma-nm-5.19.2/po/fr/plasma_applet_org.kde.plasma.networkmanagement.po
2020-06-23 14:18:01.0 +0200
+++ 
new/plasma-nm-5.19.3/po/fr/plasma_applet_org.kde.plasma.networkmanagement.po
2020-07-07 13:18:01.0 +0200
@@ -3,6 +3,7 @@
 # Thomas Vergnaud , 2014, 2015, 2016.
 # Vincent Pinon , 2017.
 # Simon Depiets , 2018, 2019, 2020.
+# Xavier Besnard , 2020.
 #
 msgid ""
 msgstr ""
@@ -11,13 +12,13 @@
 "POT-Creation-Date: 2020-06-20 06:36+0200\n"
 "PO-Revision-Date: 2020-04-26 15:24+0800\n"
 "Last-Translator: Simon Depiets \n"
-"Language-Team: French \n"
+"Language-Team: French \n"
 "Language: fr\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-Generator: Lokalize 20.07.70\n"
+"X-Generator: Lokalize 20.04.2\n"
 "X-Environment: kde\n"
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
diff -urN 

commit plasma-nm5 for openSUSE:Factory

2020-06-25 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2020-06-25 15:05:52

Comparing /work/SRC/openSUSE:Factory/plasma-nm5 (Old)
 and  /work/SRC/openSUSE:Factory/.plasma-nm5.new.3060 (New)


Package is "plasma-nm5"

Thu Jun 25 15:05:52 2020 rev:111 rq:816696 version:5.19.2

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2020-06-21 
19:02:10.304171775 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new.3060/plasma-nm5.changes  
2020-06-25 15:06:14.893134609 +0200
@@ -1,0 +2,10 @@
+Tue Jun 23 13:26:18 UTC 2020 - Fabian Vogt 
+
+- Update to 5.19.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/plasma-5.19.2
+- Changes since 5.19.1:
+  * [applet] Remove styled text support from list items (kde#423020)
+
+---

Old:

  plasma-nm-5.19.1.tar.xz
  plasma-nm-5.19.1.tar.xz.sig

New:

  plasma-nm-5.19.2.tar.xz
  plasma-nm-5.19.2.tar.xz.sig



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.wTxH1B/_old  2020-06-25 15:06:15.565136774 +0200
+++ /var/tmp/diff_new_pack.wTxH1B/_new  2020-06-25 15:06:15.569136787 +0200
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.19.1
+Version:5.19.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.19.1.tar.xz -> plasma-nm-5.19.2.tar.xz ++
 19765 lines of diff (skipped)





commit plasma-nm5 for openSUSE:Factory

2020-06-22 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2020-06-20 20:12:22

Comparing /work/SRC/openSUSE:Factory/plasma-nm5 (Old)
 and  /work/SRC/openSUSE:Factory/.plasma-nm5.new.3606 (New)


Package is "plasma-nm5"

Sat Jun 20 20:12:22 2020 rev:110 rq:815804 version:5.19.1

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2020-06-08 
23:57:48.619914602 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new.3606/plasma-nm5.changes  
2020-06-21 19:02:10.304171775 +0200
@@ -1,0 +2,22 @@
+Thu Jun 18 15:50:33 UTC 2020 - Fabian Vogt 
+
+- Fix the inline password field (kde#423093):
+  * 0001-WIP-applet-Fix-inline-password-field-component-not-w.patch
+- Drop patches for Leap 42.3:
+  * 0001-Revert-Show-correct-current-download-and-upload-spee.patch
+  * 0001-Revert-Inform-about-missing-NetworkManager-VPN-plugi.patch
+  * 0001-Revert-Use-NetworkManager-DeviceStatistics-instead-o.patch
+  * 0001-Revert-Require-NM-1.4.0-and-newer.patch
+
+---
+Tue Jun 16 14:34:53 UTC 2020 - Fabian Vogt 
+
+- Update to 5.19.1
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.19.1.php
+- Changes since 5.19.0:
+  * openvpn: avoid enabling TCP if the remote has been set on another line
+  * Testing AccessPoint::Privacy flag is not enough to check whether AP is 
secured (kde#422740)
+
+---

Old:

  0001-Revert-Inform-about-missing-NetworkManager-VPN-plugi.patch
  0001-Revert-Require-NM-1.4.0-and-newer.patch
  0001-Revert-Show-correct-current-download-and-upload-spee.patch
  0001-Revert-Use-NetworkManager-DeviceStatistics-instead-o.patch
  plasma-nm-5.19.0.tar.xz
  plasma-nm-5.19.0.tar.xz.sig

New:

  0001-WIP-applet-Fix-inline-password-field-component-not-w.patch
  plasma-nm-5.19.1.tar.xz
  plasma-nm-5.19.1.tar.xz.sig



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.ipYROf/_old  2020-06-21 19:02:11.016174180 +0200
+++ /var/tmp/diff_new_pack.ipYROf/_new  2020-06-21 19:02:11.020174193 +0200
@@ -19,22 +19,19 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.19.0
+Version:5.19.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
-Patch0: 0001-Revert-Show-correct-current-download-and-upload-spee.patch
-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
+Patch1: 0001-WIP-applet-Fix-inline-password-field-component-not-w.patch
 BuildRequires:  NetworkManager-devel >= 0.9.8.4
 BuildRequires:  extra-cmake-modules >= 1.3.0
 BuildRequires:  fdupes
@@ -261,11 +258,9 @@
 FortiGate SSL VPN plugin for plasma-nm components.
 
 %lang_package
+
 %prep
-%setup -q -n plasma-nm-%{version}
-%if 0%{?suse_version} < 1500
-%autopatch -p1
-%endif
+%autosetup -p1 -n plasma-nm-%{version}
 
 %build
   %cmake_kf5 -d build -- -DCMAKE_INSTALL_LOCALEDIR=%{_kf5_localedir}

++ 0001-WIP-applet-Fix-inline-password-field-component-not-w.patch ++
>From 628127c87bfcca988fc3336dfb503437be5d2d10 Mon Sep 17 00:00:00 2001
From: Nate Graham 
Date: Thu, 18 Jun 2020 15:34:40 +
Subject: [PATCH] [WIP] [applet] Fix inline password field component not
 working properly

BUG: 423093
FIXED-IN: 5.20
---
 applet/contents/ui/ConnectionItem.qml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/applet/contents/ui/ConnectionItem.qml 
b/applet/contents/ui/ConnectionItem.qml
index 98240928..06c7ab25 100644
--- a/applet/contents/ui/ConnectionItem.qml
+++ b/applet/contents/ui/ConnectionItem.qml
@@ -231,8 +231,8 @@ PlasmaExtras.ExpandableListItem {
 if (!predictableWirelessPassword && !Uuid) {
 handler.addAndActivateConnection(DevicePath, SpecificPath)
 } else if (connectionItem.customExpandedViewContent == 
passwordDialogComponent) {
-if 

commit plasma-nm5 for openSUSE:Factory

2020-06-08 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2020-06-08 23:56:32

Comparing /work/SRC/openSUSE:Factory/plasma-nm5 (Old)
 and  /work/SRC/openSUSE:Factory/.plasma-nm5.new.3606 (New)


Package is "plasma-nm5"

Mon Jun  8 23:56:32 2020 rev:109 rq:812335 version:5.19.0

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2020-05-14 
23:23:09.280766268 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new.3606/plasma-nm5.changes  
2020-06-08 23:57:48.619914602 +0200
@@ -1,0 +2,21 @@
+Thu Jun  4 13:27:14 UTC 2020 - Fabian Vogt 
+
+- Update to 5.19.0
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.19.0.php
+- No code changes since 5.18.90
+
+---
+Thu May 14 14:33:09 UTC 2020 - Fabian Vogt 
+
+- Update to 5.18.90
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.18.90.php
+- Too many changes to list here
+- Drop patches, now upstream:
+  * 0001-Use-system-color-scheme-from-Kirigami-instead-of-Pla.patch
+  * 0002-KCM-restore-original-color.patch
+
+---

Old:

  0001-Use-system-color-scheme-from-Kirigami-instead-of-Pla.patch
  0002-KCM-restore-original-color.patch
  plasma-nm-5.18.5.tar.xz
  plasma-nm-5.18.5.tar.xz.sig

New:

  plasma-nm-5.19.0.tar.xz
  plasma-nm-5.19.0.tar.xz.sig



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.iIJe1B/_old  2020-06-08 23:57:50.003918871 +0200
+++ /var/tmp/diff_new_pack.iIJe1B/_new  2020-06-08 23:57:50.011918895 +0200
@@ -19,15 +19,15 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.18.5
+Version:5.19.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
@@ -35,9 +35,6 @@
 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

++ plasma-nm-5.18.5.tar.xz -> plasma-nm-5.19.0.tar.xz ++
 98919 lines of diff (skipped)





commit plasma-nm5 for openSUSE:Factory

2020-05-14 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2020-05-14 23:23:06

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


Package is "plasma-nm5"

Thu May 14 23:23:06 2020 rev:108 rq:805054 version:5.18.5

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2020-05-07 
15:10:55.832423409 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new.2738/plasma-nm5.changes  
2020-05-14 23:23:09.280766268 +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.yi2MV2/_old  2020-05-14 23:23:10.100768058 +0200
+++ /var/tmp/diff_new_pack.yi2MV2/_new  2020-05-14 23:23:10.104768067 +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 {
 signal 

commit plasma-nm5 for openSUSE:Factory

2020-05-07 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2020-05-07 15:10:33

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


Package is "plasma-nm5"

Thu May  7 15:10:33 2020 rev:107 rq:800491 version:5.18.5

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2020-04-04 
12:16:13.955448127 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new.2738/plasma-nm5.changes  
2020-05-07 15:10:55.832423409 +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.2WMkSe/_old  2020-05-07 15:10:56.740425214 +0200
+++ /var/tmp/diff_new_pack.2WMkSe/_new  2020-05-07 15:10:56.744425222 +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:Factory

2020-04-04 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2020-04-04 12:14:58

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


Package is "plasma-nm5"

Sat Apr  4 12:14:58 2020 rev:106 rq:790446 version:5.18.4.1

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2020-03-12 
23:00:46.231049665 +0100
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new.3248/plasma-nm5.changes  
2020-04-04 12:16:13.955448127 +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.ohGKW2/_old  2020-04-04 12:16:17.023451250 +0200
+++ /var/tmp/diff_new_pack.ohGKW2/_new  2020-04-04 12:16:17.023451250 +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:Factory

2020-03-12 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2020-03-12 23:00:14

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


Package is "plasma-nm5"

Thu Mar 12 23:00:14 2020 rev:105 rq:783654 version:5.18.3

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2020-02-29 
21:23:10.370357193 +0100
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new.3160/plasma-nm5.changes  
2020-03-12 23:00:46.231049665 +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.yTrbjb/_old  2020-03-12 23:00:47.435050145 +0100
+++ /var/tmp/diff_new_pack.yTrbjb/_new  2020-03-12 23:00:47.443050148 +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:Factory

2020-02-29 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2020-02-29 21:22:56

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


Package is "plasma-nm5"

Sat Feb 29 21:22:56 2020 rev:104 rq:779207 version:5.18.2

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2020-02-22 
19:06:19.950333972 +0100
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new.26092/plasma-nm5.changes 
2020-02-29 21:23:10.370357193 +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.HgESTy/_old  2020-02-29 21:23:11.206358848 +0100
+++ /var/tmp/diff_new_pack.HgESTy/_new  2020-02-29 21:23:11.214358863 +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:Factory

2020-02-22 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2020-02-22 19:05:40

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


Package is "plasma-nm5"

Sat Feb 22 19:05:40 2020 rev:103 rq:776798 version:5.18.1

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2020-02-10 
21:52:04.906146494 +0100
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new.26092/plasma-nm5.changes 
2020-02-22 19:06:19.950333972 +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.hTAGFj/_old  2020-02-22 19:06:21.594337247 +0100
+++ /var/tmp/diff_new_pack.hTAGFj/_new  2020-02-22 19:06:21.598337255 +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:Factory

2020-02-10 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2020-02-10 21:51:48

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


Package is "plasma-nm5"

Mon Feb 10 21:51:48 2020 rev:102 rq:772253 version:5.18.0

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2020-01-11 
14:40:10.629188038 +0100
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new.26092/plasma-nm5.changes 
2020-02-10 21:52:04.906146494 +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.76pZO9/_old  2020-02-10 21:52:05.562146856 +0100
+++ /var/tmp/diff_new_pack.76pZO9/_new  2020-02-10 21:52:05.562146856 +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)





commit plasma-nm5 for openSUSE:Factory

2020-01-11 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2020-01-11 14:39:16

Comparing /work/SRC/openSUSE:Factory/plasma-nm5 (Old)
 and  /work/SRC/openSUSE:Factory/.plasma-nm5.new.6675 (New)


Package is "plasma-nm5"

Sat Jan 11 14:39:16 2020 rev:101 rq:761997 version:5.17.5

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2019-12-11 
12:08:21.112658916 +0100
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new.6675/plasma-nm5.changes  
2020-01-11 14:40:10.629188038 +0100
@@ -1,0 +2,12 @@
+Tue Jan  7 16:24:38 UTC 2020 - Fabian Vogt 
+
+- Update to 5.17.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.17.5.php
+- Changes since 5.17.4:
+  * Do not crash when changing advanced IPv4 configuration (kde#415856)
+  * Port KCM menu away from PlasmaComponents (kde#414762)
+  * Fortisslvpn: add option to ignore the password BUG: 414975 (kde#414975)
+
+---

Old:

  plasma-nm-5.17.4.tar.xz
  plasma-nm-5.17.4.tar.xz.sig

New:

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



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.hLk26G/_old  2020-01-11 14:40:11.121188233 +0100
+++ /var/tmp/diff_new_pack.hLk26G/_new  2020-01-11 14:40:11.125188234 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package plasma-nm5
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # 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.17.4
+Version:5.17.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)

++ plasma-nm-5.17.4.tar.xz -> plasma-nm-5.17.5.tar.xz ++
 6056 lines of diff (skipped)





commit plasma-nm5 for openSUSE:Factory

2019-12-11 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2019-12-11 12:07:39

Comparing /work/SRC/openSUSE:Factory/plasma-nm5 (Old)
 and  /work/SRC/openSUSE:Factory/.plasma-nm5.new.4691 (New)


Package is "plasma-nm5"

Wed Dec 11 12:07:39 2019 rev:100 rq:754031 version:5.17.4

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2019-11-15 
22:36:22.283965472 +0100
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new.4691/plasma-nm5.changes  
2019-12-11 12:08:21.112658916 +0100
@@ -1,0 +2,10 @@
+Wed Dec  4 08:37:02 UTC 2019 - Fabian Vogt 
+
+- Update to 5.17.4
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.17.4.php
+- Changes since 5.17.3:
+  * connect groupbox toggles to change signal
+
+---

Old:

  plasma-nm-5.17.3.tar.xz
  plasma-nm-5.17.3.tar.xz.sig

New:

  plasma-nm-5.17.4.tar.xz
  plasma-nm-5.17.4.tar.xz.sig



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.fd629I/_old  2019-12-11 12:08:21.724658658 +0100
+++ /var/tmp/diff_new_pack.fd629I/_new  2019-12-11 12:08:21.724658658 +0100
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.17.3
+Version:5.17.4
 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.17.3.tar.xz -> plasma-nm-5.17.4.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.17.3/CMakeLists.txt 
new/plasma-nm-5.17.4/CMakeLists.txt
--- old/plasma-nm-5.17.3/CMakeLists.txt 2019-11-12 11:27:54.0 +0100
+++ new/plasma-nm-5.17.4/CMakeLists.txt 2019-12-03 13:25:24.0 +0100
@@ -2,7 +2,7 @@
 
 project(plasma-networkmanagement)
 
-set(PROJECT_VERSION "5.17.3")
+set(PROJECT_VERSION "5.17.4")
 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.17.3/libs/editor/widgets/settingwidget.cpp 
new/plasma-nm-5.17.4/libs/editor/widgets/settingwidget.cpp
--- old/plasma-nm-5.17.3/libs/editor/widgets/settingwidget.cpp  2019-11-12 
11:27:08.0 +0100
+++ new/plasma-nm-5.17.4/libs/editor/widgets/settingwidget.cpp  2019-12-03 
13:24:16.0 +0100
@@ -26,6 +26,7 @@
 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -104,6 +105,12 @@
 connect(tableview, ::clicked, this, 
::settingChanged);
 }
 
+// Connect all QGroupBox widgets
+QList groupBoxes = findChildren();
+for (QGroupBox *box : groupBoxes) {
+connect(box, ::toggled, this, 
::settingChanged);
+}
+
 /** OUR CUSTOM WIDGETS **/
 // Connect all PasswordField widgets
 QList passwordfields = findChildren();
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-5.17.3/po/da/plasma_applet_org.kde.plasma.networkmanagement.po 
new/plasma-nm-5.17.4/po/da/plasma_applet_org.kde.plasma.networkmanagement.po
--- 
old/plasma-nm-5.17.3/po/da/plasma_applet_org.kde.plasma.networkmanagement.po
2019-11-12 11:27:19.0 +0100
+++ 
new/plasma-nm-5.17.4/po/da/plasma_applet_org.kde.plasma.networkmanagement.po
2019-12-03 13:24:35.0 +0100
@@ -7,7 +7,7 @@
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2019-08-23 03:16+0200\n"
-"PO-Revision-Date: 2019-05-30 17:24+0100\n"
+"PO-Revision-Date: 2019-11-22 20:06+0100\n"
 "Last-Translator: Martin Schlander \n"
 "Language-Team: Danish \n"
 "Language: da\n"
@@ -15,7 +15,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 2.0\n"
+"X-Generator: Lokalize 18.12.3\n"
 
 #: contents/config/config.qml:29
 #, kde-format
@@ -43,10 +43,9 @@
 msgstr "Afbryd forbindelse"
 
 #: contents/ui/ConnectionItem.qml:191
-#, fuzzy, kde-format
-#| msgid "Show  speed in:"
+#, kde-format
 msgid "Show network's QR code"
-msgstr "Vis ærkshastighed i:"
+msgstr "Vis netværkets QR-kode"
 
 #: contents/ui/ConnectionItem.qml:202
 #, kde-format
@@ -98,7 +97,7 @@
 #: contents/ui/main.qml:61
 #, kde-format
 msgid "Open Network Login Page..."
-msgstr ""
+msgstr "Åbn netværkets login-side..."
 
 #: contents/ui/PasswordField.qml:31
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 

commit plasma-nm5 for openSUSE:Factory

2019-11-15 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2019-11-15 22:36:08

Comparing /work/SRC/openSUSE:Factory/plasma-nm5 (Old)
 and  /work/SRC/openSUSE:Factory/.plasma-nm5.new.26869 (New)


Package is "plasma-nm5"

Fri Nov 15 22:36:08 2019 rev:99 rq:747854 version:5.17.3

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2019-10-31 
18:12:09.473816203 +0100
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new.26869/plasma-nm5.changes 
2019-11-15 22:36:22.283965472 +0100
@@ -1,0 +2,9 @@
+Tue Nov 12 11:01:09 UTC 2019 - Fabian Vogt 
+
+- Update to 5.17.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.17.3.php
+- No code changes since 5.17.2
+
+---

Old:

  plasma-nm-5.17.2.tar.xz
  plasma-nm-5.17.2.tar.xz.sig

New:

  plasma-nm-5.17.3.tar.xz
  plasma-nm-5.17.3.tar.xz.sig



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.K6dfbY/_old  2019-11-15 22:36:23.219965061 +0100
+++ /var/tmp/diff_new_pack.K6dfbY/_new  2019-11-15 22:36:23.219965061 +0100
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.17.2
+Version:5.17.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.17.2.tar.xz -> plasma-nm-5.17.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.17.2/CMakeLists.txt 
new/plasma-nm-5.17.3/CMakeLists.txt
--- old/plasma-nm-5.17.2/CMakeLists.txt 2019-10-29 19:27:09.0 +0100
+++ new/plasma-nm-5.17.3/CMakeLists.txt 2019-11-12 11:27:54.0 +0100
@@ -2,7 +2,7 @@
 
 project(plasma-networkmanagement)
 
-set(PROJECT_VERSION "5.17.2")
+set(PROJECT_VERSION "5.17.3")
 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.17.2/kcm/kcm_networkmanagement.desktop 
new/plasma-nm-5.17.3/kcm/kcm_networkmanagement.desktop
--- old/plasma-nm-5.17.2/kcm/kcm_networkmanagement.desktop  2019-10-29 
19:26:16.0 +0100
+++ new/plasma-nm-5.17.3/kcm/kcm_networkmanagement.desktop  2019-11-12 
11:27:08.0 +0100
@@ -103,7 +103,7 @@
 X-KDE-Keywords[eu]=sarea,wifi,ethernet,mugikor,banda 
zabala,vpn,internet,trafikoa
 
X-KDE-Keywords[fi]=verkko,langaton,ethernet,mobiili,laajakaista,vpn,internet,liikenne
 X-KDE-Keywords[fr]=réseau,wifi,ethernet,mobile,large bande,vpn,internet,traffic
-X-KDE-Keywords[gl]=network,rede,wifi,ethernet,mobile,móbil,broadband,banda 
larga,vpn,internet,traffic,tráfico
+X-KDE-Keywords[gl]=network,rede,wifi,ethernet,mobile,móbil,broadband,banda 
larga,vpn,Internet,traffic,tráfico
 
X-KDE-Keywords[he]=network,wifi,ethernet,mobile,broadband,vpn,internet,traffic,רשת,ויפי,אינטרנט,תעבורה
 X-KDE-Keywords[hu]=hálózat,wifi,ethernet,mobil,szélessáv,vpn,internet,forgalom
 
X-KDE-Keywords[id]=jaringan,wifi,ethernet,seluler,broadband,vpn,internet,traffic
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.17.2/kded/networkmanagement.desktop 
new/plasma-nm-5.17.3/kded/networkmanagement.desktop
--- old/plasma-nm-5.17.2/kded/networkmanagement.desktop 2019-10-29 
19:26:16.0 +0100
+++ new/plasma-nm-5.17.3/kded/networkmanagement.desktop 2019-11-12 
11:27:08.0 +0100
@@ -58,7 +58,7 @@
 Comment[en_GB]=Provides secrets to the NetworkManager daemon
 Comment[es]=Proporciona contraseñas al demonio de NetworkManager
 Comment[et]=Saladuste edastamine NetworkManageri deemonile
-Comment[eu]=NetworkManager daimonari sekretuak hornitzen dizkio
+Comment[eu]=«NetworkManager» daimonari sekretuak hornitzen dizkio
 Comment[fi]=Välittää salaisuuksia NetworkManager-palvelulle
 Comment[fr]=Fournit des mots de passe pour le démon NetworkManager
 Comment[gl]=Fornece segredos ao servizo de xestión da rede
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.17.2/kded/networkmanagement.notifyrc 
new/plasma-nm-5.17.3/kded/networkmanagement.notifyrc
--- old/plasma-nm-5.17.2/kded/networkmanagement.notifyrc2019-10-29 
19:26:16.0 +0100
+++ new/plasma-nm-5.17.3/kded/networkmanagement.notifyrc2019-11-12 
11:27:08.0 +0100
@@ -406,7 +406,7 @@
 Name[en_GB]=Failed to activate connection
 Name[es]=La activación de la conexión ha fallado
 Name[et]=Ühenduse aktiveerimine nurjus
-Name[eu]=Konexioa aktibatzeak huts egin du

commit plasma-nm5 for openSUSE:Factory

2019-10-31 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2019-10-31 18:12:07

Comparing /work/SRC/openSUSE:Factory/plasma-nm5 (Old)
 and  /work/SRC/openSUSE:Factory/.plasma-nm5.new.2990 (New)


Package is "plasma-nm5"

Thu Oct 31 18:12:07 2019 rev:98 rq:744238 version:5.17.2

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2019-10-27 
13:39:16.749140174 +0100
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new.2990/plasma-nm5.changes  
2019-10-31 18:12:09.473816203 +0100
@@ -1,0 +2,9 @@
+Tue Oct 29 20:45:53 UTC 2019 - Fabian Vogt 
+
+- Update to 5.17.2
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.17.2.php
+- No code changes since 5.17.1
+
+---

Old:

  plasma-nm-5.17.1.tar.xz
  plasma-nm-5.17.1.tar.xz.sig

New:

  plasma-nm-5.17.2.tar.xz
  plasma-nm-5.17.2.tar.xz.sig



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.0snvJs/_old  2019-10-31 18:12:10.337817108 +0100
+++ /var/tmp/diff_new_pack.0snvJs/_new  2019-10-31 18:12:10.361817133 +0100
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.17.1
+Version:5.17.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.17.1.tar.xz -> plasma-nm-5.17.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.17.1/CMakeLists.txt 
new/plasma-nm-5.17.2/CMakeLists.txt
--- old/plasma-nm-5.17.1/CMakeLists.txt 2019-10-22 17:37:45.0 +0200
+++ new/plasma-nm-5.17.2/CMakeLists.txt 2019-10-29 19:27:09.0 +0100
@@ -2,7 +2,7 @@
 
 project(plasma-networkmanagement)
 
-set(PROJECT_VERSION "5.17.1")
+set(PROJECT_VERSION "5.17.2")
 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.17.1/po/id/kcm_mobile_wifi.po 
new/plasma-nm-5.17.2/po/id/kcm_mobile_wifi.po
--- old/plasma-nm-5.17.1/po/id/kcm_mobile_wifi.po   2019-10-22 
17:37:12.0 +0200
+++ new/plasma-nm-5.17.2/po/id/kcm_mobile_wifi.po   2019-10-29 
19:26:43.0 +0100
@@ -7,7 +7,7 @@
 "Project-Id-Version: plasma-nm\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2019-09-17 03:29+0200\n"
-"PO-Revision-Date: 2019-10-04 07:45+0700\n"
+"PO-Revision-Date: 2019-10-23 18:47+0700\n"
 "Last-Translator: Wantoyo \n"
 "Language-Team: Indonesian \n"
 "Language: id\n"
@@ -15,6 +15,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 19.08.1\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
@@ -163,12 +164,12 @@
 #: package/contents/ui/NetworkSettings.qml:119
 #, kde-format
 msgid "Tunneled TLS"
-msgstr "TLS Bertembus"
+msgstr "Ditembus TLS"
 
 #: package/contents/ui/NetworkSettings.qml:119
 #, kde-format
 msgid "Protected EAP"
-msgstr "EAP Berlindung"
+msgstr "Dilindungi EAP"
 
 #: package/contents/ui/NetworkSettings.qml:135
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-5.17.1/po/id/plasmanetworkmanagement-libs.po 
new/plasma-nm-5.17.2/po/id/plasmanetworkmanagement-libs.po
--- old/plasma-nm-5.17.1/po/id/plasmanetworkmanagement-libs.po  2019-10-22 
17:37:12.0 +0200
+++ new/plasma-nm-5.17.2/po/id/plasmanetworkmanagement-libs.po  2019-10-29 
19:26:43.0 +0100
@@ -7,7 +7,7 @@
 "Project-Id-Version: plasma-nm\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2019-09-14 03:30+0200\n"
-"PO-Revision-Date: 2019-10-01 06:42+0700\n"
+"PO-Revision-Date: 2019-10-20 22:17+0700\n"
 "Last-Translator: Wantoyo \n"
 "Language-Team: Indonesian \n"
 "Language: id\n"
@@ -15,6 +15,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 19.08.1\n"
 
 #: declarative/networkstatus.cpp:120
 #, kde-format
@@ -79,21 +80,19 @@
 msgstr "Mengkoneksi ke %1"
 
 #: declarative/networkstatus.cpp:221
-#, fuzzy, kde-format
-#| msgid "Connected to %1"
+#, kde-format
 msgid "Connected to %1 (no connectivity)"
-msgstr "Terkoneksi ke %1"
+msgstr "Terkoneksi ke %1 (tanpa konektifitas)"
 
 #: declarative/networkstatus.cpp:224
 #, kde-format
 msgid "Connected to %1 (limited connectivity)"
-msgstr ""
+msgstr "Terkoneksi ke %1 (konektifitas terbatas)"
 
 #: 

commit plasma-nm5 for openSUSE:Factory

2019-10-27 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2019-10-27 13:39:14

Comparing /work/SRC/openSUSE:Factory/plasma-nm5 (Old)
 and  /work/SRC/openSUSE:Factory/.plasma-nm5.new.2990 (New)


Package is "plasma-nm5"

Sun Oct 27 13:39:14 2019 rev:97 rq:742076 version:5.17.1

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2019-10-14 
12:38:39.267147056 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new.2990/plasma-nm5.changes  
2019-10-27 13:39:16.749140174 +0100
@@ -1,0 +2,10 @@
+Tue Oct 22 16:44:46 UTC 2019 - Fabian Vogt 
+
+- Update to 5.17.1
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.17.1.php
+- Changes since 5.17.0:
+  * Wired connection: default to Full duplex when duplex is not set 
(kde#413211)
+
+---

Old:

  plasma-nm-5.17.0.tar.xz
  plasma-nm-5.17.0.tar.xz.sig

New:

  plasma-nm-5.17.1.tar.xz
  plasma-nm-5.17.1.tar.xz.sig



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.71w94Q/_old  2019-10-27 13:39:17.249140811 +0100
+++ /var/tmp/diff_new_pack.71w94Q/_new  2019-10-27 13:39:17.257140821 +0100
@@ -19,15 +19,15 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.17.0
+Version:5.17.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.17.0.tar.xz -> plasma-nm-5.17.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.17.0/CMakeLists.txt 
new/plasma-nm-5.17.1/CMakeLists.txt
--- old/plasma-nm-5.17.0/CMakeLists.txt 2019-10-10 14:45:33.0 +0200
+++ new/plasma-nm-5.17.1/CMakeLists.txt 2019-10-22 17:37:45.0 +0200
@@ -2,7 +2,7 @@
 
 project(plasma-networkmanagement)
 
-set(PROJECT_VERSION "5.17.0")
+set(PROJECT_VERSION "5.17.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.17.0/libs/editor/settings/wiredconnectionwidget.cpp 
new/plasma-nm-5.17.1/libs/editor/settings/wiredconnectionwidget.cpp
--- old/plasma-nm-5.17.0/libs/editor/settings/wiredconnectionwidget.cpp 
2019-10-10 14:44:31.0 +0200
+++ new/plasma-nm-5.17.1/libs/editor/settings/wiredconnectionwidget.cpp 
2019-10-22 17:36:40.0 +0200
@@ -81,7 +81,8 @@
 m_widget->speed->setValue(wiredSetting->speed());
 }
 
-if (wiredSetting->duplexType() == NetworkManager::WiredSetting::Full) {
+// Default to "Full" duplex when duplex type is not set
+if (wiredSetting->duplexType() == NetworkManager::WiredSetting::Full 
|| wiredSetting->duplexType() == 
NetworkManager::WiredSetting::UnknownDuplexType) {
 m_widget->duplex->setCurrentIndex(0);
 } else {
 m_widget->duplex->setCurrentIndex(1);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.17.0/po/fi/kcm_mobile_wifi.po 
new/plasma-nm-5.17.1/po/fi/kcm_mobile_wifi.po
--- old/plasma-nm-5.17.0/po/fi/kcm_mobile_wifi.po   2019-10-10 
14:44:54.0 +0200
+++ new/plasma-nm-5.17.1/po/fi/kcm_mobile_wifi.po   2019-10-22 
17:37:04.0 +0200
@@ -7,7 +7,7 @@
 "Project-Id-Version: plasma-nm\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2019-09-17 03:29+0200\n"
-"PO-Revision-Date: 2019-07-29 16:59+0200\n"
+"PO-Revision-Date: 2019-10-14 18:46+0300\n"
 "Last-Translator: Tommi Nieminen \n"
 "Language-Team: Finnish \n"
 "Language: fi\n"
@@ -15,7 +15,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 2.0\n"
+"X-Generator: Lokalize 18.12.3\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
@@ -212,8 +212,7 @@
 msgstr "Salasana…"
 
 #: package/contents/ui/TetheringSetting.qml:31
-#, fuzzy, kde-format
-#| msgid "Wi-fi hotspot"
+#, kde-format
 msgid "Wi-Fi Hotspot"
 msgstr "Langaton tukiasema"
 
@@ -243,16 +242,14 @@
 msgstr 

commit plasma-nm5 for openSUSE:Factory

2019-10-14 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2019-10-14 12:38:35

Comparing /work/SRC/openSUSE:Factory/plasma-nm5 (Old)
 and  /work/SRC/openSUSE:Factory/.plasma-nm5.new.2352 (New)


Package is "plasma-nm5"

Mon Oct 14 12:38:35 2019 rev:96 rq:737483 version:5.17.0

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2019-09-07 
11:44:23.346350963 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new.2352/plasma-nm5.changes  
2019-10-14 12:38:39.267147056 +0200
@@ -1,0 +2,18 @@
+Thu Oct 10 14:25:48 UTC 2019 - Fabian Vogt 
+
+- Update to 5.17.0
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.17.0.php
+- No code changes since 5.16.90
+
+---
+Thu Sep 19 12:32:39 UTC 2019 - Fabian Vogt 
+
+- Update to 5.16.90
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.16.90.php
+- Too many changes to list here
+
+---

Old:

  plasma-nm-5.16.5.tar.xz
  plasma-nm-5.16.5.tar.xz.sig

New:

  plasma-nm-5.17.0.tar.xz
  plasma-nm-5.17.0.tar.xz.sig



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.zMc3dG/_old  2019-10-14 12:38:40.015145099 +0200
+++ /var/tmp/diff_new_pack.zMc3dG/_new  2019-10-14 12:38:40.019145090 +0200
@@ -19,15 +19,15 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.16.5
+Version:5.17.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
@@ -72,10 +72,9 @@
 Requires:   NetworkManager
 Requires:   kded
 Requires:   kwalletd5
+Requires:   prison-qt5-imports
 Recommends: mobile-broadband-provider-info
-%if %{with lang}
 Recommends: %{name}-lang
-%endif
 Provides:   NetworkManager-client
 Provides:   plasma-nm-kf5 = %{version}
 Obsoletes:  plasma-nm-kf5 < %{version}

++ plasma-nm-5.16.5.tar.xz -> plasma-nm-5.17.0.tar.xz ++
 72598 lines of diff (skipped)





commit plasma-nm5 for openSUSE:Factory

2019-09-07 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2019-09-07 11:44:21

Comparing /work/SRC/openSUSE:Factory/plasma-nm5 (Old)
 and  /work/SRC/openSUSE:Factory/.plasma-nm5.new.7948 (New)


Package is "plasma-nm5"

Sat Sep  7 11:44:21 2019 rev:95 rq:728209 version:5.16.5

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2019-08-05 
10:33:22.427402642 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new.7948/plasma-nm5.changes  
2019-09-07 11:44:23.346350963 +0200
@@ -1,0 +2,11 @@
+Tue Sep  3 12:44:14 UTC 2019 - Fabian Vogt 
+
+- Update to 5.16.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.16.5.php
+- Changes since 5.16.4:
+  * Add some missing includes.
+  * Make "Network Disconnected" notification low priority
+
+---

Old:

  plasma-nm-5.16.4.tar.xz
  plasma-nm-5.16.4.tar.xz.sig

New:

  plasma-nm-5.16.5.tar.xz
  plasma-nm-5.16.5.tar.xz.sig



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.xXl2WX/_old  2019-09-07 11:44:23.942350879 +0200
+++ /var/tmp/diff_new_pack.xXl2WX/_new  2019-09-07 11:44:23.942350879 +0200
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.16.4
+Version:5.16.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)

++ plasma-nm-5.16.4.tar.xz -> plasma-nm-5.16.5.tar.xz ++
 19378 lines of diff (skipped)





commit plasma-nm5 for openSUSE:Factory

2019-08-05 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2019-08-05 10:33:19

Comparing /work/SRC/openSUSE:Factory/plasma-nm5 (Old)
 and  /work/SRC/openSUSE:Factory/.plasma-nm5.new.4126 (New)


Package is "plasma-nm5"

Mon Aug  5 10:33:19 2019 rev:94 rq:719925 version:5.16.4

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2019-07-21 
11:31:58.628801294 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new.4126/plasma-nm5.changes  
2019-08-05 10:33:22.427402642 +0200
@@ -1,0 +2,10 @@
+Tue Jul 30 12:40:20 UTC 2019 - Fabian Vogt 
+
+- Update to 5.16.4
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.16.4.php
+- Changes since 5.16.3:
+  * Airplane mode improvements (kde#33,kde#400535,kde#405447)
+
+---

Old:

  plasma-nm-5.16.3.tar.xz
  plasma-nm-5.16.3.tar.xz.sig

New:

  plasma-nm-5.16.4.tar.xz
  plasma-nm-5.16.4.tar.xz.sig



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.sdYxhJ/_old  2019-08-05 10:33:24.115402195 +0200
+++ /var/tmp/diff_new_pack.sdYxhJ/_new  2019-08-05 10:33:24.159402183 +0200
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.16.3
+Version:5.16.4
 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.16.3.tar.xz -> plasma-nm-5.16.4.tar.xz ++
 6840 lines of diff (skipped)





commit plasma-nm5 for openSUSE:Factory

2019-07-21 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2019-07-21 11:31:57

Comparing /work/SRC/openSUSE:Factory/plasma-nm5 (Old)
 and  /work/SRC/openSUSE:Factory/.plasma-nm5.new.4126 (New)


Package is "plasma-nm5"

Sun Jul 21 11:31:57 2019 rev:93 rq:716447 version:5.16.3

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2019-06-27 
16:22:35.030281085 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new.4126/plasma-nm5.changes  
2019-07-21 11:31:58.628801294 +0200
@@ -1,0 +2,15 @@
+Thu Jul 18 12:15:59 UTC 2019 - Christophe Giboudeaux 
+
+- Fix the kf5_makeinstall call. It cannot use brackets.
+
+---
+Tue Jul  9 17:29:08 UTC 2019 - fab...@ritter-vogt.de
+
+- Update to 5.16.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.16.3.php
+- Changes since 5.16.2:
+  * Change validator for Endpoint Address entry field (kde#408670)
+
+---

Old:

  plasma-nm-5.16.2.tar.xz
  plasma-nm-5.16.2.tar.xz.sig

New:

  plasma-nm-5.16.3.tar.xz
  plasma-nm-5.16.3.tar.xz.sig



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.fXIlhP/_old  2019-07-21 11:31:59.176801202 +0200
+++ /var/tmp/diff_new_pack.fXIlhP/_new  2019-07-21 11:31:59.176801202 +0200
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.16.2
+Version:5.16.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)
@@ -272,7 +272,7 @@
   %make_jobs
 
 %install
-  %{kf5_makeinstall} -C build
+  %kf5_makeinstall -C build
 %if %{with lang}
   %kf5_find_lang
 %endif

++ plasma-nm-5.16.2.tar.xz -> plasma-nm-5.16.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.16.2/CMakeLists.txt 
new/plasma-nm-5.16.3/CMakeLists.txt
--- old/plasma-nm-5.16.2/CMakeLists.txt 2019-06-25 13:52:24.0 +0200
+++ new/plasma-nm-5.16.3/CMakeLists.txt 2019-07-09 18:07:23.0 +0200
@@ -2,7 +2,7 @@
 
 project(plasma-networkmanagement)
 
-set(PROJECT_VERSION "5.16.2")
+set(PROJECT_VERSION "5.16.3")
 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.16.2/libs/editor/settings/wireguardpeerwidget.cpp 
new/plasma-nm-5.16.3/libs/editor/settings/wireguardpeerwidget.cpp
--- old/plasma-nm-5.16.2/libs/editor/settings/wireguardpeerwidget.cpp   
2019-06-25 13:51:36.0 +0200
+++ new/plasma-nm-5.16.3/libs/editor/settings/wireguardpeerwidget.cpp   
2019-07-09 18:04:57.0 +0200
@@ -199,11 +199,10 @@
 
 WireGuardPeerWidget::EndPointValid 
WireGuardPeerWidget::isEndpointValid(QString , QString )
 {
-// Create a Reg Expression validator to do  simple check for a valid 
qualified domain name
-// which checks to see that there are between 2 and 63 strings of at least 
2 characters each
-// separated by '.', so "ab.cc" is valid but "a.cc" is not. The full 
string must also be less 
-// than 255 characters long.
-static QRegExpValidator 
fqdnValidator(QRegExp(QLatin1String("(?=.{5,254}$)([a-zA-Z0-9][a-zA-Z0-9-]{1,62}\\.){1,63}[a-zA-Z]{2,63}")),
 nullptr);
+// Create a Reg Expression validator to do a simple check for a valid 
qualified domain name
+// which checks to see that there are between 2 and 63 strings of at least 
1 character each
+// separated by '.'. The full string must also be less than 255 characters 
long.
+static QRegExpValidator 
fqdnValidator(QRegExp(QLatin1String("(?=.{3,254}$)([a-zA-Z0-9][a-zA-Z0-9-]{0,62}\\.){1,63}[a-zA-Z]{1,63}")),
 nullptr);
 static SimpleIpV4AddressValidator ipv4Validator;
 static SimpleIpV6AddressValidator ipv6Validator;
 int pos = 0;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-5.16.2/po/gl/plasmanetworkmanagement-libs.po 
new/plasma-nm-5.16.3/po/gl/plasmanetworkmanagement-libs.po
--- old/plasma-nm-5.16.2/po/gl/plasmanetworkmanagement-libs.po  2019-06-25 
13:51:59.0 +0200
+++ new/plasma-nm-5.16.3/po/gl/plasmanetworkmanagement-libs.po  2019-07-09 
18:06:03.0 +0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2019-05-20 07:46+0200\n"
-"PO-Revision-Date: 2019-05-28 22:05+0200\n"
+"PO-Revision-Date: 2019-07-06 20:40+0200\n"
 "Last-Translator: Adrián Chaves 

commit plasma-nm5 for openSUSE:Factory

2019-06-27 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2019-06-27 16:22:33

Comparing /work/SRC/openSUSE:Factory/plasma-nm5 (Old)
 and  /work/SRC/openSUSE:Factory/.plasma-nm5.new.4615 (New)


Package is "plasma-nm5"

Thu Jun 27 16:22:33 2019 rev:92 rq:711989 version:5.16.2

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2019-06-22 
11:19:48.469104574 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new.4615/plasma-nm5.changes  
2019-06-27 16:22:35.030281085 +0200
@@ -1,0 +2,9 @@
+Tue Jun 25 12:41:19 UTC 2019 - fab...@ritter-vogt.de
+
+- Update to 5.16.2
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.16.2.php
+- No code changes since 5.16.1
+
+---

Old:

  plasma-nm-5.16.1.tar.xz
  plasma-nm-5.16.1.tar.xz.sig

New:

  plasma-nm-5.16.2.tar.xz
  plasma-nm-5.16.2.tar.xz.sig



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.hD1aI9/_old  2019-06-27 16:22:37.066284434 +0200
+++ /var/tmp/diff_new_pack.hD1aI9/_new  2019-06-27 16:22:37.090284474 +0200
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.16.1
+Version:5.16.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.16.1.tar.xz -> plasma-nm-5.16.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.16.1/CMakeLists.txt 
new/plasma-nm-5.16.2/CMakeLists.txt
--- old/plasma-nm-5.16.1/CMakeLists.txt 2019-06-18 12:04:45.0 +0200
+++ new/plasma-nm-5.16.2/CMakeLists.txt 2019-06-25 13:52:24.0 +0200
@@ -2,7 +2,7 @@
 
 project(plasma-networkmanagement)
 
-set(PROJECT_VERSION "5.16.1")
+set(PROJECT_VERSION "5.16.2")
 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.16.1/po/fi/plasmanetworkmanagement_fortisslvpnui.po 
new/plasma-nm-5.16.2/po/fi/plasmanetworkmanagement_fortisslvpnui.po
--- old/plasma-nm-5.16.1/po/fi/plasmanetworkmanagement_fortisslvpnui.po 
2019-06-18 12:04:21.0 +0200
+++ new/plasma-nm-5.16.2/po/fi/plasmanetworkmanagement_fortisslvpnui.po 
2019-06-25 13:51:57.0 +0200
@@ -15,7 +15,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 2.0\n"
+"X-Generator: Lokalize 18.12.3\n"
 
 #. i18n: ectx: property (text), widget (QPushButton, advancedButton)
 #: fortisslvpn.ui:36
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-5.16.1/po/fi/plasmanetworkmanagement_openconnectui.po 
new/plasma-nm-5.16.2/po/fi/plasmanetworkmanagement_openconnectui.po
--- old/plasma-nm-5.16.1/po/fi/plasmanetworkmanagement_openconnectui.po 
2019-06-18 12:04:21.0 +0200
+++ new/plasma-nm-5.16.2/po/fi/plasmanetworkmanagement_openconnectui.po 
2019-06-25 13:51:57.0 +0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2019-05-20 07:46+0200\n"
-"PO-Revision-Date: 2019-05-12 18:46+0200\n"
+"PO-Revision-Date: 2019-06-24 09:45+0300\n"
 "Last-Translator: Tommi Nieminen \n"
 "Language-Team: Finnish \n"
 "Language: fi\n"
@@ -16,7 +16,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 2.0\n"
+"X-Generator: Lokalize 18.12.3\n"
 
 #: openconnectauth.cpp:308
 #, kde-format
@@ -189,7 +189,7 @@
 #: openconnectprop.ui:128
 #, kde-format
 msgid "PAN Global Protect"
-msgstr ""
+msgstr "PAN Global Protect"
 
 #. i18n: ectx: property (title), widget (QGroupBox, groupBox)
 #: openconnectprop.ui:139
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-5.16.1/po/id/plasma_applet_org.kde.plasma.networkmanagement.po 
new/plasma-nm-5.16.2/po/id/plasma_applet_org.kde.plasma.networkmanagement.po
--- 
old/plasma-nm-5.16.1/po/id/plasma_applet_org.kde.plasma.networkmanagement.po
2019-06-18 12:04:26.0 +0200
+++ 
new/plasma-nm-5.16.2/po/id/plasma_applet_org.kde.plasma.networkmanagement.po
2019-06-25 13:52:03.0 +0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: plasma-nm\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2019-05-20 07:46+0200\n"
-"PO-Revision-Date: 2019-05-18 

commit plasma-nm5 for openSUSE:Factory

2019-06-22 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2019-06-22 11:19:45

Comparing /work/SRC/openSUSE:Factory/plasma-nm5 (Old)
 and  /work/SRC/openSUSE:Factory/.plasma-nm5.new.4615 (New)


Package is "plasma-nm5"

Sat Jun 22 11:19:45 2019 rev:91 rq:711108 version:5.16.1

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2019-06-12 
13:30:57.756216941 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new.4615/plasma-nm5.changes  
2019-06-22 11:19:48.469104574 +0200
@@ -1,0 +2,10 @@
+Tue Jun 18 16:38:17 UTC 2019 - fab...@ritter-vogt.de
+
+- Update to 5.16.1
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.16.1.php
+- Changes since 5.16.0:
+  * Handle Esc properly when focus is in searchbox (kde#408290)
+
+---

Old:

  plasma-nm-5.16.0.tar.xz
  plasma-nm-5.16.0.tar.xz.sig

New:

  plasma-nm-5.16.1.tar.xz
  plasma-nm-5.16.1.tar.xz.sig



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.rZuN1H/_old  2019-06-22 11:19:49.281105419 +0200
+++ /var/tmp/diff_new_pack.rZuN1H/_new  2019-06-22 11:19:49.281105419 +0200
@@ -19,15 +19,15 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.16.0
+Version:5.16.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.16.0.tar.xz -> plasma-nm-5.16.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.16.0/CMakeLists.txt 
new/plasma-nm-5.16.1/CMakeLists.txt
--- old/plasma-nm-5.16.0/CMakeLists.txt 2019-06-06 15:10:40.0 +0200
+++ new/plasma-nm-5.16.1/CMakeLists.txt 2019-06-18 12:04:45.0 +0200
@@ -2,7 +2,7 @@
 
 project(plasma-networkmanagement)
 
-set(PROJECT_VERSION "5.16.0")
+set(PROJECT_VERSION "5.16.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.16.0/applet/contents/ui/Toolbar.qml 
new/plasma-nm-5.16.1/applet/contents/ui/Toolbar.qml
--- old/plasma-nm-5.16.0/applet/contents/ui/Toolbar.qml 2019-06-06 
15:08:30.0 +0200
+++ new/plasma-nm-5.16.1/applet/contents/ui/Toolbar.qml 2019-06-18 
12:04:03.0 +0200
@@ -151,7 +151,14 @@
 
 visible: searchToggleButton.checked
 onVisibleChanged: if (!visible) text = ""
-Keys.onEscapePressed: searchToggleButton.checked = false
+Keys.onEscapePressed: {
+//Check if the searchbar is actually visible before accepting the 
escape key. Otherwise, the escape key cannot dismiss the applet until one 
interacts with some other element.
+if (searchToggleButton.checked) {
+searchToggleButton.checked = false;
+} else {
+event.accepted = false;
+}
+}
 
 onTextChanged: {
 // Show search field when starting to type directly
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-5.16.0/mobile/broadband/mobilebroadbandsettings.desktop 
new/plasma-nm-5.16.1/mobile/broadband/mobilebroadbandsettings.desktop
--- old/plasma-nm-5.16.0/mobile/broadband/mobilebroadbandsettings.desktop   
2019-06-06 15:08:30.0 +0200
+++ new/plasma-nm-5.16.1/mobile/broadband/mobilebroadbandsettings.desktop   
2019-06-18 12:04:03.0 +0200
@@ -6,6 +6,7 @@
 Name[de]=Mobiles Breitband
 Name[en_GB]=Mobile broadband
 Name[es]=Banda ancha móvil
+Name[eu]=Mugikorreko banda-zabala
 Name[fi]=Mobiililaajakaista
 Name[fr]=Haut débit mobile
 Name[gl]=Banda larga móbil
@@ -31,6 +32,7 @@
 Comment[de]=Einstellungen für Mobiles Breitband
 Comment[en_GB]=Mobile broadband setting
 Comment[es]=Preferencias de banda ancha móvil
+Comment[eu]=Mugikorreko banda-zabalaren ezarpena
 Comment[fi]=Mobiililaajakaista-asetukset
 Comment[fr]=Paramètre haut débit mobile
 Comment[gl]=Opción de banda larga móbil
@@ -69,6 +71,7 @@
 X-KDE-Keywords[de]=mobil,daten,netzwerk
 

commit plasma-nm5 for openSUSE:Factory

2019-06-12 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2019-06-12 13:30:56

Comparing /work/SRC/openSUSE:Factory/plasma-nm5 (Old)
 and  /work/SRC/openSUSE:Factory/.plasma-nm5.new.4811 (New)


Package is "plasma-nm5"

Wed Jun 12 13:30:56 2019 rev:90 rq:708325 version:5.16.0

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2019-05-09 
10:08:04.936799940 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new.4811/plasma-nm5.changes  
2019-06-12 13:30:57.756216941 +0200
@@ -1,0 +2,51 @@
+Thu Jun  6 14:07:10 UTC 2019 - fab...@ritter-vogt.de
+
+- Update to 5.16.0
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.16.0.php
+- Changes since 5.15.90:
+  * [CompactRepresentation] Glow on hover
+  * Add missing includes
+  * Fortissl VPN: fix crash when obtaining properties in the auth dialog 
(kde#407596)
+
+---
+Thu May 16 16:56:40 UTC 2019 - fab...@ritter-vogt.de
+
+- Update to 5.15.90
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.15.90.php
+- Changes since 5.15.5:
+  * bump Qt version to 5.12 as agreed at start of cycle
+  * Make tests to build
+  * Add WireGuard at the end of the list of VPNs to make it correctly sorted
+  * Add default value for parent in contructors of all validator classes
+  * Update WireGuard to match NetworkManager 1.16 interface (kde#405501)
+  * PasswordField: add option to hide AlwaysAsk mode
+  * Added new option to use GlobalProtect with openconnect
+  * Mark "Connection Activated" notifications as low priority
+  * Port widget settings window to QQC2+Kirigami FormLayout
+  * Add OTP support for openconnect VPN
+  * Don't load the KSharedConfig instance on every read
+  * No need to set height to implicitHeight (kde#399155)
+  * OpenVPN: reneg-sec property doesn't need limitation (kde#404614)
+  * Inform about missing NetworkManager VPN plugin (kde#405088)
+  * Change entry of Endpoint UI (kde#403548)
+  * send a signal over dbus when the wrong password is provided
+  * [plasma-nm] Refresh wifi networks as fast as possible
+  * Remove redundant DNS field (kde#403546)
+  * Do not check NM version++
+  * Do not check NM version
+  * plasma-nm Connection Icon not showing correct icon when using a bridge 
(kde#397352)
+  * Fix connections' context menus position and parent
+  * Get rid of Q_FOREACH
+  * We require NM 1.4.0+ so we can remove these conditions
+  * Add a popup search bar to the plasma-nm applet (kde#344789,kde#394290)
+  * [plasma-nm/applet] Use correct HIG-approved string for Configure... action
+  * Configuration to never show the passwors dialog
+  * [plasma-nm/applet] Add right-click context menu to directly customize a 
connection
+- Add patch to fix build on Leap 42.3:
+  * 0001-Revert-Inform-about-missing-NetworkManager-VPN-plugi.patch
+
+---

Old:

  plasma-nm-5.15.5.tar.xz
  plasma-nm-5.15.5.tar.xz.sig

New:

  0001-Revert-Inform-about-missing-NetworkManager-VPN-plugi.patch
  plasma-nm-5.16.0.tar.xz
  plasma-nm-5.16.0.tar.xz.sig



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.53GJty/_old  2019-06-12 13:30:58.484216560 +0200
+++ /var/tmp/diff_new_pack.53GJty/_new  2019-06-12 13:30:58.488216558 +0200
@@ -19,21 +19,22 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.15.5
+Version:5.16.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
 Patch0: 0001-Revert-Show-correct-current-download-and-upload-spee.patch
 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
 BuildRequires:  NetworkManager-devel >= 0.9.8.4
 BuildRequires:  extra-cmake-modules >= 1.3.0
 BuildRequires:  fdupes
@@ -78,6 +79,9 @@
 Provides:   NetworkManager-client
 Provides:   plasma-nm-kf5 = %{version}
 

commit plasma-nm5 for openSUSE:Factory

2019-05-09 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2019-05-09 10:08:03

Comparing /work/SRC/openSUSE:Factory/plasma-nm5 (Old)
 and  /work/SRC/openSUSE:Factory/.plasma-nm5.new.5148 (New)


Package is "plasma-nm5"

Thu May  9 10:08:03 2019 rev:89 rq:701398 version:5.15.5

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2019-04-04 
15:25:53.914863219 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new.5148/plasma-nm5.changes  
2019-05-09 10:08:04.936799940 +0200
@@ -1,0 +2,11 @@
+Tue May  7 11:04:58 UTC 2019 - fab...@ritter-vogt.de
+
+- Update to 5.15.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.15.5.php
+- Changes since 5.15.4:
+  * Reject invalid keys
+  * Reset model when there are new available connections (kde#406765)
+
+---

Old:

  plasma-nm-5.15.4.tar.xz
  plasma-nm-5.15.4.tar.xz.sig

New:

  plasma-nm-5.15.5.tar.xz
  plasma-nm-5.15.5.tar.xz.sig



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.BLmRQH/_old  2019-05-09 10:08:05.452801418 +0200
+++ /var/tmp/diff_new_pack.BLmRQH/_new  2019-05-09 10:08:05.456801429 +0200
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.15.4
+Version:5.15.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)

++ plasma-nm-5.15.4.tar.xz -> plasma-nm-5.15.5.tar.xz ++
 10829 lines of diff (skipped)





commit plasma-nm5 for openSUSE:Factory

2019-04-04 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2019-04-04 15:21:16

Comparing /work/SRC/openSUSE:Factory/plasma-nm5 (Old)
 and  /work/SRC/openSUSE:Factory/.plasma-nm5.new.3908 (New)


Package is "plasma-nm5"

Thu Apr  4 15:21:16 2019 rev:88 rq:690758 version:5.15.4

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2019-03-15 
10:51:16.084987111 +0100
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new.3908/plasma-nm5.changes  
2019-04-04 15:25:53.914863219 +0200
@@ -1,0 +2,12 @@
+Tue Apr  2 12:41:00 UTC 2019 - fab...@ritter-vogt.de
+
+- Update to 5.15.4
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.15.4.php
+- Changes since 5.15.3:
+  * Do not remove manually configured "route-metric" property from IPv4 and 
IPv6 setting (kde#406118)
+  * Applet: fix size of the busy indicator (kde#405962)
+  * OpenVPN: reneg-sec property doesn't need limitation (kde#404614)
+
+---

Old:

  plasma-nm-5.15.3.tar.xz
  plasma-nm-5.15.3.tar.xz.sig

New:

  plasma-nm-5.15.4.tar.xz
  plasma-nm-5.15.4.tar.xz.sig



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.yTNe80/_old  2019-04-04 15:25:59.406865333 +0200
+++ /var/tmp/diff_new_pack.yTNe80/_new  2019-04-04 15:25:59.410865335 +0200
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.15.3
+Version:5.15.4
 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.15.3.tar.xz -> plasma-nm-5.15.4.tar.xz ++
 45384 lines of diff (skipped)





commit plasma-nm5 for openSUSE:Factory

2019-03-15 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2019-03-15 10:51:14

Comparing /work/SRC/openSUSE:Factory/plasma-nm5 (Old)
 and  /work/SRC/openSUSE:Factory/.plasma-nm5.new.28833 (New)


Package is "plasma-nm5"

Fri Mar 15 10:51:14 2019 rev:87 rq:684621 version:5.15.3

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2019-02-28 
21:36:47.297670665 +0100
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new.28833/plasma-nm5.changes 
2019-03-15 10:51:16.084987111 +0100
@@ -1,0 +2,9 @@
+Tue Mar 12 13:15:24 UTC 2019 - fab...@ritter-vogt.de
+
+- Update to 5.15.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.15.3.php
+- No code changes since 5.15.2
+
+---

Old:

  plasma-nm-5.15.2.tar.xz
  plasma-nm-5.15.2.tar.xz.sig

New:

  plasma-nm-5.15.3.tar.xz
  plasma-nm-5.15.3.tar.xz.sig



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.wrNDPV/_old  2019-03-15 10:51:16.640986969 +0100
+++ /var/tmp/diff_new_pack.wrNDPV/_new  2019-03-15 10:51:16.648986967 +0100
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.15.2
+Version:5.15.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.15.2.tar.xz -> plasma-nm-5.15.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.15.2/CMakeLists.txt 
new/plasma-nm-5.15.3/CMakeLists.txt
--- old/plasma-nm-5.15.2/CMakeLists.txt 2019-02-26 12:36:27.0 +0100
+++ new/plasma-nm-5.15.3/CMakeLists.txt 2019-03-12 10:58:48.0 +0100
@@ -2,7 +2,7 @@
 
 project(plasma-networkmanagement)
 
-set(PROJECT_VERSION "5.15.2")
+set(PROJECT_VERSION "5.15.3")
 set(PROJECT_VERSION_MAJOR 5)
 
 set(QT_MIN_VERSION "5.11.0")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-5.15.2/po/de/plasmanetworkmanagement_fortisslvpnui.po 
new/plasma-nm-5.15.3/po/de/plasmanetworkmanagement_fortisslvpnui.po
--- old/plasma-nm-5.15.2/po/de/plasmanetworkmanagement_fortisslvpnui.po 
2019-02-26 12:36:16.0 +0100
+++ new/plasma-nm-5.15.3/po/de/plasmanetworkmanagement_fortisslvpnui.po 
2019-03-12 10:58:36.0 +0100
@@ -1,13 +1,13 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
 #
-# Burkhard Lück , 2017.
+# Burkhard Lück , 2017, 2019.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2019-01-18 07:38+0100\n"
-"PO-Revision-Date: 2017-12-03 16:37+0100\n"
+"PO-Revision-Date: 2019-03-11 11:02+0100\n"
 "Last-Translator: Burkhard Lück \n"
 "Language-Team: German \n"
 "Language: de\n"
@@ -95,7 +95,7 @@
 #: fortisslvpnadvanced.ui:41
 #, kde-format
 msgid "Use a One-Time Password"
-msgstr ""
+msgstr "Einmalpasswort verwenden"
 
 #. i18n: ectx: property (title), widget (QGroupBox, groupBox)
 #: fortisslvpnadvanced.ui:57
@@ -117,10 +117,9 @@
 
 #. i18n: ectx: property (text), widget (QLabel, label)
 #: fortisslvpnauth.ui:52
-#, fuzzy, kde-format
-#| msgid "Password:"
+#, kde-format
 msgid "One Time Password"
-msgstr "Passwort:"
+msgstr "Einmalpasswort"
 
 #. i18n: ectx: property (text), widget (QLabel, otpLabel)
 #: fortisslvpnauth.ui:59
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-5.15.2/po/gl/plasmanetworkmanagement-libs.po 
new/plasma-nm-5.15.3/po/gl/plasmanetworkmanagement-libs.po
--- old/plasma-nm-5.15.2/po/gl/plasmanetworkmanagement-libs.po  2019-02-26 
12:36:18.0 +0100
+++ new/plasma-nm-5.15.3/po/gl/plasmanetworkmanagement-libs.po  2019-03-12 
10:58:38.0 +0100
@@ -8,7 +8,7 @@
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2019-01-18 07:38+0100\n"
-"PO-Revision-Date: 2019-02-17 19:54+0100\n"
+"PO-Revision-Date: 2019-03-03 20:25+0100\n"
 "Last-Translator: Adrián Chaves (Gallaecio) \n"
 "Language-Team: Galician \n"
 "Language: gl\n"
@@ -16,7 +16,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 18.12.1\n"
+"X-Generator: Lokalize 18.12.2\n"
 
 #: declarative/networkstatus.cpp:114
 #, kde-format
@@ -1415,8 +1415,8 @@
 "by the\n"
 " BSSID entered here. Example: 00:11:22:33:44:55"
 msgstr ""
-"Marque esta opción para bloquear a conexión ao punto 

commit plasma-nm5 for openSUSE:Factory

2019-02-28 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2019-02-28 21:36:46

Comparing /work/SRC/openSUSE:Factory/plasma-nm5 (Old)
 and  /work/SRC/openSUSE:Factory/.plasma-nm5.new.28833 (New)


Package is "plasma-nm5"

Thu Feb 28 21:36:46 2019 rev:86 rq:679648 version:5.15.2

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2019-02-11 
21:21:45.303197506 +0100
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new.28833/plasma-nm5.changes 
2019-02-28 21:36:47.297670665 +0100
@@ -1,0 +2,18 @@
+Tue Feb 26 14:06:03 UTC 2019 - fab...@ritter-vogt.de
+
+- Update to 5.15.2
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.15.2.php
+- No code changes since 5.15.1
+
+---
+Tue Feb 19 12:26:52 UTC 2019 - fab...@ritter-vogt.de
+
+- Update to 5.15.1
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.15.1.php
+- No code changes since 5.15.0
+
+---

Old:

  plasma-nm-5.15.0.tar.xz
  plasma-nm-5.15.0.tar.xz.sig

New:

  plasma-nm-5.15.2.tar.xz
  plasma-nm-5.15.2.tar.xz.sig



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.gpcAlC/_old  2019-02-28 21:36:47.953670459 +0100
+++ /var/tmp/diff_new_pack.gpcAlC/_new  2019-02-28 21:36:47.957670458 +0100
@@ -19,15 +19,15 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.15.0
+Version:5.15.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)
 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.15.0.tar.xz -> plasma-nm-5.15.2.tar.xz ++
 1760 lines of diff (skipped)





commit plasma-nm5 for openSUSE:Factory

2019-02-11 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2019-02-11 21:21:41

Comparing /work/SRC/openSUSE:Factory/plasma-nm5 (Old)
 and  /work/SRC/openSUSE:Factory/.plasma-nm5.new.28833 (New)


Package is "plasma-nm5"

Mon Feb 11 21:21:41 2019 rev:85 rq:672597 version:5.15.0

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2019-01-10 
15:19:37.206559111 +0100
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new.28833/plasma-nm5.changes 
2019-02-11 21:21:45.303197506 +0100
@@ -1,0 +2,23 @@
+Thu Feb  7 16:02:54 UTC 2019 - fab...@ritter-vogt.de
+
+- Update to 5.15.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.15.0.php
+- Changes since 5.14.90:
+  * [build] Search for kirigami as a runtime dependency
+
+---
+Thu Jan 17 18:49:35 UTC 2019 - fab...@ritter-vogt.de
+
+- Update to 5.14.90
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.14.90.php
+- Too many changes to list here
+- Introduces wireguard support
+- Refresh patches:
+  * 0001-Revert-Show-correct-current-download-and-upload-spee.patch
+  * 0001-Revert-Use-NetworkManager-DeviceStatistics-instead-o.patch
+
+---

Old:

  plasma-nm-5.14.5.tar.xz
  plasma-nm-5.14.5.tar.xz.sig

New:

  plasma-nm-5.15.0.tar.xz
  plasma-nm-5.15.0.tar.xz.sig



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.l5WUZr/_old  2019-02-11 21:21:46.143197056 +0100
+++ /var/tmp/diff_new_pack.l5WUZr/_new  2019-02-11 21:21:46.175197039 +0100
@@ -19,15 +19,15 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.14.5
+Version:5.15.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
@@ -83,7 +83,7 @@
 Obsoletes:  plasma-nm < %{version}
 %endif
 %if 0%{?mm_support}
-BuildRequires:  cmake(KF5ModemManagerQt) >=  5.14.5
+BuildRequires:  cmake(KF5ModemManagerQt) >= 5.54.0
 BuildRequires:  pkgconfig(ModemManager) >= 1.0.0
 %endif
 Obsoletes:  NetworkManager-kde4-devel
@@ -256,6 +256,17 @@
 %description fortisslvpn
 FortiGate SSL VPN plugin for plasma-nm components.
 
+%package wireguard
+Summary:WireGuard VPN support for %{name}
+Group:  System/GUI/KDE
+Requires:   %{name} = %{version}
+# NetworkManager-wireguard is not yet packaged in TW
+# Requires:  NetworkManager-wireguard
+Supplements:packageand(%{name}:NetworkManager-wireguard)
+
+%description wireguard
+WireGuard VPN plugin for plasma-nm components.
+
 %lang_package
 %prep
 %setup -q -n plasma-nm-%{version}
@@ -349,6 +360,11 @@
 %{_kf5_plugindir}/l*_fortisslvpnui.so
 %{_kf5_servicesdir}/plasmanetworkmanagement_fortisslvpnui.desktop
 
+%files wireguard
+%license COPYING*
+%{_kf5_plugindir}/libplasmanetworkmanagement_wireguardui.so
+%{_kf5_servicesdir}/plasmanetworkmanagement_wireguardui.desktop
+
 %if %{with lang}
 %files lang -f %{name}.lang
 %endif

++ 0001-Revert-Show-correct-current-download-and-upload-spee.patch ++
--- /var/tmp/diff_new_pack.l5WUZr/_old  2019-02-11 21:21:46.235197007 +0100
+++ /var/tmp/diff_new_pack.l5WUZr/_new  2019-02-11 21:21:46.235197007 +0100
@@ -51,7 +51,7 @@
  name: "collapsed"
 @@ -333,9 +311,9 @@ PlasmaComponents.ListItem {
  
- return i18n("Connected, ⬇ %2, ⬆ %4",
+ return i18n("Connected, ⬇ %2/s, ⬆ %4/s",
  downloadColor,
 -KCoreAddons.Format.formatByteSize(rxBytes),
 +KCoreAddons.Format.formatByteSize(RxBytes),

++ 0001-Revert-Use-NetworkManager-DeviceStatistics-instead-o.patch ++
--- /var/tmp/diff_new_pack.l5WUZr/_old  2019-02-11 21:21:46.283196981 +0100
+++ /var/tmp/diff_new_pack.l5WUZr/_new  2019-02-11 21:21:46.283196981 +0100
@@ -81,8 +81,7 @@
  // cycle upload color by 180 degrees
  var uploadColor = Qt.hsva((downloadColor.hsvHue + 0.5) % 1, 
downloadColor.hsvSaturation, downloadColor.hsvValue, 

commit plasma-nm5 for openSUSE:Factory

2019-01-10 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2019-01-10 15:19:28

Comparing /work/SRC/openSUSE:Factory/plasma-nm5 (Old)
 and  /work/SRC/openSUSE:Factory/.plasma-nm5.new.28833 (New)


Package is "plasma-nm5"

Thu Jan 10 15:19:28 2019 rev:84 rq:664003 version:5.14.5

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2018-12-05 
09:43:24.688704071 +0100
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new.28833/plasma-nm5.changes 
2019-01-10 15:19:37.206559111 +0100
@@ -1,0 +2,13 @@
+Tue Jan  8 13:37:34 UTC 2019 - fab...@ritter-vogt.de
+
+- Update to 5.14.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.14.5.php
+- Changes since 5.14.4:
+  * Fix a wrong check in previous patch
+  * Openconnect: do not reload dialog when group changes for Juniper protocol 
(kde#395157)
+  * Revert "Openconnect: do not reload the auth dialog endlessly when group 
changes"
+  * Notify that kcm changed only when validity has changed (kde#379756)
+
+---

Old:

  plasma-nm-5.14.4.tar.xz
  plasma-nm-5.14.4.tar.xz.sig

New:

  plasma-nm-5.14.5.tar.xz
  plasma-nm-5.14.5.tar.xz.sig



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.D64YSD/_old  2019-01-10 15:19:37.746558595 +0100
+++ /var/tmp/diff_new_pack.D64YSD/_new  2019-01-10 15:19:37.750558592 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package plasma-nm5
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # 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.14.4
+Version:5.14.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)
@@ -83,7 +83,7 @@
 Obsoletes:  plasma-nm < %{version}
 %endif
 %if 0%{?mm_support}
-BuildRequires:  cmake(KF5ModemManagerQt) >=  5.14.4
+BuildRequires:  cmake(KF5ModemManagerQt) >=  5.14.5
 BuildRequires:  pkgconfig(ModemManager) >= 1.0.0
 %endif
 Obsoletes:  NetworkManager-kde4-devel

++ plasma-nm-5.14.4.tar.xz -> plasma-nm-5.14.5.tar.xz ++
 2291 lines of diff (skipped)





commit plasma-nm5 for openSUSE:Factory

2018-12-05 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2018-12-05 09:43:18

Comparing /work/SRC/openSUSE:Factory/plasma-nm5 (Old)
 and  /work/SRC/openSUSE:Factory/.plasma-nm5.new.19453 (New)


Package is "plasma-nm5"

Wed Dec  5 09:43:18 2018 rev:83 rq:652335 version:5.14.4

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2018-11-10 
16:54:11.220134871 +0100
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new.19453/plasma-nm5.changes 
2018-12-05 09:43:24.688704071 +0100
@@ -1,0 +2,13 @@
+Wed Nov 28 07:52:49 UTC 2018 - fab...@ritter-vogt.de
+
+- Update to 5.14.4
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.14.4.php
+- Changes since 5.14.3:
+  * Openconnect: do not reload the auth dialog endlessly when group changes 
(kde#395157)
+  * VPN plugins: fix broken layout when using password field
+  * Do not request secrets for VPN connections all the time
+  * SSH VPN: put content of the configuration into scroll area BUG: 401004 
FIXED-IN: 5.14.4 (kde#401004)
+
+---

Old:

  plasma-nm-5.14.3.tar.xz
  plasma-nm-5.14.3.tar.xz.sig

New:

  plasma-nm-5.14.4.tar.xz
  plasma-nm-5.14.4.tar.xz.sig



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.BsbYZL/_old  2018-12-05 09:43:26.256702356 +0100
+++ /var/tmp/diff_new_pack.BsbYZL/_new  2018-12-05 09:43:26.256702356 +0100
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.14.3
+Version:5.14.4
 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)
@@ -83,7 +83,7 @@
 Obsoletes:  plasma-nm < %{version}
 %endif
 %if 0%{?mm_support}
-BuildRequires:  cmake(KF5ModemManagerQt) >=  5.14.3
+BuildRequires:  cmake(KF5ModemManagerQt) >=  5.14.4
 BuildRequires:  pkgconfig(ModemManager) >= 1.0.0
 %endif
 Obsoletes:  NetworkManager-kde4-devel

++ plasma-nm-5.14.3.tar.xz -> plasma-nm-5.14.4.tar.xz ++
 26564 lines of diff (skipped)





commit plasma-nm5 for openSUSE:Factory

2018-11-10 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2018-11-10 16:54:05

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


Package is "plasma-nm5"

Sat Nov 10 16:54:05 2018 rev:82 rq:646876 version:5.14.3

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2018-10-29 
14:20:41.682385283 +0100
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2018-11-10 16:54:11.220134871 +0100
@@ -1,0 +2,11 @@
+Tue Nov  6 15:53:55 UTC 2018 - fab...@ritter-vogt.de
+
+- Add David Edmundson's key to plasma.keyring
+- Update to 5.14.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.14.3.php
+- Changes since 5.14.2:
+  * Use appropriate icon in system tray settings BUG: 400587 FIXED-IN: 5.14.3 
(kde#400587)
+
+---

Old:

  plasma-nm-5.14.2.tar.xz
  plasma-nm-5.14.2.tar.xz.sig

New:

  plasma-nm-5.14.3.tar.xz
  plasma-nm-5.14.3.tar.xz.sig



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.gfRD9w/_old  2018-11-10 16:54:13.416132179 +0100
+++ /var/tmp/diff_new_pack.gfRD9w/_new  2018-11-10 16:54:13.416132179 +0100
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.14.2
+Version:5.14.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)
@@ -83,7 +83,7 @@
 Obsoletes:  plasma-nm < %{version}
 %endif
 %if 0%{?mm_support}
-BuildRequires:  cmake(KF5ModemManagerQt) >=  5.14.2
+BuildRequires:  cmake(KF5ModemManagerQt) >=  5.14.3
 BuildRequires:  pkgconfig(ModemManager) >= 1.0.0
 %endif
 Obsoletes:  NetworkManager-kde4-devel

++ plasma-nm-5.14.2.tar.xz -> plasma-nm-5.14.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.14.2/CMakeLists.txt 
new/plasma-nm-5.14.3/CMakeLists.txt
--- old/plasma-nm-5.14.2/CMakeLists.txt 2018-10-23 13:57:48.0 +0200
+++ new/plasma-nm-5.14.3/CMakeLists.txt 2018-11-06 15:00:37.0 +0100
@@ -2,7 +2,7 @@
 
 project(plasma-networkmanagement)
 
-set(PROJECT_VERSION "5.14.2")
+set(PROJECT_VERSION "5.14.3")
 set(PROJECT_VERSION_MAJOR 5)
 
 set(QT_MIN_VERSION "5.11.0")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.14.2/applet/metadata.desktop 
new/plasma-nm-5.14.3/applet/metadata.desktop
--- old/plasma-nm-5.14.2/applet/metadata.desktop2018-10-23 
13:54:45.0 +0200
+++ new/plasma-nm-5.14.3/applet/metadata.desktop2018-11-06 
14:59:46.0 +0100
@@ -92,7 +92,7 @@
 Comment[zh_CN]=网络状态和控制
 Comment[zh_TW]=網路狀態與控制
 
-Icon=org.kde.plasma.networkmanagement
+Icon=preferences-system-network
 Type=Service
 X-KDE-ServiceTypes=Plasma/Applet
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-5.14.2/po/de/plasmanetworkmanagement_openvpnui.po 
new/plasma-nm-5.14.3/po/de/plasmanetworkmanagement_openvpnui.po
--- old/plasma-nm-5.14.2/po/de/plasmanetworkmanagement_openvpnui.po 
2018-10-23 13:55:48.0 +0200
+++ new/plasma-nm-5.14.3/po/de/plasmanetworkmanagement_openvpnui.po 
2018-11-06 15:00:03.0 +0100
@@ -5,7 +5,7 @@
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2018-09-14 06:48+0200\n"
-"PO-Revision-Date: 2018-06-25 04:36+0100\n"
+"PO-Revision-Date: 2018-11-05 16:56+0100\n"
 "Last-Translator: Burkhard Lück \n"
 "Language-Team: German \n"
 "Language: de\n"
@@ -653,12 +653,13 @@
 #, kde-format
 msgid "Specify the maximum number of routes the server is allowed to specify."
 msgstr ""
+"Legt die maximale Anzahl der Routen fest, die der Server bestimmen kann."
 
 #. i18n: ectx: property (text), widget (QCheckBox, chkMaxRoutes)
 #: openvpnadvanced.ui:423
 #, kde-format
 msgid "Specify max routes:"
-msgstr ""
+msgstr "Maximale Anzahl der Routen:"
 
 #. i18n: ectx: attribute (title), widget (QWidget, securityTab)
 #: openvpnadvanced.ui:462
@@ -817,7 +818,7 @@
 #: openvpnadvanced.ui:678
 #, kde-format
 msgid "Don't verify certificate identification"
-msgstr ""
+msgstr "Kennung des Zertifikats nicht überprüfen"
 
 #. i18n: ectx: property (text), item, widget (QComboBox, cbCertCheck)
 #: openvpnadvanced.ui:683
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-5.14.2/po/en_GB/plasma_applet_org.kde.plasma.networkmanagement.po 

commit plasma-nm5 for openSUSE:Factory

2018-10-29 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2018-10-29 14:19:40

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


Package is "plasma-nm5"

Mon Oct 29 14:19:40 2018 rev:81 rq:644063 version:5.14.2

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2018-10-22 
11:21:25.239272676 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2018-10-29 14:20:41.682385283 +0100
@@ -1,0 +2,12 @@
+Tue Oct 23 13:56:32 UTC 2018 - fab...@ritter-vogt.de
+
+- Update to 5.14.2
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.14.2.php
+- Changes since 5.14.1:
+  * Show correct current download and upload speed
+- Revert yet another commit for 42.3:
+  * 0001-Revert-Show-correct-current-download-and-upload-spee.patch
+
+---

Old:

  plasma-nm-5.14.1.tar.xz
  plasma-nm-5.14.1.tar.xz.sig

New:

  0001-Revert-Show-correct-current-download-and-upload-spee.patch
  plasma-nm-5.14.2.tar.xz
  plasma-nm-5.14.2.tar.xz.sig



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.IUTM0i/_old  2018-10-29 14:20:42.458402546 +0100
+++ /var/tmp/diff_new_pack.IUTM0i/_new  2018-10-29 14:20:42.458402546 +0100
@@ -19,21 +19,21 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.14.1
+Version:5.14.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)
 Group:  System/GUI/KDE
 URL:http://www.kde.org
-Source: 
https://download.kde.org/stable/plasma/5.14.1/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.14.1/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
-Patch0: 0001-Revert-Require-NM-1.4.0-and-newer.patch
-# PATCH-FIX-OPENSUSE
-Patch1: 0001-Revert-Use-NetworkManager-DeviceStatistics-instead-o.patch
+Patch0: 0001-Revert-Show-correct-current-download-and-upload-spee.patch
+Patch1: 0001-Revert-Require-NM-1.4.0-and-newer.patch
+Patch2: 0001-Revert-Use-NetworkManager-DeviceStatistics-instead-o.patch
 BuildRequires:  NetworkManager-devel >= 0.9.8.4
 BuildRequires:  extra-cmake-modules >= 1.3.0
 BuildRequires:  fdupes
@@ -83,7 +83,7 @@
 Obsoletes:  plasma-nm < %{version}
 %endif
 %if 0%{?mm_support}
-BuildRequires:  cmake(KF5ModemManagerQt) >=  5.14.1
+BuildRequires:  cmake(KF5ModemManagerQt) >=  5.14.2
 BuildRequires:  pkgconfig(ModemManager) >= 1.0.0
 %endif
 Obsoletes:  NetworkManager-kde4-devel

++ 0001-Revert-Show-correct-current-download-and-upload-spee.patch ++
>From 0429d11739927bfbe9bb7c7ec1fb34c64aeb22f8 Mon Sep 17 00:00:00 2001
From: Fabian Vogt 
Date: Tue, 23 Oct 2018 16:28:16 +0200
Subject: [PATCH] Revert "Show correct current download and upload speed"

This reverts commit c5593b02df3864fe7a720925492306734d0b94e6.
---
 applet/contents/ui/ConnectionItem.qml | 26 ++
 libs/models/networkmodel.cpp  |  6 --
 2 files changed, 2 insertions(+), 30 deletions(-)

diff --git a/applet/contents/ui/ConnectionItem.qml 
b/applet/contents/ui/ConnectionItem.qml
index cb3c582b..3e5af365 100644
--- a/applet/contents/ui/ConnectionItem.qml
+++ b/applet/contents/ui/ConnectionItem.qml
@@ -43,9 +43,6 @@ PlasmaComponents.ListItem {
 property bool visibleDetails: false
 property bool visiblePasswordDialog: false
 
-property real rxBytes: 0
-property real txBytes: 0
-
 checked: connectionItem.containsMouse
 enabled: true
 height: expanded ? baseHeight + separator.height + 
expandableComponentLoader.height + (2 * Math.round(units.gridUnit / 3)) : 
baseHeight
@@ -235,25 +232,6 @@ PlasmaComponents.ListItem {
 }
 }
 
-Timer {
-id: timer
-repeat: true
-interval: 2000
-running: showSpeed
-property real prevRxBytes
-property real prevTxBytes
-Component.onCompleted: {
-prevRxBytes = RxBytes
-prevTxBytes = TxBytes
-}
-onTriggered: {
-rxBytes = (RxBytes - prevRxBytes) * 1000 / interval
-txBytes = (TxBytes - prevTxBytes) * 1000 / interval
-prevRxBytes = 

commit plasma-nm5 for openSUSE:Factory

2018-10-22 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2018-10-22 11:20:30

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


Package is "plasma-nm5"

Mon Oct 22 11:20:30 2018 rev:80 rq:642467 version:5.14.1

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2018-10-08 
17:42:05.874738167 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2018-10-22 11:21:25.239272676 +0200
@@ -1,0 +2,10 @@
+Tue Oct 16 14:05:16 UTC 2018 - fab...@ritter-vogt.de
+
+- Update to 5.14.1
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.14.1.php
+- Changes since 5.14.0:
+  * openconnect: add missing dependency Qt5Xml
+
+---

Old:

  plasma-nm-5.14.0.tar.xz
  plasma-nm-5.14.0.tar.xz.sig

New:

  plasma-nm-5.14.1.tar.xz
  plasma-nm-5.14.1.tar.xz.sig



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.hkfqaD/_old  2018-10-22 11:21:26.079271818 +0200
+++ /var/tmp/diff_new_pack.hkfqaD/_new  2018-10-22 11:21:26.083271814 +0200
@@ -12,22 +12,22 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.14.0
+Version:5.14.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/5.14.1/plasma-nm-%{version}.tar.xz
 %if %{with lang}
-Source1:plasma-nm-%{version}.tar.xz.sig
+Source1:
https://download.kde.org/stable/plasma/5.14.1/plasma-nm-%{version}.tar.xz.sig
 Source2:plasma.keyring
 %endif
 # PATCH-FIX-OPENSUSE
@@ -83,7 +83,7 @@
 Obsoletes:  plasma-nm < %{version}
 %endif
 %if 0%{?mm_support}
-BuildRequires:  cmake(KF5ModemManagerQt) >=  5.14.0
+BuildRequires:  cmake(KF5ModemManagerQt) >=  5.14.1
 BuildRequires:  pkgconfig(ModemManager) >= 1.0.0
 %endif
 Obsoletes:  NetworkManager-kde4-devel

++ plasma-nm-5.14.0.tar.xz -> plasma-nm-5.14.1.tar.xz ++
 7924 lines of diff (skipped)





commit plasma-nm5 for openSUSE:Factory

2018-10-08 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2018-10-08 17:41:57

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


Package is "plasma-nm5"

Mon Oct  8 17:41:57 2018 rev:79 rq:640311 version:5.14.0

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2018-09-13 
23:52:46.954348651 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2018-10-08 17:42:05.874738167 +0200
@@ -1,0 +2,62 @@
+Fri Oct  5 10:01:14 UTC 2018 - fab...@ritter-vogt.de
+
+- Update to 5.14.0
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.14.0.php
+- Changes since 5.13.90:
+  * Fix ampersand and other characters in tooltip (kde#398225)
+
+---
+Sun Sep 16 14:12:02 UTC 2018 - wba...@tmo.at
+
+- Add 0001-Revert-Require-NM-1.4.0-and-newer.patch to make it build
+  on Leap 42.3 which only has NetworkManager 1.0
+- Add 0001-Revert-Use-NetworkManager-DeviceStatistics-instead-o.patch
+  for Leap 42.3 to make speed graph work again with NM < 1.4.0
+
+---
+Sat Sep 15 16:25:31 UTC 2018 - fab...@ritter-vogt.de
+
+- Add tarball signature and keyring containing keys of release managers
+  Jonathan Riddell and Bhushan Shah
+
+---
+Thu Sep 13 17:25:04 UTC 2018 - fab...@ritter-vogt.de
+
+- Update to 5.13.90
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.13.90.php
+- Changes since 5.13.5:
+  * Make sure we change icon on NM connectivity change (boo#1108019)
+  * Use QOverload to select overloaded functions
+  * QT_MIN_VERSIONS is Qt 5.11 for Plasma 5.14. Agreed at kickoff meeting.  
Set everywhere for clearity and consistency.
+  * Use NetworkManager::DeviceStatistics instead of Plasma data engine
+  * Require NM 1.4.0 and newer
+  * Unbreak SSH agent support for SSH VPN tunnels.
+  * Parse protocol in port option
+  * Port away from KLocale and KDELibs4Support
+  * Update connection details only when necessary
+  * Use more nullptr
+  * Port from KStandardDirs to QStandardPaths
+  * Use non-deprecated KDEInstallDirs variables
+  * Use KF5_MIN_VERSION also for KF5ModemManagerQt
+  * Find KF5NetworkManagerQt together with other KF5 modules
+  * Fix label buddy in fortisslvpn auth widget
+  * Cleanup used Qt & KF libraries a bit
+  * Remove unneeded include
+  * Use KF5Wallet include for KWallet, not the kdelibs4support one
+  * Remove duplicated include
+  * Use explicit
+  * Use nullptr
+  * Use override consistently
+  * Remove unused entry X-KDE-DBus-ModuleName from the kded plugin metadata
+  * Remove usage of dead QT_USE_FAST_CONCATENATION
+  * Remove Qt module includes
+  * Remove unneeded cmake macro includes
+  * Use KF5_MIN_VERSION also for ECM, now that it's part of KF
+  * Require KDE Frameworks 5.42 and Qt 5.9
+  * Bump min cmake version to 3.0, move cmake_minimum_required to begin
+
+---

Old:

  plasma-nm-5.13.5.tar.xz

New:

  0001-Revert-Require-NM-1.4.0-and-newer.patch
  0001-Revert-Use-NetworkManager-DeviceStatistics-instead-o.patch
  plasma-nm-5.14.0.tar.xz
  plasma-nm-5.14.0.tar.xz.sig
  plasma.keyring



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.KVOJ19/_old  2018-10-08 17:42:08.174735237 +0200
+++ /var/tmp/diff_new_pack.KVOJ19/_new  2018-10-08 17:42:08.178735232 +0200
@@ -19,13 +19,21 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.13.5
+Version:5.14.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:https://projects.kde.org/projects/playground/network/plasma-nm
-Source: 
http://download.kde.org/stable/plasma/%{version}/plasma-nm-%{version}.tar.xz
+URL:http://www.kde.org
+Source: plasma-nm-%{version}.tar.xz
+%if %{with lang}
+Source1:plasma-nm-%{version}.tar.xz.sig
+Source2:plasma.keyring
+%endif
+# PATCH-FIX-OPENSUSE
+Patch0: 0001-Revert-Require-NM-1.4.0-and-newer.patch
+# PATCH-FIX-OPENSUSE
+Patch1: 0001-Revert-Use-NetworkManager-DeviceStatistics-instead-o.patch
 BuildRequires:  NetworkManager-devel >= 0.9.8.4
 BuildRequires:  extra-cmake-modules >= 1.3.0
 BuildRequires:  fdupes
@@ -251,6 +259,9 @@
 %lang_package
 %prep
 

commit plasma-nm5 for openSUSE:Factory

2018-09-13 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2018-09-13 23:52:46

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


Package is "plasma-nm5"

Thu Sep 13 23:52:46 2018 rev:78 rq:633169 version:5.13.5

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2018-08-03 
12:34:36.739330421 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2018-09-13 23:52:46.954348651 +0200
@@ -1,0 +2,11 @@
+Tue Sep  4 10:58:42 UTC 2018 - fab...@ritter-vogt.de
+
+- Update to 5.13.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.13.5.php
+- Changes since 5.13.4:
+  * Fix a text label in the password dialog
+  * Add additional checks for device existence (kde#396957)
+
+---

Old:

  plasma-nm-5.13.4.tar.xz

New:

  plasma-nm-5.13.5.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.MzaKZ1/_old  2018-09-13 23:52:47.382348323 +0200
+++ /var/tmp/diff_new_pack.MzaKZ1/_new  2018-09-13 23:52:47.382348323 +0200
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.13.4
+Version:5.13.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)

++ plasma-nm-5.13.4.tar.xz -> plasma-nm-5.13.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.13.4/CMakeLists.txt 
new/plasma-nm-5.13.5/CMakeLists.txt
--- old/plasma-nm-5.13.4/CMakeLists.txt 2018-07-31 14:54:53.0 +0200
+++ new/plasma-nm-5.13.5/CMakeLists.txt 2018-09-04 12:19:46.0 +0200
@@ -3,7 +3,7 @@
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
 
-set(PROJECT_VERSION "5.13.4")
+set(PROJECT_VERSION "5.13.5")
 set(PROJECT_VERSION_MAJOR 5)
 
 # set KDE specific information #
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.13.4/kded/passworddialog.ui 
new/plasma-nm-5.13.5/kded/passworddialog.ui
--- old/plasma-nm-5.13.4/kded/passworddialog.ui 2018-07-31 14:54:03.0 
+0200
+++ new/plasma-nm-5.13.5/kded/passworddialog.ui 2018-09-04 12:19:05.0 
+0200
@@ -57,7 +57,7 @@
  
   

-
+
  0
  0
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.13.4/libs/models/networkmodel.cpp 
new/plasma-nm-5.13.5/libs/models/networkmodel.cpp
--- old/plasma-nm-5.13.4/libs/models/networkmodel.cpp   2018-07-31 
14:54:03.0 +0200
+++ new/plasma-nm-5.13.5/libs/models/networkmodel.cpp   2018-09-04 
12:19:05.0 +0200
@@ -287,11 +287,15 @@
 
 void NetworkModel::addAvailableConnection(const QString , const 
NetworkManager::Device::Ptr )
 {
-checkAndCreateDuplicate(connection, device);
+if (!device) {
+return;
+}
+
+checkAndCreateDuplicate(connection, device->uni());
 
 for (NetworkModelItem *item : 
m_list.returnItems(NetworkItemsList::Connection, connection)) {
 // The item is already associated with another device
-if (!item->devicePath().isEmpty()) {
+if (!device || !item->devicePath().isEmpty()) {
 continue;
 }
 
@@ -300,6 +304,7 @@
 } else {
 item->setDeviceName(device->ipInterfaceName());
 }
+
 item->setDevicePath(device->uni());
 item->setDeviceState(device->state());
 qCDebug(PLASMA_NM) << "Item " << item->name() << ": device changed to 
" << item->devicePath();
@@ -474,7 +479,7 @@
 qCDebug(PLASMA_NM) << "New wireless network " << item->name() << " added";
 }
 
-void NetworkModel::checkAndCreateDuplicate(const QString , const 
NetworkManager::Device::Ptr )
+void NetworkModel::checkAndCreateDuplicate(const QString , const 
QString )
 {
 bool createDuplicate = false;
 NetworkModelItem *originalItem = 0;
@@ -484,7 +489,7 @@
 originalItem = item;
 }
 
-if (!item->duplicate() && item->itemType() == 
NetworkModelItem::AvailableConnection && (item->devicePath() != device->uni() 
&& !item->devicePath().isEmpty())) {
+if (!item->duplicate() && item->itemType() == 
NetworkModelItem::AvailableConnection && (item->devicePath() != deviceUni && 
!item->devicePath().isEmpty())) {
 createDuplicate = true;
 }
 }
diff -urN '--exclude=CVS' 

commit plasma-nm5 for openSUSE:Factory

2018-08-03 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2018-08-03 12:34:31

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


Package is "plasma-nm5"

Fri Aug  3 12:34:31 2018 rev:77 rq:626851 version:5.13.4

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2018-07-14 
20:19:52.827361959 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2018-08-03 12:34:36.739330421 +0200
@@ -1,0 +2,10 @@
+Tue Jul 31 15:18:34 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.13.4
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.13.4.php
+- Changes since 5.13.3:
+  * None
+
+---

Old:

  plasma-nm-5.13.3.tar.xz

New:

  plasma-nm-5.13.4.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.6yAzOR/_old  2018-08-03 12:34:37.183331078 +0200
+++ /var/tmp/diff_new_pack.6yAzOR/_new  2018-08-03 12:34:37.187331083 +0200
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.13.3
+Version:5.13.4
 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.13.3.tar.xz -> plasma-nm-5.13.4.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.13.3/CMakeLists.txt 
new/plasma-nm-5.13.4/CMakeLists.txt
--- old/plasma-nm-5.13.3/CMakeLists.txt 2018-07-10 12:12:46.0 +0200
+++ new/plasma-nm-5.13.4/CMakeLists.txt 2018-07-31 14:54:53.0 +0200
@@ -3,7 +3,7 @@
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
 
-set(PROJECT_VERSION "5.13.3")
+set(PROJECT_VERSION "5.13.4")
 set(PROJECT_VERSION_MAJOR 5)
 
 # set KDE specific information #
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-5.13.3/po/cs/plasmanetworkmanagement-libs.po 
new/plasma-nm-5.13.4/po/cs/plasmanetworkmanagement-libs.po
--- old/plasma-nm-5.13.3/po/cs/plasmanetworkmanagement-libs.po  2018-07-10 
12:12:26.0 +0200
+++ new/plasma-nm-5.13.4/po/cs/plasmanetworkmanagement-libs.po  2018-07-31 
14:54:20.0 +0200
@@ -1885,7 +1885,7 @@
 #: editor/widgets/passwordfield.cpp:45
 #, kde-format
 msgid "Change the visibility of the password"
-msgstr ""
+msgstr "Změnit viditelnost hesla"
 
 #: editor/widgets/passwordfield.cpp:55
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-5.13.3/po/cs/plasmanetworkmanagement_sshui.po 
new/plasma-nm-5.13.4/po/cs/plasmanetworkmanagement_sshui.po
--- old/plasma-nm-5.13.3/po/cs/plasmanetworkmanagement_sshui.po 2018-07-10 
12:12:26.0 +0200
+++ new/plasma-nm-5.13.4/po/cs/plasmanetworkmanagement_sshui.po 2018-07-31 
14:54:20.0 +0200
@@ -21,13 +21,13 @@
 #: sshadvanced.ui:19
 #, kde-format
 msgid "Use custom gateway port:"
-msgstr ""
+msgstr "Použít vlastní port brány:"
 
 #. i18n: ectx: property (text), widget (QCheckBox, chk_useCustomTunnelMtu)
 #: sshadvanced.ui:46
 #, kde-format
 msgid "Use custom tunnel Maximum Transmission Unit (MTU):"
-msgstr ""
+msgstr "Použít vlastní Maximum Transmission Unit (MTU):"
 
 #. i18n: ectx: property (text), widget (QCheckBox, chk_extraSshOptions)
 #: sshadvanced.ui:70
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-5.13.3/po/da/plasma_applet_org.kde.plasma.networkmanagement.po 
new/plasma-nm-5.13.4/po/da/plasma_applet_org.kde.plasma.networkmanagement.po
--- 
old/plasma-nm-5.13.3/po/da/plasma_applet_org.kde.plasma.networkmanagement.po
2018-07-10 12:12:27.0 +0200
+++ 
new/plasma-nm-5.13.4/po/da/plasma_applet_org.kde.plasma.networkmanagement.po
2018-07-31 14:54:21.0 +0200
@@ -1,13 +1,13 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
 #
-# Martin Schlander , 2013, 2014, 2015, 2017.
+# Martin Schlander , 2013, 2014, 2015, 2017, 2018.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2018-06-19 06:55+0200\n"
-"PO-Revision-Date: 2017-11-27 19:36+0100\n"
+"PO-Revision-Date: 2018-07-12 10:29+0100\n"
 "Last-Translator: Martin Schlander \n"
 "Language-Team: Danish \n"
 "Language: da\n"
@@ -90,20 +90,19 @@
 msgstr "Adgangskode..."
 
 #: 

commit plasma-nm5 for openSUSE:Factory

2018-07-14 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2018-07-14 20:19:31

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


Package is "plasma-nm5"

Sat Jul 14 20:19:31 2018 rev:76 rq:622133 version:5.13.3

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2018-07-04 
23:55:00.871899829 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2018-07-14 20:19:52.827361959 +0200
@@ -1,0 +2,10 @@
+Tue Jul 10 14:02:31 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.13.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.13.3.php
+- Changes since 5.13.2:
+  * None
+
+---

Old:

  plasma-nm-5.13.2.tar.xz

New:

  plasma-nm-5.13.3.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.KfuRoQ/_old  2018-07-14 20:19:53.231362999 +0200
+++ /var/tmp/diff_new_pack.KfuRoQ/_new  2018-07-14 20:19:53.239363020 +0200
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.13.2
+Version:5.13.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.13.2.tar.xz -> plasma-nm-5.13.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.13.2/CMakeLists.txt 
new/plasma-nm-5.13.3/CMakeLists.txt
--- old/plasma-nm-5.13.2/CMakeLists.txt 2018-06-26 13:53:56.0 +0200
+++ new/plasma-nm-5.13.3/CMakeLists.txt 2018-07-10 12:12:46.0 +0200
@@ -3,7 +3,7 @@
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
 
-set(PROJECT_VERSION "5.13.2")
+set(PROJECT_VERSION "5.13.3")
 set(PROJECT_VERSION_MAJOR 5)
 
 # set KDE specific information #
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-5.13.2/po/ca/plasmanetworkmanagement-libs.po 
new/plasma-nm-5.13.3/po/ca/plasmanetworkmanagement-libs.po
--- old/plasma-nm-5.13.2/po/ca/plasmanetworkmanagement-libs.po  2018-06-26 
13:53:26.0 +0200
+++ new/plasma-nm-5.13.3/po/ca/plasmanetworkmanagement-libs.po  2018-07-10 
12:12:26.0 +0200
@@ -1,17 +1,17 @@
 # Translation of plasmanetworkmanagement-libs.po to Catalan
-# Copyright (C) 2014-2017 This_file_is_part_of_KDE
+# Copyright (C) 2014-2018 This_file_is_part_of_KDE
 # This file is distributed under the license LGPL version 2.1 or
 # version 3 or later versions approved by the membership of KDE e.V.
 #
-# Antoni Bella Pérez , 2014, 2015, 2016, 2017.
+# Antoni Bella Pérez , 2014, 2015, 2016, 2017, 2018.
 # Josep Ma. Ferrer , 2014, 2015, 2016, 2017.
 msgid ""
 msgstr ""
 "Project-Id-Version: plasmanetworkmanagement-libs\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2018-01-05 03:18+0100\n"
-"PO-Revision-Date: 2017-12-17 23:24+0100\n"
-"Last-Translator: Josep Ma. Ferrer \n"
+"PO-Revision-Date: 2018-06-28 21:23+0100\n"
+"Last-Translator: Antoni Bella Pérez \n"
 "Language-Team: Catalan \n"
 "Language: ca\n"
 "MIME-Version: 1.0\n"
@@ -1962,7 +1962,7 @@
 #: editor/widgets/passwordfield.cpp:56
 #, kde-format
 msgid "Store password for all users (not encrypted)"
-msgstr "Emmagatzema la contrasenya per tots els usuaris (no encriptada)"
+msgstr "Emmagatzema la contrasenya per a tots els usuaris (sense encriptar)"
 
 #: editor/widgets/passwordfield.cpp:57
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-5.13.2/po/ca/plasmanetworkmanagement_vpncui.po 
new/plasma-nm-5.13.3/po/ca/plasmanetworkmanagement_vpncui.po
--- old/plasma-nm-5.13.2/po/ca/plasmanetworkmanagement_vpncui.po
2018-06-26 13:53:26.0 +0200
+++ new/plasma-nm-5.13.3/po/ca/plasmanetworkmanagement_vpncui.po
2018-07-10 12:12:26.0 +0200
@@ -1,16 +1,16 @@
 # Translation of plasmanetworkmanagement_vpncui.po to Catalan
-# Copyright (C) 2014-2016 This_file_is_part_of_KDE
+# Copyright (C) 2014-2018 This_file_is_part_of_KDE
 # This file is distributed under the license LGPL version 2.1 or
 # version 3 or later versions approved by the membership of KDE e.V.
 #
 # Antoni Bella Pérez , 2014, 2015.
-# Josep Ma. Ferrer , 2015, 2016.
+# Josep Ma. Ferrer , 2015, 2016, 2018.
 msgid ""
 msgstr ""
 "Project-Id-Version: plasmanetworkmanagement_vpncui\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2016-11-19 

commit plasma-nm5 for openSUSE:Factory

2018-07-04 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2018-07-04 23:54:19

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


Package is "plasma-nm5"

Wed Jul  4 23:54:19 2018 rev:75 rq:620448 version:5.13.2

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2018-07-01 
21:23:50.976967394 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2018-07-04 23:55:00.871899829 +0200
@@ -1,0 +2,6 @@
+Tue Jul  3 09:08:23 UTC 2018 - bjorn@gmail.com
+
+- Add conditional for NetworkManager-openswan Requires: No longer
+  available in Tumbleweed and newer.
+
+---



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.2Tw2rq/_old  2018-07-04 23:55:02.015898567 +0200
+++ /var/tmp/diff_new_pack.2Tw2rq/_new  2018-07-04 23:55:02.019898562 +0200
@@ -142,7 +142,9 @@
 Summary:Openswan support for %{name}
 Group:  System/GUI/KDE
 Requires:   %{name} = %{version}
+%if 0%{?suse_version} <= 1500
 Requires:   NetworkManager-openswan
+%endif
 Supplements:packageand(%{name}:NetworkManager-openswan)
 Provides:   NetworkManager-openswan-frontend
 %if 0%{?suse_version} > 1314 && "%{suse_version}" != "1320"




commit plasma-nm5 for openSUSE:Factory

2018-07-01 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2018-07-01 21:23:46

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


Package is "plasma-nm5"

Sun Jul  1 21:23:46 2018 rev:74 rq:619326 version:5.13.2

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2018-06-26 
10:36:20.757171275 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2018-07-01 21:23:50.976967394 +0200
@@ -1,0 +2,10 @@
+Tue Jun 26 16:01:25 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.13.2
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.13.2.php
+- Changes since 5.13.1:
+  * None
+
+---

Old:

  plasma-nm-5.13.1.tar.xz

New:

  plasma-nm-5.13.2.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.3vjCDL/_old  2018-07-01 21:23:51.340966920 +0200
+++ /var/tmp/diff_new_pack.3vjCDL/_new  2018-07-01 21:23:51.344966915 +0200
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.13.1
+Version:5.13.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.13.1.tar.xz -> plasma-nm-5.13.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.13.1/CMakeLists.txt 
new/plasma-nm-5.13.2/CMakeLists.txt
--- old/plasma-nm-5.13.1/CMakeLists.txt 2018-06-19 12:43:54.0 +0200
+++ new/plasma-nm-5.13.2/CMakeLists.txt 2018-06-26 13:53:56.0 +0200
@@ -3,7 +3,7 @@
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
 
-set(PROJECT_VERSION "5.13.1")
+set(PROJECT_VERSION "5.13.2")
 set(PROJECT_VERSION_MAJOR 5)
 
 # set KDE specific information #
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-5.13.1/po/de/plasmanetworkmanagement-libs.po 
new/plasma-nm-5.13.2/po/de/plasmanetworkmanagement-libs.po
--- old/plasma-nm-5.13.1/po/de/plasmanetworkmanagement-libs.po  2018-06-19 
12:43:20.0 +0200
+++ new/plasma-nm-5.13.2/po/de/plasmanetworkmanagement-libs.po  2018-06-26 
13:53:28.0 +0200
@@ -7,8 +7,8 @@
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2018-01-05 03:18+0100\n"
-"PO-Revision-Date: 2018-03-21 19:47+0100\n"
-"Last-Translator: Frederik Schwarzer \n"
+"PO-Revision-Date: 2018-06-20 10:58+0100\n"
+"Last-Translator: Burkhard Lück \n"
 "Language-Team: German \n"
 "Language: de\n"
 "MIME-Version: 1.0\n"
@@ -2212,18 +2212,14 @@
 
 #: models/creatableconnectionsmodel.cpp:180
 #: models/creatableconnectionsmodel.cpp:186
-#, fuzzy, kde-format
-#| msgctxt "Mobile Connection Wizard"
-#| msgid "New Mobile Broadband Connection"
+#, kde-format
 msgid "Some bond description"
-msgstr "Neue mobile Breitbandverbindung"
+msgstr "Bond-Beschreibung"
 
 #: models/creatableconnectionsmodel.cpp:192
-#, fuzzy, kde-format
-#| msgctxt "Mobile Connection Wizard"
-#| msgid "New Mobile Broadband Connection"
+#, kde-format
 msgid "Some team description"
-msgstr "Neue mobile Breitbandverbindung"
+msgstr "Team-Beschreibung"
 
 #: models/creatableconnectionsmodel.cpp:198
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-5.13.1/po/de/plasmanetworkmanagement_openvpnui.po 
new/plasma-nm-5.13.2/po/de/plasmanetworkmanagement_openvpnui.po
--- old/plasma-nm-5.13.1/po/de/plasmanetworkmanagement_openvpnui.po 
2018-06-19 12:43:20.0 +0200
+++ new/plasma-nm-5.13.2/po/de/plasmanetworkmanagement_openvpnui.po 
2018-06-26 13:53:28.0 +0200
@@ -5,7 +5,7 @@
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2018-05-15 03:43+0200\n"
-"PO-Revision-Date: 2018-04-17 07:10+0100\n"
+"PO-Revision-Date: 2018-06-25 06:14+0100\n"
 "Last-Translator: Burkhard Lück \n"
 "Language-Team: German \n"
 "Language: de\n"
@@ -383,6 +383,8 @@
 "TCP/UDP port number for peer. (Default value when there is no port for "
 "gateway)."
 msgstr ""
+"TCP/UDP-Portnummer für die Gegenseite. (Standardwert, wenn kein Port für das "
+"Gateway angegeben ist)."
 
 #. i18n: ectx: property (text), widget (QCheckBox, chkCustomPort)
 #: openvpnadvanced.ui:39
@@ -608,13 +610,13 @@
 #: openvpnadvanced.ui:365
 #, kde-format
 msgid "ping-exit"
-msgstr ""
+msgstr "ping-exit"
 
 #. i18n: ectx: 

commit plasma-nm5 for openSUSE:Factory

2018-06-26 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2018-06-26 10:36:17

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


Package is "plasma-nm5"

Tue Jun 26 10:36:17 2018 rev:73 rq:617986 version:5.13.1

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2018-06-13 
15:32:22.060069225 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2018-06-26 10:36:20.757171275 +0200
@@ -1,0 +2,11 @@
+Tue Jun 19 14:46:55 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.13.1
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.13.1.php
+- Changes since 5.13.0:
+  * Properly fix icon size for connection delegate BUG: 394580 (kde#394580)
+  * Attempt to fix icon size for connection delegate BUG: 394580 (kde#394580)
+
+---

Old:

  plasma-nm-5.13.0.tar.xz

New:

  plasma-nm-5.13.1.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.Dne07H/_old  2018-06-26 10:36:21.737135253 +0200
+++ /var/tmp/diff_new_pack.Dne07H/_new  2018-06-26 10:36:21.741135106 +0200
@@ -19,13 +19,13 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.13.0
+Version:5.13.1
 Release:0
 Summary:Plasma applet written in QML for managing network connections
-License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)
+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:https://projects.kde.org/projects/playground/network/plasma-nm
-Source: plasma-nm-%{version}.tar.xz
+Source: 
http://download.kde.org/stable/plasma/%{version}/plasma-nm-%{version}.tar.xz
 BuildRequires:  NetworkManager-devel >= 0.9.8.4
 BuildRequires:  extra-cmake-modules >= 1.3.0
 BuildRequires:  fdupes

++ plasma-nm-5.13.0.tar.xz -> plasma-nm-5.13.1.tar.xz ++
 3057 lines of diff (skipped)




commit plasma-nm5 for openSUSE:Factory

2018-06-13 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2018-06-13 15:32:14

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


Package is "plasma-nm5"

Wed Jun 13 15:32:14 2018 rev:72 rq:615763 version:5.13.0

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2018-05-13 
15:54:56.292501787 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2018-06-13 15:32:22.060069225 +0200
@@ -1,0 +2,29 @@
+Thu Jun  7 20:03:52 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.13.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.13.0.php
+- Changes since 5.12.90:
+  * Assign notification area category
+
+---
+Sat May 19 14:16:38 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.90
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.90.php
+- Changes since 5.12.5:
+  * Remove unused code
+  * Simplify connection item delegate
+  * Use QtQuick's built-in HSV color features for cycling download color
+  * Coding style and minor improvements
+  * Unquote remote when importing OpenVPN connections (kde#393657)
+  * Use ScrollView from QtQuickControls in the main connection view 
(kde#393794)
+  * Check for device not being null
+  * Require NM 1.0.0 and newer
+  * use the bundled variant of installpackage
+  * Adjust spacing between text and plotter line in Speed tab of nm applet
+
+---

Old:

  plasma-nm-5.12.5.tar.xz

New:

  plasma-nm-5.13.0.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.JERHNU/_old  2018-06-13 15:32:23.048032854 +0200
+++ /var/tmp/diff_new_pack.JERHNU/_new  2018-06-13 15:32:23.052032706 +0200
@@ -19,13 +19,13 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.12.5
+Version:5.13.0
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)
 Group:  System/GUI/KDE
 Url:https://projects.kde.org/projects/playground/network/plasma-nm
-Source: 
http://download.kde.org/stable/plasma/%{version}/plasma-nm-%{version}.tar.xz
+Source: plasma-nm-%{version}.tar.xz
 BuildRequires:  NetworkManager-devel >= 0.9.8.4
 BuildRequires:  extra-cmake-modules >= 1.3.0
 BuildRequires:  fdupes
@@ -263,8 +263,7 @@
   %fdupes %{buildroot}
 
 %files
-%defattr(-,root,root)
-%doc COPYING*
+%license COPYING*
 %{_kf5_libdir}/libplasmanm_editor.so
 %{_kf5_libdir}/libplasmanm_internal.so
 %dir %{_kf5_plugindir}/kf5
@@ -282,69 +281,58 @@
 %{_kf5_servicesdir}/kcm_networkmanagement.desktop
 
 %files openvpn
-%defattr(-,root,root)
-%doc COPYING*
+%license COPYING*
 %{_kf5_plugindir}/*_openvpnui.so
 %{_kf5_servicesdir}/plasmanetworkmanagement_openvpnui.desktop
 
 %files vpnc
-%defattr(-,root,root)
-%doc COPYING*
+%license COPYING*
 %{_kf5_plugindir}/*_vpncui.so
 %{_kf5_servicesdir}/plasmanetworkmanagement_vpncui.desktop
 
 %files openconnect
-%defattr(-,root,root)
-%doc COPYING*
+%license COPYING*
 %{_kf5_plugindir}/*_openconnectui.so
 %{_kf5_servicesdir}/plasmanetworkmanagement_openconnectui.desktop
 %{_kf5_servicesdir}/plasmanetworkmanagement_openconnect_juniperui.desktop
 
 %files openswan
-%defattr(-,root,root)
-%doc COPYING*
+%license COPYING*
 %{_kf5_plugindir}/*_openswanui.so
 %{_kf5_servicesdir}/plasmanetworkmanagement_openswanui.desktop
 
 %files strongswan
-%defattr(-,root,root)
-%doc COPYING*
+%license COPYING*
 %{_kf5_plugindir}/*_strongswanui.so
 %{_kf5_servicesdir}/plasmanetworkmanagement_strongswanui.desktop
 
 %files l2tp
-%defattr(-,root,root)
-%doc COPYING*
+%license COPYING*
 %{_kf5_plugindir}/*_l2tpui.so
 %{_kf5_servicesdir}/plasmanetworkmanagement_l2tpui.desktop
 
 %files pptp
-%defattr(-,root,root)
-%doc COPYING*
+%license COPYING*
 %{_kf5_plugindir}/*_pptpui.so
 %{_kf5_servicesdir}/plasmanetworkmanagement_pptpui.desktop
 
 %files ssh
-%defattr(-,root,root)
-%doc COPYING*
+%license COPYING*
 %{_kf5_plugindir}/*_sshui.so
 %{_kf5_servicesdir}/plasmanetworkmanagement_sshui.desktop
 
 %files sstp
-%defattr(-,root,root)
-%doc COPYING*
+%license COPYING*
 %{_kf5_plugindir}/*_sstpui.so
 %{_kf5_servicesdir}/plasmanetworkmanagement_sstpui.desktop
 
 %files iodine
-%defattr(-,root,root)
-%doc COPYING*
+%license COPYING*
 %{_kf5_plugindir}/*_iodineui.so
 %{_kf5_servicesdir}/plasmanetworkmanagement_iodineui.desktop
 
 %files fortisslvpn

commit plasma-nm5 for openSUSE:Factory

2018-05-13 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2018-05-13 15:54:54

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


Package is "plasma-nm5"

Sun May 13 15:54:54 2018 rev:71 rq:605935 version:5.12.5

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2018-05-08 
13:35:42.705078904 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2018-05-13 15:54:56.292501787 +0200
@@ -1,0 +2,5 @@
+Wed May  9 20:46:00 UTC 2018 - fab...@ritter-vogt.de
+
+- Add supplements to avoid hard requires (part of fix for boo#982962)
+
+---



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.JdjCp2/_old  2018-05-13 15:54:57.000475951 +0200
+++ /var/tmp/diff_new_pack.JdjCp2/_new  2018-05-13 15:54:57.004475805 +0200
@@ -83,6 +83,7 @@
 Obsoletes:  NetworkManager-kde4-libs-lang
 Obsoletes:  NetworkManager-novellvpn-kde4
 Obsoletes:  plasmoid-networkmanagement
+Supplements:packageand(plasma5-desktop:NetworkManager)
 
 %description
 Plasma applet for controlling network connections on systems




commit plasma-nm5 for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2018-05-08 13:35:41

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


Package is "plasma-nm5"

Tue May  8 13:35:41 2018 rev:70 rq:603272 version:5.12.5

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2018-03-30 
12:05:38.365602777 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2018-05-08 13:35:42.705078904 +0200
@@ -1,0 +2,25 @@
+Wed May  2 14:52:07 UTC 2018 - wba...@tmo.at
+
+- Unconditionally provide the -vpnc subpackage again for now, vpnc
+  is still in Tumbleweed and has been revived for Leap 15.0
+- Activate proper Requires and Supplements for the -openswan,
+  -l2tp, and -iodine subpackages, the corresponding NetworkManager
+  packages are in Factory (and Leap) meanwhile
+
+---
+Wed May  2 09:25:52 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.5.php
+- Changes since 5.12.4:
+  * None
+
+---
+Tue Apr  3 08:58:44 UTC 2018 - fab...@ritter-vogt.de
+
+- Fix plasma-nm5-openconnect supplements
+- Don't provide the -vpnc subpackage anymore on TW and Leap 15
+
+---

Old:

  plasma-nm-5.12.4.tar.xz

New:

  plasma-nm-5.12.5.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.SWozFC/_old  2018-05-08 13:35:43.273058406 +0200
+++ /var/tmp/diff_new_pack.SWozFC/_new  2018-05-08 13:35:43.281058118 +0200
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.12.4
+Version:5.12.5
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)
@@ -126,7 +126,7 @@
 Requires:   %{name} = %{version}
 Requires:   NetworkManager-openconnect
 Requires:   openconnect
-Supplements:packageand(%{name}:NetworkManager-openconnect:openconnect)
+Supplements:packageand(%{name}:NetworkManager-openconnect)
 Provides:   NetworkManager-openconnect-frontend
 %if 0%{?suse_version} > 1314 && "%{suse_version}" != "1320"
 Provides:   plasma-nm-openconnect = %{version}
@@ -141,9 +141,8 @@
 Summary:Openswan support for %{name}
 Group:  System/GUI/KDE
 Requires:   %{name} = %{version}
-# NetworkManager-openswan is not in Factory
-#Requires:   NetworkManager-openswan
-#Supplements:packageand(%{name}:NetworkManager-openswan)
+Requires:   NetworkManager-openswan
+Supplements:packageand(%{name}:NetworkManager-openswan)
 Provides:   NetworkManager-openswan-frontend
 %if 0%{?suse_version} > 1314 && "%{suse_version}" != "1320"
 Provides:   plasma-nm-openswan = %{version}
@@ -172,9 +171,8 @@
 Summary:L2TP support for %{name}
 Group:  System/GUI/KDE
 Requires:   %{name} = %{version}
-# NetworkManager-l2tp is not in Factory
-#Requires:   NetworkManager-l2tp
-#Supplements:packageand(%{name}:NetworkManager-l2tp)
+Requires:   NetworkManager-l2tp
+Supplements:packageand(%{name}:NetworkManager-l2tp)
 Provides:   NetworkManager-l2tp-frontend
 %if 0%{?suse_version} > 1314 && "%{suse_version}" != "1320"
 Provides:   plasma-nm-l2tp = %{version}
@@ -228,8 +226,7 @@
 Summary:VPN support for %{name}
 Group:  System/GUI/KDE
 Requires:   %{name} = %{version}
-# NetworkManager-iodine doesn't exist in Factory
-#Requires:   NetworkManager-iodine
+Requires:   NetworkManager-iodine
 Supplements:packageand(%{name}:NetworkManager-iodine)
 Provides:   NetworkManager-iodine-frontend
 
@@ -261,6 +258,7 @@
 %if %{with lang}
   %kf5_find_lang
 %endif
+
   %fdupes %{buildroot}
 
 %files

++ plasma-nm-5.12.4.tar.xz -> plasma-nm-5.12.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.12.4/CMakeLists.txt 
new/plasma-nm-5.12.5/CMakeLists.txt
--- old/plasma-nm-5.12.4/CMakeLists.txt 2018-03-27 13:23:56.0 +0200
+++ new/plasma-nm-5.12.5/CMakeLists.txt 2018-05-01 15:00:26.0 +0200
@@ -3,7 +3,7 @@
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
 
-set(PROJECT_VERSION "5.12.4")
+set(PROJECT_VERSION "5.12.5")
 set(PROJECT_VERSION_MAJOR 5)
 
 # set KDE specific information #
diff -urN '--exclude=CVS' 

commit plasma-nm5 for openSUSE:Factory

2018-03-30 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2018-03-30 12:05:34

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


Package is "plasma-nm5"

Fri Mar 30 12:05:34 2018 rev:69 rq:591845 version:5.12.4

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2018-03-09 
10:33:16.867446646 +0100
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2018-03-30 12:05:38.365602777 +0200
@@ -1,0 +2,10 @@
+Tue Mar 27 15:40:48 CEST 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.4
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.4.php
+- Changes since 5.12.3:
+  * None
+
+---

Old:

  plasma-nm-5.12.3.tar.xz

New:

  plasma-nm-5.12.4.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.Owef8R/_old  2018-03-30 12:05:38.921582673 +0200
+++ /var/tmp/diff_new_pack.Owef8R/_new  2018-03-30 12:05:38.925582529 +0200
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.12.3
+Version:5.12.4
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)

++ plasma-nm-5.12.3.tar.xz -> plasma-nm-5.12.4.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.12.3/CMakeLists.txt 
new/plasma-nm-5.12.4/CMakeLists.txt
--- old/plasma-nm-5.12.3/CMakeLists.txt 2018-03-06 13:57:35.0 +0100
+++ new/plasma-nm-5.12.4/CMakeLists.txt 2018-03-27 13:23:56.0 +0200
@@ -3,7 +3,7 @@
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
 
-set(PROJECT_VERSION "5.12.3")
+set(PROJECT_VERSION "5.12.4")
 set(PROJECT_VERSION_MAJOR 5)
 
 # set KDE specific information #
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-5.12.3/po/ca@valencia/plasmanetworkmanagement-kcm.po 
new/plasma-nm-5.12.4/po/ca@valencia/plasmanetworkmanagement-kcm.po
--- old/plasma-nm-5.12.3/po/ca@valencia/plasmanetworkmanagement-kcm.po  
2018-03-06 13:56:53.0 +0100
+++ new/plasma-nm-5.12.4/po/ca@valencia/plasmanetworkmanagement-kcm.po  
2018-03-27 13:23:23.0 +0200
@@ -85,7 +85,7 @@
 
 #: qml/main.qml:69
 msgid "Type here to search connections..."
-msgstr "Escriviu ací per a buscar les connexions..."
+msgstr "Escriviu ací per a cercar les connexions..."
 
 #: qml/main.qml:144
 msgid "Add new connection"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-5.12.3/po/ca@valencia/plasmanetworkmanagement-kded.po 
new/plasma-nm-5.12.4/po/ca@valencia/plasmanetworkmanagement-kded.po
--- old/plasma-nm-5.12.3/po/ca@valencia/plasmanetworkmanagement-kded.po 
2018-03-06 13:56:53.0 +0100
+++ new/plasma-nm-5.12.4/po/ca@valencia/plasmanetworkmanagement-kded.po 
2018-03-27 13:23:23.0 +0200
@@ -474,7 +474,7 @@
 "The VPN connection changed state because the device it was using was "
 "disconnected."
 msgstr ""
-"La connexió VPN ha canviat l'estat atès que el dispositiu usat s'ha "
+"La connexió VPN ha canviat l'estat atés que el dispositiu usat s'ha "
 "desconnectat."
 
 #: notification.cpp:497
@@ -761,4 +761,4 @@
 #: portalmonitor.cpp:57
 #, kde-format
 msgid "You need to log in to this network"
-msgstr "Cal iniciar la sessió en esta xarxa"
\ No newline at end of file
+msgstr "Cal iniciar la sessió en aquesta xarxa"
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-5.12.3/po/ca@valencia/plasmanetworkmanagement-libs.po 
new/plasma-nm-5.12.4/po/ca@valencia/plasmanetworkmanagement-libs.po
--- old/plasma-nm-5.12.3/po/ca@valencia/plasmanetworkmanagement-libs.po 
2018-03-06 13:56:53.0 +0100
+++ new/plasma-nm-5.12.4/po/ca@valencia/plasmanetworkmanagement-libs.po 
2018-03-27 13:23:23.0 +0200
@@ -368,7 +368,7 @@
 #: editor/settings/ipv4widget.cpp:443 editor/settings/ipv6widget.cpp:434
 #, kde-format
 msgid "Edit DNS search domains"
-msgstr "Edita els dominis per a la busca de DNS"
+msgstr "Edita els dominis per a la cerca de DNS"
 
 #: editor/settings/ipv6widget.cpp:53 editor/widgets/ipv6routeswidget.cpp:39
 #, kde-format
@@ -400,14 +400,14 @@
 "li>EMAIL: emailURI: uri, e.g. http://www.kde.org;
 ""
 msgstr ""
-"Esta entrada ha de ser una de les següents:DNS: nom o adreça "
-"IPEMAIL: correu electrònicURI: URI, p. 

commit plasma-nm5 for openSUSE:Factory

2018-03-09 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2018-03-09 10:33:14

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


Package is "plasma-nm5"

Fri Mar  9 10:33:14 2018 rev:68 rq:584069 version:5.12.3

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2018-02-28 
19:59:21.763278204 +0100
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2018-03-09 10:33:16.867446646 +0100
@@ -1,0 +2,10 @@
+Tue Mar  6 16:08:02 CET 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.3.php
+- Changes since 5.12.2:
+  * Use ScrollView from QtQuickControls (kde#390846)
+
+---

Old:

  plasma-nm-5.12.2.tar.xz

New:

  plasma-nm-5.12.3.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.bUK7Rs/_old  2018-03-09 10:33:17.499423895 +0100
+++ /var/tmp/diff_new_pack.bUK7Rs/_new  2018-03-09 10:33:17.499423895 +0100
@@ -19,13 +19,13 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.12.2
+Version:5.12.3
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)
 Group:  System/GUI/KDE
 Url:https://projects.kde.org/projects/playground/network/plasma-nm
-Source: plasma-nm-%{version}.tar.xz
+Source: 
http://download.kde.org/stable/plasma/%{version}/plasma-nm-%{version}.tar.xz
 BuildRequires:  NetworkManager-devel >= 0.9.8.4
 BuildRequires:  extra-cmake-modules >= 1.3.0
 BuildRequires:  fdupes

++ plasma-nm-5.12.2.tar.xz -> plasma-nm-5.12.3.tar.xz ++
 2482 lines of diff (skipped)




commit plasma-nm5 for openSUSE:Factory

2018-02-28 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2018-02-28 19:59:19

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


Package is "plasma-nm5"

Wed Feb 28 19:59:19 2018 rev:67 rq:579156 version:5.12.2

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2018-02-19 
12:55:21.846203024 +0100
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2018-02-28 19:59:21.763278204 +0100
@@ -1,0 +2,10 @@
+Wed Feb 21 23:57:08 CET 2018 - lbeltr...@kde.org
+
+- Update to 5.12.2
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.2.php
+- Changes since 5.12.1:
+  * None
+
+---

Old:

  plasma-nm-5.12.1.tar.xz

New:

  plasma-nm-5.12.2.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.O3Ka2f/_old  2018-02-28 19:59:22.663245640 +0100
+++ /var/tmp/diff_new_pack.O3Ka2f/_new  2018-02-28 19:59:22.667245496 +0100
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.12.1
+Version:5.12.2
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)

++ plasma-nm-5.12.1.tar.xz -> plasma-nm-5.12.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.12.1/CMakeLists.txt 
new/plasma-nm-5.12.2/CMakeLists.txt
--- old/plasma-nm-5.12.1/CMakeLists.txt 2018-02-13 15:24:18.0 +0100
+++ new/plasma-nm-5.12.2/CMakeLists.txt 2018-02-20 16:38:04.0 +0100
@@ -3,7 +3,7 @@
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
 
-set(PROJECT_VERSION "5.12.1")
+set(PROJECT_VERSION "5.12.2")
 set(PROJECT_VERSION_MAJOR 5)
 
 # set KDE specific information #
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-5.12.1/po/eu/plasmanetworkmanagement_openvpnui.po 
new/plasma-nm-5.12.2/po/eu/plasmanetworkmanagement_openvpnui.po
--- old/plasma-nm-5.12.1/po/eu/plasmanetworkmanagement_openvpnui.po 
1970-01-01 01:00:00.0 +0100
+++ new/plasma-nm-5.12.2/po/eu/plasmanetworkmanagement_openvpnui.po 
2018-02-20 16:37:24.0 +0100
@@ -0,0 +1,1189 @@
+# Translation of plasmanetworkmanagement_openvpnui.po to Euskara/Basque (eu).
+# Copyright (C) 2018, Free Software Foundation.
+# This file is distributed under the same license as kde-workspace package.
+# KDE euskaratzeko proiektuaren arduraduna .
+#
+# Translators:
+# Osoitz Elkorobarrutia , 2017.
+# Ander Elortondo , 2017.
+# Iñigo Salvador Azurmendi , 2018.
+msgid ""
+msgstr ""
+"Project-Id-Version: plasmanetworkmanagement_openvpnui\n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n;
+"POT-Creation-Date: 2017-11-16 03:32+0100\n"
+"PO-Revision-Date: 2018-02-17 21:45+0100\n"
+"Last-Translator: Iñigo Salvador Azurmendi \n"
+"Language-Team: Basque \n"
+"Language: eu\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Lokalize 2.0\n"
+
+#: openvpn.cpp:182
+#, kde-format
+msgid "Could not open file"
+msgstr "Ezin izan da fitxategia ireki"
+
+#: openvpn.cpp:189
+#, kde-format
+msgid "Do you want to copy your certificates to %1?"
+msgstr "Zure ziurtagiriak %1(e)ra kopiatu nahi dituzu?"
+
+#: openvpn.cpp:190
+#, kde-format
+msgid "Copy certificates"
+msgstr "Kopiatu ziurtagiriak"
+
+#: openvpn.cpp:238 openvpn.cpp:256 openvpn.cpp:488
+#, kde-format
+msgid "Unknown option: %1"
+msgstr "Aukera ezezaguna: %1"
+
+#: openvpn.cpp:241 openvpn.cpp:259 openvpn.cpp:275 openvpn.cpp:287
+#: openvpn.cpp:303 openvpn.cpp:384 openvpn.cpp:480 openvpn.cpp:508
+#, kde-format
+msgid "Invalid number of arguments (expected 1) in option: %1"
+msgstr "Argumentu kopuru baliogabea (1 espero zen) aukera honetan: %1"
+
+#: openvpn.cpp:272 openvpn.cpp:284
+#, kde-format
+msgid "Invalid size (should be between 0 and 0x) in option: %1"
+msgstr ""
+"Neurri baliogabea (0 eta 0x artekoa behar du izan) aukera honetan: %1"
+
+#: openvpn.cpp:300
+#, kde-format
+msgid "Invalid size (should be between 0 and 604800) in option: %1"
+msgstr ""
+"Tamaina baliogabea (0 eta 604800 artekoa behar du izan) aukera honetan: %1"
+
+#: openvpn.cpp:357
+#, kde-format
+msgid "Invalid proxy 

commit plasma-nm5 for openSUSE:Factory

2018-02-19 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2018-02-19 12:55:19

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


Package is "plasma-nm5"

Mon Feb 19 12:55:19 2018 rev:66 rq:577804 version:5.12.1

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2018-02-06 
16:45:12.531145058 +0100
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2018-02-19 12:55:21.846203024 +0100
@@ -1,0 +2,10 @@
+Tue Feb 13 16:25:29 CET 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.1
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.1.php
+- Changes since 5.12.0:
+  * None
+
+---

Old:

  plasma-nm-5.12.0.tar.xz

New:

  plasma-nm-5.12.1.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.4ZNk2H/_old  2018-02-19 12:55:23.650137966 +0100
+++ /var/tmp/diff_new_pack.4ZNk2H/_new  2018-02-19 12:55:23.654137821 +0100
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.12.0
+Version:5.12.1
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)

++ plasma-nm-5.12.0.tar.xz -> plasma-nm-5.12.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.12.0/CMakeLists.txt 
new/plasma-nm-5.12.1/CMakeLists.txt
--- old/plasma-nm-5.12.0/CMakeLists.txt 2018-02-01 15:10:29.0 +0100
+++ new/plasma-nm-5.12.1/CMakeLists.txt 2018-02-13 15:24:18.0 +0100
@@ -3,7 +3,7 @@
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
 
-set(PROJECT_VERSION "5.12.0")
+set(PROJECT_VERSION "5.12.1")
 set(PROJECT_VERSION_MAJOR 5)
 
 # set KDE specific information #
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-5.12.0/po/fi/plasmanetworkmanagement-libs.po 
new/plasma-nm-5.12.1/po/fi/plasmanetworkmanagement-libs.po
--- old/plasma-nm-5.12.0/po/fi/plasmanetworkmanagement-libs.po  2018-02-01 
15:08:35.0 +0100
+++ new/plasma-nm-5.12.1/po/fi/plasmanetworkmanagement-libs.po  2018-02-13 
15:23:18.0 +0100
@@ -1,7 +1,7 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
 # Lasse Liehu , 2013, 2014, 2015, 2016, 2017.
-# Tommi Nieminen , 2016, 2017.
+# Tommi Nieminen , 2016, 2017, 2018.
 #
 #
 msgid ""
@@ -9,7 +9,7 @@
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2018-01-05 03:18+0100\n"
-"PO-Revision-Date: 2017-12-26 10:22+0200\n"
+"PO-Revision-Date: 2018-01-22 17:38+0200\n"
 "Last-Translator: Tommi Nieminen \n"
 "Language-Team: Finnish \n"
 "Language: fi\n"
@@ -2191,29 +2191,25 @@
 #: models/creatableconnectionsmodel.cpp:185
 #: models/creatableconnectionsmodel.cpp:191
 #: models/creatableconnectionsmodel.cpp:197
-#, fuzzy, kde-format
-#| msgid "VPN connections"
+#, kde-format
 msgid "Virtual connections"
-msgstr "VPN-yhteydet"
+msgstr "Virtuaaliyhteydet"
 
 #: models/creatableconnectionsmodel.cpp:180
 #: models/creatableconnectionsmodel.cpp:186
-#, fuzzy, kde-format
-#| msgid "Some infiniband description"
+#, kde-format
 msgid "Some bond description"
-msgstr "Jokin infiniband-kuvaus"
+msgstr "Jokin kaistan kuvaus"
 
 #: models/creatableconnectionsmodel.cpp:192
-#, fuzzy, kde-format
-#| msgid "Some DSL description"
+#, kde-format
 msgid "Some team description"
-msgstr "Jokin DSL-kuvaus"
+msgstr "Jokin työryhmän kuvaus"
 
 #: models/creatableconnectionsmodel.cpp:198
-#, fuzzy, kde-format
-#| msgid "Some DSL description"
+#, kde-format
 msgid "Some vlan description"
-msgstr "Jokin DSL-kuvaus"
+msgstr "Jokin vlanin kuvaus"
 
 #: models/creatableconnectionsmodel.cpp:216
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-5.12.0/po/nn/plasmanetworkmanagement_openvpnui.po 
new/plasma-nm-5.12.1/po/nn/plasmanetworkmanagement_openvpnui.po
--- old/plasma-nm-5.12.0/po/nn/plasmanetworkmanagement_openvpnui.po 
2018-02-01 15:09:29.0 +0100
+++ new/plasma-nm-5.12.1/po/nn/plasmanetworkmanagement_openvpnui.po 
2018-02-13 15:23:51.0 +0100
@@ -6,7 +6,7 @@
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: 

commit plasma-nm5 for openSUSE:Factory

2018-02-06 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2018-02-06 16:45:09

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


Package is "plasma-nm5"

Tue Feb  6 16:45:09 2018 rev:65 rq:573049 version:5.12.0

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2018-01-22 
16:06:43.143054565 +0100
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2018-02-06 16:45:12.531145058 +0100
@@ -1,0 +2,10 @@
+Fri Feb  2 21:03:44 CET 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.0.php
+- Changes since 5.11.95:
+  * None
+
+---

Old:

  plasma-nm-5.11.95.tar.xz

New:

  plasma-nm-5.12.0.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.7hVOHd/_old  2018-02-06 16:45:13.155115860 +0100
+++ /var/tmp/diff_new_pack.7hVOHd/_new  2018-02-06 16:45:13.155115860 +0100
@@ -19,13 +19,13 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.11.95
+Version:5.12.0
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)
 Group:  System/GUI/KDE
 Url:https://projects.kde.org/projects/playground/network/plasma-nm
-Source: 
http://download.kde.org/unstable/plasma/%{version}/plasma-nm-%{version}.tar.xz
+Source: plasma-nm-%{version}.tar.xz
 BuildRequires:  NetworkManager-devel >= 0.9.8.4
 BuildRequires:  extra-cmake-modules >= 1.3.0
 BuildRequires:  fdupes

++ plasma-nm-5.11.95.tar.xz -> plasma-nm-5.12.0.tar.xz ++
 4282 lines of diff (skipped)




commit plasma-nm5 for openSUSE:Factory

2018-01-22 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2018-01-22 16:06:39

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


Package is "plasma-nm5"

Mon Jan 22 16:06:39 2018 rev:64 rq:566855 version:5.11.95

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2018-01-03 
13:37:15.352855684 +0100
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2018-01-22 16:06:43.143054565 +0100
@@ -1,0 +2,9 @@
+Mon Jan 15 15:54:07 CET 2018 - fab...@ritter-vogt.de
+
+- Update to 5.11.95
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.11.95.php
+- Too many changes to list here
+
+---

Old:

  plasma-nm-5.11.5.tar.xz

New:

  plasma-nm-5.11.95.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.OLgiGF/_old  2018-01-22 16:06:43.879020130 +0100
+++ /var/tmp/diff_new_pack.OLgiGF/_new  2018-01-22 16:06:43.883019943 +0100
@@ -19,13 +19,13 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.11.5
+Version:5.11.95
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)
 Group:  System/GUI/KDE
 Url:https://projects.kde.org/projects/playground/network/plasma-nm
-Source: 
http://download.kde.org/stable/plasma/%{version}/plasma-nm-%{version}.tar.xz
+Source: 
http://download.kde.org/unstable/plasma/%{version}/plasma-nm-%{version}.tar.xz
 BuildRequires:  NetworkManager-devel >= 0.9.8.4
 BuildRequires:  extra-cmake-modules >= 1.3.0
 BuildRequires:  fdupes

++ plasma-nm-5.11.5.tar.xz -> plasma-nm-5.11.95.tar.xz ++
 105038 lines of diff (skipped)




commit plasma-nm5 for openSUSE:Factory

2018-01-03 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2018-01-03 13:37:12

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


Package is "plasma-nm5"

Wed Jan  3 13:37:12 2018 rev:63 rq:561217 version:5.11.5

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2017-12-08 
12:47:45.802541042 +0100
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2018-01-03 13:37:15.352855684 +0100
@@ -1,0 +2,10 @@
+Tue Jan  2 16:40:09 CET 2018 - fab...@ritter-vogt.de
+
+- Update to 5.11.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.11.5.php
+- Changes since 5.11.4:
+  * None
+
+---

Old:

  plasma-nm-5.11.4.tar.xz

New:

  plasma-nm-5.11.5.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.GPp9QN/_old  2018-01-03 13:37:15.924665284 +0100
+++ /var/tmp/diff_new_pack.GPp9QN/_new  2018-01-03 13:37:15.928663953 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package plasma-nm5
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # 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.11.4
+Version:5.11.5
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)

++ plasma-nm-5.11.4.tar.xz -> plasma-nm-5.11.5.tar.xz ++
 1891 lines of diff (skipped)




commit plasma-nm5 for openSUSE:Factory

2017-12-08 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2017-12-08 12:47:42

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


Package is "plasma-nm5"

Fri Dec  8 12:47:42 2017 rev:62 rq:547213 version:5.11.4

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2017-11-10 
14:50:04.903952577 +0100
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2017-12-08 12:47:45.802541042 +0100
@@ -1,0 +2,10 @@
+Thu Nov 30 10:47:38 CET 2017 - fab...@ritter-vogt.de
+
+- Update to 5.11.4
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.11.4.php
+- Changes since 5.11.3:
+  * None
+
+---

Old:

  plasma-nm-5.11.3.tar.xz

New:

  plasma-nm-5.11.4.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.42OEra/_old  2017-12-08 12:47:46.450517640 +0100
+++ /var/tmp/diff_new_pack.42OEra/_new  2017-12-08 12:47:46.454517495 +0100
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.11.3
+Version:5.11.4
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)

++ plasma-nm-5.11.3.tar.xz -> plasma-nm-5.11.4.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.11.3/CMakeLists.txt 
new/plasma-nm-5.11.4/CMakeLists.txt
--- old/plasma-nm-5.11.3/CMakeLists.txt 2017-11-07 14:04:10.0 +0100
+++ new/plasma-nm-5.11.4/CMakeLists.txt 2017-11-28 13:38:22.0 +0100
@@ -3,7 +3,7 @@
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
 
-set(PROJECT_VERSION "5.11.3")
+set(PROJECT_VERSION "5.11.4")
 set(PROJECT_VERSION_MAJOR 5)
 set(PLASMANM_VERSION_STRING ${PROJECT_VERSION} )
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-5.11.3/po/ca/plasmanetworkmanagement-kded.po 
new/plasma-nm-5.11.4/po/ca/plasmanetworkmanagement-kded.po
--- old/plasma-nm-5.11.3/po/ca/plasmanetworkmanagement-kded.po  2017-11-07 
14:02:53.0 +0100
+++ new/plasma-nm-5.11.4/po/ca/plasmanetworkmanagement-kded.po  2017-11-28 
13:36:46.0 +0100
@@ -3,15 +3,15 @@
 # This file is distributed under the license LGPL version 2.1 or
 # version 3 or later versions approved by the membership of KDE e.V.
 #
-# Antoni Bella Pérez , 2014, 2015, 2016.
+# Antoni Bella Pérez , 2014, 2015, 2016, 2017.
 # Josep Ma. Ferrer , 2015, 2016, 2017.
 msgid ""
 msgstr ""
 "Project-Id-Version: plasmanetworkmanagement-kded\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2017-05-26 03:06+0200\n"
-"PO-Revision-Date: 2017-11-06 22:54+0100\n"
-"Last-Translator: Josep Ma. Ferrer \n"
+"PO-Revision-Date: 2017-11-07 23:19+0100\n"
+"Last-Translator: Antoni Bella Pérez \n"
 "Language-Team: Catalan \n"
 "Language: ca\n"
 "MIME-Version: 1.0\n"
@@ -474,7 +474,7 @@
 "The VPN connection changed state because the device it was using was "
 "disconnected."
 msgstr ""
-"La connexió VPN ha canviat l'estat atès que el dispositiu utilitzat s'ha "
+"La connexió VPN ha canviat l'estat atès que el dispositiu usat s'ha "
 "desconnectat."
 
 #: notification.cpp:497
@@ -513,7 +513,7 @@
 #: notification.cpp:515
 #, kde-format
 msgid "Authentication to the VPN server failed."
-msgstr "L'autenticació al servidor VPN ha fallat."
+msgstr "L'autenticació amb el servidor VPN ha fallat."
 
 #: notification.cpp:518
 #, kde-format
@@ -636,7 +636,7 @@
 "The mobile broadband device '%1' requires a %2 code before it can be used."
 msgstr ""
 "El dispositiu mòbil de banda ampla «%1» requereix el codi %2 abans de poder-"
-"se utilitzar."
+"se usar."
 
 #: pindialog.cpp:97 pindialog.cpp:129
 #, kde-format
@@ -740,7 +740,7 @@
 "used."
 msgstr ""
 "El dispositiu mòbil de banda ampla «%1» requereix el codi PIN de la SIM "
-"abans de poder-se utilitzar."
+"abans de poder-se usar."
 
 #. i18n: ectx: property (text), widget (QLabel, pukLabel)
 #: pinwidget.ui:133
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-5.11.3/po/ca@valencia/plasmanetworkmanagement-kded.po 
new/plasma-nm-5.11.4/po/ca@valencia/plasmanetworkmanagement-kded.po
--- old/plasma-nm-5.11.3/po/ca@valencia/plasmanetworkmanagement-kded.po 
2017-11-07 14:02:53.0 +0100
+++ 

commit plasma-nm5 for openSUSE:Factory

2017-11-10 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2017-11-10 14:50:02

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


Package is "plasma-nm5"

Fri Nov 10 14:50:02 2017 rev:61 rq:539726 version:5.11.3

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2017-10-27 
13:50:58.317323667 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2017-11-10 14:50:04.903952577 +0100
@@ -1,0 +2,12 @@
+Tue Nov  7 15:15:49 CET 2017 - fab...@ritter-vogt.de
+
+- Update to 5.11.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.11.3.php
+- Changes since 5.11.2:
+  * Do not set password field as readonly, it doesn't make sense
+  * Disable password field when password is not needed (kde#386426)
+  * Make sure we store password for all users when kwallet is diabled 
(kde#386343)
+
+---

Old:

  plasma-nm-5.11.2.tar.xz

New:

  plasma-nm-5.11.3.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.Lqjomi/_old  2017-11-10 14:50:06.907880115 +0100
+++ /var/tmp/diff_new_pack.Lqjomi/_new  2017-11-10 14:50:06.907880115 +0100
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.11.2
+Version:5.11.3
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)

++ plasma-nm-5.11.2.tar.xz -> plasma-nm-5.11.3.tar.xz ++
 1988 lines of diff (skipped)




commit plasma-nm5 for openSUSE:Factory

2017-10-27 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2017-10-27 13:50:56

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


Package is "plasma-nm5"

Fri Oct 27 13:50:56 2017 rev:60 rq:536674 version:5.11.2

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2017-10-23 
16:24:21.597938541 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2017-10-27 13:50:58.317323667 +0200
@@ -1,0 +2,11 @@
+Tue Oct 24 18:14:20 CEST 2017 - fab...@ritter-vogt.de
+
+- Update to 5.11.2
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.11.2.php
+- Changes since 5.11.1:
+  * Do not load initially selected connection twice BUG: 379756 (kde#379756)
+  * Fix focus in DNS servers and DNS domains dialogs BUG: 385839 (kde#385839)
+
+---

Old:

  plasma-nm-5.11.1.tar.xz

New:

  plasma-nm-5.11.2.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.mxDR7v/_old  2017-10-27 13:50:59.345275620 +0200
+++ /var/tmp/diff_new_pack.mxDR7v/_new  2017-10-27 13:50:59.349275433 +0200
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.11.1
+Version:5.11.2
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)

++ plasma-nm-5.11.1.tar.xz -> plasma-nm-5.11.2.tar.xz ++
 3155 lines of diff (skipped)




commit plasma-nm5 for openSUSE:Factory

2017-10-23 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2017-10-23 16:24:16

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


Package is "plasma-nm5"

Mon Oct 23 16:24:16 2017 rev:59 rq:534572 version:5.11.1

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2017-10-09 
19:39:35.978319604 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2017-10-23 16:24:21.597938541 +0200
@@ -1,0 +2,10 @@
+Tue Oct 17 17:19:48 CEST 2017 - fab...@ritter-vogt.de
+
+- Update to 5.11.1
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.11.1.php
+- Changes since 5.11.0:
+  * None
+
+---

Old:

  plasma-nm-5.11.0.tar.xz

New:

  plasma-nm-5.11.1.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.MZIH1r/_old  2017-10-23 16:24:22.253907830 +0200
+++ /var/tmp/diff_new_pack.MZIH1r/_new  2017-10-23 16:24:22.257907643 +0200
@@ -19,13 +19,13 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.11.0
+Version:5.11.1
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)
 Group:  System/GUI/KDE
 Url:https://projects.kde.org/projects/playground/network/plasma-nm
-Source: plasma-nm-%{version}.tar.xz
+Source: 
http://download.kde.org/stable/plasma/%{version}/plasma-nm-%{version}.tar.xz
 BuildRequires:  NetworkManager-devel >= 0.9.8.4
 BuildRequires:  extra-cmake-modules >= 1.3.0
 BuildRequires:  fdupes
@@ -261,7 +261,7 @@
 %if %{with lang}
   %kf5_find_lang
 %endif
-  %fdupes -s %{buildroot}
+  %fdupes %{buildroot}
 
 %files
 %defattr(-,root,root)

++ plasma-nm-5.11.0.tar.xz -> plasma-nm-5.11.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.11.0/CMakeLists.txt 
new/plasma-nm-5.11.1/CMakeLists.txt
--- old/plasma-nm-5.11.0/CMakeLists.txt 2017-10-05 14:50:23.0 +0200
+++ new/plasma-nm-5.11.1/CMakeLists.txt 2017-10-17 13:03:42.0 +0200
@@ -3,7 +3,7 @@
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
 
-set(PROJECT_VERSION "5.11.0")
+set(PROJECT_VERSION "5.11.1")
 set(PROJECT_VERSION_MAJOR 5)
 set(PLASMANM_VERSION_STRING ${PROJECT_VERSION} )
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-5.11.0/po/gl/plasmanetworkmanagement_l2tpui.po 
new/plasma-nm-5.11.1/po/gl/plasmanetworkmanagement_l2tpui.po
--- old/plasma-nm-5.11.0/po/gl/plasmanetworkmanagement_l2tpui.po
2017-10-05 14:49:45.0 +0200
+++ new/plasma-nm-5.11.1/po/gl/plasmanetworkmanagement_l2tpui.po
2017-10-17 13:00:12.0 +0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2017-07-11 03:22+0200\n"
-"PO-Revision-Date: 2017-09-08 20:29+0100\n"
+"PO-Revision-Date: 2017-10-11 05:55+0100\n"
 "Last-Translator: Adrián Chaves (Gallaecio) \n"
 "Language-Team: Galician \n"
 "Language: gl\n"
@@ -342,7 +342,7 @@
 #: l2t.ui:260
 #, kde-format
 msgid "Use MPPE Encryption"
-msgstr "Empregar o cifrado MMPE."
+msgstr "Empregar o cifrado MPPE."
 
 #. i18n: ectx: property (text), widget (QLabel, lblMMPEcrypto)
 #: l2t.ui:281
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-5.11.0/po/gl/plasmanetworkmanagement_openvpnui.po 
new/plasma-nm-5.11.1/po/gl/plasmanetworkmanagement_openvpnui.po
--- old/plasma-nm-5.11.0/po/gl/plasmanetworkmanagement_openvpnui.po 
2017-10-05 14:49:45.0 +0200
+++ new/plasma-nm-5.11.1/po/gl/plasmanetworkmanagement_openvpnui.po 
2017-10-17 13:00:12.0 +0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2017-04-16 02:53+0200\n"
-"PO-Revision-Date: 2017-09-08 19:45+0100\n"
+"PO-Revision-Date: 2017-10-11 05:55+0100\n"
 "Last-Translator: Adrián Chaves (Gallaecio) \n"
 "Language-Team: Galician \n"
 "Language: gl\n"
@@ -961,7 +961,7 @@
 #: openvpnadvanced.ui:812
 #, kde-format
 msgid "Remote peer certificate nsCert designation:"
-msgstr "Designación de nsCertType do certificado do parceiro remoto:"
+msgstr "Designación de nsCert do certificado do parceiro remoto:"
 
 #. i18n: ectx: property (toolTip), widget (QGroupBox, useExtraTlsAuth)
 #: 

commit plasma-nm5 for openSUSE:Factory

2017-10-09 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2017-10-09 19:39:34

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


Package is "plasma-nm5"

Mon Oct  9 19:39:34 2017 rev:58 rq:532046 version:5.11.0

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2017-08-24 
18:09:51.252937398 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2017-10-09 19:39:35.978319604 +0200
@@ -1,0 +2,35 @@
+Thu Oct  5 12:39:18 CEST 2017 - fab...@ritter-vogt.de
+
+- Update to 5.11.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.11.0.php
+- Changes since 5.10.95:
+  * Don't duplicate UI option for automatic speed detection (kde#383505)
+  * Remove unused identity model
+  * It makes sense to show VPN connections only when we are connected to 
internet
+
+---
+Thu Sep 14 14:29:07 CEST 2017 - fab...@ritter-vogt.de
+
+- Update to 5.10.95
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.10.95.php
+- Changes since 5.10.5:
+  * Drop the old legacy connection editor
+  * Add option to allow managing virtual connections (kde#376664)
+  * Summary: L2TP: pre-sharedkey should be mask
+  * Add support for fortisslvpn
+  * Openconnect: make sure the UI fits into the password dialog (kde#380399)
+  *  UI updates for NetworkManager-l2tp 1.2.6
+  * Add missing file with UI for configuration
+  * Allow to have wider password dialog while preffering minimum size 
(kde#380399)
+  * Openconnect: make sure we accept the dialog (kde#380299)
+  * Openconnect: Add option to select protocol
+  * Properly pass specific vpn type when selecting new connection by double 
click
+  * Openconnect (juniper): Properly make sure we are compatible with the rest 
of nm tools
+  * Openconnect (juniper): Make sure we are compatible with the rest of nm 
tools (kde#380244)
+  * Add option to disable unlocking modem on detection (kde#380150)
+
+---

Old:

  plasma-nm-5.10.5.tar.xz

New:

  plasma-nm-5.11.0.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.BG9JCa/_old  2017-10-09 19:39:36.590292706 +0200
+++ /var/tmp/diff_new_pack.BG9JCa/_new  2017-10-09 19:39:36.594292531 +0200
@@ -19,13 +19,13 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.10.5
+Version:5.11.0
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)
 Group:  System/GUI/KDE
 Url:https://projects.kde.org/projects/playground/network/plasma-nm
-Source: 
http://download.kde.org/stable/plasma/%{version}/plasma-nm-%{version}.tar.xz
+Source: plasma-nm-%{version}.tar.xz
 BuildRequires:  NetworkManager-devel >= 0.9.8.4
 BuildRequires:  extra-cmake-modules >= 1.3.0
 BuildRequires:  fdupes
@@ -236,6 +236,17 @@
 %description iodine
 Iodine (VPN through DNS tunnel) plugin for plasma-nm components.
 
+%package fortisslvpn
+Summary:FortiGate SSL VPN support for %{name}
+Group:  System/GUI/KDE
+Requires:   %{name} = %{version}
+# NetworkManager-fortisslvpn doesn't exist in Factory
+#Requires:   NetworkManager-fortisslvpn
+Supplements:packageand(%{name}:NetworkManager-fortisslvpn)
+Provides:   NetworkManager-fortisslvpn-frontend
+
+%description fortisslvpn
+FortiGate SSL VPN plugin for plasma-nm components.
 
 %lang_package
 %prep
@@ -250,21 +261,17 @@
 %if %{with lang}
   %kf5_find_lang
 %endif
-  %suse_update_desktop_file -r kde5-nm-connection-editor KDE System 
X-SuSE-ServiceConfiguration
-  %fdupes %{buildroot}
+  %fdupes -s %{buildroot}
 
 %files
 %defattr(-,root,root)
 %doc COPYING*
-%{_kf5_bindir}/kde5-nm-connection-editor
 %{_kf5_libdir}/libplasmanm_editor.so
 %{_kf5_libdir}/libplasmanm_internal.so
 %dir %{_kf5_plugindir}/kf5
 %dir %{_kf5_plugindir}/kf5/kded
 %{_kf5_plugindir}/kf5/kded/networkmanagement.so
 %{_kf5_qmldir}/
-%{_kf5_applicationsdir}/kde5-nm-connection-editor.desktop
-%{_kf5_sharedir}/kxmlgui5/
 %{_kf5_notifydir}/
 %{_kf5_servicesdir}/plasma-applet*.desktop
 %{_kf5_servicetypesdir}/
@@ -336,6 +343,12 @@
 %{_kf5_plugindir}/*_iodineui.so
 %{_kf5_servicesdir}/plasmanetworkmanagement_iodineui.desktop
 
+%files fortisslvpn
+%defattr(-,root,root)
+%doc COPYING*
+%{_kf5_plugindir}/l*_fortisslvpnui.so
+%{_kf5_servicesdir}/plasmanetworkmanagement_fortisslvpnui.desktop
+
 %if %{with lang}

commit plasma-nm5 for openSUSE:Factory

2017-08-24 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2017-08-24 18:09:45

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


Package is "plasma-nm5"

Thu Aug 24 18:09:45 2017 rev:57 rq:518278 version:5.10.5

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2017-08-12 
19:34:24.543983528 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2017-08-24 18:09:51.252937398 +0200
@@ -1,0 +2,10 @@
+Tue Aug 22 19:11:31 CEST 2017 - fab...@ritter-vogt.de
+
+- Update to 5.10.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.10.5.php
+- Changes since 5.10.4:
+  * None
+
+---

Old:

  plasma-nm-5.10.4.tar.xz

New:

  plasma-nm-5.10.5.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.fo8xnV/_old  2017-08-24 18:09:51.972836039 +0200
+++ /var/tmp/diff_new_pack.fo8xnV/_new  2017-08-24 18:09:51.976835475 +0200
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.10.4
+Version:5.10.5
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)

++ plasma-nm-5.10.4.tar.xz -> plasma-nm-5.10.5.tar.xz ++
 7053 lines of diff (skipped)




commit plasma-nm5 for openSUSE:Factory

2017-08-12 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2017-08-12 19:34:21

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


Package is "plasma-nm5"

Sat Aug 12 19:34:21 2017 rev:56 rq:514519 version:5.10.4

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2017-07-25 
11:38:13.290768166 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2017-08-12 19:34:24.543983528 +0200
@@ -1,0 +2,6 @@
+Fri Aug  4 06:58:10 UTC 2017 - fab...@ritter-vogt.de
+
+- Don't use symlinks for %fdupes, it's not allowed for kpackages
+  (boo#1052119)
+
+---



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.k8xbRU/_old  2017-08-12 19:34:26.859658800 +0200
+++ /var/tmp/diff_new_pack.k8xbRU/_new  2017-08-12 19:34:26.899653191 +0200
@@ -251,7 +251,7 @@
   %kf5_find_lang
 %endif
   %suse_update_desktop_file -r kde5-nm-connection-editor KDE System 
X-SuSE-ServiceConfiguration
-  %fdupes -s %{buildroot}
+  %fdupes %{buildroot}
 
 %files
 %defattr(-,root,root)




commit plasma-nm5 for openSUSE:Factory

2017-07-25 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2017-07-25 11:38:10

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


Package is "plasma-nm5"

Tue Jul 25 11:38:10 2017 rev:55 rq:511282 version:5.10.4

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2017-07-02 
13:35:55.714095575 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2017-07-25 11:38:13.290768166 +0200
@@ -1,0 +2,10 @@
+Tue Jul 18 16:14:48 CEST 2017 - fab...@ritter-vogt.de
+
+- Update to 5.10.4
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.10.4.php
+- Changes since 5.10.3:
+  * None
+
+---

Old:

  plasma-nm-5.10.3.tar.xz

New:

  plasma-nm-5.10.4.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.cjO8ko/_old  2017-07-25 11:38:13.822693048 +0200
+++ /var/tmp/diff_new_pack.cjO8ko/_new  2017-07-25 11:38:13.826692483 +0200
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.10.3
+Version:5.10.4
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)

++ plasma-nm-5.10.3.tar.xz -> plasma-nm-5.10.4.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.10.3/CMakeLists.txt 
new/plasma-nm-5.10.4/CMakeLists.txt
--- old/plasma-nm-5.10.3/CMakeLists.txt 2017-06-27 11:58:48.0 +0200
+++ new/plasma-nm-5.10.4/CMakeLists.txt 2017-07-18 13:39:15.0 +0200
@@ -3,7 +3,7 @@
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
 
-set(PROJECT_VERSION "5.10.3")
+set(PROJECT_VERSION "5.10.4")
 set(PROJECT_VERSION_MAJOR 5)
 set(PLASMANM_VERSION_STRING ${PROJECT_VERSION} )
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.10.3/po/fr/kde5-nm-connection-editor.po 
new/plasma-nm-5.10.4/po/fr/kde5-nm-connection-editor.po
--- old/plasma-nm-5.10.3/po/fr/kde5-nm-connection-editor.po 2017-06-27 
11:58:28.0 +0200
+++ new/plasma-nm-5.10.4/po/fr/kde5-nm-connection-editor.po 2017-07-18 
13:38:18.0 +0200
@@ -1,21 +1,22 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
 # Thomas Vergnaud , 2015.
+# Vincent Pinon , 2017.
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2017-04-11 05:31+0200\n"
-"PO-Revision-Date: 2015-08-29 10:09+0200\n"
-"Last-Translator: Thomas Vergnaud \n"
-"Language-Team: French \n"
+"PO-Revision-Date: 2017-07-03 17:48+0100\n"
+"Last-Translator: Vincent Pinon \n"
+"Language-Team: French \n"
 "Language: fr\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-Generator: Lokalize 1.5\n"
+"X-Generator: Lokalize 2.0\n"
 "X-Environment: kde\n"
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
@@ -198,7 +199,7 @@
 #: kde5-nm-connection-editorui.rc:23
 #, kde-format
 msgid "Main Toolbar"
-msgstr "Barre d'outil principale"
+msgstr "Barre principale"
 
 #: main.cpp:40
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-5.10.3/po/fr/plasma_applet_org.kde.plasma.networkmanagement.po 
new/plasma-nm-5.10.4/po/fr/plasma_applet_org.kde.plasma.networkmanagement.po
--- 
old/plasma-nm-5.10.3/po/fr/plasma_applet_org.kde.plasma.networkmanagement.po
2017-06-27 11:58:28.0 +0200
+++ 
new/plasma-nm-5.10.4/po/fr/plasma_applet_org.kde.plasma.networkmanagement.po
2017-07-18 13:38:18.0 +0200
@@ -1,6 +1,7 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
 # Thomas Vergnaud , 2014, 2015, 2016.
+# Vincent Pinon , 2017.
 #
 msgid ""
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-5.10.3/po/fr/plasmanetworkmanagement-kcm.po 
new/plasma-nm-5.10.4/po/fr/plasmanetworkmanagement-kcm.po
--- old/plasma-nm-5.10.3/po/fr/plasmanetworkmanagement-kcm.po   2017-06-27 
11:58:28.0 +0200
+++ 

commit plasma-nm5 for openSUSE:Factory

2017-07-02 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2017-07-02 13:35:54

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


Package is "plasma-nm5"

Sun Jul  2 13:35:54 2017 rev:54 rq:506571 version:5.10.3

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2017-06-16 
10:51:45.285079608 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2017-07-02 13:35:55.714095575 +0200
@@ -1,0 +2,10 @@
+Tue Jun 27 17:51:28 CEST 2017 - fab...@ritter-vogt.de
+
+- Update to 5.10.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.10.3.php
+- Changes since 5.10.2:
+  * None
+
+---

Old:

  plasma-nm-5.10.2.tar.xz

New:

  plasma-nm-5.10.3.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.pyKW2m/_old  2017-07-02 13:35:56.278016055 +0200
+++ /var/tmp/diff_new_pack.pyKW2m/_new  2017-07-02 13:35:56.282015491 +0200
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.10.2
+Version:5.10.3
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)

++ plasma-nm-5.10.2.tar.xz -> plasma-nm-5.10.3.tar.xz ++
 1866 lines of diff (skipped)




commit plasma-nm5 for openSUSE:Factory

2017-06-16 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2017-06-16 10:51:42

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


Package is "plasma-nm5"

Fri Jun 16 10:51:42 2017 rev:53 rq:503600 version:5.10.2

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2017-06-10 
17:56:25.693846002 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2017-06-16 10:51:45.285079608 +0200
@@ -1,0 +2,10 @@
+Tue Jun 13 21:35:01 CEST 2017 - fab...@ritter-vogt.de
+
+- Update to 5.10.2
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.10.2.php
+- Changes since 5.10.1:
+  * Openconnect: make sure the UI fits into the password dialog (kde#380399)
+
+---

Old:

  plasma-nm-5.10.1.tar.xz

New:

  plasma-nm-5.10.2.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.fNR39K/_old  2017-06-16 10:51:45.864997974 +0200
+++ /var/tmp/diff_new_pack.fNR39K/_new  2017-06-16 10:51:45.868997411 +0200
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.10.1
+Version:5.10.2
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)

++ plasma-nm-5.10.1.tar.xz -> plasma-nm-5.10.2.tar.xz ++
 4269 lines of diff (skipped)




commit plasma-nm5 for openSUSE:Factory

2017-06-10 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2017-06-10 17:56:20

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


Package is "plasma-nm5"

Sat Jun 10 17:56:20 2017 rev:52 rq:501500 version:5.10.1

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2017-06-01 
16:26:54.460419436 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2017-06-10 17:56:25.693846002 +0200
@@ -1,0 +2,15 @@
+Tue Jun  6 17:19:56 CEST 2017 - fab...@ritter-vogt.de
+
+- Update to 5.10.1
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.10.1.php
+- Changes since 5.10.0:
+  * Restrict shared connections to permanent hardware address (kde#380379)
+  * Allow to have wider password dialog while preffering minimum size 
(kde#380399)
+  * Openconnect: make sure we accept the dialog (kde#380299)
+  * Properly pass specific vpn type when selecting new connection by double 
click
+  * Openconnect (juniper): Properly make sure we are compatible with the rest 
of nm tools
+  * Openconnect (juniper): Make sure we are compatible with the rest of nm 
tools (kde#380244)
+
+---

Old:

  plasma-nm-5.10.0.tar.xz

New:

  plasma-nm-5.10.1.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.E9oPbQ/_old  2017-06-10 17:56:26.293761257 +0200
+++ /var/tmp/diff_new_pack.E9oPbQ/_new  2017-06-10 17:56:26.297760692 +0200
@@ -19,13 +19,13 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.10.0
+Version:5.10.1
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)
 Group:  System/GUI/KDE
 Url:https://projects.kde.org/projects/playground/network/plasma-nm
-Source: plasma-nm-%{version}.tar.xz
+Source: 
http://download.kde.org/stable/plasma/%{version}/plasma-nm-%{version}.tar.xz
 BuildRequires:  NetworkManager-devel >= 0.9.8.4
 BuildRequires:  extra-cmake-modules >= 1.3.0
 BuildRequires:  fdupes

++ plasma-nm-5.10.0.tar.xz -> plasma-nm-5.10.1.tar.xz ++
 3202 lines of diff (skipped)




commit plasma-nm5 for openSUSE:Factory

2017-06-01 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2017-06-01 16:26:53

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


Package is "plasma-nm5"

Thu Jun  1 16:26:53 2017 rev:51 rq:498820 version:5.10.0

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2017-04-30 
21:14:24.384994532 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2017-06-01 16:26:54.460419436 +0200
@@ -1,0 +2,28 @@
+Fri May 26 14:10:33 CEST 2017 - fab...@ritter-vogt.de
+
+- Update to 5.10.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.10.0.php
+- Changes since 5.9.95:
+  * None
+
+---
+Thu May 11 20:26:33 CEST 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.95
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.9.95.php
+- Changes since 5.9.5:
+  * Workaround to fix PasswordDialog's focus. (kde#379279)
+  * Remove option to set network type in gsm configuration (kde#379400)
+  * Improve password dialogs
+  * Fix minor typo
+  * OpenVPN: don't require setting to be non-empty for advanced configuration
+  * OpenVPN: add new properties (sync with NM) (kde#378648)
+  * Simplify connection item delegate
+  * OpenVPN: Remove previously configured secrets to avoid passing them back 
(kde#375170)
+  * KCM: Do not use Plasma components as the colors are not consistent 
(kde#374905)
+
+---

Old:

  plasma-nm-5.9.5.tar.xz

New:

  plasma-nm-5.10.0.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.ENxxP5/_old  2017-06-01 16:26:55.064334281 +0200
+++ /var/tmp/diff_new_pack.ENxxP5/_new  2017-06-01 16:26:55.068333717 +0200
@@ -19,13 +19,13 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.9.5
+Version:5.10.0
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)
 Group:  System/GUI/KDE
 Url:https://projects.kde.org/projects/playground/network/plasma-nm
-Source: 
http://download.kde.org/stable/plasma/%{version}/plasma-nm-%{version}.tar.xz
+Source: plasma-nm-%{version}.tar.xz
 BuildRequires:  NetworkManager-devel >= 0.9.8.4
 BuildRequires:  extra-cmake-modules >= 1.3.0
 BuildRequires:  fdupes
@@ -59,9 +59,7 @@
 BuildRequires:  cmake(Qt5Quick) >= 5.4.0
 BuildRequires:  cmake(Qt5UiTools) >= 5.4.0
 BuildRequires:  cmake(Qt5Widgets) >= 5.4.0
-%if 0%{?suse_version} > 1314 && "%{suse_version}" != "1320"
 BuildRequires:  pkgconfig(openconnect) >= 5.2
-%endif
 Requires:   NetworkManager
 Requires:   kded
 Requires:   kwalletd5
@@ -122,7 +120,6 @@
 %description vpnc
 vpnc plugin for plasma-nm components.
 
-%if 0%{?suse_version} > 1314 && "%{suse_version}" != "1320"
 %package openconnect
 Summary:OpenConnect support for %{name}
 Group:  System/GUI/KDE
@@ -140,8 +137,6 @@
 %description openconnect
 OpenConnect plugin for plasma-nm components.
 
-%endif
-
 %package openswan
 Summary:Openswan support for %{name}
 Group:  System/GUI/KDE
@@ -292,14 +287,12 @@
 %{_kf5_plugindir}/*_vpncui.so
 %{_kf5_servicesdir}/plasmanetworkmanagement_vpncui.desktop
 
-%if 0%{?suse_version} > 1314 && "%{suse_version}" != "1320"
 %files openconnect
 %defattr(-,root,root)
 %doc COPYING*
 %{_kf5_plugindir}/*_openconnectui.so
 %{_kf5_servicesdir}/plasmanetworkmanagement_openconnectui.desktop
 %{_kf5_servicesdir}/plasmanetworkmanagement_openconnect_juniperui.desktop
-%endif
 
 %files openswan
 %defattr(-,root,root)

++ plasma-nm-5.9.5.tar.xz -> plasma-nm-5.10.0.tar.xz ++
 70309 lines of diff (skipped)




commit plasma-nm5 for openSUSE:Factory

2017-04-30 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2017-04-30 21:14:18

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


Package is "plasma-nm5"

Sun Apr 30 21:14:18 2017 rev:50 rq:491311 version:5.9.5

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2017-03-28 
15:16:31.793940005 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2017-04-30 21:14:24.384994532 +0200
@@ -1,0 +2,11 @@
+Tue Apr 25 18:58:07 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.9.5
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.9.5.php
+- Changes since 5.9.4:
+  * Missing include
+  * Set auto-negotiate to true for newly created wired connections (kde#378554)
+
+---

Old:

  plasma-nm-5.9.4.tar.xz

New:

  plasma-nm-5.9.5.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.s86psg/_old  2017-04-30 21:14:25.256871618 +0200
+++ /var/tmp/diff_new_pack.s86psg/_new  2017-04-30 21:14:25.260871054 +0200
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.9.4
+Version:5.9.5
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)

++ plasma-nm-5.9.4.tar.xz -> plasma-nm-5.9.5.tar.xz ++
 11043 lines of diff (skipped)




commit plasma-nm5 for openSUSE:Factory

2017-03-28 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2017-03-28 15:16:31

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


Package is "plasma-nm5"

Tue Mar 28 15:16:31 2017 rev:49 rq:482120 version:5.9.4

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2017-03-03 
17:28:12.603545207 +0100
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2017-03-28 15:16:31.793940005 +0200
@@ -1,0 +2,10 @@
+Tue Mar 21 19:21:48 CET 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.4
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.9.4.php
+- Changes since 5.9.3:
+  * WiredSetting: Speed has to be set when auto-negotiation is off (kde#376018)
+
+---

Old:

  plasma-nm-5.9.3.tar.xz

New:

  plasma-nm-5.9.4.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.PCwkep/_old  2017-03-28 15:16:32.493840866 +0200
+++ /var/tmp/diff_new_pack.PCwkep/_new  2017-03-28 15:16:32.497840300 +0200
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.9.3
+Version:5.9.4
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)

++ plasma-nm-5.9.3.tar.xz -> plasma-nm-5.9.4.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.9.3/CMakeLists.txt 
new/plasma-nm-5.9.4/CMakeLists.txt
--- old/plasma-nm-5.9.3/CMakeLists.txt  2017-02-28 14:05:15.0 +0100
+++ new/plasma-nm-5.9.4/CMakeLists.txt  2017-03-21 15:03:14.0 +0100
@@ -3,7 +3,7 @@
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
 
-set(PROJECT_VERSION "5.9.3")
+set(PROJECT_VERSION "5.9.4")
 set(PROJECT_VERSION_MAJOR 5)
 set(PLASMANM_VERSION_STRING ${PROJECT_VERSION} )
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.9.3/applet/metadata.desktop 
new/plasma-nm-5.9.4/applet/metadata.desktop
--- old/plasma-nm-5.9.3/applet/metadata.desktop 2017-02-28 14:04:20.0 
+0100
+++ new/plasma-nm-5.9.4/applet/metadata.desktop 2017-03-21 15:02:22.0 
+0100
@@ -12,6 +12,7 @@
 Name[en_GB]=Networks
 Name[es]=Redes
 Name[et]=Võrgud
+Name[eu]=Sareak
 Name[fi]=Verkot
 Name[fr]=Réseaux
 Name[gl]=Redes
@@ -56,6 +57,7 @@
 Comment[en_GB]=Network status and control
 Comment[es]=Estado y control de redes
 Comment[et]=Võrgu olek ja juhtimine
+Comment[eu]=Sareen egoera eta kontrola
 Comment[fi]=Verkon tila ja hallinta
 Comment[fr]=État et contrôle du réseau
 Comment[gl]=Monitorización e control da rede
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-5.9.3/editor/kde5-nm-connection-editor.desktop 
new/plasma-nm-5.9.4/editor/kde5-nm-connection-editor.desktop
--- old/plasma-nm-5.9.3/editor/kde5-nm-connection-editor.desktop
2017-02-28 14:04:20.0 +0100
+++ new/plasma-nm-5.9.4/editor/kde5-nm-connection-editor.desktop
2017-03-21 15:02:22.0 +0100
@@ -11,6 +11,7 @@
 Name[en_GB]=kde5-nm-connection-editor
 Name[es]=kde5-nm-connection-editor
 Name[et]=kde5-nm-connection-editor
+Name[eu]=kde5-nm-connection-editor
 Name[fi]=kde5-nm-connection-editor
 Name[fr]=kde5-nm-connection-editor
 Name[gl]=kde5-nm-connection-editor
@@ -52,6 +53,7 @@
 GenericName[en_GB]=Connection editor
 GenericName[es]=Editor de conexiones
 GenericName[et]=Ühenduste muutja
+GenericName[eu]=Konexio-editorea
 GenericName[fi]=Yhteysmuokkain
 GenericName[fr]=Éditeur de connexion
 GenericName[gl]=Editor de conexións
@@ -96,6 +98,7 @@
 Comment[en_GB]=Edit your network connections
 Comment[es]=Editar las conexiones de red
 Comment[et]=Võrguühenduste muutmine
+Comment[eu]=Editatu zure sareko konexioak
 Comment[fi]=Verkkoyhteyksiesi muokkaus
 Comment[fr]=Modifier vos connexions réseau
 Comment[gl]=Edite as súas conexións de rede
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.9.3/kcm/kcm_networkmanagement.desktop 
new/plasma-nm-5.9.4/kcm/kcm_networkmanagement.desktop
--- old/plasma-nm-5.9.3/kcm/kcm_networkmanagement.desktop   2017-02-28 
14:04:20.0 +0100
+++ new/plasma-nm-5.9.4/kcm/kcm_networkmanagement.desktop   2017-03-21 
15:02:22.0 +0100
@@ -17,6 +17,7 @@
 Name[el]=Συνδέσεις
 Name[en_GB]=Connections
 Name[es]=Conexiones
+Name[eu]=Konexioak
 Name[fi]=Yhteydet
 Name[it]=Connessioni
 

commit plasma-nm5 for openSUSE:Factory

2017-03-03 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2017-03-03 17:28:11

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


Package is "plasma-nm5"

Fri Mar  3 17:28:11 2017 rev:48 rq:461493 version:5.9.3

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2017-02-19 
01:12:49.380149715 +0100
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2017-03-03 17:28:12.603545207 +0100
@@ -1,0 +2,10 @@
+Tue Feb 28 19:56:19 CET 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.9.3.php
+- Changes since 5.9.2:
+  * Don't assume initialized if there are pending dbus replies
+
+---

Old:

  plasma-nm-5.9.2.tar.xz

New:

  plasma-nm-5.9.3.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.pFOcOx/_old  2017-03-03 17:28:13.255452990 +0100
+++ /var/tmp/diff_new_pack.pFOcOx/_new  2017-03-03 17:28:13.259452425 +0100
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.9.2
+Version:5.9.3
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)

++ plasma-nm-5.9.2.tar.xz -> plasma-nm-5.9.3.tar.xz ++
 7322 lines of diff (skipped)




commit plasma-nm5 for openSUSE:Factory

2017-02-18 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2017-02-19 01:12:48

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


Package is "plasma-nm5"

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2017-02-10 
10:01:40.482518566 +0100
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2017-02-19 01:12:49.380149715 +0100
@@ -1,0 +2,10 @@
+Tue Feb 14 17:58:13 CET 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.2
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.9.2.php
+- Changes since 5.9.1:
+  * None
+
+---

Old:

  plasma-nm-5.9.1.tar.xz

New:

  plasma-nm-5.9.2.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.q7WZQf/_old  2017-02-19 01:12:49.756096843 +0100
+++ /var/tmp/diff_new_pack.q7WZQf/_new  2017-02-19 01:12:49.760096281 +0100
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.9.1
+Version:5.9.2
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)

++ plasma-nm-5.9.1.tar.xz -> plasma-nm-5.9.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.9.1/CMakeLists.txt 
new/plasma-nm-5.9.2/CMakeLists.txt
--- old/plasma-nm-5.9.1/CMakeLists.txt  2017-02-07 12:26:42.0 +0100
+++ new/plasma-nm-5.9.2/CMakeLists.txt  2017-02-14 14:27:20.0 +0100
@@ -3,7 +3,7 @@
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
 
-set(PROJECT_VERSION "5.9.1")
+set(PROJECT_VERSION "5.9.2")
 set(PROJECT_VERSION_MAJOR 5)
 set(PLASMANM_VERSION_STRING ${PROJECT_VERSION} )
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.9.1/kcm/kcm_networkmanagement.desktop 
new/plasma-nm-5.9.2/kcm/kcm_networkmanagement.desktop
--- old/plasma-nm-5.9.1/kcm/kcm_networkmanagement.desktop   2017-02-07 
12:26:23.0 +0100
+++ new/plasma-nm-5.9.2/kcm/kcm_networkmanagement.desktop   2017-02-14 
14:26:42.0 +0100
@@ -12,6 +12,7 @@
 Name[ca]=Connexions
 Name[ca@valencia]=Connexions
 Name[cs]=Spojení
+Name[da]=Forbindelser
 Name[de]=Verbindungen
 Name[el]=Συνδέσεις
 Name[en_GB]=Connections
@@ -37,6 +38,7 @@
 Comment=Edit your Network Connections
 Comment[ca]=Edita les connexions de xarxa
 Comment[ca@valencia]=Edita les connexions de xarxa
+Comment[da]=Redigér dine netværksforbindelser
 Comment[de]=Bearbeiten Sie Ihre Netzwerkverbindungen
 Comment[el]=Επεξεργασία των συνδέσεων δικτύου
 Comment[en_GB]=Edit your Network Connections
@@ -62,6 +64,7 @@
 X-KDE-Keywords=network,wifi,ethernet,mobile,broadband,vpn,internet,traffic
 X-KDE-Keywords[ca]=xarxa,wifi,ethernet,mòbil,banda ampla,vpn,internet,tràfic
 X-KDE-Keywords[ca@valencia]=xarxa,wifi,ethernet,mòbil,banda 
ampla,vpn,internet,tràfic
+X-KDE-Keywords[da]=netværk,wifi,ethernet,mobilt,bredbånd,vpn,internet,trafik
 
X-KDE-Keywords[de]=network,wifi,ethernet,mobile,broadband,vpn,internet,traffic,netzwerk,mobil,breitband
 
X-KDE-Keywords[en_GB]=network,wifi,ethernet,mobile,broadband,vpn,internet,traffic
 X-KDE-Keywords[es]=red,wifi,ethernet,móvil,banda ancha,vpn,internet,tráfico
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-5.9.1/po/da/plasma_applet_org.kde.plasma.networkmanagement.po 
new/plasma-nm-5.9.2/po/da/plasma_applet_org.kde.plasma.networkmanagement.po
--- old/plasma-nm-5.9.1/po/da/plasma_applet_org.kde.plasma.networkmanagement.po 
2017-02-07 12:26:26.0 +0100
+++ new/plasma-nm-5.9.2/po/da/plasma_applet_org.kde.plasma.networkmanagement.po 
2017-02-14 14:26:49.0 +0100
@@ -1,13 +1,13 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
 #
-# Martin Schlander , 2013, 2014, 2015.
+# Martin Schlander , 2013, 2014, 2015, 2017.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2017-01-10 08:29+0100\n"
-"PO-Revision-Date: 2015-08-26 20:17+0200\n"
+"PO-Revision-Date: 2017-02-11 12:25+0100\n"
 "Last-Translator: Martin Schlander \n"
 "Language-Team: Danish \n"
 "Language: da\n"
@@ -15,7 +15,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 

commit plasma-nm5 for openSUSE:Factory

2017-02-10 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2017-02-10 10:01:39

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


Package is "plasma-nm5"

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2017-02-03 
18:56:01.193146094 +0100
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2017-02-10 10:01:40.482518566 +0100
@@ -1,0 +2,10 @@
+Tue Feb  7 18:58:23 CET 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.1
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.9.1.php
+- Changes since 5.9.0:
+  * elide Network Manager KCM tabs
+
+---

Old:

  plasma-nm-5.9.0.tar.xz

New:

  plasma-nm-5.9.1.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.hZlVHd/_old  2017-02-10 10:01:41.078434295 +0100
+++ /var/tmp/diff_new_pack.hZlVHd/_new  2017-02-10 10:01:41.082433729 +0100
@@ -19,13 +19,13 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.9.0
+Version:5.9.1
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)
 Group:  System/GUI/KDE
 Url:https://projects.kde.org/projects/playground/network/plasma-nm
-Source: plasma-nm-%{version}.tar.xz
+Source: 
http://download.kde.org/stable/plasma/%{version}/plasma-nm-%{version}.tar.xz
 BuildRequires:  NetworkManager-devel >= 0.9.8.4
 BuildRequires:  extra-cmake-modules >= 1.3.0
 BuildRequires:  fdupes

++ plasma-nm-5.9.0.tar.xz -> plasma-nm-5.9.1.tar.xz ++
 1891 lines of diff (skipped)




commit plasma-nm5 for openSUSE:Factory

2017-02-03 Thread root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2017-01-31 12:22:43

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


Package is "plasma-nm5"

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2017-01-04 
17:27:31.658047742 +0100
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2017-02-03 18:56:01.193146094 +0100
@@ -1,0 +2,30 @@
+Thu Jan 26 19:59:06 CET 2017 - fab...@ritter-vogt.de
+
+- Update to 5.9.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.9.0.php
+- Changes since 5.8.95:
+  * Fix crash caused by notifications use-after-free
+  * Openconnect: cast QWidget to correct widget type used for password field
+  * OpenVPN: Remove previously configured secrets to avoid passing them back
+  * OpenVPN: Remove previously configured secrets to avoid passing them back
+  * KCM: Do not use Plasma components as the colors are not consistent
+  * Use KDE specific page for captive portal redirection
+  * Some captive portals seems to have problem redirecting from https
+  * Revert "Pass protocol type to openconnect"
+  * Pass protocol type to openconnect
+  * When importing an OpenVPN connection set default passwords to be stored in 
KWallet
+
+---
+Thu Jan 12 20:39:58 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 5.8.95 (Plasma 5.9 Beta)
+  * New feature release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.8.95.php
+- Changes:
+  * See 
https://www.kde.org/announcements/plasma-5.8.5-5.8.95-changelog.php#plasma-nm
+- Don't try to build openconnect support on 13.2
+
+---

Old:

  plasma-nm-5.8.5.tar.xz

New:

  plasma-nm-5.9.0.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.BgBuoc/_old  2017-02-03 18:56:01.649082068 +0100
+++ /var/tmp/diff_new_pack.BgBuoc/_new  2017-02-03 18:56:01.653081506 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package plasma-nm5
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,13 +19,13 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.8.5
+Version:5.9.0
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)
 Group:  System/GUI/KDE
 Url:https://projects.kde.org/projects/playground/network/plasma-nm
-Source: 
http://download.kde.org/stable/plasma/%{version}/plasma-nm-%{version}.tar.xz
+Source: plasma-nm-%{version}.tar.xz
 BuildRequires:  NetworkManager-devel >= 0.9.8.4
 BuildRequires:  extra-cmake-modules >= 1.3.0
 BuildRequires:  fdupes
@@ -57,8 +57,11 @@
 BuildRequires:  cmake(Qt5DBus) >= 5.4.0
 BuildRequires:  cmake(Qt5Network) >= 5.4.0
 BuildRequires:  cmake(Qt5Quick) >= 5.4.0
+BuildRequires:  cmake(Qt5UiTools) >= 5.4.0
 BuildRequires:  cmake(Qt5Widgets) >= 5.4.0
-BuildRequires:  pkgconfig(openconnect) >= 4.00
+%if 0%{?suse_version} > 1314 && "%{suse_version}" != "1320"
+BuildRequires:  pkgconfig(openconnect) >= 5.2
+%endif
 Requires:   NetworkManager
 Requires:   kded
 Requires:   kwalletd5
@@ -119,6 +122,7 @@
 %description vpnc
 vpnc plugin for plasma-nm components.
 
+%if 0%{?suse_version} > 1314 && "%{suse_version}" != "1320"
 %package openconnect
 Summary:OpenConnect support for %{name}
 Group:  System/GUI/KDE
@@ -136,6 +140,8 @@
 %description openconnect
 OpenConnect plugin for plasma-nm components.
 
+%endif
+
 %package openswan
 Summary:Openswan support for %{name}
 Group:  System/GUI/KDE
@@ -215,14 +221,27 @@
 Summary:SSTP support for %{name}
 Group:  System/GUI/KDE
 Requires:   %{name} = %{version}
-# NetworkManager-ssh doesn't exist in Factory
-#Requires:   NetworkManager-ssh
+# NetworkManager-sstp doesn't exist in Factory
+#Requires:   NetworkManager-sstp
 Supplements:packageand(%{name}:NetworkManager-sstp)
 Provides:   NetworkManager-sstp-frontend
 
 %description sstp
 Secure Sockets Tunneling Protocol (SSTP) plugin for plasma-nm components.
 
+%package iodine
+Summary:VPN support for %{name}
+Group:  System/GUI/KDE
+Requires:   %{name} = %{version}
+# NetworkManager-iodine doesn't 

commit plasma-nm5 for openSUSE:Factory

2016-11-25 Thread h_root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2016-11-25 12:11:40

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


Package is "plasma-nm5"

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2016-11-04 
20:57:47.0 +0100
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2016-11-25 12:11:41.0 +0100
@@ -1,0 +2,8 @@
+Wed Nov 23 10:59:30 UTC 2016 - fab...@ritter-vogt.de
+
+- Update to 5.8.4
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.8.4.php
+
+---

Old:

  plasma-nm-5.8.3.tar.xz

New:

  plasma-nm-5.8.4.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.QgnSzR/_old  2016-11-25 12:11:42.0 +0100
+++ /var/tmp/diff_new_pack.QgnSzR/_new  2016-11-25 12:11:42.0 +0100
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.8.3
+Version:5.8.4
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)

++ plasma-nm-5.8.3.tar.xz -> plasma-nm-5.8.4.tar.xz ++
 253097 lines of diff (skipped)




commit plasma-nm5 for openSUSE:Factory

2016-11-04 Thread h_root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2016-11-04 20:57:46

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


Package is "plasma-nm5"

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2016-10-22 
13:10:05.0 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2016-11-04 20:57:47.0 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 10:36:40 UTC 2016 - fab...@ritter-vogt.de
+
+- Update to 5.8.3
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.8.3.php
+
+---

Old:

  plasma-nm-5.8.2.tar.xz

New:

  plasma-nm-5.8.3.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.k1Y9mZ/_old  2016-11-04 20:57:48.0 +0100
+++ /var/tmp/diff_new_pack.k1Y9mZ/_new  2016-11-04 20:57:48.0 +0100
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.8.2
+Version:5.8.3
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)

++ plasma-nm-5.8.2.tar.xz -> plasma-nm-5.8.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.8.2/CMakeLists.txt 
new/plasma-nm-5.8.3/CMakeLists.txt
--- old/plasma-nm-5.8.2/CMakeLists.txt  2016-10-18 13:45:01.0 +0200
+++ new/plasma-nm-5.8.3/CMakeLists.txt  2016-11-01 13:21:17.0 +0100
@@ -3,7 +3,7 @@
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
 
-set(PROJECT_VERSION "5.8.2")
+set(PROJECT_VERSION "5.8.3")
 set(PROJECT_VERSION_MAJOR 5)
 set(PLASMANM_VERSION_STRING ${PROJECT_VERSION} )
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.8.2/kded/networkmanagement.notifyrc 
new/plasma-nm-5.8.3/kded/networkmanagement.notifyrc
--- old/plasma-nm-5.8.2/kded/networkmanagement.notifyrc 2016-10-18 
13:44:17.0 +0200
+++ new/plasma-nm-5.8.3/kded/networkmanagement.notifyrc 2016-11-01 
13:20:31.0 +0100
@@ -782,8 +782,9 @@
 Name[da]=Captive portal detekteret
 Name[en_GB]=Captive portal detected
 Name[es]=Se ha detectado un portal cautivo
-Name[fi]=Havaittu vangittu portaali
+Name[fi]=Verkon kirjautumissivu havaittu
 Name[it]=Captive portal rilevato
+Name[ko]=인증 포털 감지됨
 Name[nl]=Vangstportaal gedetecteerd
 Name[nn]=Oppdaga innloggingsside
 Name[pl]=Wykryto portal Captive
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-5.8.2/po/es/plasmanetworkmanagement-libs.po 
new/plasma-nm-5.8.3/po/es/plasmanetworkmanagement-libs.po
--- old/plasma-nm-5.8.2/po/es/plasmanetworkmanagement-libs.po   2016-10-18 
13:44:26.0 +0200
+++ new/plasma-nm-5.8.3/po/es/plasmanetworkmanagement-libs.po   2016-11-01 
13:20:42.0 +0100
@@ -9,7 +9,7 @@
 "Project-Id-Version: libplasmanm_editor\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2016-09-07 07:18+\n"
-"PO-Revision-Date: 2016-09-08 19:35+0200\n"
+"PO-Revision-Date: 2016-10-25 12:26+0200\n"
 "Last-Translator: Eloy Cuadra \n"
 "Language-Team: Spanish \n"
 "Language: es\n"
@@ -17,7 +17,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 1.5\n"
+"X-Generator: Lokalize 2.0\n"
 
 #: declarative/networkstatus.cpp:117
 msgctxt ""
@@ -1704,7 +1704,7 @@
 
 #: editor/widgets/passwordfield.cpp:42 editor/widgets/passwordfield.cpp:49
 msgid "Store password for this user only (encrypted)"
-msgstr "Guardar únicamente la contraseña de este usuario (cifrada)"
+msgstr "Guardar la contraseña solo para este usuario (cifrada)"
 
 #: editor/widgets/passwordfield.cpp:45 editor/widgets/passwordfield.cpp:57
 msgid "Store password and make it available for all users (not encrypted)"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-5.8.2/po/it/plasmanetworkmanagement-libs.po 
new/plasma-nm-5.8.3/po/it/plasmanetworkmanagement-libs.po
--- old/plasma-nm-5.8.2/po/it/plasmanetworkmanagement-libs.po   2016-10-18 
13:44:36.0 +0200
+++ new/plasma-nm-5.8.3/po/it/plasmanetworkmanagement-libs.po   2016-11-01 
13:20:51.0 +0100
@@ -1,6 +1,6 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
-# Vincenzo 

commit plasma-nm5 for openSUSE:Factory

2016-10-22 Thread h_root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2016-10-22 13:10:04

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


Package is "plasma-nm5"

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2016-10-18 
10:02:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2016-10-22 13:10:05.0 +0200
@@ -1,0 +2,8 @@
+Tue Oct 18 15:16:03 UTC 2016 - fab...@ritter-vogt.de
+
+- Update to 5.8.2
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.8.2.php
+
+---

Old:

  plasma-nm-5.8.1.tar.xz

New:

  plasma-nm-5.8.2.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.D29ojD/_old  2016-10-22 13:10:06.0 +0200
+++ /var/tmp/diff_new_pack.D29ojD/_new  2016-10-22 13:10:06.0 +0200
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.8.1
+Version:5.8.2
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)

++ plasma-nm-5.8.1.tar.xz -> plasma-nm-5.8.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.8.1/CMakeLists.txt 
new/plasma-nm-5.8.2/CMakeLists.txt
--- old/plasma-nm-5.8.1/CMakeLists.txt  2016-10-11 14:42:44.0 +0200
+++ new/plasma-nm-5.8.2/CMakeLists.txt  2016-10-18 13:45:01.0 +0200
@@ -3,7 +3,7 @@
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
 
-set(PROJECT_VERSION "5.8.1")
+set(PROJECT_VERSION "5.8.2")
 set(PROJECT_VERSION_MAJOR 5)
 set(PLASMANM_VERSION_STRING ${PROJECT_VERSION} )
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.8.1/kded/networkmanagement.notifyrc 
new/plasma-nm-5.8.2/kded/networkmanagement.notifyrc
--- old/plasma-nm-5.8.1/kded/networkmanagement.notifyrc 2016-10-11 
14:41:43.0 +0200
+++ new/plasma-nm-5.8.2/kded/networkmanagement.notifyrc 2016-10-18 
13:44:17.0 +0200
@@ -782,8 +782,10 @@
 Name[da]=Captive portal detekteret
 Name[en_GB]=Captive portal detected
 Name[es]=Se ha detectado un portal cautivo
+Name[fi]=Havaittu vangittu portaali
 Name[it]=Captive portal rilevato
 Name[nl]=Vangstportaal gedetecteerd
+Name[nn]=Oppdaga innloggingsside
 Name[pl]=Wykryto portal Captive
 Name[pt]=Foi detectado um portal captivo
 Name[ru]=Обнаружено подключение, требующее дополнительной аутентификации.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-5.8.1/po/fi/plasmanetworkmanagement-libs.po 
new/plasma-nm-5.8.2/po/fi/plasmanetworkmanagement-libs.po
--- old/plasma-nm-5.8.1/po/fi/plasmanetworkmanagement-libs.po   2016-10-11 
14:41:58.0 +0200
+++ new/plasma-nm-5.8.2/po/fi/plasmanetworkmanagement-libs.po   2016-10-18 
13:44:27.0 +0200
@@ -8,15 +8,15 @@
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2016-09-07 07:18+\n"
-"PO-Revision-Date: 2016-02-15 19:07+0200\n"
-"Last-Translator: Tommi Nieminen \n"
+"PO-Revision-Date: 2016-10-15 16:10+0200\n"
+"Last-Translator: Lasse Liehu \n"
 "Language-Team: Finnish \n"
 "Language: fi\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Lokalize 1.5\n"
+"X-Generator: Lokalize 2.0\n"
 
 #: declarative/networkstatus.cpp:117
 msgctxt ""
@@ -790,6 +790,11 @@
 "indicate priority lower than the default.\n"
 "   "
 msgstr ""
+"Jos yhdistäminen on asetettu automaattiseksi, suositaan korkeamman etusijan "
+"yhteyksiä. Oletusarvo on 0.\n"
+"Isompi luku tarkoittaa korkeampaa etusijaisuutta. Negatiivisella luvulla voi "
+"osoittaa oletusarvoa pienempää etusijaisuutta.\n"
+"   "
 
 #. i18n: ectx: property (text), widget (QLabel, nmVersionWarning)
 #: editor/settings/ui/connectionwidget.ui:190
@@ -1128,6 +1133,10 @@
 "should be left blank. It is only required if there are multiple access "
 "concentrators or a specific service is known to be required."
 msgstr ""
+"Jos asetettu, ohjaa PPPoE:n alustamaan vain istunnon, jonka paketin luonti- "
+"ja purkulaitekeskittimet tarjoavat määritetyn palvelun. Useimmilla "
+"tarjoajilla tämä tulisi jättää tyhjäksi. Sitä vaaditaan vain, jos "
+"saantikeskittimiä on on 

commit plasma-nm5 for openSUSE:Factory

2016-10-18 Thread h_root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2016-10-18 10:02:24

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


Package is "plasma-nm5"

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2016-10-04 
15:55:50.0 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2016-10-18 10:02:24.0 +0200
@@ -1,0 +2,13 @@
+Tue Oct 11 15:44:28 UTC 2016 - fab...@ritter-vogt.de
+
+- Update to 5.8.1
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.8.1.php
+
+---
+Wed Oct  5 07:58:52 UTC 2016 - fab...@ritter-vogt.de
+
+- Add Source: URL back
+
+---

Old:

  plasma-nm-5.8.0.tar.xz

New:

  plasma-nm-5.8.1.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.ae8Ob4/_old  2016-10-18 10:02:25.0 +0200
+++ /var/tmp/diff_new_pack.ae8Ob4/_new  2016-10-18 10:02:25.0 +0200
@@ -19,13 +19,13 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.8.0
+Version:5.8.1
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)
 Group:  System/GUI/KDE
 Url:https://projects.kde.org/projects/playground/network/plasma-nm
-Source: plasma-nm-%{version}.tar.xz
+Source: 
http://download.kde.org/stable/plasma/%{version}/plasma-nm-%{version}.tar.xz
 BuildRequires:  NetworkManager-devel >= 0.9.8.4
 BuildRequires:  extra-cmake-modules >= 1.3.0
 BuildRequires:  fdupes

++ plasma-nm-5.8.0.tar.xz -> plasma-nm-5.8.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.8.0/CMakeLists.txt 
new/plasma-nm-5.8.1/CMakeLists.txt
--- old/plasma-nm-5.8.0/CMakeLists.txt  2016-09-29 13:33:15.0 +0200
+++ new/plasma-nm-5.8.1/CMakeLists.txt  2016-10-11 14:42:44.0 +0200
@@ -3,7 +3,7 @@
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
 
-set(PROJECT_VERSION "5.8.0")
+set(PROJECT_VERSION "5.8.1")
 set(PROJECT_VERSION_MAJOR 5)
 set(PLASMANM_VERSION_STRING ${PROJECT_VERSION} )
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.8.0/kded/networkmanagement.notifyrc 
new/plasma-nm-5.8.1/kded/networkmanagement.notifyrc
--- old/plasma-nm-5.8.0/kded/networkmanagement.notifyrc 2016-09-29 
13:32:44.0 +0200
+++ new/plasma-nm-5.8.1/kded/networkmanagement.notifyrc 2016-10-11 
14:41:43.0 +0200
@@ -792,6 +792,7 @@
 Name[sv]=Captive portal detekterades
 Name[uk]=Виявлено керований портал
 Name[x-test]=xxCaptive portal detectedxx
+Name[zh_CN]=检测到强制网络门户
 Name[zh_TW]=偵測到入口網站
 IconName=dialog-password
 Action=Popup
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-5.8.0/po/en_GB/plasmanetworkmanagement-libs.po 
new/plasma-nm-5.8.1/po/en_GB/plasmanetworkmanagement-libs.po
--- old/plasma-nm-5.8.0/po/en_GB/plasmanetworkmanagement-libs.po
2016-09-29 13:32:50.0 +0200
+++ new/plasma-nm-5.8.1/po/en_GB/plasmanetworkmanagement-libs.po
2016-10-11 14:41:55.0 +0200
@@ -7,7 +7,7 @@
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
 "POT-Creation-Date: 2016-09-07 07:18+\n"
-"PO-Revision-Date: 2016-09-11 11:02+\n"
+"PO-Revision-Date: 2016-09-17 12:33+\n"
 "Last-Translator: Steve Allewell \n"
 "Language-Team: English \n"
 "Language: en_GB\n"
@@ -2404,7 +2404,7 @@
 #: uiutils.cpp:439
 msgctxt "Analog wireline modem"
 msgid "Analog"
-msgstr "Analog"
+msgstr "Analogue"
 
 #: uiutils.cpp:441 uiutils.cpp:446
 msgctxt "Unknown cellular access technology"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-5.8.0/po/it/plasmanetworkmanagement-libs.po 
new/plasma-nm-5.8.1/po/it/plasmanetworkmanagement-libs.po
--- old/plasma-nm-5.8.0/po/it/plasmanetworkmanagement-libs.po   2016-09-29 
13:32:57.0 +0200
+++ new/plasma-nm-5.8.1/po/it/plasmanetworkmanagement-libs.po   2016-10-11 
14:42:12.0 +0200
@@ -2066,7 +2066,7 @@
 
 #: uiutils.cpp:146
 msgid "Olpc mesh"
-msgstr "Maglia OLPC \t"
+msgstr "Maglia OLPC"
 
 #: uiutils.cpp:160
 msgid "Wired Ethernet"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 

commit plasma-nm5 for openSUSE:Factory

2016-10-04 Thread h_root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2016-10-04 15:56:12

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


Package is "plasma-nm5"

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2016-08-29 
15:29:46.0 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2016-10-04 15:55:50.0 +0200
@@ -1,0 +2,24 @@
+Thu Sep 29 16:36:28 UTC 2016 - fab...@ritter-vogt.de
+
+- Update to 5.8.0
+  * New LTS feature release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.8.0.php
+
+---
+Thu Sep 15 15:53:55 UTC 2016 - fab...@ritter-vogt.de
+
+- Update to 5.7.95 (Plasma 5.8 Beta)
+  * New LTS feature release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.7.95.php
+
+---
+Tue Sep 13 17:42:09 UTC 2016 - fab...@ritter-vogt.de
+
+- Update to 5.7.5
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.7.5.php
+
+---

Old:

  plasma-nm-5.7.4.tar.xz

New:

  plasma-nm-5.8.0.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.7s0GPz/_old  2016-10-04 15:55:51.0 +0200
+++ /var/tmp/diff_new_pack.7s0GPz/_new  2016-10-04 15:55:51.0 +0200
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.7.4
+Version:5.8.0
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)
@@ -43,7 +43,7 @@
 BuildRequires:  cmake(KF5ItemViews) >= 5.25.0
 BuildRequires:  cmake(KF5KDELibs4Support) >= 5.25.0
 BuildRequires:  cmake(KF5KIO) >= 5.25.0
-BuildRequires:  cmake(KF5NetworkManagerQt) >=  5.14.0
+BuildRequires:  cmake(KF5NetworkManagerQt) >=  5.25.0
 BuildRequires:  cmake(KF5Notifications) >= 5.25.0
 BuildRequires:  cmake(KF5Plasma) >= 5.25.0
 BuildRequires:  cmake(KF5Service) >= 5.25.0
@@ -255,7 +255,8 @@
 %{_kf5_servicesdir}/plasma-applet*.desktop
 %{_kf5_servicetypesdir}/
 %{_kf5_sharedir}/plasma/
-%{_kf5_appstreamdir}/
+%dir %{_kf5_appstreamdir}
+%{_kf5_appstreamdir}/org.kde.plasma.networkmanagement.appdata.xml
 
 %files openvpn
 %defattr(-,root,root)

++ plasma-nm-5.7.4.tar.xz -> plasma-nm-5.8.0.tar.xz ++
 37685 lines of diff (skipped)




commit plasma-nm5 for openSUSE:Factory

2016-08-29 Thread h_root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2016-08-29 15:29:43

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


Package is "plasma-nm5"

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2016-08-12 
15:41:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2016-08-29 15:29:46.0 +0200
@@ -1,0 +2,13 @@
+Fri Aug 26 20:36:41 UTC 2016 - fab...@ritter-vogt.de
+
+- Update to 5.7.4
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.7.4.php
+
+---
+Fri Aug 12 23:37:32 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Adjust filelist for the plasmoid appdata, installed with KF > 5.25.0
+
+---

Old:

  plasma-nm-5.7.3.tar.xz

New:

  plasma-nm-5.7.4.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.xqhEDN/_old  2016-08-29 15:29:48.0 +0200
+++ /var/tmp/diff_new_pack.xqhEDN/_new  2016-08-29 15:29:48.0 +0200
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.7.3
+Version:5.7.4
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)
@@ -32,26 +32,26 @@
 BuildRequires:  kf5-filesystem
 BuildRequires:  mobile-broadband-provider-info
 BuildRequires:  update-desktop-files
-BuildRequires:  cmake(KF5Completion)
-BuildRequires:  cmake(KF5ConfigWidgets)
-BuildRequires:  cmake(KF5CoreAddons)
-BuildRequires:  cmake(KF5DBusAddons)
-BuildRequires:  cmake(KF5Declarative)
-BuildRequires:  cmake(KF5I18n)
-BuildRequires:  cmake(KF5IconThemes)
-BuildRequires:  cmake(KF5Init)
-BuildRequires:  cmake(KF5ItemViews)
-BuildRequires:  cmake(KF5KDELibs4Support)
-BuildRequires:  cmake(KF5KIO)
+BuildRequires:  cmake(KF5Completion) >= 5.25.0
+BuildRequires:  cmake(KF5ConfigWidgets) >= 5.25.0
+BuildRequires:  cmake(KF5CoreAddons) >= 5.25.0
+BuildRequires:  cmake(KF5DBusAddons) >= 5.25.0
+BuildRequires:  cmake(KF5Declarative) >= 5.25.0
+BuildRequires:  cmake(KF5I18n) >= 5.25.0
+BuildRequires:  cmake(KF5IconThemes) >= 5.25.0
+BuildRequires:  cmake(KF5Init) >= 5.25.0
+BuildRequires:  cmake(KF5ItemViews) >= 5.25.0
+BuildRequires:  cmake(KF5KDELibs4Support) >= 5.25.0
+BuildRequires:  cmake(KF5KIO) >= 5.25.0
 BuildRequires:  cmake(KF5NetworkManagerQt) >=  5.14.0
-BuildRequires:  cmake(KF5Notifications)
-BuildRequires:  cmake(KF5Plasma)
-BuildRequires:  cmake(KF5Service)
-BuildRequires:  cmake(KF5Solid)
-BuildRequires:  cmake(KF5Wallet)
-BuildRequires:  cmake(KF5WidgetsAddons)
-BuildRequires:  cmake(KF5WindowSystem)
-BuildRequires:  cmake(KF5XmlGui)
+BuildRequires:  cmake(KF5Notifications) >= 5.25.0
+BuildRequires:  cmake(KF5Plasma) >= 5.25.0
+BuildRequires:  cmake(KF5Service) >= 5.25.0
+BuildRequires:  cmake(KF5Solid) >= 5.25.0
+BuildRequires:  cmake(KF5Wallet) >= 5.25.0
+BuildRequires:  cmake(KF5WidgetsAddons) >= 5.25.0
+BuildRequires:  cmake(KF5WindowSystem) >= 5.25.0
+BuildRequires:  cmake(KF5XmlGui) >= 5.25.0
 BuildRequires:  cmake(Qca-qt5) >= 2.1.0
 BuildRequires:  cmake(Qt5Core) >= 5.4.0
 BuildRequires:  cmake(Qt5DBus) >= 5.4.0
@@ -255,6 +255,7 @@
 %{_kf5_servicesdir}/plasma-applet*.desktop
 %{_kf5_servicetypesdir}/
 %{_kf5_sharedir}/plasma/
+%{_kf5_appstreamdir}/
 
 %files openvpn
 %defattr(-,root,root)

++ plasma-nm-5.7.3.tar.xz -> plasma-nm-5.7.4.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.7.3/CMakeLists.txt 
new/plasma-nm-5.7.4/CMakeLists.txt
--- old/plasma-nm-5.7.3/CMakeLists.txt  2016-08-02 11:46:11.0 +0200
+++ new/plasma-nm-5.7.4/CMakeLists.txt  2016-08-23 14:56:04.0 +0200
@@ -3,7 +3,7 @@
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
 
-set(PROJECT_VERSION "5.7.3")
+set(PROJECT_VERSION "5.7.4")
 set(PROJECT_VERSION_MAJOR 5)
 set(PLASMANM_VERSION_STRING ${PROJECT_VERSION} )
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-5.7.3/po/ca@valencia/plasmanetworkmanagement-libs.po 
new/plasma-nm-5.7.4/po/ca@valencia/plasmanetworkmanagement-libs.po
--- old/plasma-nm-5.7.3/po/ca@valencia/plasmanetworkmanagement-libs.po  
2016-08-02 11:45:47.0 +0200
+++ new/plasma-nm-5.7.4/po/ca@valencia/plasmanetworkmanagement-libs.po  
2016-08-23 14:55:28.0 +0200
@@ -3,15 +3,15 @@
 # This file is distributed under the license LGPL 

commit plasma-nm5 for openSUSE:Factory

2016-08-12 Thread h_root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2016-08-12 15:41:21

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


Package is "plasma-nm5"

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2016-08-08 
13:51:01.0 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2016-08-12 15:41:22.0 +0200
@@ -1,0 +2,8 @@
+Tue Aug  2 11:36:08 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.7.3
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.7.3.php
+
+---

Old:

  plasma-nm-5.7.2.tar.xz

New:

  plasma-nm-5.7.3.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.f7QyfO/_old  2016-08-12 15:41:23.0 +0200
+++ /var/tmp/diff_new_pack.f7QyfO/_new  2016-08-12 15:41:23.0 +0200
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.7.2
+Version:5.7.3
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)

++ plasma-nm-5.7.2.tar.xz -> plasma-nm-5.7.3.tar.xz ++
 2267 lines of diff (skipped)




commit plasma-nm5 for openSUSE:Factory

2016-08-08 Thread h_root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2016-08-08 13:50:58

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


Package is "plasma-nm5"

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2016-07-15 
12:28:00.0 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2016-08-08 13:51:01.0 +0200
@@ -1,0 +2,28 @@
+Sat Jul 23 05:16:07 UTC 2016 - jeng...@inai.de
+
+- Update descriptions
+
+---
+Wed Jul 20 08:54:42 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.7.2
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.7.2.php
+
+---
+Wed Jul 13 06:13:38 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.7.1
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.7.1.php
+
+---
+Tue Jul  5 11:49:31 UTC 2016 - wba...@tmo.at
+
+- Use the new %kf5_find_lang macro to create the file list for the
+  lang package
+- Remove rpmlintrc file, it is not needed any more now
+
+---

Old:

  plasma-nm-5.7.0.tar.xz
  plasma-nm5-rpmlintrc

New:

  plasma-nm-5.7.2.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.4jCXxn/_old  2016-08-08 13:51:02.0 +0200
+++ /var/tmp/diff_new_pack.4jCXxn/_new  2016-08-08 13:51:02.0 +0200
@@ -19,14 +19,13 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.7.0
+Version:5.7.2
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)
 Group:  System/GUI/KDE
 Url:https://projects.kde.org/projects/playground/network/plasma-nm
 Source: plasma-nm-%{version}.tar.xz
-Source99:   %{name}-rpmlintrc
 BuildRequires:  NetworkManager-devel >= 0.9.8.4
 BuildRequires:  extra-cmake-modules >= 1.3.0
 BuildRequires:  fdupes
@@ -102,10 +101,10 @@
 Obsoletes:  NetworkManager-openvpn-kde4
 
 %description openvpn
-OpenVPN VPN plugin for plasma-nm components.
+OpenVPN plugin for plasma-nm components.
 
 %package vpnc
-Summary:Vpnc support for %{name}
+Summary:vpnc support for %{name}
 Group:  System/GUI/KDE
 Requires:   %{name} = %{version}
 Requires:   NetworkManager-vpnc
@@ -118,7 +117,7 @@
 Obsoletes:  NetworkManager-vpnc-kde4
 
 %description vpnc
-Vpnc plugin for plasma-nm components.
+vpnc plugin for plasma-nm components.
 
 %package openconnect
 Summary:OpenConnect support for %{name}
@@ -154,7 +153,7 @@
 Openswan plugin for plasma-nm components.
 
 %package strongswan
-Summary:Strongswan support for %{name}
+Summary:strongSwan support for %{name}
 Group:  System/GUI/KDE
 Requires:   %{name} = %{version}
 Requires:   NetworkManager-strongswan
@@ -166,7 +165,7 @@
 %endif
 
 %description strongswan
-Strongswan plugin for plasma-nm components.
+strongSwan plugin for plasma-nm components.
 
 %package l2tp
 Summary:L2TP support for %{name}
@@ -182,7 +181,7 @@
 %endif
 
 %description l2tp
-L2TP plugin for plasma-nm components.
+Layer Two Tunneling Protocol (L2TP) plugin for plasma-nm components.
 
 %package pptp
 Summary:PPTP support for %{name}
@@ -198,7 +197,7 @@
 Obsoletes:  NetworkManager-pptp-kde4
 
 %description pptp
-pptp plugin for plasma-nm components.
+Point-To-Point Tunneling Protocol (PPTP) plugin for plasma-nm components.
 
 %package ssh
 Summary:SSH support for %{name}
@@ -210,10 +209,10 @@
 Provides:   NetworkManager-ssh-frontend
 
 %description ssh
-ssh plugin for plasma-nm components.
+Secure Shell (SSH) plugin for plasma-nm components.
 
 %package sstp
-Summary:sstp support for %{name}
+Summary:SSTP support for %{name}
 Group:  System/GUI/KDE
 Requires:   %{name} = %{version}
 # NetworkManager-ssh doesn't exist in Factory
@@ -222,18 +221,21 @@
 Provides:   NetworkManager-sstp-frontend
 
 %description sstp
-sstp plugin for plasma-nm components.
+Secure Sockets Tunneling Protocol (SSTP) plugin for plasma-nm components.
 
 %lang_package
 %prep
 %setup -q -n plasma-nm-%{version}
 
 %build
-  %cmake_kf5 -d build -- -DCMAKE_INSTALL_LOCALEDIR=share/locale/kf5
+  %cmake_kf5 -d build -- -DCMAKE_INSTALL_LOCALEDIR=%{_kf5_localedir}
   %make_jobs
 

commit plasma-nm5 for openSUSE:Factory

2016-07-15 Thread h_root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2016-07-15 12:27:58

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


Package is "plasma-nm5"

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2016-05-23 
17:31:05.0 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2016-07-15 12:28:00.0 +0200
@@ -1,0 +2,8 @@
+Thu Jun 30 12:02:38 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.7.0
+  * New feature release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.7.0.php
+
+---

Old:

  plasma-nm-5.6.4.tar.xz

New:

  plasma-nm-5.7.0.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.dZL7b4/_old  2016-07-15 12:28:01.0 +0200
+++ /var/tmp/diff_new_pack.dZL7b4/_new  2016-07-15 12:28:01.0 +0200
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.6.4
+Version:5.7.0
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)

++ plasma-nm-5.6.4.tar.xz -> plasma-nm-5.7.0.tar.xz ++
 16244 lines of diff (skipped)




commit plasma-nm5 for openSUSE:Factory

2016-05-23 Thread h_root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2016-05-23 17:31:05

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


Package is "plasma-nm5"

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2016-05-19 
12:13:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2016-05-23 17:31:05.0 +0200
@@ -1,0 +2,6 @@
+Fri May 20 12:09:40 UTC 2016 - alarr...@suse.com
+
+- The mobile-broadband-provider-info package is not required anymore,
+  but recommended.
+
+---



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.E0Eg1z/_old  2016-05-23 17:31:06.0 +0200
+++ /var/tmp/diff_new_pack.E0Eg1z/_new  2016-05-23 17:31:06.0 +0200
@@ -63,7 +63,7 @@
 Requires:   NetworkManager
 Requires:   kded
 Requires:   kwalletd5
-Requires:   mobile-broadband-provider-info
+Recommends: mobile-broadband-provider-info
 %if %{with lang}
 Recommends: %{name}-lang
 %endif




commit plasma-nm5 for openSUSE:Factory

2016-05-19 Thread h_root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2016-05-19 12:13:40

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


Package is "plasma-nm5"

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2016-05-08 
10:43:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2016-05-19 12:13:41.0 +0200
@@ -1,0 +2,8 @@
+Sun May 15 16:50:25 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.6.4
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.6.4.php
+
+---

Old:

  plasma-nm-5.6.3.tar.xz

New:

  plasma-nm-5.6.4.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.BvANLl/_old  2016-05-19 12:13:42.0 +0200
+++ /var/tmp/diff_new_pack.BvANLl/_new  2016-05-19 12:13:42.0 +0200
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.6.3
+Version:5.6.4
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)

++ plasma-nm-5.6.3.tar.xz -> plasma-nm-5.6.4.tar.xz ++
 2350 lines of diff (skipped)




commit plasma-nm5 for openSUSE:Factory

2016-05-08 Thread h_root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2016-05-08 10:43:58

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


Package is "plasma-nm5"

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2016-04-12 
19:06:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2016-05-08 10:43:59.0 +0200
@@ -1,0 +2,8 @@
+Tue Apr 19 20:46:12 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.6.3
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.6.3.php
+
+---

Old:

  plasma-nm-5.6.2.tar.xz

New:

  plasma-nm-5.6.3.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.wkpXrU/_old  2016-05-08 10:44:00.0 +0200
+++ /var/tmp/diff_new_pack.wkpXrU/_new  2016-05-08 10:44:00.0 +0200
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.6.2
+Version:5.6.3
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)

++ plasma-nm-5.6.2.tar.xz -> plasma-nm-5.6.3.tar.xz ++
 14149 lines of diff (skipped)




commit plasma-nm5 for openSUSE:Factory

2016-04-12 Thread h_root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2016-04-12 19:06:23

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


Package is "plasma-nm5"

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2016-04-07 
13:30:51.0 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2016-04-12 19:06:24.0 +0200
@@ -1,0 +2,8 @@
+Tue Apr  5 15:53:56 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.6.2
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.6.2.php
+
+---

Old:

  plasma-nm-5.6.1.tar.xz

New:

  plasma-nm-5.6.2.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.xHtKwY/_old  2016-04-12 19:06:25.0 +0200
+++ /var/tmp/diff_new_pack.xHtKwY/_new  2016-04-12 19:06:25.0 +0200
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.6.1
+Version:5.6.2
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)

++ plasma-nm-5.6.1.tar.xz -> plasma-nm-5.6.2.tar.xz ++
 4938 lines of diff (skipped)




commit plasma-nm5 for openSUSE:Factory

2016-04-07 Thread h_root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2016-04-07 13:30:50

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


Package is "plasma-nm5"

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2016-03-03 
15:15:35.0 +0100
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2016-04-07 13:30:51.0 +0200
@@ -1,0 +2,16 @@
+Tue Mar 29 16:21:09 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.6.1
+  * New bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.6.1.php
+
+---
+Sun Mar 20 09:20:00 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.6.0
+  * New feature release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.6.0.php
+
+---

Old:

  plasma-nm-5.5.5.tar.xz

New:

  plasma-nm-5.6.1.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.txyC4W/_old  2016-04-07 13:30:52.0 +0200
+++ /var/tmp/diff_new_pack.txyC4W/_new  2016-04-07 13:30:52.0 +0200
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.5.5
+Version:5.6.1
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)

++ plasma-nm-5.5.5.tar.xz -> plasma-nm-5.6.1.tar.xz ++
 72003 lines of diff (skipped)




commit plasma-nm5 for openSUSE:Factory

2016-03-03 Thread h_root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2016-03-03 15:15:33

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


Package is "plasma-nm5"

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2016-02-11 
12:35:44.0 +0100
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2016-03-03 15:15:35.0 +0100
@@ -1,0 +2,8 @@
+Tue Mar  1 17:33:35 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.5.5 (boo#968966)
+  * Bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.5.5.php
+
+---

Old:

  plasma-nm-5.5.4.tar.xz

New:

  plasma-nm-5.5.5.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.FF1ZAQ/_old  2016-03-03 15:15:36.0 +0100
+++ /var/tmp/diff_new_pack.FF1ZAQ/_new  2016-03-03 15:15:36.0 +0100
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.5.4
+Version:5.5.5
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)

++ plasma-nm-5.5.4.tar.xz -> plasma-nm-5.5.5.tar.xz ++
 1845 lines of diff (skipped)




commit plasma-nm5 for openSUSE:Factory

2016-02-11 Thread h_root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2016-02-11 12:35:43

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


Package is "plasma-nm5"

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2016-01-20 
09:52:41.0 +0100
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2016-02-11 12:35:44.0 +0100
@@ -1,0 +2,8 @@
+Tue Jan 26 22:20:18 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.5.4:
+  * Bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.5.4.php
+
+---

Old:

  plasma-nm-5.5.3.tar.xz

New:

  plasma-nm-5.5.4.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.ChIML8/_old  2016-02-11 12:35:45.0 +0100
+++ /var/tmp/diff_new_pack.ChIML8/_new  2016-02-11 12:35:45.0 +0100
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.5.3
+Version:5.5.4
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)

++ plasma-nm-5.5.3.tar.xz -> plasma-nm-5.5.4.tar.xz ++
 9350 lines of diff (skipped)




commit plasma-nm5 for openSUSE:Factory

2016-01-20 Thread h_root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2016-01-20 09:52:33

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


Package is "plasma-nm5"

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2016-01-03 
13:26:59.0 +0100
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2016-01-20 09:52:41.0 +0100
@@ -1,0 +2,8 @@
+Wed Jan  6 14:12:19 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.5.3:
+  * Bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.5.3.php
+
+---

Old:

  plasma-nm-5.5.2.tar.xz

New:

  plasma-nm-5.5.3.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.6YwgR8/_old  2016-01-20 09:52:46.0 +0100
+++ /var/tmp/diff_new_pack.6YwgR8/_new  2016-01-20 09:52:46.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package plasma-nm5
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # 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.5.2
+Version:5.5.3
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)

++ plasma-nm-5.5.2.tar.xz -> plasma-nm-5.5.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.5.2/CMakeLists.txt 
new/plasma-nm-5.5.3/CMakeLists.txt
--- old/plasma-nm-5.5.2/CMakeLists.txt  2015-12-22 11:44:45.0 +0100
+++ new/plasma-nm-5.5.3/CMakeLists.txt  2016-01-06 13:15:32.0 +0100
@@ -3,7 +3,7 @@
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
 
-set(PROJECT_VERSION "5.5.2")
+set(PROJECT_VERSION "5.5.3")
 set(PROJECT_VERSION_MAJOR 5)
 set(PLASMANM_VERSION_STRING ${PROJECT_VERSION} )
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.5.2/kded/networkmanagement.notifyrc 
new/plasma-nm-5.5.3/kded/networkmanagement.notifyrc
--- old/plasma-nm-5.5.2/kded/networkmanagement.notifyrc 2015-12-22 
11:44:02.0 +0100
+++ new/plasma-nm-5.5.3/kded/networkmanagement.notifyrc 2016-01-06 
13:14:50.0 +0100
@@ -670,7 +670,7 @@
 Name[ia]=Plugin de VPN mancante
 Name[it]=Estensione VPN mancante
 Name[ko]=VPN 플러그인 없음
-Name[lt]=Trūksta VPN įskiepio
+Name[lt]=Trūksta VPN papildinio
 Name[nb]=Mangler VPN-programtillegg
 Name[nds]=VPN-Moduul fehlt
 Name[nl]=VPN-plug-in ontbreekt
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-5.5.2/libs/editor/plasma-networkmanagement-vpnuiplugin.desktop 
new/plasma-nm-5.5.3/libs/editor/plasma-networkmanagement-vpnuiplugin.desktop
--- 
old/plasma-nm-5.5.2/libs/editor/plasma-networkmanagement-vpnuiplugin.desktop
2015-12-22 11:44:02.0 +0100
+++ 
new/plasma-nm-5.5.3/libs/editor/plasma-networkmanagement-vpnuiplugin.desktop
2016-01-06 13:14:50.0 +0100
@@ -19,7 +19,7 @@
 Name[ia]=Plugin de VPN UI de gestion de rete
 Name[it]=Estensione interfaccia di gestione di rete di KDE
 Name[ko]=네트워크 관리 VPN UI 플러그인
-Name[lt]=Tinklo valdymo VPN UI priedas
+Name[lt]=Tinklo valdymo VPN UI papildinys
 Name[nb]=Programtillegg til nettverkstyring med VPN brukerflate
 Name[nds]=Nettwarkpleger-VPN-Böversietmoduul
 Name[nl]=Netwerkbeheer VPN UI-plugin
@@ -61,7 +61,7 @@
 Comment[ia]=Define Plugins de UI de gestion de rete de KDE
 Comment[it]=Definisce le estensioni dell'interfaccia di gestione rete di KDE
 Comment[ko]=KDE 네트워크 관리 UI 플러그인 정의
-Comment[lt]=Apibrėžia KDE Tinklo valdymo UI priedus
+Comment[lt]=Apibrėžia KDE Tinklo valdymo UI papildinius
 Comment[nb]=Definerer brukerflate-tillegg til KDE nettverkstyring
 Comment[nds]=Leggt Böversietmodulen för de KDE-Nettwarkpleeg fast
 Comment[nl]=Definieert KDE netwerkbeheer UI-plugins
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.5.2/po/lt/kde5-nm-connection-editor.po 
new/plasma-nm-5.5.3/po/lt/kde5-nm-connection-editor.po
--- old/plasma-nm-5.5.2/po/lt/kde5-nm-connection-editor.po  2015-12-22 
11:44:25.0 +0100
+++ new/plasma-nm-5.5.3/po/lt/kde5-nm-connection-editor.po  2016-01-06 
13:15:13.0 +0100
@@ -4,14 +4,15 @@
 #
 # Automatically 

commit plasma-nm5 for openSUSE:Factory

2016-01-03 Thread h_root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2016-01-03 13:26:41

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


Package is "plasma-nm5"

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2015-12-29 
12:57:49.0 +0100
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2016-01-03 13:26:59.0 +0100
@@ -1,0 +2,8 @@
+Tue Dec 22 22:35:17 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.5.2:
+  * Bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.5.2.php
+
+---

Old:

  plasma-nm-5.5.1.tar.xz

New:

  plasma-nm-5.5.2.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.6QwuOl/_old  2016-01-03 13:27:00.0 +0100
+++ /var/tmp/diff_new_pack.6QwuOl/_new  2016-01-03 13:27:00.0 +0100
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.5.1
+Version:5.5.2
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)

++ plasma-nm-5.5.1.tar.xz -> plasma-nm-5.5.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.5.1/CMakeLists.txt 
new/plasma-nm-5.5.2/CMakeLists.txt
--- old/plasma-nm-5.5.1/CMakeLists.txt  2015-12-15 11:31:30.0 +0100
+++ new/plasma-nm-5.5.2/CMakeLists.txt  2015-12-22 11:44:45.0 +0100
@@ -3,7 +3,7 @@
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
 
-set(PROJECT_VERSION "5.5.1")
+set(PROJECT_VERSION "5.5.2")
 set(PROJECT_VERSION_MAJOR 5)
 set(PLASMANM_VERSION_STRING ${PROJECT_VERSION} )
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.5.1/po/nb/kde5-nm-connection-editor.po 
new/plasma-nm-5.5.2/po/nb/kde5-nm-connection-editor.po
--- old/plasma-nm-5.5.1/po/nb/kde5-nm-connection-editor.po  2015-12-15 
11:31:17.0 +0100
+++ new/plasma-nm-5.5.2/po/nb/kde5-nm-connection-editor.po  2015-12-22 
11:44:29.0 +0100
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n;
-"POT-Creation-Date: 2015-11-17 10:39+\n"
+"POT-Creation-Date: 2015-12-03 11:03+\n"
 "PO-Revision-Date: 2015-08-27 17:03+0200\n"
 "Last-Translator: Bjørn Steensrud \n"
 "Language-Team: Norwegian Bokmål \n"
@@ -27,131 +27,131 @@
 msgid "Your emails"
 msgstr "bjor...@skogkatt.homelinux.org"
 
-#: connectioneditor.cpp:83
+#: connectioneditor.cpp:84
 msgid "Type here to search connections..."
 msgstr "Skriv her for å søke i tilkoblinger …"
 
-#: connectioneditor.cpp:124
+#: connectioneditor.cpp:125
 msgid "Add"
 msgstr "Legg til"
 
-#: connectioneditor.cpp:128
+#: connectioneditor.cpp:129
 msgid "Hardware"
 msgstr "Maskinvare"
 
-#: connectioneditor.cpp:131
+#: connectioneditor.cpp:132
 msgid "DSL"
 msgstr "DSL"
 
-#: connectioneditor.cpp:134
+#: connectioneditor.cpp:135
 msgid "InfiniBand"
 msgstr "InfiniBand"
 
-#: connectioneditor.cpp:138
+#: connectioneditor.cpp:139
 msgid "Mobile Broadband..."
 msgstr "Mobilt bredbånd …"
 
-#: connectioneditor.cpp:142
+#: connectioneditor.cpp:143
 msgid "Wired Ethernet"
 msgstr "Kablet Ethernet"
 
-#: connectioneditor.cpp:146
+#: connectioneditor.cpp:147
 msgid "Wired Ethernet (shared)"
 msgstr "Kablet Ethenet (delt)"
 
-#: connectioneditor.cpp:150
+#: connectioneditor.cpp:151
 msgid "Wi-Fi"
 msgstr "Wi-Fi"
 
-#: connectioneditor.cpp:154
+#: connectioneditor.cpp:155
 msgid "Wi-Fi (shared)"
 msgstr "Wi-Fi (delt)"
 
-#: connectioneditor.cpp:158
+#: connectioneditor.cpp:159
 msgid "WiMAX"
 msgstr "WiMAX"
 
-#: connectioneditor.cpp:162
+#: connectioneditor.cpp:163
 msgctxt "Virtual hardware devices, eg Bridge, Bond"
 msgid "Virtual"
 msgstr "Virtuell"
 
-#: connectioneditor.cpp:164
+#: connectioneditor.cpp:165
 msgid "Bond"
 msgstr "Bond"
 
-#: connectioneditor.cpp:167
+#: connectioneditor.cpp:168
 msgid "Bridge"
 msgstr "Bru"
 
-#: connectioneditor.cpp:170
+#: connectioneditor.cpp:171
 msgid "VLAN"
 msgstr "VLAN"
 
-#: connectioneditor.cpp:174
+#: connectioneditor.cpp:175
 msgid "Team"
 msgstr "Lad"
 
-#: connectioneditor.cpp:179
+#: connectioneditor.cpp:180
 msgid "VPN"
 msgstr "VPN"
 
-#: connectioneditor.cpp:199
+#: connectioneditor.cpp:200
 msgid "Connect"
 msgstr "Koble til"
 
-#: connectioneditor.cpp:204
+#: connectioneditor.cpp:205
 msgid "Disconnect"

commit plasma-nm5 for openSUSE:Factory

2015-12-29 Thread h_root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2015-12-29 12:57:47

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


Package is "plasma-nm5"

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2015-11-24 
22:27:53.0 +0100
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2015-12-29 12:57:49.0 +0100
@@ -1,0 +2,16 @@
+Tue Dec 15 17:50:02 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.5.1:
+  * Bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.5.1.php
+
+---
+Sat Dec 12 17:32:59 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.5.0:
+  * For more details please see:
+https://dot.kde.org/2015/12/08/plasma-55-beautiful-new-artwork
+- Move to cmake(...) BuildRequires where possible
+
+---

Old:

  plasma-nm-5.4.3.tar.xz

New:

  plasma-nm-5.5.1.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.jviLVP/_old  2015-12-29 12:57:50.0 +0100
+++ /var/tmp/diff_new_pack.jviLVP/_new  2015-12-29 12:57:50.0 +0100
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.4.3
+Version:5.5.1
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)
@@ -30,33 +30,35 @@
 BuildRequires:  NetworkManager-devel >= 0.9.8.4
 BuildRequires:  extra-cmake-modules >= 1.3.0
 BuildRequires:  fdupes
-BuildRequires:  kcompletion-devel
-BuildRequires:  kconfigwidgets-devel
-BuildRequires:  kcoreaddons-devel
-BuildRequires:  kdbusaddons-devel
-BuildRequires:  kdeclarative-devel
-BuildRequires:  kdelibs4support-devel
 BuildRequires:  kf5-filesystem
-BuildRequires:  ki18n-devel
-BuildRequires:  kiconthemes-devel
-BuildRequires:  kinit-devel
-BuildRequires:  kitemviews-devel
-BuildRequires:  knotifications-devel
-BuildRequires:  kservice-devel
-BuildRequires:  kwallet-devel
-BuildRequires:  kwidgetsaddons-devel
-BuildRequires:  kwindowsystem-devel
-BuildRequires:  kxmlgui-devel
-BuildRequires:  libKF5NetworkManagerQt-devel >= 5.8.0
 BuildRequires:  mobile-broadband-provider-info
-BuildRequires:  plasma-framework-devel
-BuildRequires:  solid-devel
 BuildRequires:  update-desktop-files
-BuildRequires:  pkgconfig(Qt5Core) >= 5.4.0
-BuildRequires:  pkgconfig(Qt5DBus) >= 5.4.0
-BuildRequires:  pkgconfig(Qt5Network) >= 5.4.0
-BuildRequires:  pkgconfig(Qt5Quick) >= 5.4.0
-BuildRequires:  pkgconfig(Qt5Widgets) >= 5.4.0
+BuildRequires:  cmake(KF5Completion)
+BuildRequires:  cmake(KF5ConfigWidgets)
+BuildRequires:  cmake(KF5CoreAddons)
+BuildRequires:  cmake(KF5DBusAddons)
+BuildRequires:  cmake(KF5Declarative)
+BuildRequires:  cmake(KF5I18n)
+BuildRequires:  cmake(KF5IconThemes)
+BuildRequires:  cmake(KF5Init)
+BuildRequires:  cmake(KF5ItemViews)
+BuildRequires:  cmake(KF5KDELibs4Support)
+BuildRequires:  cmake(KF5KIO)
+BuildRequires:  cmake(KF5NetworkManagerQt) >=  5.14.0
+BuildRequires:  cmake(KF5Notifications)
+BuildRequires:  cmake(KF5Plasma)
+BuildRequires:  cmake(KF5Service)
+BuildRequires:  cmake(KF5Solid)
+BuildRequires:  cmake(KF5Wallet)
+BuildRequires:  cmake(KF5WidgetsAddons)
+BuildRequires:  cmake(KF5WindowSystem)
+BuildRequires:  cmake(KF5XmlGui)
+BuildRequires:  cmake(Qca-qt5) >= 2.1.0
+BuildRequires:  cmake(Qt5Core) >= 5.4.0
+BuildRequires:  cmake(Qt5DBus) >= 5.4.0
+BuildRequires:  cmake(Qt5Network) >= 5.4.0
+BuildRequires:  cmake(Qt5Quick) >= 5.4.0
+BuildRequires:  cmake(Qt5Widgets) >= 5.4.0
 BuildRequires:  pkgconfig(openconnect) >= 4.00
 Requires:   NetworkManager
 Requires:   kded
@@ -73,7 +75,7 @@
 Obsoletes:  plasma-nm < %{version}
 %endif
 %if 0%{?mm_support}
-BuildRequires:  libKF5ModemManagerQt-devel >= 5.9.0
+BuildRequires:  cmake(KF5ModemManagerQt) >=  5.14.0
 BuildRequires:  pkgconfig(ModemManager) >= 1.0.0
 %endif
 Obsoletes:  NetworkManager-kde4-devel
@@ -241,12 +243,13 @@
 %{_kf5_bindir}/kde5-nm-connection-editor
 %{_kf5_libdir}/libplasmanm_editor.so
 %{_kf5_libdir}/libplasmanm_internal.so
-%{_kf5_plugindir}/kded_networkmanagement.so
+%dir %{_kf5_plugindir}/kf5
+%dir %{_kf5_plugindir}/kf5/kded
+%{_kf5_plugindir}/kf5/kded/networkmanagement.so
 %{_kf5_qmldir}/
 %{_kf5_applicationsdir}/kde5-nm-connection-editor.desktop
 %{_kf5_sharedir}/kxmlgui5/
 %{_kf5_notifydir}/
-%{_kf5_servicesdir}/kded/
 %{_kf5_servicesdir}/plasma-applet*.desktop
 %{_kf5_servicetypesdir}/
 %{_kf5_sharedir}/plasma/


commit plasma-nm5 for openSUSE:Factory

2015-11-24 Thread h_root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2015-11-24 22:27:50

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


Package is "plasma-nm5"

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2015-10-19 
22:19:17.0 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2015-11-24 22:27:53.0 +0100
@@ -1,0 +2,7 @@
+Sun Nov  8 19:17:55 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.4.3 (boo#955068):
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.4.3.php
+
+---

Old:

  plasma-nm-5.4.2.tar.xz

New:

  plasma-nm-5.4.3.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.rrzrtG/_old  2015-11-24 22:27:54.0 +0100
+++ /var/tmp/diff_new_pack.rrzrtG/_new  2015-11-24 22:27:54.0 +0100
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.4.2
+Version:5.4.3
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)

++ plasma-nm-5.4.2.tar.xz -> plasma-nm-5.4.3.tar.xz ++
 13168 lines of diff (skipped)




commit plasma-nm5 for openSUSE:Factory

2015-10-19 Thread h_root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2015-10-19 22:19:17

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


Package is "plasma-nm5"

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2015-09-24 
07:08:00.0 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2015-10-19 22:19:17.0 +0200
@@ -1,0 +2,7 @@
+Sun Oct  4 10:44:04 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.4.2:
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.4.2.php
+
+---

Old:

  plasma-nm-5.4.1.tar.xz

New:

  plasma-nm-5.4.2.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.nNgTzn/_old  2015-10-19 22:19:18.0 +0200
+++ /var/tmp/diff_new_pack.nNgTzn/_new  2015-10-19 22:19:18.0 +0200
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.4.1
+Version:5.4.2
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)

++ plasma-nm-5.4.1.tar.xz -> plasma-nm-5.4.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.4.1/CMakeLists.txt 
new/plasma-nm-5.4.2/CMakeLists.txt
--- old/plasma-nm-5.4.1/CMakeLists.txt  2015-09-03 12:26:18.0 +0200
+++ new/plasma-nm-5.4.2/CMakeLists.txt  2015-10-01 11:55:00.0 +0200
@@ -3,7 +3,7 @@
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
 
-set(PROJECT_VERSION "5.4.1")
+set(PROJECT_VERSION "5.4.2")
 set(PROJECT_VERSION_MAJOR 5)
 set(PLASMANM_VERSION_STRING ${PROJECT_VERSION} )
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-5.4.1/libs/editor/settings/ui/infiniband.ui 
new/plasma-nm-5.4.2/libs/editor/settings/ui/infiniband.ui
--- old/plasma-nm-5.4.1/libs/editor/settings/ui/infiniband.ui   2015-09-03 
12:24:27.0 +0200
+++ new/plasma-nm-5.4.2/libs/editor/settings/ui/infiniband.ui   2015-10-01 
11:54:12.0 +0200
@@ -12,9 +12,9 @@

   
   
-
+   
 0
-
+   

 
  
@@ -83,7 +83,7 @@
bytes
  
  
-  
+  2044
  
 

diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-5.4.1/libs/editor/settings/ui/wificonnectionwidget.ui 
new/plasma-nm-5.4.2/libs/editor/settings/ui/wificonnectionwidget.ui
--- old/plasma-nm-5.4.1/libs/editor/settings/ui/wificonnectionwidget.ui 
2015-09-03 12:24:27.0 +0200
+++ new/plasma-nm-5.4.2/libs/editor/settings/ui/wificonnectionwidget.ui 
2015-10-01 11:54:12.0 +0200
@@ -183,7 +183,7 @@
   
  
  
-  
+  1
  
 

@@ -269,16 +269,16 @@
  
  
   
-   KLineEdit
-   QLineEdit
-   klineedit.h
-  
-  
KComboBox
QComboBox
kcombobox.h
   
   
+   KLineEdit
+   QLineEdit
+   klineedit.h
+  
+  
HwAddrComboBox
QComboBox
hwaddrcombobox.h
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-5.4.1/libs/editor/settings/ui/wiredconnectionwidget.ui 
new/plasma-nm-5.4.2/libs/editor/settings/ui/wiredconnectionwidget.ui
--- old/plasma-nm-5.4.1/libs/editor/settings/ui/wiredconnectionwidget.ui
2015-09-03 12:24:27.0 +0200
+++ new/plasma-nm-5.4.2/libs/editor/settings/ui/wiredconnectionwidget.ui
2015-10-01 11:54:12.0 +0200
@@ -6,7 +6,7 @@

 0
 0
-374
+381
 216

   
@@ -14,9 +14,9 @@

 QFormLayout::ExpandingFieldsGrow

-
+   
 0
-
+   

 
  
@@ -102,7 +102,7 @@
bytes
  
  
-  
+  1
  
 

diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.4.1/libs/uiutils.cpp 
new/plasma-nm-5.4.2/libs/uiutils.cpp
--- old/plasma-nm-5.4.1/libs/uiutils.cpp2015-09-03 12:24:27.0 
+0200
+++ new/plasma-nm-5.4.2/libs/uiutils.cpp2015-10-01 11:54:12.0 
+0200
@@ -118,15 +118,15 @@
 switch (type) {
 case ConnectionSettings::Adsl:
 text = i18n("ADSL");
-icon = "modem";
+icon = "network-modem";
 break;
 case ConnectionSettings::Pppoe:
 text = i18n("DSL");
-icon = "modem";
+icon = "network-modem";
 break;
 case ConnectionSettings::Bluetooth:
 text = 

commit plasma-nm5 for openSUSE:Factory

2015-09-23 Thread h_root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2015-09-24 07:07:57

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


Package is "plasma-nm5"

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2015-09-02 
07:52:29.0 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2015-09-24 07:08:00.0 +0200
@@ -1,0 +2,7 @@
+Thu Sep 10 17:18:21 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.4.1:
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.4.1.php
+
+---

Old:

  plasma-nm-5.4.0.tar.xz

New:

  plasma-nm-5.4.1.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.LQuH7t/_old  2015-09-24 07:08:00.0 +0200
+++ /var/tmp/diff_new_pack.LQuH7t/_new  2015-09-24 07:08:00.0 +0200
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.4.0
+Version:5.4.1
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)

++ plasma-nm-5.4.0.tar.xz -> plasma-nm-5.4.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.4.0/CMakeLists.txt 
new/plasma-nm-5.4.1/CMakeLists.txt
--- old/plasma-nm-5.4.0/CMakeLists.txt  2015-08-20 14:37:32.0 +0200
+++ new/plasma-nm-5.4.1/CMakeLists.txt  2015-09-03 12:26:18.0 +0200
@@ -3,7 +3,7 @@
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
 
-set(PROJECT_VERSION "5.4.0")
+set(PROJECT_VERSION "5.4.1")
 set(PROJECT_VERSION_MAJOR 5)
 set(PLASMANM_VERSION_STRING ${PROJECT_VERSION} )
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.4.0/applet/metadata.desktop 
new/plasma-nm-5.4.1/applet/metadata.desktop
--- old/plasma-nm-5.4.0/applet/metadata.desktop 2015-08-20 14:30:16.0 
+0200
+++ new/plasma-nm-5.4.1/applet/metadata.desktop 2015-09-03 12:24:27.0 
+0200
@@ -5,6 +5,7 @@
 Name[bs]=Mreže
 Name[ca]=Xarxes
 Name[cs]=Sítě
+Name[da]=Netværk
 Name[de]=Netzwerke
 Name[el]=Δίκτυα
 Name[en_GB]=Networks
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-5.4.0/editor/kde5-nm-connection-editor.desktop 
new/plasma-nm-5.4.1/editor/kde5-nm-connection-editor.desktop
--- old/plasma-nm-5.4.0/editor/kde5-nm-connection-editor.desktop
2015-08-20 14:30:16.0 +0200
+++ new/plasma-nm-5.4.1/editor/kde5-nm-connection-editor.desktop
2015-09-03 12:24:27.0 +0200
@@ -5,6 +5,7 @@
 Name[bs]=kde5-nm-editor-konekcije
 Name[ca]=kde5-nm-connection-editor
 Name[cs]=kde5-nm-connection-editor
+Name[da]=kde5-nm-connection-editor
 Name[de]=KDE5-NM-Verbindungseditor
 Name[el]=kde5-nm-connection-editor
 Name[en_GB]=kde5-nm-connection-editor
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-5.4.0/kded/networkmanagement.notifyrc 
new/plasma-nm-5.4.1/kded/networkmanagement.notifyrc
--- old/plasma-nm-5.4.0/kded/networkmanagement.notifyrc 2015-08-20 
14:30:16.0 +0200
+++ new/plasma-nm-5.4.1/kded/networkmanagement.notifyrc 2015-09-03 
12:24:27.0 +0200
@@ -6,6 +6,7 @@
 Name[bs]=Upravljanje mrežom
 Name[ca]=Gestió de la xarxa
 Name[cs]=Správa sítě
+Name[da]=Netværkshåndtering
 Name[de]=Netzwerkverwaltung
 Name[el]=Διαχείριση δικτύων
 Name[en_GB]=Network management
@@ -45,6 +46,7 @@
 Comment[bs]=Upravljanje mrežom
 Comment[ca]=Gestió de la xarxa
 Comment[cs]=Správa sítě
+Comment[da]=Netværkshåndtering
 Comment[de]=Netzwerkverwaltung
 Comment[el]=Διαχείριση δικτύων
 Comment[en_GB]=Network management
@@ -86,6 +88,7 @@
 Name[bs]=Konekcija aktivirana
 Name[ca]=Connexió activada
 Name[cs]=Spojení aktivováno
+Name[da]=Forbindelse aktiveret
 Name[de]=Verbindung aktiviert
 Name[el]=Η σύνδεση ενεργοποιήθηκε
 Name[en_GB]=Connection activated
@@ -128,6 +131,7 @@
 Name[bs]=Konekcija deaktivirana
 Name[ca]=Connexió desactivada
 Name[cs]=Spojení deaktivováno
+Name[da]=Forbindelse deaktiveret
 Name[de]=Verbindung deaktiviert
 Name[el]=Η σύνδεση απενεργοποιήθηκε
 Name[en_GB]=Connection deactivated
@@ -170,6 +174,7 @@
 Name[bs]=Konekcija dodana
 Name[ca]=S'ha afegit una connexió 
 Name[cs]=Spojení bylo přidáno
+Name[da]=Forbindelse tilføjet
 Name[de]=Verbindung hinzugefügt
 Name[el]=Η σύνδεση προστέθηκε
 Name[en_GB]=Connection added
@@ -212,6 +217,7 @@
 Name[bs]=Konekcija uklonjena
 

commit plasma-nm5 for openSUSE:Factory

2015-09-01 Thread h_root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2015-09-02 07:52:25

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


Package is "plasma-nm5"

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2015-08-02 
22:45:21.0 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2015-09-02 07:52:29.0 +0200
@@ -1,0 +2,26 @@
+Mon Aug 24 17:52:38 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.4.0:
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.4.0.php
+
+---
+Sun Aug 16 10:17:06 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.3.95 aka 5.4 beta:
+  This release of Plasma brings many nice touches for our users
+  such as much improved high DPI support, KRunner auto-completion
+  and many new beautiful Breeze icons. It also lays the ground for
+  the future with a tech preview of Wayland session available.
+  We're shipping a few new components such as an Audio Volume
+  Plasma Widget, monitor calibration tool and the User Manager
+  tool comes out beta.
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.3.95.php
+
+---
+Sun Aug 16 09:03:33 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Build the openconnect plugin on Leap
+
+---

Old:

  plasma-nm-5.3.2.tar.xz

New:

  plasma-nm-5.4.0.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.1ZAbCY/_old  2015-09-02 07:52:30.0 +0200
+++ /var/tmp/diff_new_pack.1ZAbCY/_new  2015-09-02 07:52:30.0 +0200
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.3.2
+Version:5.4.0
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)
@@ -57,9 +57,7 @@
 BuildRequires:  pkgconfig(Qt5Network) >= 5.4.0
 BuildRequires:  pkgconfig(Qt5Quick) >= 5.4.0
 BuildRequires:  pkgconfig(Qt5Widgets) >= 5.4.0
-%if %suse_version != 1315
 BuildRequires:  pkgconfig(openconnect) >= 4.00
-%endif
 Requires:   NetworkManager
 Requires:   kded
 Requires:   kwalletd5
@@ -200,6 +198,30 @@
 %description pptp
 pptp plugin for plasma-nm components.
 
+%package ssh
+Summary:SSH support for %{name}
+Group:  System/GUI/KDE
+Requires:   %{name} = %{version}
+# NetworkManager-ssh doesn't exist in Factory
+#Requires:   NetworkManager-ssh
+Supplements:packageand(%{name}:NetworkManager-ssh)
+Provides:   NetworkManager-ssh-frontend
+
+%description ssh
+ssh plugin for plasma-nm components.
+
+%package sstp
+Summary:sstp support for %{name}
+Group:  System/GUI/KDE
+Requires:   %{name} = %{version}
+# NetworkManager-ssh doesn't exist in Factory
+#Requires:   NetworkManager-ssh
+Supplements:packageand(%{name}:NetworkManager-sstp)
+Provides:   NetworkManager-sstp-frontend
+
+%description sstp
+sstp plugin for plasma-nm components.
+
 %lang_package
 %prep
 %setup -q -n plasma-nm-%{version}
@@ -241,13 +263,11 @@
 %{_kf5_plugindir}/*_vpncui.so
 %{_kf5_servicesdir}/plasmanetworkmanagement_vpncui.desktop
 
-%if %suse_version != 1315
 %files openconnect
 %defattr(-,root,root)
 %doc COPYING*
 %{_kf5_plugindir}/*_openconnectui.so
 %{_kf5_servicesdir}/plasmanetworkmanagement_openconnectui.desktop
-%endif
 
 %files openswan
 %defattr(-,root,root)
@@ -273,6 +293,18 @@
 %{_kf5_plugindir}/*_pptpui.so
 %{_kf5_servicesdir}/plasmanetworkmanagement_pptpui.desktop
 
+%files ssh
+%defattr(-,root,root)
+%doc COPYING*
+%{_kf5_plugindir}/*_sshui.so
+%{_kf5_servicesdir}/plasmanetworkmanagement_sshui.desktop
+
+%files sstp
+%defattr(-,root,root)
+%doc COPYING*
+%{_kf5_plugindir}/*_sstpui.so
+%{_kf5_servicesdir}/plasmanetworkmanagement_sstpui.desktop
+
 %if %{with lang}
 %files lang
 %defattr(-,root,root)

++ plasma-nm-5.3.2.tar.xz -> plasma-nm-5.4.0.tar.xz ++
 86239 lines of diff (skipped)




commit plasma-nm5 for openSUSE:Factory

2015-08-02 Thread h_root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2015-08-02 22:45:19

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


Package is plasma-nm5

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2015-07-08 
06:58:09.0 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2015-08-02 22:45:21.0 +0200
@@ -1,0 +2,5 @@
+Sun Jul 26 15:53:38 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Fix Oboletes/Provides versions regarding Leap versioning
+
+---



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.pzPUOY/_old  2015-08-02 22:45:21.0 +0200
+++ /var/tmp/diff_new_pack.pzPUOY/_new  2015-08-02 22:45:21.0 +0200
@@ -70,7 +70,7 @@
 Provides:   NetworkManager-client
 Provides:   plasma-nm-kf5 = %{version}
 Obsoletes:  plasma-nm-kf5  %{version}
-%if 0%{?suse_version}  1320
+%if 0%{?suse_version}  1314  %{suse_version} != 1320
 Provides:   plasma-nm = %{version}
 Obsoletes:  plasma-nm  %{version}
 %endif
@@ -95,7 +95,7 @@
 Requires:   NetworkManager-openvpn
 Supplements:packageand(%{name}:NetworkManager-openvpn)
 Provides:   NetworkManager-openvpn-frontend
-%if 0%{?suse_version}  1320
+%if 0%{?suse_version}  1314  %{suse_version} != 1320
 Provides:   plasma-nm-openvpn = %{version}
 Obsoletes:  plasma-nm-openvpn  %{version}
 %endif
@@ -111,7 +111,7 @@
 Requires:   NetworkManager-vpnc
 Supplements:packageand(%{name}:NetworkManager-vpnc)
 Provides:   NetworkManager-vpnc-frontend
-%if 0%{?suse_version}  1320
+%if 0%{?suse_version}  1314  %{suse_version} != 1320
 Provides:   plasma-nm-vpnc = %{version}
 Obsoletes:  plasma-nm-vpnc  %{version}
 %endif
@@ -128,7 +128,7 @@
 Requires:   openconnect
 Supplements:packageand(%{name}:NetworkManager-openconnect:openconnect)
 Provides:   NetworkManager-openconnect-frontend
-%if 0%{?suse_version}  1320
+%if 0%{?suse_version}  1314  %{suse_version} != 1320
 Provides:   plasma-nm-openconnect = %{version}
 Obsoletes:  plasma-nm-openconnect  %{version}
 %endif
@@ -145,7 +145,7 @@
 #Requires:   NetworkManager-openswan
 #Supplements:packageand(%{name}:NetworkManager-openswan)
 Provides:   NetworkManager-openswan-frontend
-%if 0%{?suse_version}  1320
+%if 0%{?suse_version}  1314  %{suse_version} != 1320
 Provides:   plasma-nm-openswan = %{version}
 Obsoletes:  plasma-nm-openswan  %{version}
 %endif
@@ -160,7 +160,7 @@
 Requires:   NetworkManager-strongswan
 Supplements:packageand(%{name}:NetworkManager-strongswan)
 Provides:   NetworkManager-strongswan-frontend
-%if 0%{?suse_version}  1320
+%if 0%{?suse_version}  1314  %{suse_version} != 1320
 Provides:   plasma-nm-strongswan = %{version}
 Obsoletes:  plasma-nm-strongswan  %{version}
 %endif
@@ -176,7 +176,7 @@
 #Requires:   NetworkManager-l2tp
 #Supplements:packageand(%{name}:NetworkManager-l2tp)
 Provides:   NetworkManager-l2tp-frontend
-%if 0%{?suse_version}  1320
+%if 0%{?suse_version}  1314  %{suse_version} != 1320
 Provides:   plasma-nm-l2tp = %{version}
 Obsoletes:  plasma-nm-l2tp  %{version}
 %endif
@@ -191,7 +191,7 @@
 Requires:   NetworkManager-pptp
 Supplements:packageand(%{name}:NetworkManager-pptp)
 Provides:   NetworkManager-pptp-frontend
-%if 0%{?suse_version}  1320
+%if 0%{?suse_version}  1314  %{suse_version} != 1320
 Provides:   plasma-nm-pptp = %{version}
 Obsoletes:  plasma-nm-pptp  %{version}
 %endif




commit plasma-nm5 for openSUSE:Factory

2015-07-07 Thread h_root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2015-07-08 06:58:04

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


Package is plasma-nm5

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2015-05-29 
10:36:14.0 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2015-07-08 06:58:09.0 +0200
@@ -1,0 +2,8 @@
+Sun Jun 28 18:32:26 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.3.2:
+  * Bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.3.2.php
+
+---

Old:

  plasma-nm-5.3.1.tar.xz

New:

  plasma-nm-5.3.2.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.ADHOAh/_old  2015-07-08 06:58:10.0 +0200
+++ /var/tmp/diff_new_pack.ADHOAh/_new  2015-07-08 06:58:10.0 +0200
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.3.1
+Version:5.3.2
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)
@@ -80,9 +80,9 @@
 %endif
 Obsoletes:  NetworkManager-kde4-devel
 Obsoletes:  NetworkManager-kde4-libs
+Obsoletes:  NetworkManager-kde4-libs-lang
 Obsoletes:  NetworkManager-novellvpn-kde4
 Obsoletes:  plasmoid-networkmanagement
-Obsoletes:  NetworkManager-kde4-libs-lang
 
 %description
 Plasma applet for controlling network connections on systems

++ plasma-nm-5.3.1.tar.xz - plasma-nm-5.3.2.tar.xz ++
 13782 lines of diff (skipped)




commit plasma-nm5 for openSUSE:Factory

2015-05-29 Thread h_root
Hello community,

here is the log from the commit of package plasma-nm5 for openSUSE:Factory 
checked in at 2015-05-29 10:36:12

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


Package is plasma-nm5

Changes:

--- /work/SRC/openSUSE:Factory/plasma-nm5/plasma-nm5.changes2015-05-19 
23:30:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-nm5.new/plasma-nm5.changes   
2015-05-29 10:36:14.0 +0200
@@ -1,0 +2,24 @@
+Thu May 28 11:55:33 UTC 2015 - tittiatc...@gmail.com
+
+- Add obsoletes for the old NetworkManager-kde4 package to 
+  enable a smooth upgrade path from older openSUSE releases
+
+---
+Fri May 22 15:30:18 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.3.1:
+  * Bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.3.1.php
+
+---
+Tue May 19 01:38:29 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Drop pkgconfig(Qt5Concurrent), pkgconfig(Qt5Designer),
+  pkgconfig(Qt5Declarative), pkgconfig(Qt5OpenGL),
+  pkgconfig(Qt5Script), pkgconfig(Qt5ScriptTools),
+  pkgconfig(Qt5Sql), pkgconfig(Qt5Svg), pkgconfig(Qt5Test),
+  pkgconfig(Qt5WebKit), pkgconfig(Qt5WebKitWidgets) and
+  pkgconfig(Qt5X11Extras) BuildRequires, no longer needed
+
+---

Old:

  plasma-nm-5.3.0.tar.xz

New:

  plasma-nm-5.3.1.tar.xz



Other differences:
--
++ plasma-nm5.spec ++
--- /var/tmp/diff_new_pack.QKo2On/_old  2015-05-29 10:36:15.0 +0200
+++ /var/tmp/diff_new_pack.QKo2On/_new  2015-05-29 10:36:15.0 +0200
@@ -19,7 +19,7 @@
 %bcond_without lang
 %define mm_support 1
 Name:   plasma-nm5
-Version:5.3.0
+Version:5.3.1
 Release:0
 Summary:Plasma applet written in QML for managing network connections
 License:(LGPL-2.1 or LGPL-3.0) and (GPL-2.0 or GPL-3.0)
@@ -52,23 +52,11 @@
 BuildRequires:  plasma-framework-devel
 BuildRequires:  solid-devel
 BuildRequires:  update-desktop-files
-BuildRequires:  pkgconfig(Qt5Concurrent) = 5.4.0
 BuildRequires:  pkgconfig(Qt5Core) = 5.4.0
 BuildRequires:  pkgconfig(Qt5DBus) = 5.4.0
-BuildRequires:  pkgconfig(Qt5Declarative) = 5.4.0
-BuildRequires:  pkgconfig(Qt5Designer) = 5.4.0
 BuildRequires:  pkgconfig(Qt5Network) = 5.4.0
-BuildRequires:  pkgconfig(Qt5OpenGL) = 5.4.0
 BuildRequires:  pkgconfig(Qt5Quick) = 5.4.0
-BuildRequires:  pkgconfig(Qt5Script) = 5.4.0
-BuildRequires:  pkgconfig(Qt5ScriptTools) = 5.4.0
-BuildRequires:  pkgconfig(Qt5Sql) = 5.4.0
-BuildRequires:  pkgconfig(Qt5Svg) = 5.4.0
-BuildRequires:  pkgconfig(Qt5Test) = 5.4.0
-BuildRequires:  pkgconfig(Qt5WebKit) = 5.4.0
-BuildRequires:  pkgconfig(Qt5WebKitWidgets) = 5.4.0
 BuildRequires:  pkgconfig(Qt5Widgets) = 5.4.0
-BuildRequires:  pkgconfig(Qt5X11Extras) = 5.4.0
 %if %suse_version != 1315
 BuildRequires:  pkgconfig(openconnect) = 4.00
 %endif
@@ -90,6 +78,11 @@
 BuildRequires:  libKF5ModemManagerQt-devel = 5.9.0
 BuildRequires:  pkgconfig(ModemManager) = 1.0.0
 %endif
+Obsoletes:  NetworkManager-kde4-devel
+Obsoletes:  NetworkManager-kde4-libs
+Obsoletes:  NetworkManager-novellvpn-kde4
+Obsoletes:  plasmoid-networkmanagement
+Obsoletes:  NetworkManager-kde4-libs-lang
 
 %description
 Plasma applet for controlling network connections on systems
@@ -106,6 +99,7 @@
 Provides:   plasma-nm-openvpn = %{version}
 Obsoletes:  plasma-nm-openvpn  %{version}
 %endif
+Obsoletes:  NetworkManager-openvpn-kde4
 
 %description openvpn
 OpenVPN VPN plugin for plasma-nm components.
@@ -121,6 +115,7 @@
 Provides:   plasma-nm-vpnc = %{version}
 Obsoletes:  plasma-nm-vpnc  %{version}
 %endif
+Obsoletes:  NetworkManager-vpnc-kde4
 
 %description vpnc
 Vpnc plugin for plasma-nm components.
@@ -137,6 +132,7 @@
 Provides:   plasma-nm-openconnect = %{version}
 Obsoletes:  plasma-nm-openconnect  %{version}
 %endif
+Obsoletes:  NetworkManager-openconnect-kde4
 
 %description openconnect
 OpenConnect plugin for plasma-nm components.
@@ -199,6 +195,7 @@
 Provides:   plasma-nm-pptp = %{version}
 Obsoletes:  plasma-nm-pptp  %{version}
 %endif
+Obsoletes:  NetworkManager-pptp-kde4
 
 %description pptp
 pptp plugin for plasma-nm components.

++ plasma-nm-5.3.0.tar.xz - plasma-nm-5.3.1.tar.xz ++
 32264 lines of diff (skipped)




  1   2   >