diff options
author | Martin Liska <mliska@suse.cz> | 2022-12-14 13:50:03 +0100 |
---|---|---|
committer | Martin Liska <mliska@suse.cz> | 2022-12-14 14:06:58 +0100 |
commit | 81f86cb969cf409bf62e72129d4e19208fe75b3f (patch) | |
tree | 3d9e7f34c974eb3f422b1a428839c0b22efdd471 | |
parent | 95dc11475dac06b5eecd904079de8aa94827a36a (diff) | |
download | gcc-81f86cb969cf409bf62e72129d4e19208fe75b3f.zip gcc-81f86cb969cf409bf62e72129d4e19208fe75b3f.tar.gz gcc-81f86cb969cf409bf62e72129d4e19208fe75b3f.tar.bz2 |
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.
-rwxr-xr-x | contrib/analyze_brprob.py | 2 | ||||
-rwxr-xr-x | contrib/analyze_brprob_spec.py | 2 | ||||
-rwxr-xr-x | contrib/check-params-in-docs.py | 2 | ||||
-rwxr-xr-x | contrib/check_GNU_style.py | 2 | ||||
-rwxr-xr-x | contrib/check_GNU_style_lib.py | 2 | ||||
-rwxr-xr-x | contrib/filter-clang-warnings.py | 2 | ||||
-rwxr-xr-x | contrib/gcc-changelog/git_check_commit.py | 2 | ||||
-rwxr-xr-x | contrib/gcc-changelog/git_commit.py | 2 | ||||
-rwxr-xr-x | contrib/gcc-changelog/git_email.py | 2 | ||||
-rwxr-xr-x | contrib/gcc-changelog/git_repository.py | 2 | ||||
-rwxr-xr-x | contrib/gcc-changelog/git_update_version.py | 2 | ||||
-rwxr-xr-x | contrib/gcc-changelog/test_email.py | 2 | ||||
-rwxr-xr-x | contrib/mark_spam.py | 2 |
13 files changed, 26 insertions, 0 deletions
diff --git a/contrib/analyze_brprob.py b/contrib/analyze_brprob.py index debc9a6..d5a8031 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 c7a9ae0..8f7dcba 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 d570550..8f8f665 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 969534a..826d17a 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 b3db4fb..3d709d1 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 3c68be0..c426bce 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 d6aff3c..2e3e8cb 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 d90e6c1..66d68de 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 2566d41..ef50ebf 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 2d68882..7c2dc21 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 97dd479..69c3d2a 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 b9d0cb4..89960d3 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 86f46a1..a7dc5a2 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 # |