From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp-out2.suse.de (smtp-out2.suse.de [195.135.220.29]) by sourceware.org (Postfix) with ESMTPS id 713B93852A45 for ; Wed, 14 Dec 2022 13:07:39 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 713B93852A45 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=suse.cz Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=suse.cz Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by smtp-out2.suse.de (Postfix) with ESMTPS id 745781FFC6 for ; Wed, 14 Dec 2022 13:07:38 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_rsa; t=1671023258; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc: mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=3FOOsPlw2xX+kLFE2ecZl+16LOca0YHf079wQrv0Aj4=; b=xxwE6sKIEU4oWD1PjUtkL7OWzBqD6P5h+Z3YPTHYD8YNnDQW709RJ52eLNupgYUAhzXwYt SEEXMzWyuIViOFoe2gL66EiBbn7AUgSUuxQIFu4Hlj6IYTiswRUL0GD45vZ5tm4UDTMSAL c9gExkpFbpcYYGKewiPRz5fQcZVSL1Y= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_ed25519; t=1671023258; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc: mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=3FOOsPlw2xX+kLFE2ecZl+16LOca0YHf079wQrv0Aj4=; b=tRBdMWK1xIxDDGdhtDg61VdwjE3xkhTKPa08m3YKWA6YnSBP8jwsqzlboTfr9WJH4UvjsG sJy1uiOicbDR4mBA== Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by imap2.suse-dmz.suse.de (Postfix) with ESMTPS id 6598F1333E for ; Wed, 14 Dec 2022 13:07:38 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id 8YWdF5rKmWM+eQAAMHmgww (envelope-from ) for ; Wed, 14 Dec 2022 13:07:38 +0000 Message-ID: Date: Wed, 14 Dec 2022 14:07:38 +0100 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.5.1 From: =?UTF-8?Q?Martin_Li=c5=a1ka?= Subject: [PATCH (pushed)] contrib: add copyright for my scripts To: gcc-patches@gcc.gnu.org Content-Language: en-US Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-11.9 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,SPF_HELO_NONE,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: Hi. The Copyright year will be updated automatically with a next patch I'm going to send. Cheers, Martin contrib/ChangeLog: * analyze_brprob.py: Add copyright header. * analyze_brprob_spec.py: Likewise. * check-params-in-docs.py: Likewise. * check_GNU_style.py: Likewise. * check_GNU_style_lib.py: Likewise. * filter-clang-warnings.py: Likewise. * gcc-changelog/git_check_commit.py: Likewise. * gcc-changelog/git_commit.py: Likewise. * gcc-changelog/git_email.py: Likewise. * gcc-changelog/git_repository.py: Likewise. * gcc-changelog/git_update_version.py: Likewise. * gcc-changelog/test_email.py: Likewise. * mark_spam.py: Likewise. --- contrib/analyze_brprob.py | 2 ++ contrib/analyze_brprob_spec.py | 2 ++ contrib/check-params-in-docs.py | 2 ++ contrib/check_GNU_style.py | 2 ++ contrib/check_GNU_style_lib.py | 2 ++ contrib/filter-clang-warnings.py | 2 ++ contrib/gcc-changelog/git_check_commit.py | 2 ++ contrib/gcc-changelog/git_commit.py | 2 ++ contrib/gcc-changelog/git_email.py | 2 ++ contrib/gcc-changelog/git_repository.py | 2 ++ contrib/gcc-changelog/git_update_version.py | 2 ++ contrib/gcc-changelog/test_email.py | 2 ++ contrib/mark_spam.py | 2 ++ 13 files changed, 26 insertions(+) diff --git a/contrib/analyze_brprob.py b/contrib/analyze_brprob.py index debc9a6421a..d5a8031e75c 100755 --- a/contrib/analyze_brprob.py +++ b/contrib/analyze_brprob.py @@ -1,4 +1,6 @@ #!/usr/bin/env python3 + +# Copyright (C) 2016 Free Software Foundation, Inc. # # Script to analyze results of our branch prediction heuristics # diff --git a/contrib/analyze_brprob_spec.py b/contrib/analyze_brprob_spec.py index c7a9ae07e16..8f7dcbaddb4 100755 --- a/contrib/analyze_brprob_spec.py +++ b/contrib/analyze_brprob_spec.py @@ -1,5 +1,7 @@ #!/usr/bin/env python3 +# Copyright (C) 2016 Free Software Foundation, Inc. +# # This file is part of GCC. # # GCC is free software; you can redistribute it and/or modify it under diff --git a/contrib/check-params-in-docs.py b/contrib/check-params-in-docs.py index d57055088b7..8f8f6654df3 100755 --- a/contrib/check-params-in-docs.py +++ b/contrib/check-params-in-docs.py @@ -1,4 +1,6 @@ #!/usr/bin/env python3 + +# Copyright (C) 2018 Free Software Foundation, Inc. # # Find missing and extra parameters in documentation compared to # output of: gcc --help=params. diff --git a/contrib/check_GNU_style.py b/contrib/check_GNU_style.py index 969534a3cc9..826d17abf08 100755 --- a/contrib/check_GNU_style.py +++ b/contrib/check_GNU_style.py @@ -1,4 +1,6 @@ #!/usr/bin/env python3 + +# Copyright (C) 2017 Free Software Foundation, Inc. # # Checks some of the GNU style formatting rules in a set of patches. # The script is a rewritten of the same bash script and should eventually diff --git a/contrib/check_GNU_style_lib.py b/contrib/check_GNU_style_lib.py index b3db4fbddc9..3d709d1eafa 100755 --- a/contrib/check_GNU_style_lib.py +++ b/contrib/check_GNU_style_lib.py @@ -1,4 +1,6 @@ #!/usr/bin/env python3 + +# Copyright (C) 2017 Free Software Foundation, Inc. # # Checks some of the GNU style formatting rules in a set of patches. # The script is a rewritten of the same bash script and should eventually diff --git a/contrib/filter-clang-warnings.py b/contrib/filter-clang-warnings.py index 3c68be028a8..c426bce5eb5 100755 --- a/contrib/filter-clang-warnings.py +++ b/contrib/filter-clang-warnings.py @@ -1,4 +1,6 @@ #!/usr/bin/env python3 + +# Copyright (C) 2018 Free Software Foundation, Inc. # # Script to analyze warnings produced by clang. # diff --git a/contrib/gcc-changelog/git_check_commit.py b/contrib/gcc-changelog/git_check_commit.py index d6aff3cef91..2e3e8cbeb77 100755 --- a/contrib/gcc-changelog/git_check_commit.py +++ b/contrib/gcc-changelog/git_check_commit.py @@ -1,4 +1,6 @@ #!/usr/bin/env python3 + +# Copyright (C) 2020 Free Software Foundation, Inc. # # This file is part of GCC. # diff --git a/contrib/gcc-changelog/git_commit.py b/contrib/gcc-changelog/git_commit.py index d90e6c19b76..66d68de03a5 100755 --- a/contrib/gcc-changelog/git_commit.py +++ b/contrib/gcc-changelog/git_commit.py @@ -1,4 +1,6 @@ #!/usr/bin/env python3 + +# Copyright (C) 2020 Free Software Foundation, Inc. # # This file is part of GCC. # diff --git a/contrib/gcc-changelog/git_email.py b/contrib/gcc-changelog/git_email.py index 2566d4149e7..ef50ebfb7fd 100755 --- a/contrib/gcc-changelog/git_email.py +++ b/contrib/gcc-changelog/git_email.py @@ -1,4 +1,6 @@ #!/usr/bin/env python3 + +# Copyright (C) 2020 Free Software Foundation, Inc. # # This file is part of GCC. # diff --git a/contrib/gcc-changelog/git_repository.py b/contrib/gcc-changelog/git_repository.py index 2d688826ff8..7c2dc218775 100755 --- a/contrib/gcc-changelog/git_repository.py +++ b/contrib/gcc-changelog/git_repository.py @@ -1,4 +1,6 @@ #!/usr/bin/env python3 + +# Copyright (C) 2020 Free Software Foundation, Inc. # # This file is part of GCC. # diff --git a/contrib/gcc-changelog/git_update_version.py b/contrib/gcc-changelog/git_update_version.py index 97dd4796f13..69c3d2a0633 100755 --- a/contrib/gcc-changelog/git_update_version.py +++ b/contrib/gcc-changelog/git_update_version.py @@ -1,4 +1,6 @@ #!/usr/bin/env python3 + +# Copyright (C) 2020 Free Software Foundation, Inc. # # This file is part of GCC. # diff --git a/contrib/gcc-changelog/test_email.py b/contrib/gcc-changelog/test_email.py index b9d0cb4157c..89960d307c9 100755 --- a/contrib/gcc-changelog/test_email.py +++ b/contrib/gcc-changelog/test_email.py @@ -1,4 +1,6 @@ #!/usr/bin/env python3 + +# Copyright (C) 2020 Free Software Foundation, Inc. # # This file is part of GCC. # diff --git a/contrib/mark_spam.py b/contrib/mark_spam.py index 86f46a129cc..a7dc5a2e782 100755 --- a/contrib/mark_spam.py +++ b/contrib/mark_spam.py @@ -1,4 +1,6 @@ #!/usr/bin/env python3 + +# Copyright (C) 2016 Free Software Foundation, Inc. # # Script to mark bunch of PRs as spam # -- 2.38.1