mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: network-manager: Update to 1.40.0, use gexps and remove input labels.
* gnu/packages/gnome.scm (network-manager): Update to 1.40.0. [arguments]: Use gexps. [native-inputs, propagated-inputs]: Remove labels. * gnu/packages/patches/network-manager-plugin-path.patch: Rebase patch.
This commit is contained in:
parent
3c5394ca7b
commit
9539408e91
2 changed files with 144 additions and 139 deletions
|
@ -3,39 +3,47 @@ From: =?UTF-8?q?Tom=C3=A1=C5=A1=20=C4=8Cech?= <sleep_walker@gnu.org>
|
|||
Date: Wed, 3 Jul 2019 13:31:54 +0200
|
||||
Subject: [PATCH] respect NM_VPN_PLUGIN_DIR
|
||||
|
||||
--- a/src/core/vpn/nm-vpn-manager.c 2021-10-29 13:20:01.062917840 -0400
|
||||
+++ b/src/core/vpn/nm-vpn-manager.c 2021-10-29 13:26:46.094397018 -0400
|
||||
@@ -211,6 +211,7 @@
|
||||
GSList * infos, *info;
|
||||
const char * conf_dir_etc = _nm_vpn_plugin_info_get_default_dir_etc();
|
||||
const char * conf_dir_lib = _nm_vpn_plugin_info_get_default_dir_lib();
|
||||
+ const char * conf_dir_user = _nm_vpn_plugin_info_get_default_dir_user ();
|
||||
Rebased by Maxim Cournoyer on 2022/08/23.
|
||||
|
||||
diff --git a/src/core/vpn/nm-vpn-manager.c b/src/core/vpn/nm-vpn-manager.c
|
||||
index 6bf8edaee5..9bd960ba86 100644
|
||||
--- a/src/core/vpn/nm-vpn-manager.c
|
||||
+++ b/src/core/vpn/nm-vpn-manager.c
|
||||
@@ -209,8 +209,9 @@ nm_vpn_manager_init(NMVpnManager *self)
|
||||
NMVpnManagerPrivate *priv = NM_VPN_MANAGER_GET_PRIVATE(self);
|
||||
GFile *file;
|
||||
GSList *infos, *info;
|
||||
- const char *conf_dir_etc = _nm_vpn_plugin_info_get_default_dir_etc();
|
||||
- const char *conf_dir_lib = _nm_vpn_plugin_info_get_default_dir_lib();
|
||||
+ const char *conf_dir_etc = _nm_vpn_plugin_info_get_default_dir_etc();
|
||||
+ const char *conf_dir_lib = _nm_vpn_plugin_info_get_default_dir_lib();
|
||||
+ const char *conf_dir_user = _nm_vpn_plugin_info_get_default_dir_user();
|
||||
|
||||
/* Watch the VPN directory for changes */
|
||||
file = g_file_new_for_path(conf_dir_lib);
|
||||
@@ -229,6 +230,14 @@
|
||||
@@ -229,6 +230,14 @@ nm_vpn_manager_init(NMVpnManager *self)
|
||||
g_signal_connect(priv->monitor_etc, "changed", G_CALLBACK(vpn_dir_changed), self);
|
||||
}
|
||||
|
||||
+ file = g_file_new_for_path (conf_dir_user);
|
||||
+ priv->monitor_etc = g_file_monitor_directory (file, G_FILE_MONITOR_NONE, NULL, NULL);
|
||||
+ g_object_unref (file);
|
||||
+ file = g_file_new_for_path(conf_dir_user);
|
||||
+ priv->monitor_etc = g_file_monitor_directory(file, G_FILE_MONITOR_NONE, NULL, NULL);
|
||||
+ g_object_unref(file);
|
||||
+ if (priv->monitor_etc) {
|
||||
+ priv->monitor_id_etc =
|
||||
+ g_signal_connect (priv->monitor_etc, "changed", G_CALLBACK (vpn_dir_changed), self);
|
||||
+ g_signal_connect(priv->monitor_etc, "changed", G_CALLBACK(vpn_dir_changed), self);
|
||||
+ }
|
||||
+
|
||||
/* first read conf_dir_lib. The name files are not really user configuration, but
|
||||
* plugin configuration. Hence we expect ~newer~ plugins to install their files
|
||||
* in /usr/lib/NetworkManager. We want to prefer those files.
|
||||
@@ -243,6 +252,11 @@
|
||||
@@ -243,6 +252,11 @@ nm_vpn_manager_init(NMVpnManager *self)
|
||||
try_add_plugin(self, info->data);
|
||||
g_slist_free_full(infos, g_object_unref);
|
||||
|
||||
+ infos = _nm_vpn_plugin_info_list_load_dir(conf_dir_user, TRUE, 0, NULL, NULL);
|
||||
+ for (info = infos; info; info = info->next)
|
||||
+ try_add_plugin (self, info->data);
|
||||
+ g_slist_free_full (infos, g_object_unref);
|
||||
+ try_add_plugin(self, info->data);
|
||||
+ g_slist_free_full(infos, g_object_unref);
|
||||
+
|
||||
priv->active_services = g_hash_table_new_full(nm_str_hash, g_str_equal, g_free, NULL);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue