This is the mail archive of the
libc-alpha@sourceware.org
mailing list for the glibc project.
Re: When can we stop writing ChangeLogs?
- From: Florian Weimer <fweimer at redhat dot com>
- To: <libc-alpha at sourceware dot org>
- Date: Wed, 02 Oct 2019 11:30:15 +0200
- Subject: Re: When can we stop writing ChangeLogs?
- References: <6ebd0e52-a18f-15fc-f4ab-cf2c3afc74e9@gotplt.org> <f656068c-1307-8041-fece-efbb81dfc093@linaro.org> <3bd4b069-e16b-af68-fb2f-17d2458bece5@redhat.com> <e2071ccb-2e31-cea4-84fc-e8353abe0674@gotplt.org> <878sq522xz.fsf@oldenburg2.str.redhat.com> <52634368-ee1e-23d1-1d61-de0057e03829@gotplt.org> <87ftkdzl4v.fsf@oldenburg2.str.redhat.com> <alpine.DEB.2.21.1909301935210.1462@digraph.polyomino.org.uk> <87v9t8s6qm.fsf@oldenburg2.str.redhat.com>
* Florian Weimer:
> * Joseph Myers:
>
>> On Mon, 30 Sep 2019, Florian Weimer wrote:
>>
>>> I'm looking for something far simpler here—a script that submitters and
>>> reviewers can run to see what's going to be committed, and some level of
>>> project consensus that this is how patches should be posted.
>>
>> I suggest that should be "git am", as an existing known format for email
>> patch submissions, for any case except where the patch has already been
>> committed (and really "git am" format could probably be used there as
>> well), the patch would be excessively large (whether because of large
>> generated files or otherwise) or the patch contains mixed character sets
>> which require it to be attached in compressed form to avoid it being
>> mangled. We can discuss details regarding e.g. scissors lines, but I
>> think we should still aim for patch submissions that are valid for "git
>> am" in some form - and in particular, that use "git am" markings to
>> separate the commit message from other remarks (e.g. differences between
>> revisions of the patch) that are not intended as part of the commit
>> message.
>
> I'm fine with “git am” input, as long as there is a reliable way to
> extract the commit, as it would be committed if you had a matching tree.
> I do not want to go hunting for the matching in every case, particularly
> for a series of patches.
>
> Do you think that the attached script might work?
It does not work. We need an actual patch parser because people put
random stuff before the actual patch, as suggested by the git am format.
Florian