diff options
author | Kurt Jaeger <pi@FreeBSD.org> | 2016-02-07 17:41:50 +0000 |
---|---|---|
committer | Kurt Jaeger <pi@FreeBSD.org> | 2016-02-07 17:41:50 +0000 |
commit | 9bea4e0ea1aef10e9055fe272538de2ffd47a4dc (patch) | |
tree | addc8f5deb6c8fca307254df1312bbcfe63b2e4b /math/p5-Math-BigInt | |
parent | 1fbca2a4f49f9632fc2db61501725c114ca45024 (diff) | |
download | ports-9bea4e0ea1aef10e9055fe272538de2ffd47a4dc.tar.gz ports-9bea4e0ea1aef10e9055fe272538de2ffd47a4dc.zip |
Notes
Diffstat (limited to 'math/p5-Math-BigInt')
-rw-r--r-- | math/p5-Math-BigInt/Makefile | 1 | ||||
-rw-r--r-- | math/p5-Math-BigInt/files/patch-lib_Math_BigInt.pm | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/math/p5-Math-BigInt/Makefile b/math/p5-Math-BigInt/Makefile index f589770ebf77..ebfed2e52d08 100644 --- a/math/p5-Math-BigInt/Makefile +++ b/math/p5-Math-BigInt/Makefile @@ -3,6 +3,7 @@ PORTNAME= Math-BigInt PORTVERSION= 1.999715 +PORTREVISION= 1 CATEGORIES= math perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:PJACKLAM diff --git a/math/p5-Math-BigInt/files/patch-lib_Math_BigInt.pm b/math/p5-Math-BigInt/files/patch-lib_Math_BigInt.pm new file mode 100644 index 000000000000..819dd392e960 --- /dev/null +++ b/math/p5-Math-BigInt/files/patch-lib_Math_BigInt.pm @@ -0,0 +1,11 @@ +--- lib/Math/BigInt.pm.orig 2016-02-07 17:28:38 UTC ++++ lib/Math/BigInt.pm +@@ -65,7 +65,7 @@ use overload + '>>=' => sub { $_[0]->brsft($_[1]); }, + + # not supported by Perl yet +-'..' => \&_pointpoint, ++#'..' => \&_pointpoint, + + '<=>' => sub { my $rc = $_[2] ? + ref($_[0])->bcmp($_[1],$_[0]) : |