svn commit: r357286 - in head/lang/perl5.16: . files

Kurt Jaeger pi at FreeBSD.org
Tue Jun 10 09:21:23 UTC 2014


Author: pi
Date: Tue Jun 10 09:21:22 2014
New Revision: 357286
URL: http://svnweb.freebsd.org/changeset/ports/357286
QAT: https://qat.redports.org/buildarchive/r357286/

Log:
  lang/perl5.16: 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.16/files/patch-BigInt.pm   (contents, props changed)
Modified:
  head/lang/perl5.16/Makefile

Modified: head/lang/perl5.16/Makefile
==============================================================================
--- head/lang/perl5.16/Makefile	Tue Jun 10 08:35:05 2014	(r357285)
+++ head/lang/perl5.16/Makefile	Tue Jun 10 09:21:22 2014	(r357286)
@@ -3,7 +3,7 @@
 
 PORTNAME=	perl
 PORTVERSION=	${PERL_VERSION}
-PORTREVISION=	10
+PORTREVISION=	11
 CATEGORIES=	lang devel perl5
 MASTER_SITES=	CPAN \
 		${MASTER_SITE_LOCAL:S/$/:local/} \

Added: head/lang/perl5.16/files/patch-BigInt.pm
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/perl5.16/files/patch-BigInt.pm	Tue Jun 10 09:21:22 2014	(r357286)
@@ -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