summaryrefslogtreecommitdiff
path: root/build-aux/gitlog-to-changelog
diff options
context:
space:
mode:
authorGary V. Vaughan <gary@gnu.org>2011-12-30 18:47:55 +0100
committerJim Meyering <meyering@redhat.com>2012-01-02 10:44:13 +0100
commit436bc23a809a90093c4a3e6e506039b0492ef3eb (patch)
tree1861eb4276b95e664085cbacbb5aed7e0f8a1853 /build-aux/gitlog-to-changelog
parent15d2d3297af494d59a3c108a4a15bf71592678a8 (diff)
downloadgnulib-436bc23a809a90093c4a3e6e506039b0492ef3eb.tar.gz
gitlog-to-changelog: Copyright-paperwork-exempt: yes == (tiny change)
* build-aux/gitlog-to-changelog (main): Map the string, at beginning of line in a git commit log, "Copyright-paperwork-exempt: yes", to the " (tiny change)" notation that is appended to the standard ChangeLog "date name email" header line.
Diffstat (limited to 'build-aux/gitlog-to-changelog')
-rwxr-xr-xbuild-aux/gitlog-to-changelog14
1 files changed, 11 insertions, 3 deletions
diff --git a/build-aux/gitlog-to-changelog b/build-aux/gitlog-to-changelog
index 6fb37cdb0b..3142ccae8e 100755
--- a/build-aux/gitlog-to-changelog
+++ b/build-aux/gitlog-to-changelog
@@ -3,7 +3,7 @@ eval '(exit $?0)' && eval 'exec perl -wS "$0" ${1+"$@"}'
if 0;
# Convert git log output to ChangeLog format.
-my $VERSION = '2011-12-30 14:31'; # UTC
+my $VERSION = '2011-12-30 17:43'; # UTC
# The definition above must lie within the first 8 lines in order
# for the Emacs time-stamp write hook (at end) to update it.
# If you change this file with Emacs, please let the write hook
@@ -249,12 +249,20 @@ sub parse_amend_file($)
$author_line =~ /^(\d+) (.*>)$/
or die "$ME:$.: Invalid line "
. "(expected date/author/email):\n$author_line\n";
- 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 = (grep (/^Copyright-paperwork-exempt:\s+[Yy]es$/, @line)
+ ? ' (tiny change)' : '');
+
+ my $date_line = sprintf "%s $2$tiny\n",
+ strftime ("%F", localtime ($1));
my @coauthors = grep /^Co-authored-by:.*$/, @line;
- # Omit "Co-authored-by..." and "Signed-off-by..." lines.
+ # Omit meta-data lines we've already interpreted.
@line = grep !/^(?:Signed-off-by:[ ].*>$
|Co-authored-by:[ ]
+ |Copyright-paperwork-exempt:[ ]
)/x, @line;
# Remove leading and trailing blank lines.