Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package gnome-control-center for
openSUSE:Factory checked in at 2022-03-20 20:54:36
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gnome-control-center (Old)
and /work/SRC/openSUSE:Factory/.gnome-control-center.new.25692 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gnome-control-center"
Sun Mar 20 20:54:36 2022 rev:209 rq:962642 version:41.4
Changes:
--------
---
/work/SRC/openSUSE:Factory/gnome-control-center/gnome-control-center.changes
2022-02-17 00:30:22.093434978 +0100
+++
/work/SRC/openSUSE:Factory/.gnome-control-center.new.25692/gnome-control-center.changes
2022-03-20 20:54:46.294459381 +0100
@@ -1,0 +2,7 @@
+Wed Mar 16 06:47:50 UTC 2022 - Jonathan Kang <[email protected]>
+
+- Add gnome-control-center-reload-vpn-plugins.patch:
+ network/connection-editor: always load all available VPN plugins
+ (glgo#GNOME/gnome-control-center!1263).
+
+-------------------------------------------------------------------
New:
----
gnome-control-center-reload-vpn-plugins.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ gnome-control-center.spec ++++++
--- /var/tmp/diff_new_pack.uzJa58/_old 2022-03-20 20:54:46.982460371 +0100
+++ /var/tmp/diff_new_pack.uzJa58/_new 2022-03-20 20:54:46.986460377 +0100
@@ -40,6 +40,8 @@
Patch1: gnome-control-center-fix-autologin-shortcut.patch
# PATCH-FIX-UPSTREAM 496c719d7b1492b54c34ace648feb3802f34f774.patch -- Remove
duplicate line from .desktop file
Patch2:
https://gitlab.gnome.org/GNOME/gnome-control-center/-/commit/496c719d7b1492b54c34ace648feb3802f34f774.patch
+# PATCH-FIX-UPSTREAM gnome-control-center-reload-vpn-plugins.patch
glgo#GNOME/gnome-control-center!1263 [email protected] --
network/connection-editor: always load all available VPN plugins
+Patch3: gnome-control-center-reload-vpn-plugins.patch
### patches for Leap >= 15 plus SLE >= 15, but not TW
# PATCH-FEATURE-SLE gnome-control-center-info-never-use-gnome-software.patch
bsc#999336 [email protected] -- info: Never search for gnome-software as an
option when checking for updates on SLE and Leap 42.2, because we use
gpk-update-viewer.
@@ -185,6 +187,7 @@
%patch0 -p1
%patch1 -p1
%patch2 -p1
+%patch3 -p1
# patches for Leap >= 15 plus SLE >= 15, but not TW
%if 0%{?sle_version} >= 150000
%patch1001 -p1
++++++ gnome-control-center-reload-vpn-plugins.patch ++++++
Index: gnome-control-center-41.4/panels/network/connection-editor/vpn-helpers.c
===================================================================
---
gnome-control-center-41.4.orig/panels/network/connection-editor/vpn-helpers.c
+++ gnome-control-center-41.4/panels/network/connection-editor/vpn-helpers.c
@@ -53,14 +53,9 @@ _sort_vpn_plugins (NMVpnPluginInfo *aa,
GSList *
vpn_get_plugins (void)
{
- static gboolean plugins_loaded = FALSE;
static GSList *plugins = NULL;
GSList *p;
- if (G_LIKELY (plugins_loaded))
- return plugins;
- plugins_loaded = TRUE;
-
p = nm_vpn_plugin_info_list_load ();
plugins = NULL;
while (p) {