tool to produce corelist diffs
Ricardo Signes [Sun, 14 Mar 2010 16:27:53 +0000 (12:27 -0400)]
Porting/corelist-diff [new file with mode: 0644]

diff --git a/Porting/corelist-diff b/Porting/corelist-diff
new file mode 100644 (file)
index 0000000..72bb1b0
--- /dev/null
@@ -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;