From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1851) id 2A39B3850B27; Wed, 14 Dec 2022 13:07:49 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 2A39B3850B27 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1671023269; bh=25QZWwCZmWlhFffSiW7gjJzlp0rC2Q+lrcgZ8And+Ic=; h=From:To:Subject:Date:From; b=ktQiUvcptrGFMMY3zOKwotuFT+Vo6CG3Ks+HnkwoNvdWKndpp3daPEoVY5Z+lXHDs JuTmhm+rbc4ozM1dO1hEvYoVbgp+/IwU/FDxAK5XnzY85LWZMbRA/BR+vsku4r5GM3 9TrtVYwr1z5qJoMrY+LY3aYA+RFigh8wVv66MQ0w= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Martin Liska To: gcc-cvs@gcc.gnu.org Subject: [gcc r13-4698] contrib: add copyright for my scripts X-Act-Checkin: gcc X-Git-Author: Martin Liska X-Git-Refname: refs/heads/master X-Git-Oldrev: 95dc11475dac06b5eecd904079de8aa94827a36a X-Git-Newrev: 81f86cb969cf409bf62e72129d4e19208fe75b3f Message-Id: <20221214130749.2A39B3850B27@sourceware.org> Date: Wed, 14 Dec 2022 13:07:49 +0000 (GMT) List-Id: https://gcc.gnu.org/g:81f86cb969cf409bf62e72129d4e19208fe75b3f commit r13-4698-g81f86cb969cf409bf62e72129d4e19208fe75b3f Author: Martin Liska Date: Wed Dec 14 13:50:03 2022 +0100 contrib: add copyright for my scripts 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. Diff: --- 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 #