From: Peter O'Gorman Date: Sun, 19 Feb 2012 20:16:52 +0000 (-0600) Subject: Deleted unneeded gitlog-to-changelog patch X-Git-Tag: v2.4.2.418~198 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b2ccf68b01d3e6092e2b505386c50486b71e7dd6;p=thirdparty%2Flibtool.git Deleted unneeded gitlog-to-changelog patch * gl/build-aux/gitlog-to-changelog.diff: Delete. --- diff --git a/gl/build-aux/gitlog-to-changelog.diff b/gl/build-aux/gitlog-to-changelog.diff deleted file mode 100644 index 57ed4c50c..000000000 --- a/gl/build-aux/gitlog-to-changelog.diff +++ /dev/null @@ -1,26 +0,0 @@ ---- gnulib/build-aux/gitlog-to-changelog 2011-11-17 12:22:02.000000000 +0700 -+++ gl/build-aux/gitlog-to-changelog 2011-11-17 12:19:01.000000000 +0700 -@@ -251,6 +251,11 @@ - - my $date_line = sprintf "%s $2\n", strftime ("%F", localtime ($1)); - -+ # Format 'Copyright-paperwork-exempt: Yes' as a standard ChangeLog -+ # `(tiny change)' annotation. -+ my $tiny_change = grep /^Copyright-paperwork-exempt:\s+[Yy]es$/, @line; -+ $date_line =~ s/$/ (tiny change)/ if $tiny_change; -+ - # Format 'Co-authored-by: A U Thor ' lines in - # standard multi-author ChangeLog format. - my @coauthors = grep /^Co-authored-by:.*$/, @line; -@@ -277,9 +282,10 @@ - $prev_date_line = $date_line; - @prev_coauthors = @coauthors; - -- # Omit "Co-authored-by..." and "Signed-off-by..." lines. -+ # Omit meta-data lines we've already interpreted. - @line = grep !/^Signed-off-by: .*>$/, @line; - @line = grep !/^Co-authored-by: /, @line; -+ @line = grep !/^Copyright-paperwork-exempt: /, @line; - - # Remove leading and trailing blank lines. - if (@line)