diff options
author | Simon Glass <sjg@chromium.org> | 2014-02-16 08:23:47 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2014-03-22 14:47:30 -0600 |
commit | 659c89da8e48d44395120aeb2dd0d02d3fb24b67 (patch) | |
tree | f8795412da7d57f6d5f4e0d329d46e297fb2694b /tools/patman/patchstream.py | |
parent | def23217e4443a1bbe8d343aa6efef8ddf7f1d6b (diff) | |
download | u-boot-imx-659c89da8e48d44395120aeb2dd0d02d3fb24b67.zip u-boot-imx-659c89da8e48d44395120aeb2dd0d02d3fb24b67.tar.gz u-boot-imx-659c89da8e48d44395120aeb2dd0d02d3fb24b67.tar.bz2 |
patman: Use Patch-cc: instead of Cc:
Add a new Patch-cc: tag which performs the service now provided by
the Cc: tag. The Cc: tag is interpreted by git send-email but
ignored by patman.
So now:
Cc: patman does nothing. (git send-email can cc patches)
Patch-cc: patman Cc's patch and removes this tag from the patch
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/patman/patchstream.py')
-rw-r--r-- | tools/patman/patchstream.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/patman/patchstream.py b/tools/patman/patchstream.py index 684204c..c4017e0 100644 --- a/tools/patman/patchstream.py +++ b/tools/patman/patchstream.py @@ -36,7 +36,7 @@ re_series_tag = re.compile('^Series-([a-z-]*): *(.*)') re_commit_tag = re.compile('^Commit-([a-z-]*): *(.*)') # Commit tags that we want to collect and keep -re_tag = re.compile('^(Tested-by|Acked-by|Reviewed-by|Cc): (.*)') +re_tag = re.compile('^(Tested-by|Acked-by|Reviewed-by|Patch-cc): (.*)') # The start of a new commit in the git log re_commit = re.compile('^commit ([0-9a-f]*)$') @@ -267,7 +267,7 @@ class PatchStream: if (tag_match.group(1) == 'Tested-by' and tag_match.group(2).find(os.getenv('USER') + '@') != -1): self.warn.append("Ignoring %s" % line) - elif tag_match.group(1) == 'Cc': + elif tag_match.group(1) == 'Patch-cc': self.commit.AddCc(tag_match.group(2).split(',')) else: self.tags.append(line); |