From: Jakub Jelinek Date: Tue, 14 Nov 2023 12:09:43 +0000 (+0100) Subject: contrib: Ignore the r14-5312-g040e5b0edbca861196d9e2ea2af5e805769c8d5d bogus commit X-Git-Tag: basepoints/gcc-15~4698 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0a1dd8b551e5b34b16394ff92e83c66275a85b9a;p=thirdparty%2Fgcc.git contrib: Ignore the r14-5312-g040e5b0edbca861196d9e2ea2af5e805769c8d5d bogus commit The r14-5312-g040e5b0edbca861196d9e2ea2af5e805769c8d5d commit log contains a line from git revert with correct hash, but unfortunately hand ammended with explanation, so it got through the pre-commit hook but failed during update_version_git generation. Please don't do this. 2023-11-14 Jakub Jelinek contrib/ChangeLog: * gcc-changelog/git_update_version.py: Add 040e5b0edbca861196d9e2ea2af5e805769c8d5d to ignored commits. --- diff --git a/contrib/gcc-changelog/git_update_version.py b/contrib/gcc-changelog/git_update_version.py index 3c438bba8920..84767b07f0d1 100755 --- a/contrib/gcc-changelog/git_update_version.py +++ b/contrib/gcc-changelog/git_update_version.py @@ -37,7 +37,8 @@ IGNORED_COMMITS = ( '3ab5c8cd03d92bf4ec41e351820349d92fbc40c4', '86d8e0c0652ef5236a460b75c25e4f7093cc0651', 'e4cba49413ca429dc82f6aa2e88129ecb3fdd943', - '1957bedf29a1b2cc231972aba680fe80199d5498') + '1957bedf29a1b2cc231972aba680fe80199d5498', + '040e5b0edbca861196d9e2ea2af5e805769c8d5d') FORMAT = '%(asctime)s:%(levelname)s:%(name)s:%(message)s' logging.basicConfig(level=logging.INFO, format=FORMAT,