You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by da...@apache.org on 2013/07/07 19:20:50 UTC

svn commit: r1500491 - /subversion/trunk/tools/dist/backport.pl

Author: danielsh
Date: Sun Jul  7 17:20:50 2013
New Revision: 1500491

URL: http://svn.apache.org/r1500491
Log:
* tools/dist/backport.pl
  (handle_entry): Print summary of skipped entries.
    Also tweak separator lines to make "Skipped" notifications stand out a bit.

Modified:
    subversion/trunk/tools/dist/backport.pl

Modified: subversion/trunk/tools/dist/backport.pl
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/dist/backport.pl?rev=1500491&r1=1500490&r2=1500491&view=diff
==============================================================================
--- subversion/trunk/tools/dist/backport.pl (original)
+++ subversion/trunk/tools/dist/backport.pl Sun Jul  7 17:20:50 2013
@@ -475,7 +475,9 @@ sub handle_entry {
       }
     }
   } elsif ($state->{$entry{digest}}) {
-    say "Skipping the $entry{header} (remove $STATEFILE to reset)";
+    print "\n\n";
+    say "Skipping the $entry{header} (remove $STATEFILE to reset):";
+    say $entry{logsummary}->[0], ('[...]' x (0 < $#{$entry{logsummary}}));
   } else {
     # This loop is just a hack because 'goto' panics.  The goto should be where
     # the "next PROMPT;" is; there's a "last;" at the end of the loop body.