From: Martin Liska Date: Wed, 14 Dec 2022 12:50:03 +0000 (+0100) Subject: contrib: add copyright for my scripts X-Git-Tag: basepoints/gcc-14~2509 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=81f86cb969cf409bf62e72129d4e19208fe75b3f;p=thirdparty%2Fgcc.git 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 --git a/contrib/analyze_brprob.py b/contrib/analyze_brprob.py index debc9a6421af..d5a8031e75c0 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 c7a9ae07e16a..8f7dcbaddb49 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 d57055088b70..8f8f6654df35 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 969534a3cc9b..826d17abf082 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 b3db4fbddc94..3d709d1eafa8 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 3c68be028a89..c426bce5eb52 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 d6aff3cef918..2e3e8cbeb77b 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 d90e6c19b76c..66d68de03a5e 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 2566d4149e7d..ef50ebfb7fdc 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 2d688826ff84..7c2dc218775f 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 97dd4796f13f..69c3d2a06330 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 b9d0cb4157cf..89960d307c94 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 86f46a129ccd..a7dc5a2e7826 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 #