From owner-svn-ports-all@freebsd.org Wed Oct 11 07:21:44 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 2AA97E48D13; Wed, 11 Oct 2017 07:21:44 +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 EB61381C6E; Wed, 11 Oct 2017 07:21:43 +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 v9B7LhGg039927; Wed, 11 Oct 2017 07:21:43 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v9B7LgTY039924; Wed, 11 Oct 2017 07:21:42 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201710110721.v9B7LgTY039924@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Wed, 11 Oct 2017 07:21:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r451735 - in head/misc/xfce4-weather-plugin: . files X-SVN-Group: ports-head X-SVN-Commit-Author: madpilot X-SVN-Commit-Paths: in head/misc/xfce4-weather-plugin: . files X-SVN-Commit-Revision: 451735 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.23 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: Wed, 11 Oct 2017 07:21:44 -0000 Author: madpilot Date: Wed Oct 11 07:21:42 2017 New Revision: 451735 URL: https://svnweb.freebsd.org/changeset/ports/451735 Log: Import xfce4-weather-plugin upstream patch required to make location search work after external site added additional requirement. PR: 222909 Submitted by: Olivier Duchateau Obtained from: https://git.xfce.org/panel-plugins/xfce4-weather-plugin/commit/?id=7c976663e8790e5b06ca31a4a3165b11aeb89f11 MFH: 2017Q4 Added: head/misc/xfce4-weather-plugin/files/ head/misc/xfce4-weather-plugin/files/patch-panel-plugin_weather.c (contents, props changed) Modified: head/misc/xfce4-weather-plugin/Makefile Modified: head/misc/xfce4-weather-plugin/Makefile ============================================================================== --- head/misc/xfce4-weather-plugin/Makefile Wed Oct 11 07:17:14 2017 (r451734) +++ head/misc/xfce4-weather-plugin/Makefile Wed Oct 11 07:21:42 2017 (r451735) @@ -3,6 +3,7 @@ PORTNAME= xfce4-weather-plugin PORTVERSION= 0.8.9 +PORTREVISION= 1 CATEGORIES= misc xfce geography MASTER_SITES= XFCE/src/panel-plugins/${PORTNAME}/${PORTVERSION:R} DIST_SUBDIR= xfce4 @@ -17,12 +18,13 @@ LIB_DEPENDS= libsoup-2.4.so:devel/libsoup \ libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 -GNU_CONFIGURE= yes -INSTALLS_ICONS= yes -INSTALL_TARGET= install-strip USES= gettext gmake libtool pkgconfig xfce tar:bzip2 +GNU_CONFIGURE= yes USE_GNOME= glib20 gtk20 intltool intlhack libxml2 cairo USE_XFCE= panel +INSTALLS_ICONS= yes +USE_LDCONFIG= yes +INSTALL_TARGET= install-strip OPTIONS_DEFINE= UPOWER UPOWER_DESC= Power management tasks Added: head/misc/xfce4-weather-plugin/files/patch-panel-plugin_weather.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/xfce4-weather-plugin/files/patch-panel-plugin_weather.c Wed Oct 11 07:21:42 2017 (r451735) @@ -0,0 +1,11 @@ +--- panel-plugin/weather.c.orig 2017-02-16 18:59:12 UTC ++++ panel-plugin/weather.c +@@ -1849,6 +1849,8 @@ xfceweather_create_control(XfcePanelPlugin *plugin) + + /* Setup session for HTTP connections */ + data->session = soup_session_async_new(); ++ g_object_set(data->session, SOUP_SESSION_USER_AGENT, ++ PACKAGE_NAME "-" PACKAGE_VERSION, NULL); + g_object_set(data->session, SOUP_SESSION_TIMEOUT, + CONN_TIMEOUT, NULL); +