2017-04-03 18:36:42 +00:00
|
|
|
--- Makefile.PL
|
|
|
|
+++ Makefile.PL
|
|
|
|
@@ -13,18 +13,8 @@ BEGIN
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
-use inc::latest 'Capture::Tiny';
|
|
|
|
-use inc::latest 'Config::AutoConf';
|
|
|
|
-
|
|
|
|
-if (inc::latest->can("write"))
|
|
|
|
-{
|
|
|
|
- inc::latest->write("inc");
|
|
|
|
- for my $mod (inc::latest->loaded_modules)
|
|
|
|
- {
|
|
|
|
- inc::latest->bundle_module($mod, "inc");
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
+use Capture::Tiny;
|
|
|
|
+use Config::AutoConf;
|
|
|
|
use ExtUtils::MakeMaker;
|
|
|
|
|
|
|
|
use inc::Config::AutoConf::LMU ();
|
2017-12-21 14:19:40 +00:00
|
|
|
@@ -48,7 +38,6 @@ my %RUN_DEPS = (
|
|
|
|
'XSLoader' => "0.22",
|
2017-04-03 18:36:42 +00:00
|
|
|
);
|
|
|
|
my %BUNDLE_CONFIGURE_DEPS = (
|
|
|
|
- 'inc::latest' => '0.500',
|
Update to 0.421
- New upstream release 0.421
- Fix a lot of potential memory leaks when callbacks throw exceptions
- Add some new functions: qsort, binsert, bremove, listcmp, arrayify
(CPAN RT#17230), samples (CPAN RT#77562), minmaxstr (CPAN RT#106401),
lower_bound, upper_bound, equal_range, frequencies, occurances, mode
(CPAN RT#91991), zip6 (CPAN RT#42921), reduce_0, reduce_1, reduce_u
- Improve tests
- Make List::MoreUtils::XS independent from List::MoreUtils
Note that List::MoreUtils::XS doesn't guarantee API stability: this
feature is only provided through List::MoreUtils as frontend
- Improve configure toolchain to use Config::AutoConf 0.315
- Speed up some inner loops by hinting the expected result
- Fix mind screwed up issue in upper_bound and reduce elements visited in
equal_range
- Correct license in META (CPAN RT#122702)
- Fix issues with -DPERL_IMPLICIT_SYS on Windows with Strawberry-Perl
2017-08-15 10:03:55 +00:00
|
|
|
'Config::AutoConf' => '0.315',
|
2017-04-03 18:36:42 +00:00
|
|
|
);
|
|
|
|
my %CONFIGURE_DEPS = (
|
Update to 0.421
- New upstream release 0.421
- Fix a lot of potential memory leaks when callbacks throw exceptions
- Add some new functions: qsort, binsert, bremove, listcmp, arrayify
(CPAN RT#17230), samples (CPAN RT#77562), minmaxstr (CPAN RT#106401),
lower_bound, upper_bound, equal_range, frequencies, occurances, mode
(CPAN RT#91991), zip6 (CPAN RT#42921), reduce_0, reduce_1, reduce_u
- Improve tests
- Make List::MoreUtils::XS independent from List::MoreUtils
Note that List::MoreUtils::XS doesn't guarantee API stability: this
feature is only provided through List::MoreUtils as frontend
- Improve configure toolchain to use Config::AutoConf 0.315
- Speed up some inner loops by hinting the expected result
- Fix mind screwed up issue in upper_bound and reduce elements visited in
equal_range
- Correct license in META (CPAN RT#122702)
- Fix issues with -DPERL_IMPLICIT_SYS on Windows with Strawberry-Perl
2017-08-15 10:03:55 +00:00
|
|
|
--- t/lib/Test/LMU.pm
|
|
|
|
+++ t/lib/Test/LMU.pm
|
|
|
|
@@ -16,7 +16,6 @@ my $CLASS = __PACKAGE__;
|
2017-04-03 18:36:42 +00:00
|
|
|
eval "use Storable qw();";
|
2020-10-21 13:28:29 +00:00
|
|
|
$@ or Storable->import(qw(freeze));
|
2017-04-03 18:36:42 +00:00
|
|
|
__PACKAGE__->can("freeze") or eval <<'EOFR';
|
|
|
|
-use inc::latest 'JSON::PP';
|
|
|
|
use JSON::PP qw();
|
|
|
|
sub freeze {
|
|
|
|
my $json = JSON::PP->new();
|