BaseTools/PatchCheck: Generate error if Contributed-under found

https://bugzilla.tianocore.org/show_bug.cgi?id=1655

With the change to BSD+Patent License, the TianoCore Contributor's
Agreement has been removed and as a result, a Contributed-under
tag is no longer appropriate in patches.  Remove the check for
the TianoCore Contributor's Agreement and instead, generate an
error if a patch contains a Contributed-under tag in the commit
message.

Cc: Jordan Justen <jordan.l.justen@intel.com>
Cc: Bob Feng <bob.c.feng@intel.com>
Cc: Liming Gao <liming.gao@intel.com>
Cc: Yonghong Zhu <yonghong.zhu@intel.com>
Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com>
Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>
This commit is contained in:
Michael D Kinney
2019-04-04 15:35:07 -07:00
parent 3806e1fd13
commit a281361014

View File

@ -1,7 +1,7 @@
## @file ## @file
# Check a patch for various format issues # Check a patch for various format issues
# #
# Copyright (c) 2015 - 2018, Intel Corporation. All rights reserved.<BR> # Copyright (c) 2015 - 2019, Intel Corporation. All rights reserved.<BR>
# #
# SPDX-License-Identifier: BSD-2-Clause-Patent # SPDX-License-Identifier: BSD-2-Clause-Patent
# #
@ -67,14 +67,17 @@ class CommitMessageCheck:
print(prefix, line) print(prefix, line)
count += 1 count += 1
# Find 'contributed-under:' at the start of a line ignoring case and
# requires ':' to be present. Matches if there is white space before
# the tag or between the tag and the ':'.
contributed_under_re = \
re.compile(r'^\s*contributed-under\s*:', re.MULTILINE|re.IGNORECASE)
def check_contributed_under(self): def check_contributed_under(self):
cu_msg='Contributed-under: TianoCore Contribution Agreement 1.1' match = self.contributed_under_re.search(self.msg)
if self.msg.find(cu_msg) < 0: if match is not None:
# Allow 1.0 for now while EDK II community transitions to 1.1 self.error('Contributed-under! (Note: this must be ' +
cu_msg='Contributed-under: TianoCore Contribution Agreement 1.0' 'removed by the code contributor!)')
if self.msg.find(cu_msg) < 0:
self.error('Missing Contributed-under! (Note: this must be ' +
'added by the code contributor!)')
@staticmethod @staticmethod
def make_signature_re(sig, re_input=False): def make_signature_re(sig, re_input=False):