summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Signes <rjbs@cpan.org>2010-03-14 12:27:53 -0400
committerRicardo Signes <rjbs@cpan.org>2010-03-14 12:27:53 -0400
commit515351d18923c6f77267c42df178da07f12990b2 (patch)
tree01c203ad251f194e20d2ba49ffa44029e589c678
parentb16f12578b84a31b0fd3a3ffe231a123833d0c13 (diff)
downloadperl-515351d18923c6f77267c42df178da07f12990b2.tar.gz
tool to produce corelist diffs
-rw-r--r--Porting/corelist-diff26
1 files changed, 26 insertions, 0 deletions
diff --git a/Porting/corelist-diff b/Porting/corelist-diff
new file mode 100644
index 0000000000..72bb1b0d2c
--- /dev/null
+++ b/Porting/corelist-diff
@@ -0,0 +1,26 @@
+use strict;
+use 5.010;
+use lib 'dist/Module-CoreList/lib';
+
+use List::MoreUtils qw(uniq);
+use Module::CoreList;
+use Text::Table;
+
+my $old_ver = 5.010000;
+my $new_ver = 5.011005;
+
+my $old = $Module::CoreList::version{ $old_ver };
+my $new = $Module::CoreList::version{ $new_ver };
+
+my $table = Text::Table->new('library', \' | ', $old_ver, \' | ', $new_ver);
+
+for my $lib (uniq sort (keys %$old, keys %$new)) {
+ my $old = exists $old->{ $lib } ? $old->{ $lib } // '(undef)' : '(absent)';
+ my $new = exists $new->{ $lib } ? $new->{ $lib } // '(undef)' : '(absent)';
+
+ next if $old eq $new;
+
+ $table->add($lib, $old, $new);
+}
+
+print $table;