aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMathieu Arnold <mat@FreeBSD.org>2022-06-01 12:40:07 +0000
committerMathieu Arnold <mat@FreeBSD.org>2022-06-01 12:54:44 +0000
commit61db2c1b58e258caaf59a607db54f1fe7de25cdf (patch)
tree1f84ab72c4b2c18b1e999689756a5875d60c9e30
parent66b3262c42e0a31b0406656f8097de2753fdbc24 (diff)
downloadports-61db2c1b58e258caaf59a607db54f1fe7de25cdf.tar.gz
ports-61db2c1b58e258caaf59a607db54f1fe7de25cdf.zip
math/p5-Math-Interpolate: fix build with Perl 5.36
-rw-r--r--math/p5-Math-Interpolate/files/patch-perl53653
1 files changed, 53 insertions, 0 deletions
diff --git a/math/p5-Math-Interpolate/files/patch-perl536 b/math/p5-Math-Interpolate/files/patch-perl536
new file mode 100644
index 000000000000..e79b904e1a87
--- /dev/null
+++ b/math/p5-Math-Interpolate/files/patch-perl536
@@ -0,0 +1,53 @@
+--- CHANGES.orig 2013-11-10 23:40:09 UTC
++++ CHANGES
+@@ -27,7 +27,7 @@ Tue Aug 24 11:28:45 PDT 1999
+
+ Tue Aug 24 11:28:19 PDT 1999
+
+- Make the module work with Perl 5.004_01.
++ Make the module work with Perl 5.010.
+
+ Tue Aug 17 11:42:49 PDT 1999
+
+--- META.yml.orig 2013-11-10 23:45:43 UTC
++++ META.yml
+@@ -11,7 +11,7 @@ configure_requires:
+ build_requires:
+ ExtUtils::MakeMaker: 0
+ requires:
+- perl: 5.004_01
++ perl: 5.010
+ no_index:
+ directory:
+ - t
+--- Makefile.PL.orig 2013-11-10 23:38:24 UTC
++++ Makefile.PL
+@@ -10,7 +10,7 @@ WriteMakefile(
+ 'ABSTRACT' => 'Interpolate the value Y from X using a list of (X, Y) pairs',
+ 'AUTHOR' => 'Blair Zajac <blair@orcaware.com>',
+ 'LICENSE' => 'perl',
+- 'MIN_PERL_VERSION' => '5.004_01',
++ 'MIN_PERL_VERSION' => '5.010',
+ 'VERSION_FROM' => 'lib/Math/Interpolate.pm', # finds $VERSION
+ );
+
+--- lib/Math/Interpolate.pm.orig 2013-11-10 23:22:14 UTC
++++ lib/Math/Interpolate.pm
+@@ -1,6 +1,6 @@
+ package Math::Interpolate;
+
+-require 5.004_01;
++require 5.010;
+
+ use strict;
+ use Exporter;
+--- lib/Math/IntervalSearch.pm.orig 2013-11-10 23:22:14 UTC
++++ lib/Math/IntervalSearch.pm
+@@ -1,6 +1,6 @@
+ package Math::IntervalSearch;
+
+-require 5.004_01;
++require 5.010;
+
+ use strict;
+ use vars qw(@EXPORT_OK @ISA $VERSION);