aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorSalvatore Bonaccorso <carnil@debian.org>2012-05-18 14:44:37 +0200
committerGuido Günther <agx@sigxcpu.org>2012-05-20 12:54:59 +0200
commitbb32e945ad8cbf5963f97ad0ca95b275915c7dbe (patch)
tree168a97f02b6d094fc6e416ceceb32ae7baaf03c9
parent7fc0d8c974921d1ef280d5178d03839e0d074b88 (diff)
git-dch: Add support for --team switch for Team uploads
Closes: #673368 Signed-off-by: Guido Günther <agx@sigxcpu.org>
-rw-r--r--docs/manpages/git-dch.sgml7
-rw-r--r--gbp/scripts/dch.py6
2 files changed, 12 insertions, 1 deletions
diff --git a/docs/manpages/git-dch.sgml b/docs/manpages/git-dch.sgml
index 6449ecda..573d6b2c 100644
--- a/docs/manpages/git-dch.sgml
+++ b/docs/manpages/git-dch.sgml
@@ -39,6 +39,7 @@
<arg><option>--bpo</option></arg>
<arg><option>--nmu</option></arg>
<arg><option>--qa</option></arg>
+ <arg><option>--team</option></arg>
</group>
<arg><option>--[no-]full</option></arg>
<arg><option>--[no-]meta</option></arg>
@@ -191,6 +192,12 @@
</listitem>
</varlistentry>
<varlistentry>
+ <term><option>--team</option></term>
+ <listitem>
+ <para>Create a Team upload changelog entry.</para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
<term><option>--git-log=</option><replaceable>git-log-options</replaceable>
</term>
<listitem>
diff --git a/gbp/scripts/dch.py b/gbp/scripts/dch.py
index 14dff295..0a695109 100644
--- a/gbp/scripts/dch.py
+++ b/gbp/scripts/dch.py
@@ -382,6 +382,8 @@ def main(argv):
help="Increment the Debian release number for a non-maintainer upload")
version_group.add_option("--qa", dest="qa", action="store_true", default=False,
help="Increment the Debian release number for a Debian QA Team upload, and add a QA upload changelog comment.")
+ version_group.add_option("--team", dest="team", action="store_true", default=False,
+ help="Increment the Debian release number for a Debian Team upload, and add a Team upload changelog comment.")
version_group.add_boolean_config_file_option(option_name="git-author", dest="git_author")
commit_group.add_boolean_config_file_option(option_name="meta", dest="meta")
commit_group.add_config_file_option(option_name="meta-closes", dest="meta_closes",
@@ -448,13 +450,15 @@ def main(argv):
commits.reverse()
# add a new changelog section if:
- if options.new_version or options.bpo or options.nmu or options.qa:
+ if options.new_version or options.bpo or options.nmu or options.qa or options.team:
if options.bpo:
version_change['increment'] = '--bpo'
elif options.nmu:
version_change['increment'] = '--nmu'
elif options.qa:
version_change['increment'] = '--qa'
+ elif options.team:
+ version_change['increment'] = '--team'
else:
version_change['version'] = options.new_version
# the user wants to force a new version