summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter O'Gorman <peter@pogma.com>2012-02-19 14:16:52 -0600
committerGary V. Vaughan <gary@gnu.org>2012-10-02 21:03:20 +0700
commit8bfac9e3e82646868907aede4ebe4deb158a2e8a (patch)
tree2ba884c95ca903e570bb07980f2fbc981464a214
parentbaffe661910947df0dcd5a5bbd6512fc0bce59b9 (diff)
downloadlibtool-8bfac9e3e82646868907aede4ebe4deb158a2e8a.tar.gz
Deleted unneeded gitlog-to-changelog patch
* gl/build-aux/gitlog-to-changelog.diff: Delete.
-rw-r--r--gl/build-aux/gitlog-to-changelog.diff26
1 files changed, 0 insertions, 26 deletions
diff --git a/gl/build-aux/gitlog-to-changelog.diff b/gl/build-aux/gitlog-to-changelog.diff
deleted file mode 100644
index 57ed4c50..00000000
--- 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 <email@example.com>' 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)