From owner-svn-ports-all@FreeBSD.ORG Tue Jun 10 08:28:44 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C2BCE4C0; Tue, 10 Jun 2014 08:28:44 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 AEB2C288F; Tue, 10 Jun 2014 08:28:44 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5A8SiW2058876; Tue, 10 Jun 2014 08:28:44 GMT (envelope-from pi@svn.freebsd.org) Received: (from pi@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5A8Sivm058872; Tue, 10 Jun 2014 08:28:44 GMT (envelope-from pi@svn.freebsd.org) Message-Id: <201406100828.s5A8Sivm058872@svn.freebsd.org> From: Kurt Jaeger Date: Tue, 10 Jun 2014 08:28:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r357283 - in head/lang/perl5.20: . 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-all@freebsd.org X-Mailman-Version: 2.1.18 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: Tue, 10 Jun 2014 08:28:44 -0000 Author: pi Date: Tue Jun 10 08:28:44 2014 New Revision: 357283 URL: http://svnweb.freebsd.org/changeset/ports/357283 QAT: https://qat.redports.org/buildarchive/r357283/ Log: lang/perl5.20: fix warning in Math/BigInt.pm See also https://rt.cpan.org/Public/Bug/Display.html?id=80182 PR: ports/185541 Approved-by: tobez (maintainer timeout), jadawin (mentor) Added: head/lang/perl5.20/files/patch-BigInt.pm (contents, props changed) Modified: head/lang/perl5.20/Makefile Modified: head/lang/perl5.20/Makefile ============================================================================== --- head/lang/perl5.20/Makefile Tue Jun 10 08:25:32 2014 (r357282) +++ head/lang/perl5.20/Makefile Tue Jun 10 08:28:44 2014 (r357283) @@ -3,7 +3,7 @@ PORTNAME= perl PORTVERSION= ${PERL_VERSION} -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= lang devel perl5 MASTER_SITES= CPAN \ ${MASTER_SITE_LOCAL:S/$/:local/} \ Added: head/lang/perl5.20/files/patch-BigInt.pm ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/perl5.20/files/patch-BigInt.pm Tue Jun 10 08:28:44 2014 (r357283) @@ -0,0 +1,11 @@ +--- dist/Math-BigInt/lib/Math/BigInt.pm-orig 2014-06-09 16:22:23.000000000 +0200 ++++ dist/Math-BigInt/lib/Math/BigInt.pm 2014-06-09 16:22:54.000000000 +0200 +@@ -62,7 +62,7 @@ + '>>=' => sub { $_[0]->brsft($_[1]); }, + + # not supported by Perl yet +-'..' => \&_pointpoint, ++# '..' => \&_pointpoint, + + '<=>' => sub { my $rc = $_[2] ? + ref($_[0])->bcmp($_[1],$_[0]) :