aboutsummaryrefslogtreecommitdiff
path: root/scripts/assemble_changelog.py
diff options
context:
space:
mode:
authorBence Szépkúti <bence.szepkuti@arm.com>2020-08-07 13:07:28 +0200
committerBence Szépkúti <bence.szepkuti@arm.com>2020-08-19 10:35:41 +0200
commit1e14827bebc8480786498f007304bd852ef953c6 (patch)
treeff089348934d19c039fe5e76ea08f4b4d6d4eaeb /scripts/assemble_changelog.py
parentc60c30eb68dd70c71f902f55eb0db69b466e7503 (diff)
downloadmbedtls-1e14827bebc8480786498f007304bd852ef953c6.zip
mbedtls-1e14827bebc8480786498f007304bd852ef953c6.tar.gz
mbedtls-1e14827bebc8480786498f007304bd852ef953c6.tar.bz2
Update copyright notices to use Linux Foundation guidance
As a result, the copyright of contributors other than Arm is now acknowledged, and the years of publishing are no longer tracked in the source files. Also remove the now-redundant lines declaring that the files are part of MbedTLS. This commit was generated using the following script: # ======================== #!/bin/sh # Find files find '(' -path './.git' -o -path './3rdparty' ')' -prune -o -type f -print | xargs sed -bi ' # Replace copyright attribution line s/Copyright.*Arm.*/Copyright The Mbed TLS Contributors/I # Remove redundant declaration and the preceding line $!N /This file is part of Mbed TLS/Id P D ' # ======================== Signed-off-by: Bence Szépkúti <bence.szepkuti@arm.com>
Diffstat (limited to 'scripts/assemble_changelog.py')
-rwxr-xr-xscripts/assemble_changelog.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/scripts/assemble_changelog.py b/scripts/assemble_changelog.py
index ffa3f16..8f7d1fd 100755
--- a/scripts/assemble_changelog.py
+++ b/scripts/assemble_changelog.py
@@ -18,7 +18,7 @@ In each level-3 section, entries are sorted in chronological order
You must run this program from within a git working directory.
"""
-# Copyright (C) 2019, Arm Limited, All Rights Reserved
+# Copyright The Mbed TLS Contributors
# SPDX-License-Identifier: Apache-2.0
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
@@ -32,8 +32,6 @@ You must run this program from within a git working directory.
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
-#
-# This file is part of Mbed TLS (https://tls.mbed.org)
import argparse
from collections import OrderedDict, namedtuple