1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-08 21:18:16 +03:00

python:tests: Permit newer copyright notice

We can use an HTTPS URL (https://www.gnu.org/licenses/) now.

Signed-off-by: Joseph Sutton <josephsutton@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Joseph Sutton 2023-12-06 16:07:54 +13:00 committed by Andrew Bartlett
parent 763b2efe69
commit 261d3ade8d

View File

@ -114,7 +114,8 @@ class TestSource(TestCase):
"""Test that all .py files have a GPL disclaimer."""
incorrect = []
gpl_txt = """
gpl_txts = [
"""
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
@ -127,8 +128,24 @@ class TestSource(TestCase):
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
""",
"""
gpl_re = re.compile(re.escape(gpl_txt), re.MULTILINE)
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
""",
]
gpl_re = f'(?:{"|".join(map(re.escape, gpl_txts))})'
gpl_re = re.compile(gpl_re, re.MULTILINE)
for fname, text in get_source_file_contents():
if "wafsamba" in fname:
@ -149,7 +166,7 @@ class TestSource(TestCase):
if incorrect:
help_text = ['Some files have missing or incomplete GPL statement',
gpl_txt]
gpl_txts[-1]]
for fname in incorrect:
help_text.append((' ' * 4) + fname)