Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-extra/nm-applet/files/, gnome-extra/nm-applet/
Date: Mon, 11 Feb 2019 19:31:29
Message-Id: 1549913311.0bfe07d28a9f4df96519daf7e2e145cba36536aa.leio@gentoo
1 commit: 0bfe07d28a9f4df96519daf7e2e145cba36536aa
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 11 19:28:31 2019 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 11 19:28:31 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0bfe07d2
7
8 gnome-extra/nm-applet: remove old
9
10 Package-Manager: Portage-2.3.52, Repoman-2.3.12
11 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
12
13 gnome-extra/nm-applet/Manifest | 1 -
14 .../files/nm-applet-1.8.10-cert-chooser.patch | 38 ------
15 .../files/nm-applet-1.8.10-vpn-crash.patch | 137 ---------------------
16 gnome-extra/nm-applet/nm-applet-1.8.10-r1.ebuild | 72 -----------
17 4 files changed, 248 deletions(-)
18
19 diff --git a/gnome-extra/nm-applet/Manifest b/gnome-extra/nm-applet/Manifest
20 index 724703bbbc0..9de3eccb2a9 100644
21 --- a/gnome-extra/nm-applet/Manifest
22 +++ b/gnome-extra/nm-applet/Manifest
23 @@ -1,3 +1,2 @@
24 -DIST network-manager-applet-1.8.10.tar.xz 1479032 BLAKE2B 482c7a644edaf4f19ed02ca3f29ffbbcf11c01b1c9572affa430a7edb8314d1381ca6738d998e91537903f6eceea0cff1b82b88e7acd1e9b5665c566271cdf3c SHA512 319a280ad56efe8d1b31db7879aebd6242f2e67453287476d397835069f5f5c6ce7884c84d65e0177a94a554b8f1a6e1d353ab33f8ddfc63269d8133b76b1372
25 DIST network-manager-applet-1.8.18.tar.xz 1550448 BLAKE2B 93e0075b87c13f81d3551a62da2cfc8fa41f478043c1d19540aaa6fa3ae149ce1f08d931a8141473bb759e09fbb231bd29e9d1aec8f97fa670c059b83489d48e SHA512 4871d95f3260beb8c3207e5ec8e25437b3d01758afc3bfe7d877774b21a05f4523449ee32e4cff27c082fefef88fed01db718d2227d6896c3c9b85d09cee927b
26 DIST network-manager-applet-1.8.20.tar.xz 1551392 BLAKE2B 91258012715f226467126e4eefdfcd6ebde36958be80ae5e264dbf5168e0b772ce04404030d3f7dac9a6f72088918a2c5160aba694b6b7f7d4d6289b716b76f1 SHA512 5020aefe1803ad3b59562478e793737b52a3e5fd294470cfb430c73937cdbc0be6ecba5f3f8e8dbcc5bb5ac293df2866ecc919dd5019a3e681a434078d235a41
27
28 diff --git a/gnome-extra/nm-applet/files/nm-applet-1.8.10-cert-chooser.patch b/gnome-extra/nm-applet/files/nm-applet-1.8.10-cert-chooser.patch
29 deleted file mode 100644
30 index 9aad2396953..00000000000
31 --- a/gnome-extra/nm-applet/files/nm-applet-1.8.10-cert-chooser.patch
32 +++ /dev/null
33 @@ -1,38 +0,0 @@
34 -From 4d2523b482ab78134dafc02c9b99bd15f1a9174a Mon Sep 17 00:00:00 2001
35 -From: Ben Wiederhake <BenWiederhake.GitHub@×××.de>
36 -Date: Sun, 14 Jan 2018 23:28:15 +0100
37 -Subject: [PATCH 1/1] libnma/cert-chooser: handle case of no avalable modules
38 -
39 -Cause: Apparently it's perfectly okay if the list of modules is empty
40 -(e.g., NULL). However, the code assume that this indicates an error,
41 -tries to print the NULL error, and crashes.
42 -
43 -[lkundrak@××.sk: cosmetic changes]
44 -
45 -https://bugzilla.gnome.org/show_bug.cgi?id=785674
46 -(cherry picked from commit a37483c1a364ef3cc1cfa29e7ad51ca108d75674)
47 ----
48 - src/libnma/nma-cert-chooser-button.c | 6 +++---
49 - 1 file changed, 3 insertions(+), 3 deletions(-)
50 -
51 -diff --git a/src/libnma/nma-cert-chooser-button.c b/src/libnma/nma-cert-chooser-button.c
52 -index c7089390..00651765 100644
53 ---- a/src/libnma/nma-cert-chooser-button.c
54 -+++ b/src/libnma/nma-cert-chooser-button.c
55 -@@ -93,10 +93,10 @@ modules_initialized (GObject *object, GAsyncResult *res, gpointer user_data)
56 - gchar *label;
57 -
58 - modules = gck_modules_initialize_registered_finish (res, &error);
59 -- if (!modules) {
60 -+ if (error) {
61 - /* The Front Fell Off. */
62 -- g_critical ("Error getting registered modules: %s", error->message);
63 -- g_error_free (error);
64 -+ g_warning ("Error getting registered modules: %s", error->message);
65 -+ g_clear_error (&error);
66 - }
67 -
68 - model = GTK_LIST_STORE (gtk_combo_box_get_model (GTK_COMBO_BOX (self)));
69 ---
70 -2.14.3
71 -
72
73 diff --git a/gnome-extra/nm-applet/files/nm-applet-1.8.10-vpn-crash.patch b/gnome-extra/nm-applet/files/nm-applet-1.8.10-vpn-crash.patch
74 deleted file mode 100644
75 index 8f217af2dac..00000000000
76 --- a/gnome-extra/nm-applet/files/nm-applet-1.8.10-vpn-crash.patch
77 +++ /dev/null
78 @@ -1,137 +0,0 @@
79 -From 46f99b295e59f44dfde50ec90e7c09627d32431e Mon Sep 17 00:00:00 2001
80 -From: "Jan Alexander Steffens (heftig)" <jan.steffens@×××××.com>
81 -Date: Wed, 20 Dec 2017 13:23:12 +0100
82 -Subject: [PATCH 1/2] shared/compat: fix memory handling of
83 - nm_setting_vpn_get_*_keys
84 -
85 -The compat implementations return a (transfer none) strv instead of a
86 -(transfer container) one. This has caused double frees in nm-applet:
87 -https://bugs.archlinux.org/task/56772
88 -
89 -Don't copy the keys and don't free the container later.
90 -
91 -[thaller@××××××.com: patch adjusted to avoid compiler warning]
92 -
93 -Patch imported from NetworkManager commit 8ac8c01162235c2c198bfaf25fb7d1a57a595ce5.
94 -
95 -Fixes: e93ca7fc129ec0f29f5313a3aa12839914df8fa2
96 -(cherry picked from commit 0c90e08f77b71d2bda699cf032fceec0122bbf82)
97 ----
98 - shared/nm-utils/nm-compat.c | 10 +---------
99 - 1 file changed, 1 insertion(+), 9 deletions(-)
100 -
101 -diff --git a/shared/nm-utils/nm-compat.c b/shared/nm-utils/nm-compat.c
102 -index 22ab675d..47035e62 100644
103 ---- a/shared/nm-utils/nm-compat.c
104 -+++ b/shared/nm-utils/nm-compat.c
105 -@@ -30,7 +30,7 @@ _get_keys_cb (const char *key, const char *val, gpointer user_data)
106 - {
107 - GPtrArray *a = user_data;
108 -
109 -- g_ptr_array_add (a, g_strdup (key));
110 -+ g_ptr_array_add (a, (gpointer) key);
111 - }
112 -
113 - static const char **
114 -@@ -55,14 +55,6 @@ _get_keys (NMSettingVpn *setting,
115 - g_ptr_array_sort (a, nm_strcmp_p);
116 - g_ptr_array_add (a, NULL);
117 - keys = (const char **) g_ptr_array_free (g_steal_pointer (&a), FALSE);
118 --
119 -- /* we need to cache the keys *somewhere*. */
120 -- g_object_set_qdata_full (G_OBJECT (setting),
121 -- is_secrets
122 -- ? NM_CACHED_QUARK ("libnm._nm_setting_vpn_get_secret_keys")
123 -- : NM_CACHED_QUARK ("libnm._nm_setting_vpn_get_data_keys"),
124 -- keys,
125 -- (GDestroyNotify) g_strfreev);
126 - }
127 -
128 - NM_SET_OUT (out_length, len);
129 ---
130 -2.14.3
131 -
132 -
133 -From 0d13a8b4064c83146714ecee86b69042aca35f9e Mon Sep 17 00:00:00 2001
134 -From: "Jan Alexander Steffens (heftig)" <jan.steffens@×××××.com>
135 -Date: Thu, 21 Dec 2017 20:36:48 +0100
136 -Subject: [PATCH 2/2] shared/compat: fix memory handling of
137 - nm_setting_vpn_get_*_keys()
138 -
139 -The previous fix was bad because the keys do not come from NMSettingVpn's hash
140 -table but are copies that are freed by nm_setting_vpn_foreach_* before
141 -it returns.
142 -
143 -[thaller@××××××.com: import shared code from NetworkManager, merging
144 -three patches together.]
145 -
146 -Fixes: e93ca7fc129ec0f29f5313a3aa12839914df8fa2
147 -Fixes: 0c90e08f77b71d2bda699cf032fceec0122bbf82
148 -
149 -https://mail.gnome.org/archives/networkmanager-list/2017-December/msg00069.html
150 -https://mail.gnome.org/archives/networkmanager-list/2017-December/msg00070.html
151 -(cherry picked from commit a52ccb2fe170558fc0aab4dd1d15ba8808b10951)
152 ----
153 - shared/nm-utils/nm-compat.c | 29 ++++++++++++++++++++++-------
154 - 1 file changed, 22 insertions(+), 7 deletions(-)
155 -
156 -diff --git a/shared/nm-utils/nm-compat.c b/shared/nm-utils/nm-compat.c
157 -index 47035e62..90328c06 100644
158 ---- a/shared/nm-utils/nm-compat.c
159 -+++ b/shared/nm-utils/nm-compat.c
160 -@@ -30,7 +30,7 @@ _get_keys_cb (const char *key, const char *val, gpointer user_data)
161 - {
162 - GPtrArray *a = user_data;
163 -
164 -- g_ptr_array_add (a, (gpointer) key);
165 -+ g_ptr_array_add (a, g_strdup (key));
166 - }
167 -
168 - static const char **
169 -@@ -40,22 +40,37 @@ _get_keys (NMSettingVpn *setting,
170 - {
171 - guint len;
172 - const char **keys = NULL;
173 -- gs_unref_ptrarray GPtrArray *a = NULL;
174 -+ GPtrArray *a;
175 -
176 - nm_assert (NM_IS_SETTING_VPN (setting));
177 -
178 -- a = g_ptr_array_new ();
179 -+ if (is_secrets)
180 -+ len = nm_setting_vpn_get_num_secrets (setting);
181 -+ else
182 -+ len = nm_setting_vpn_get_num_data_items (setting);
183 -+
184 -+ a = g_ptr_array_sized_new (len + 1);
185 -+
186 - if (is_secrets)
187 - nm_setting_vpn_foreach_secret (setting, _get_keys_cb, a);
188 - else
189 - nm_setting_vpn_foreach_data_item (setting, _get_keys_cb, a);
190 -- len = a->len;
191 -
192 -- if (a->len) {
193 -+ len = a->len;
194 -+ if (len) {
195 - g_ptr_array_sort (a, nm_strcmp_p);
196 - g_ptr_array_add (a, NULL);
197 -- keys = (const char **) g_ptr_array_free (g_steal_pointer (&a), FALSE);
198 -- }
199 -+ keys = g_memdup (a->pdata, a->len * sizeof (gpointer));
200 -+
201 -+ /* we need to cache the keys *somewhere*. */
202 -+ g_object_set_qdata_full (G_OBJECT (setting),
203 -+ is_secrets
204 -+ ? NM_CACHED_QUARK ("libnm._nm_setting_vpn_get_secret_keys")
205 -+ : NM_CACHED_QUARK ("libnm._nm_setting_vpn_get_data_keys"),
206 -+ g_ptr_array_free (a, FALSE),
207 -+ (GDestroyNotify) g_strfreev);
208 -+ } else
209 -+ g_ptr_array_free (a, TRUE);
210 -
211 - NM_SET_OUT (out_length, len);
212 - return keys;
213 ---
214 -2.14.3
215 -
216
217 diff --git a/gnome-extra/nm-applet/nm-applet-1.8.10-r1.ebuild b/gnome-extra/nm-applet/nm-applet-1.8.10-r1.ebuild
218 deleted file mode 100644
219 index 7ce48b41917..00000000000
220 --- a/gnome-extra/nm-applet/nm-applet-1.8.10-r1.ebuild
221 +++ /dev/null
222 @@ -1,72 +0,0 @@
223 -# Copyright 1999-2018 Gentoo Foundation
224 -# Distributed under the terms of the GNU General Public License v2
225 -
226 -EAPI=6
227 -GNOME2_LA_PUNT="yes"
228 -GNOME_ORG_MODULE="network-manager-applet"
229 -
230 -inherit gnome2
231 -
232 -DESCRIPTION="GNOME applet for NetworkManager"
233 -HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager"
234 -
235 -LICENSE="GPL-2+"
236 -SLOT="0"
237 -IUSE="+introspection +gcr +modemmanager selinux teamd"
238 -KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86"
239 -
240 -RDEPEND="
241 - >=app-crypt/libsecret-0.18
242 - >=dev-libs/glib-2.38:2[dbus]
243 - >=dev-libs/dbus-glib-0.88
244 - >=sys-apps/dbus-1.4.1
245 - >=sys-auth/polkit-0.96-r1
246 - >=x11-libs/gtk+-3.10:3[introspection?]
247 - >=x11-libs/libnotify-0.7.0
248 -
249 - app-text/iso-codes
250 - >=net-misc/networkmanager-1.7:=[introspection?,modemmanager?,teamd?]
251 - net-misc/mobile-broadband-provider-info
252 -
253 - introspection? ( >=dev-libs/gobject-introspection-0.9.6:= )
254 - virtual/freedesktop-icon-theme
255 - virtual/libgudev:=
256 - gcr? ( >=app-crypt/gcr-3.14:=[gtk] )
257 - modemmanager? ( net-misc/modemmanager )
258 - selinux? ( sys-libs/libselinux )
259 - teamd? ( >=dev-libs/jansson-2.7 )
260 -"
261 -DEPEND="${RDEPEND}
262 - >=dev-util/gtk-doc-am-1.0
263 - >=dev-util/intltool-0.50.1
264 - virtual/pkgconfig
265 -"
266 -
267 -PDEPEND="virtual/notification-daemon" #546134
268 -
269 -PATCHES=(
270 - # shared/compat: fix memory handling of nm_setting_vpn_get_*_keys
271 - # (from 'master')
272 - "${FILESDIR}"/${P}-vpn-crash.patch
273 -
274 - # libnma/cert-chooser: handle case of no avalable modules (from
275 - # 'master')
276 - "${FILESDIR}"/${P}-cert-chooser.patch
277 -)
278 -
279 -src_configure() {
280 - local myconf=(
281 - --without-appindicator
282 - --disable-lto
283 - --disable-ld-gc
284 - --disable-more-warnings
285 - --disable-static
286 - --localstatedir=/var
287 - $(use_enable introspection)
288 - $(use_with gcr)
289 - $(use_with modemmanager wwan)
290 - $(use_with selinux)
291 - $(use_with teamd team)
292 - )
293 - gnome2_src_configure "${myconf[@]}"
294 -}