Date: Tue, 10 Jun 2014 09:22:26 +0000 (UTC) From: Kurt Jaeger <pi@FreeBSD.org> 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 Message-ID: <201406100922.s5A9MQgE085446@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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]) :
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201406100922.s5A9MQgE085446>