From owner-svn-ports-head@freebsd.org Fri Sep 16 23:16:48 2016 Return-Path: Delivered-To: svn-ports-head@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 8EF22BDD807; Fri, 16 Sep 2016 23:16:48 +0000 (UTC) (envelope-from cpm@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 47C0F19A; Fri, 16 Sep 2016 23:16:48 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8GNGlNT060910; Fri, 16 Sep 2016 23:16:47 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8GNGl20060908; Fri, 16 Sep 2016 23:16:47 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201609162316.u8GNGl20060908@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cpm set sender to cpm@FreeBSD.org using -f From: "Carlos J. Puga Medina" Date: Fri, 16 Sep 2016 23:16:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422284 - in head/misc/gkrellweather2: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 23:16:48 -0000 Author: cpm Date: Fri Sep 16 23:16:47 2016 New Revision: 422284 URL: https://svnweb.freebsd.org/changeset/ports/422284 Log: - Fix METAR source URL - Bump PORTREVISION PR: 212693 Submitted by: etteldor@gmail.com Reviewed by: amdmi3 (mentor) Approved by: amdmi3 (mentor) Modified: head/misc/gkrellweather2/Makefile head/misc/gkrellweather2/files/patch-GrabWeather Modified: head/misc/gkrellweather2/Makefile ============================================================================== --- head/misc/gkrellweather2/Makefile Fri Sep 16 23:15:33 2016 (r422283) +++ head/misc/gkrellweather2/Makefile Fri Sep 16 23:16:47 2016 (r422284) @@ -3,7 +3,7 @@ PORTNAME= gkrellweather PORTVERSION= 2.0.8 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= misc geography MASTER_SITES= https://sites.google.com/site/makovick/projects/ Modified: head/misc/gkrellweather2/files/patch-GrabWeather ============================================================================== --- head/misc/gkrellweather2/files/patch-GrabWeather Fri Sep 16 23:15:33 2016 (r422283) +++ head/misc/gkrellweather2/files/patch-GrabWeather Fri Sep 16 23:16:47 2016 (r422284) @@ -1,12 +1,21 @@ ---- GrabWeather.orig Sun Feb 27 08:54:47 2005 -+++ GrabWeather Sun Feb 27 08:54:47 2005 +--- GrabWeather.orig 2009-01-11 18:15:02 UTC ++++ GrabWeather @@ -1,4 +1,4 @@ -#!/usr/bin/perl +#!/usr/bin/env perl # # Grabs the latest local weather conditions from the -@@ -40,8 +40,7 @@ +@@ -12,7 +12,7 @@ + + $ReportDir = '.wmWeatherReports'; + #$WeatherSrc = 'ftp://weather.noaa.gov/data/observations/metar/decoded'; +-$WeatherSrc = 'http://weather.noaa.gov/pub/data/observations/metar/decoded'; ++$WeatherSrc = 'http://tgftp.nws.noaa.gov/data/observations/metar/decoded'; + + use strict; + use vars qw( $ReportDir $WeatherSrc ); +@@ -40,8 +40,7 @@ my $DataFileName = "$StationID.dat"; # Is LWP installed? eval { require LWP::UserAgent }; if ($@) {