Re: [PATCH 1/2] gitlog-to-changelog: support multi-author commits.

2011-11-16 Thread Jim Meyering
...@gnu.org Date: Tue, 1 Nov 2011 17:58:37 +0700 Subject: [PATCH 1/2] gitlog-to-changelog: support multi-author commits. ... + my @coauthors = grep /^Co-authored-by:.*$/, @line; + for (@coauthors) +{ + s/^Co-authored-by:\s*/\t/; + s/\s

Re: [PATCH 1/2] gitlog-to-changelog: support multi-author commits.

2011-11-16 Thread Gary V. Vaughan
Hi Jim, Thanks for the reviews. On 17 Nov 2011, at 03:01, Jim Meyering wrote: Gary V. Vaughan wrote: ... the parts that didn't work OOTB on my Mac to be portable. Feel free to crib those portable parts of this one into coreutils, or reformat this one to coreutils style as you prefer. An

Re: [PATCH 1/2] gitlog-to-changelog: support multi-author commits.

2011-11-14 Thread Gary V. Vaughan
17 00:00:00 2001 From: Gary V. Vaughan g...@gnu.org Date: Tue, 1 Nov 2011 17:58:37 +0700 Subject: [PATCH 1/2] gitlog-to-changelog: support multi-author commits. The FSF cares about keeping track of all authors of patches to its projects, but Git doesn't provide obvious support for multi-author

Re: [PATCH 1/2] gitlog-to-changelog: support multi-author commits.

2011-11-14 Thread Gary V. Vaughan
I omitted the ChangeLog and git log entry for the commit-msg script, now fixed in my private branch as follows: On 15 Nov 2011, at 12:04, Gary V. Vaughan wrote: The FSF cares about keeping track of all authors of patches to its projects, but Git doesn't provide obvious support for

[PATCH 1/2] gitlog-to-changelog: support multi-author commits.

2011-11-01 Thread Gary V. Vaughan
More generally useful gnulib-local goodness from my Libtool `next' branch: I'm sure this is far from idiomatic Perl, but I'd very much like for this patch or something similar to be pushed so that FSF projects have a means to correctly track multiple patch authors with a generated ChangeLog file.

Re: [PATCH 1/2] gitlog-to-changelog: support multi-author commits.

2011-11-01 Thread Jim Meyering
Gary V. Vaughan wrote: More generally useful gnulib-local goodness from my Libtool `next' branch: I'm sure this is far from idiomatic Perl, but I'd very much like for this patch or something similar to be pushed so that FSF projects have a means to correctly track multiple patch authors with