Lines Matching +full:- +full:- +full:rm
5 # SPDX-License-Identifier: BSD-2-Clause
17 DIFF_GIT_RE = re.compile(r'^diff --git a/(?P<path>.*) ')
18 REVIEWED_RE = re.compile(r'^Reviewed-by: (?P<approver>.*>)')
19 ACKED_RE = re.compile(r'^Acked-by: (?P<approver>.*>)')
20 PATCH_START = re.compile(r'^From [0-9a-f]{40}')
28 '(With -m) Check if a patch or pull '
31 parser.add_argument('-m', '--merge-check', action='store_true',
32 help='use Reviewed-by: and Acked-by: tags found in '
35 parser.add_argument('-p', '--show-paths', action='store_true',
37 parser.add_argument('-s', '--strict', action='store_true',
42 parser.add_argument('-f', '--file', action='append',
45 parser.add_argument('-g', '--github-pr', action='append', type=int,
49 parser.add_argument('-r', '--release-to', action='store_true',
52 'and OP-TEE mailing list(s)) and exit.')
60 print("Error: this script must be run from the top-level of the "
80 if line.startswith("----------"):
164 # @pattern has the syntax defined in the Linux MAINTAINERS file -- mostly a
230 url = "https://github.com/OP-TEE/optee_os/pull/{}.patch".format(pr)
242 emails = sorted(set(re.findall(r'[RM]:\t(.*[\w]*<[\w\.-]+@[\w\.-]+>)',