From owner-svn-ports-head@FreeBSD.ORG Tue Jun 10 09:22:26 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C9C646EA; Tue, 10 Jun 2014 09:22:26 +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 B42D82D89; Tue, 10 Jun 2014 09:22:26 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5A9MQPe085450; Tue, 10 Jun 2014 09:22:26 GMT (envelope-from pi@svn.freebsd.org) Received: (from pi@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5A9MQgE085446; Tue, 10 Jun 2014 09:22:26 GMT (envelope-from pi@svn.freebsd.org) Message-Id: <201406100922.s5A9MQgE085446@svn.freebsd.org> From: Kurt Jaeger Date: Tue, 10 Jun 2014 09:22:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r357287 - in head/lang/perl5.18: . 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.18 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, 10 Jun 2014 09:22:26 -0000 Author: pi Date: Tue Jun 10 09:22:26 2014 New Revision: 357287 URL: http://svnweb.freebsd.org/changeset/ports/357287 QAT: https://qat.redports.org/buildarchive/r357287/ Log: lang/perl5.18: 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.18/files/patch-BigInt.pm (contents, props changed) Modified: head/lang/perl5.18/Makefile Modified: head/lang/perl5.18/Makefile ============================================================================== --- head/lang/perl5.18/Makefile Tue Jun 10 09:21:22 2014 (r357286) +++ head/lang/perl5.18/Makefile Tue Jun 10 09:22:26 2014 (r357287) @@ -3,7 +3,7 @@ PORTNAME= perl PORTVERSION= ${PERL_VERSION} -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= lang devel perl5 MASTER_SITES= CPAN \ ${MASTER_SITE_LOCAL:S/$/:local/} \ Added: head/lang/perl5.18/files/patch-BigInt.pm ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/perl5.18/files/patch-BigInt.pm Tue Jun 10 09:22:26 2014 (r357287) @@ -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]) :