From: idl0r Date: Sun, 18 Apr 2010 13:36:37 +0000 (-0000) Subject: echangelog: Fix bazaar MOVED/MODIFIED, thanks to Serkan X-Git-Tag: gentoolkit-dev-0.2.7~15 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=5b6a66acfd7babfaf649f54538284fa9972ba0e3;p=gentoolkit.git echangelog: Fix bazaar MOVED/MODIFIED, thanks to Serkan Kaba , bug 315931. svn path=/trunk/gentoolkit-dev/; revision=776 --- diff --git a/ChangeLog b/ChangeLog index b9c3c79..39965ec 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2010-04-18: Christian Ruppert + src/echangelog/echangelog: Fix bazaar MOVED/MODIFIED, thanks to Serkan + Kaba , bug 315931. + 2010-03-28: Christian Ruppert src/imlate/imlate, src/imlate/imlate.1: Made imlate python 2.6/3 compatible. Fixed deprecated portdb.dbapi.mysettings to portdb.dbapi.settings. diff --git a/src/echangelog/echangelog b/src/echangelog/echangelog index b414b1f..a43acd4 100755 --- a/src/echangelog/echangelog +++ b/src/echangelog/echangelog @@ -299,8 +299,8 @@ while () { push(@files, $filename); next; } - # RENAMED/MOVED - elsif (/^R\s+(\S+) => (\S+)/) { + # RENAMED/MOVED/MODIFIED + elsif (/^RM?\s+(\S+) => (\S+)/) { my ($old, $new) = ($1, $2); $old =~ s/^([^\/]+\/){2}//; $new =~ s/^([^\/]+\/){2}//;