[PATCH v14 1/4] contrib/: Add support for Cc: and Link: tags

Alejandro Colomar alx@kernel.org
Tue Oct 8 09:11:29 GMT 2024


contrib/ChangeLog:

	* gcc-changelog/git_commit.py (GitCommit):
	Add support for 'Cc: ' and 'Link: ' tags.

Cc: Jason Merrill <jason@redhat.com>
Signed-off-by: Alejandro Colomar <alx@kernel.org>
---
 contrib/gcc-changelog/git_commit.py | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/contrib/gcc-changelog/git_commit.py b/contrib/gcc-changelog/git_commit.py
index 87ecb9e1a17..64fb986b74c 100755
--- a/contrib/gcc-changelog/git_commit.py
+++ b/contrib/gcc-changelog/git_commit.py
@@ -182,7 +182,8 @@ CO_AUTHORED_BY_PREFIX = 'co-authored-by: '
 
 REVIEW_PREFIXES = ('reviewed-by: ', 'reviewed-on: ', 'signed-off-by: ',
                    'acked-by: ', 'tested-by: ', 'reported-by: ',
-                   'suggested-by: ')
+                   'suggested-by: ', 'cc: ')
+LINK_PREFIXES = ('link: ')
 DATE_FORMAT = '%Y-%m-%d'
 
 
@@ -524,6 +525,8 @@ class GitCommit:
                     continue
                 elif lowered_line.startswith(REVIEW_PREFIXES):
                     continue
+                elif lowered_line.startswith(LINK_PREFIXES):
+                    continue
                 else:
                     m = cherry_pick_regex.search(line)
                     if m:
-- 
2.45.2

-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 833 bytes
Desc: not available
URL: <https://gcc.gnu.org/pipermail/gcc-patches/attachments/20241008/514973cf/attachment.sig>


More information about the Gcc-patches mailing list