svn commit: r357283 - in head/lang/perl5.20: . files
Kurt Jaeger
pi at FreeBSD.org
Tue Jun 10 08:28:44 UTC 2014
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]) :
More information about the svn-ports-all
mailing list