In perl.git, the branch blead has been updated <https://perl5.git.perl.org/perl.git/commitdiff/d350906e49e65f32d9bed45a42992fdab4ce0ee8?hp=71153651052686ec603bfb6618118391b0b3f03e>
- Log ----------------------------------------------------------------- commit d350906e49e65f32d9bed45a42992fdab4ce0ee8 Author: H.Merijn Brand <h.m.br...@xs4all.nl> Date: Tue Apr 30 20:59:32 2019 +0200 Another re-order in Devel::PPPort - warn before uv for packWARN dromedary:/home/tux/Text-CSV_XS$ release -t showed 5.6.1 as first FAIL: undefined symbol: packWARN After this, release -t on dromedary passed 5.6.1 .. 5.29.8 ----------------------------------------------------------------------- Summary of changes: Porting/Maintainers.pl | 2 +- dist/Devel-PPPort/Changes | 4 ++++ dist/Devel-PPPort/PPPort_pm.PL | 6 +++--- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index 848061b691..11110f94c3 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -342,7 +342,7 @@ use File::Glob qw(:case); }, 'Devel::PPPort' => { - 'DISTRIBUTION' => 'ATOOMIC/Devel-PPPort-3.49.tar.gz', + 'DISTRIBUTION' => 'ETHER/Devel-PPPort-3.50.tar.gz', 'FILES' => q[dist/Devel-PPPort], 'EXCLUDED' => [ 'PPPort.pm', # we use PPPort_pm.PL instead diff --git a/dist/Devel-PPPort/Changes b/dist/Devel-PPPort/Changes index 255b9a563a..20922f44bc 100644 --- a/dist/Devel-PPPort/Changes +++ b/dist/Devel-PPPort/Changes @@ -1,5 +1,9 @@ Revision history for Devel-PPPort + 3.50 - 2019-04-30 + + * Order warn before uv for packWARN (shown in 5.6.1) + 3.49 - 2019-04-29 * Fix tests for 64bit int, 32bit ptr platforms diff --git a/dist/Devel-PPPort/PPPort_pm.PL b/dist/Devel-PPPort/PPPort_pm.PL index 7c28375c11..2307030325 100644 --- a/dist/Devel-PPPort/PPPort_pm.PL +++ b/dist/Devel-PPPort/PPPort_pm.PL @@ -551,7 +551,7 @@ package Devel::PPPort; use strict; use vars qw($VERSION $data); -$VERSION = '3.49'; +$VERSION = '3.50'; sub _init_data { @@ -630,6 +630,8 @@ __DATA__ %include misc +%include warn + %include uv %include memory @@ -670,8 +672,6 @@ __DATA__ %include gv -%include warn - %include pvs %include magic -- Perl5 Master Repository