From owner-svn-ports-all@freebsd.org Thu Nov 30 20:36:38 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 94700DB96B4; Thu, 30 Nov 2017 20:36:38 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A00CF73FA1; Thu, 30 Nov 2017 20:36:36 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vAUKaZeV022832; Thu, 30 Nov 2017 20:36:35 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vAUKaZmH022829; Thu, 30 Nov 2017 20:36:35 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201711302036.vAUKaZmH022829@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Thu, 30 Nov 2017 20:36:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r455225 - in head/sysutils/xfce4-wavelan-plugin: . files X-SVN-Group: ports-head X-SVN-Commit-Author: madpilot X-SVN-Commit-Paths: in head/sysutils/xfce4-wavelan-plugin: . files X-SVN-Commit-Revision: 455225 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 30 Nov 2017 20:36:38 -0000 Author: madpilot Date: Thu Nov 30 20:36:35 2017 New Revision: 455225 URL: https://svnweb.freebsd.org/changeset/ports/455225 Log: - Import upstream patch to fix a memory leak [1] - While here rename and regenerate patches PR: 223937 [1] Submitted by: J.R. Oldroyd Obtained from: https://git.xfce.org/panel-plugins/xfce4-wavelan-plugin/commit/?id=d4c76389d63199636c52e8a7a0ce80d5f2fde591 MFH: 2017Q4 Added: head/sysutils/xfce4-wavelan-plugin/files/patch-panel-plugin_wavelan.c - copied, changed from r455224, head/sysutils/xfce4-wavelan-plugin/files/patch-panel-plugin__wavelan.c head/sysutils/xfce4-wavelan-plugin/files/patch-panel-plugin_wi__bsd.c - copied, changed from r455224, head/sysutils/xfce4-wavelan-plugin/files/patch-panel-plugin__wi_bsd.c Deleted: head/sysutils/xfce4-wavelan-plugin/files/patch-panel-plugin__wavelan.c head/sysutils/xfce4-wavelan-plugin/files/patch-panel-plugin__wi_bsd.c Modified: head/sysutils/xfce4-wavelan-plugin/Makefile Modified: head/sysutils/xfce4-wavelan-plugin/Makefile ============================================================================== --- head/sysutils/xfce4-wavelan-plugin/Makefile Thu Nov 30 20:28:15 2017 (r455224) +++ head/sysutils/xfce4-wavelan-plugin/Makefile Thu Nov 30 20:36:35 2017 (r455225) @@ -3,6 +3,7 @@ PORTNAME= xfce4-wavelan-plugin PORTVERSION= 0.6.0 +PORTREVISION= 1 CATEGORIES= sysutils xfce MASTER_SITES= XFCE/src/panel-plugins/${PORTNAME}/${PORTVERSION:R} DIST_SUBDIR= xfce4 Copied and modified: head/sysutils/xfce4-wavelan-plugin/files/patch-panel-plugin_wavelan.c (from r455224, head/sysutils/xfce4-wavelan-plugin/files/patch-panel-plugin__wavelan.c) ============================================================================== --- head/sysutils/xfce4-wavelan-plugin/files/patch-panel-plugin__wavelan.c Thu Nov 30 20:28:15 2017 (r455224, copy source) +++ head/sysutils/xfce4-wavelan-plugin/files/patch-panel-plugin_wavelan.c Thu Nov 30 20:36:35 2017 (r455225) @@ -1,7 +1,25 @@ --- panel-plugin/wavelan.c.orig 2016-10-29 06:46:02 UTC +++ panel-plugin/wavelan.c -@@ -99,11 +99,11 @@ wavelan_set_state(t_wavelan *wavelan, gi +@@ -64,6 +64,9 @@ typedef struct + GtkWidget *image; + GtkWidget *signal; + GtkWidget *tooltip_text; ++#if GTK_CHECK_VERSION (3, 16, 0) ++ GtkCssProvider *css_provider; ++#endif + XfcePanelPlugin *plugin; + +@@ -77,7 +80,6 @@ wavelan_set_state(t_wavelan *wavelan, gint state) + { + GdkRGBA color; + #if GTK_CHECK_VERSION (3, 16, 0) +- GtkCssProvider *css_provider; + gchar *css; + #endif + +@@ -99,11 +101,11 @@ wavelan_set_state(t_wavelan *wavelan, gint state) + if (wavelan->signal_colors) { /* set color */ - if (state > 70) @@ -15,7 +33,21 @@ gdk_rgba_parse(&color, signal_color_weak); else gdk_rgba_parse(&color, signal_color_bad); -@@ -183,7 +183,15 @@ wavelan_timer(gpointer data) +@@ -118,12 +120,7 @@ wavelan_set_state(t_wavelan *wavelan, gint state) + #endif + gdk_rgba_to_string(&color)); + /* Setup Gtk style */ +- css_provider = gtk_css_provider_new (); +- gtk_css_provider_load_from_data (css_provider, css, strlen(css), NULL); +- gtk_style_context_add_provider ( +- GTK_STYLE_CONTEXT (gtk_widget_get_style_context (GTK_WIDGET (wavelan->signal))), +- GTK_STYLE_PROVIDER (css_provider), +- GTK_STYLE_PROVIDER_PRIORITY_APPLICATION); ++ gtk_css_provider_load_from_data (wavelan->css_provider, css, strlen(css), NULL); + g_free(css); + #else + gtk_widget_override_background_color(GTK_WIDGET(wavelan->signal), +@@ -183,7 +180,15 @@ wavelan_timer(gpointer data) } } else { @@ -32,3 +64,17 @@ if (strlen(stats.ws_netname) > 0) /* Translators: net_name: quality quality_unit at rate Mb/s*/ +@@ -338,6 +343,13 @@ wavelan_new(XfcePanelPlugin *plugin) + + /* setup progressbar */ + wavelan->signal = gtk_progress_bar_new(); ++#if GTK_CHECK_VERSION (3, 16, 0) ++ wavelan->css_provider = gtk_css_provider_new (); ++ gtk_style_context_add_provider ( ++ GTK_STYLE_CONTEXT (gtk_widget_get_style_context (GTK_WIDGET (wavelan->signal))), ++ GTK_STYLE_PROVIDER (wavelan->css_provider), ++ GTK_STYLE_PROVIDER_PRIORITY_APPLICATION); ++#endif + wavelan->image = GTK_WIDGET(xfce_panel_image_new_from_source("network-wireless")); + + gtk_box_pack_start(GTK_BOX(wavelan->box), GTK_WIDGET(wavelan->image), FALSE, FALSE, 0); Copied and modified: head/sysutils/xfce4-wavelan-plugin/files/patch-panel-plugin_wi__bsd.c (from r455224, head/sysutils/xfce4-wavelan-plugin/files/patch-panel-plugin__wi_bsd.c) ============================================================================== --- head/sysutils/xfce4-wavelan-plugin/files/patch-panel-plugin__wi_bsd.c Thu Nov 30 20:28:15 2017 (r455224, copy source) +++ head/sysutils/xfce4-wavelan-plugin/files/patch-panel-plugin_wi__bsd.c Thu Nov 30 20:36:35 2017 (r455225) @@ -48,7 +48,7 @@ #ifdef __NetBSD__ #include #include -@@ -107,13 +98,9 @@ struct wi_device +@@ -107,14 +98,10 @@ struct wi_device }; static int _wi_carrier(const struct wi_device *); @@ -59,11 +59,12 @@ static int _wi_getval(const struct wi_device *, struct ieee80211req_scan_result *); -#else -static int _wi_getval(const struct wi_device *, struct wi_req *); --#endif #endif +-#endif static int _wi_netname(const struct wi_device *, char *, size_t); static int _wi_quality(const struct wi_device *, int *); -@@ -164,7 +151,7 @@ wi_query(struct wi_device *device, struc + static int _wi_rate(const struct wi_device *, int *); +@@ -164,7 +151,7 @@ wi_query(struct wi_device *device, struct wi_stats *st strlcpy(stats->ws_qunit, "dBm", 4); #endif /* check vendor (independent of carrier state) */ @@ -72,7 +73,7 @@ if ((result = _wi_vendor(device, stats->ws_vendor, WI_MAXSTRLEN)) != WI_OK) return(result); #endif -@@ -305,12 +292,10 @@ _wi_rate(const struct wi_device *device, +@@ -305,12 +292,10 @@ _wi_rate(const struct wi_device *device, int *rate) } #endif @@ -86,7 +87,7 @@ /* * We use sysctl to get a device description */ -@@ -327,59 +312,30 @@ _wi_vendor(const struct wi_device *devic +@@ -327,59 +312,30 @@ _wi_vendor(const struct wi_device *device, char *buffe dev_number = (int)strtol(c, NULL, 10); *c = '\0'; @@ -118,7 +119,7 @@ - const char* vendor = "Unknown"; - struct wi_req wr; - int result; -- + - bzero((void*)&wr, sizeof(wr)); - wr.wi_len = WI_MAX_DATALEN; - wr.wi_type = WI_RID_STA_IDENTITY; @@ -151,7 +152,7 @@ - snprintf(buffer, len, "%s (ID %d, version %d.%d)", vendor, - wr.wi_val[0], wr.wi_val[2], wr.wi_val[3]); -#endif - +- return(WI_OK); } -#endif /* wi_vendor */ @@ -163,7 +164,7 @@ static int _wi_getval(const struct wi_device *device, struct ieee80211req_scan_result *scan) { -@@ -404,7 +360,9 @@ _wi_getval(const struct wi_device *devic +@@ -404,7 +360,9 @@ _wi_getval(const struct wi_device *device, struct ieee return(WI_OK); } @@ -174,7 +175,7 @@ static int _wi_getval(const struct wi_device *device, struct wi_req *wr) { -@@ -420,10 +378,11 @@ _wi_getval(const struct wi_device *devic +@@ -420,10 +378,11 @@ _wi_getval(const struct wi_device *device, struct wi_r return(WI_OK); } #endif @@ -187,7 +188,7 @@ struct ieee80211req ireq; memset(&ireq, 0, sizeof(ireq)); -@@ -434,7 +393,7 @@ _wi_netname(const struct wi_device *devi +@@ -434,7 +393,7 @@ _wi_netname(const struct wi_device *device, char *buff ireq.i_len = len; if (ioctl(device->socket, SIOCG80211, &ireq) < 0) return WI_NOSUCHDEV; @@ -196,7 +197,7 @@ struct wi_req wr; int result; -@@ -454,7 +413,7 @@ _wi_netname(const struct wi_device *devi +@@ -454,7 +413,7 @@ _wi_netname(const struct wi_device *device, char *buff static int _wi_quality(const struct wi_device *device, int *quality) { @@ -205,7 +206,7 @@ struct ieee80211req_scan_result req; int result; bzero(&req, sizeof(req)); -@@ -462,8 +421,16 @@ _wi_quality(const struct wi_device *devi +@@ -462,8 +421,16 @@ _wi_quality(const struct wi_device *device, int *quali if((result = _wi_getval(device, &req)) != WI_OK) return (result); @@ -224,7 +225,7 @@ struct wi_req wr; int result; -@@ -486,7 +453,7 @@ _wi_quality(const struct wi_device *devi +@@ -486,7 +453,7 @@ _wi_quality(const struct wi_device *device, int *quali static int _wi_rate(const struct wi_device *device, int *rate) { @@ -233,7 +234,7 @@ struct ieee80211req_scan_result req; int result, i, high; bzero(&req, sizeof(req)); -@@ -499,7 +466,7 @@ _wi_rate(const struct wi_device *device, +@@ -499,7 +466,7 @@ _wi_rate(const struct wi_device *device, int *rate) high = req.isr_rates[i] & IEEE80211_RATE_VAL; *rate = high / 2; @@ -242,7 +243,7 @@ struct wi_req wr; int result; -@@ -516,5 +483,4 @@ _wi_rate(const struct wi_device *device, +@@ -516,5 +483,4 @@ _wi_rate(const struct wi_device *device, int *rate) return(WI_OK); }