@@ -187,6 +187,14 @@ Series-name: name
patman does not yet use it, but it is convenient to put the branch
name here to help you keep track of multiple upstreaming efforts.
+Series-link: url
+ Set the URL of the series in patchwork. You can set this after you send
+ out the series and look in patchwork for the resulting series. The
+ URL you want is the one for the series itself, not any particular patch.
+ E.g. http://patchwork.ozlabs.org/project/uboot/list/?series=187331
+ When this is set, patman can compare your local branch against patchwork
+ to see what new reviews your series has collected.
+
Cover-letter:
This is the patch set title
blah blah
@@ -392,6 +392,7 @@ Series for my board
This series implements support
for my glorious board.
END
+Series-link: http://patchwork.ozlabs.org/project/uboot/list/?series=183237
''', 'serial.c', '''The code for the
serial driver is here''')
self.make_commit_with_file('bootm: Make it boot', '''
@@ -16,7 +16,7 @@ from patman import tools
# Series-xxx tags that we understand
valid_series = ['to', 'cc', 'version', 'changes', 'prefix', 'notes', 'name',
- 'cover_cc', 'process_log']
+ 'cover_cc', 'process_log', 'link']
class Series(dict):
"""Holds information about a patch series, including all tags.
Add a new Series-link tag to tell patman how to find the series in patchwork. Signed-off-by: Simon Glass <sjg at chromium.org> --- tools/patman/README | 8 ++++++++ tools/patman/func_test.py | 1 + tools/patman/series.py | 2 +- 3 files changed, 10 insertions(+), 1 deletion(-)