summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>2017-01-28 10:06:29 +0100
committerKent Fredric <kentnl@gentoo.org>2017-01-29 00:22:19 +1300
commit30bea2fce739cc6cdade572b4c1daf8dd6c9754d (patch)
treeb2d88e8d1c5265e8860c93b78f227e144d71aad3 /perl-core
parentperl-core/libnet: remove unused patch (diff)
downloadgentoo-30bea2fce739cc6cdade572b4c1daf8dd6c9754d.tar.gz
gentoo-30bea2fce739cc6cdade572b4c1daf8dd6c9754d.tar.bz2
gentoo-30bea2fce739cc6cdade572b4c1daf8dd6c9754d.zip
perl-core/Math-BigInt: remove unused patch
Closes: https://github.com/gentoo/gentoo/pull/3691
Diffstat (limited to 'perl-core')
-rw-r--r--perl-core/Math-BigInt/files/Math-BigInt-1.997.0-overload.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/perl-core/Math-BigInt/files/Math-BigInt-1.997.0-overload.patch b/perl-core/Math-BigInt/files/Math-BigInt-1.997.0-overload.patch
deleted file mode 100644
index d62e86995bfa..000000000000
--- a/perl-core/Math-BigInt/files/Math-BigInt-1.997.0-overload.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-diff -u Math-BigInt-1.997/lib/Math/BigInt.pm Math-BigInt-1.997-r1/lib/Math/BigInt.pm
---- Math-BigInt-1.997/lib/Math/BigInt.pm 2011-09-03 02:26:41.000000000 -0400
-+++ Math-BigInt-1.997-r1/lib/Math/BigInt.pm 2012-07-17 20:32:26.630203065 -0400
-@@ -40,6 +40,9 @@
- # Thus inheritance of overload operators becomes possible and transparent for
- # our subclasses without the need to repeat the entire overload section there.
-
-+# https://github.com/ilmari/perl/commit/5e0688b6067afdfb59fdfa9923e658ed40c9f246
-+# We register ops that are not registerable yet, so suppress warnings
-+{ no warnings;
- use overload
- '=' => sub { $_[0]->copy(); },
-
-@@ -151,6 +154,7 @@
- '""' => sub { $_[0]->bstr(); },
- '0+' => sub { $_[0]->numify(); }
- ;
-+} # no warnings scope
-
- ##############################################################################
- # global constants, flags and accessory