From owner-svn-ports-head@FreeBSD.ORG Tue Dec 11 14:20:15 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 99B3E62A; Tue, 11 Dec 2012 14:20:15 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 7EF7C8FC1D; Tue, 11 Dec 2012 14:20:15 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBBEKF3Y013623; Tue, 11 Dec 2012 14:20:15 GMT (envelope-from cy@svn.freebsd.org) Received: (from cy@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBBEKFMU013621; Tue, 11 Dec 2012 14:20:15 GMT (envelope-from cy@svn.freebsd.org) Message-Id: <201212111420.qBBEKFMU013621@svn.freebsd.org> From: Cy Schubert Date: Tue, 11 Dec 2012 14:20:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r308696 - in head/ftp/mirror: . 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.14 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: Tue, 11 Dec 2012 14:20:15 -0000 Author: cy Date: Tue Dec 11 14:20:14 2012 New Revision: 308696 URL: http://svnweb.freebsd.org/changeset/ports/308696 Log: Use current local time Perl module, timelocal.pl is deprecated. PR: 174357 Submitted by: Valentin Nechayev Added: head/ftp/mirror/files/patch-dateconv.pl (contents, props changed) Modified: head/ftp/mirror/Makefile Modified: head/ftp/mirror/Makefile ============================================================================== --- head/ftp/mirror/Makefile Tue Dec 11 14:19:55 2012 (r308695) +++ head/ftp/mirror/Makefile Tue Dec 11 14:20:14 2012 (r308696) @@ -7,7 +7,7 @@ PORTNAME= mirror PORTVERSION= 2.9 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= ftp MASTER_SITES= ftp://sunsite.ualberta.ca/pub/Mirror/mirror/ \ http://komquats.com/distfiles/ \ Added: head/ftp/mirror/files/patch-dateconv.pl ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/ftp/mirror/files/patch-dateconv.pl Tue Dec 11 14:20:14 2012 (r308696) @@ -0,0 +1,12 @@ +--- dateconv.pl.orig 1998-05-29 12:04:32.000000000 -0700 ++++ dateconv.pl 2012-12-11 06:16:24.592709834 -0800 +@@ -47,7 +47,8 @@ + } + + +-require 'timelocal.pl'; ++# require 'timelocal.pl'; ++use Time::Local qw(timelocal timegm); + package dateconv; + + # Use timelocal rather than gmtime.