Your message dated Thu, 24 May 2012 12:47:57 +0000
with message-id <[email protected]>
and subject line Bug#673368: fixed in git-buildpackage 0.6.0~git20120524
has caused the Debian Bug report #673368,
regarding git-dch: Add support for --team switch for Team uploads
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
673368: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=673368
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: git-buildpackage
Version: 0.6.0~git20120419
Severity: wishlist
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
Hi Guido
git-dch already has support for --nmu, --qa and --bpo. Would it be
possible to add the support for the --team switch too? I tentantively
attached a patch (but I have not yet tested it works as expected).
The patch is for current experimental branch for git-buildpackage.
Regards,
Salvatore
- -- System Information:
Debian Release: wheezy/sid
APT prefers unstable
APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Kernel: Linux 2.6.32-5-amd64 (SMP w/8 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (GNU/Linux)
iQIcBAEBCAAGBQJPte46AAoJEHidbwV/2GP+/N8P+gPPiJNs8LAQfwuG4v5rZwfG
JiEtULbYqyO6pezevDghyh5hw+x3Ud1ljiNvdvR8+htYvaLs/qp5JkkXm/1b20dg
Ec9NgbhN4ec5IPU9Xj7skYFutjBY+9mli38R6GQdaJPE9YR84AMI1m7k4IygCjw7
PbgKSHj4CUTltucHrFeSNj7MOr9azKP/5/Sx+BHCHSvAqiJIo4Dc6Q5r2+Q3grAD
uHUgxHlHOOV1QvyTuLIU2pdKpCPGGxcE71y8BfFerIuRHbY8ZjLbez/4BokGkAfL
l83RcielAPKrvRs9brT7AYhk9xY6fA4g8xYyySyICYa6SYjaFRHy/q5a0t/nJ0YC
CGnEsMtNclQ7h8856Hqk6amA6I0qPu6G9Dt6/fA92qjUapd46iL1+VJ8/iDi4/qK
3w5anoHyZsyie/rq7LX0PvYuiga4rrCQP+23Of8xPV6iUT2cRm4SWpNWCC/4HJ+1
8qPV0WJ/7oQbtP44ruY0SZmzz07lSS5Vib3XYBOTnUWikpuRWbk2ZP6GkSzblkxj
ihaj47eWkLdM8xh3J7QIxqDc+bYFCec5FWIFV5WjRjaw6BDg5wqNM7EcIp3ivDC8
UM2TkBLM6SulWaEv9VNuPPHWME1B1a5UUsFsD+SSlaUNe+4Vv9PwcBBtI6mwXTId
QLzZm/DrBLNzaTv3/wxv
=5MH0
-----END PGP SIGNATURE-----
>From fcbc06d439ed143dd76933dbc0d4f6f089116650 Mon Sep 17 00:00:00 2001
From: Salvatore Bonaccorso <[email protected]>
Date: Fri, 18 May 2012 08:23:55 +0200
Subject: [PATCH] git-dch: Add support for --team switch for Team uploads
---
docs/manpages/git-dch.sgml | 1 +
gbp/scripts/dch.py | 6 +++++-
2 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/docs/manpages/git-dch.sgml b/docs/manpages/git-dch.sgml
index 6449ecd..31452f7 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>
diff --git a/gbp/scripts/dch.py b/gbp/scripts/dch.py
index 14dff29..0a69510 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
--
1.7.2.5
--- End Message ---
--- Begin Message ---
Source: git-buildpackage
Source-Version: 0.6.0~git20120524
We believe that the bug you reported is fixed in the latest version of
git-buildpackage, which is due to be installed in the Debian FTP archive:
git-buildpackage_0.6.0~git20120524.dsc
to main/g/git-buildpackage/git-buildpackage_0.6.0~git20120524.dsc
git-buildpackage_0.6.0~git20120524.tar.gz
to main/g/git-buildpackage/git-buildpackage_0.6.0~git20120524.tar.gz
git-buildpackage_0.6.0~git20120524_all.deb
to main/g/git-buildpackage/git-buildpackage_0.6.0~git20120524_all.deb
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Guido Günther <[email protected]> (supplier of updated git-buildpackage package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.8
Date: Thu, 24 May 2012 14:05:47 +0200
Source: git-buildpackage
Binary: git-buildpackage
Architecture: source all
Version: 0.6.0~git20120524
Distribution: experimental
Urgency: low
Maintainer: Guido Günther <[email protected]>
Changed-By: Guido Günther <[email protected]>
Description:
git-buildpackage - Suite to help with Debian packages in Git repositories
Closes: 672642 673368 673422 673473
Changes:
git-buildpackage (0.6.0~git20120524) experimental; urgency=low
.
[ Markus Lehtonen ]
* [3308868] Refactor deb helpers: introduce PkgPolicy class. Create a new
'pkg' basemodule, intended to be re-used by the upcoming rpm package
helpers. Move some deb functionality to a new pkg.PkgPolicy class, to be
used as a base for different package types. Introduces Deb-specific
deb.DebianPkgPolicy.
* [082679d] Refactor deb helpers: move build_tarball_name() from
UpstreamSource class to DebianPkgPolicy.
* [f495df9] Refactor deb helpers: move UpstreamSource class to pkg base
module. This refactor is preparation to the upcoming rpm support.
.
[ Guido Günther ]
* [83165aa] GitRepository.format_patches: allow to set threading format
and disable it by default.
* [5de6410] docs: complete git-dch synopsis
* [1eeb298] Add gbp.deb.ChangeLogSection to parse package and version out of
a changelog section
* [1ea487e] Don't explicitly refer to lenny-backports.
Thanks to Salvatore Bonaccorso
* [9d1459b] gbp.deb.changelog: Split parsing into a separate function
this will allow us to reparse the changelog after manipulation with dch.
* [2ecf9e3] gbp.deb.ChangeLog: Add filename property
.
[ Jérémy Lal ]
* [ae850da] --ignore-branch config help fix
.
[ Daniel Dehennin ]
* [c57d4af] gbp.git.repository: Add a "git merge-base" wrapper
(Closes: #672642)
* [edc6483] Provide minimalist debian/control object
(Closes: #673473)
.
[ Salvatore Bonaccorso ]
* [bb32e94] git-dch: Add support for --team switch for Team uploads
(Closes: #673368)
* [016bf21] Document --bpo, --nmu and --qa in git-dch's manpage
(Closes: #673422)
Checksums-Sha1:
6bf1315a7853a98f565f0d1436ec969b6e3cbaf5 1270
git-buildpackage_0.6.0~git20120524.dsc
237940aaad5ccbddb7b8194ab8392b79b7a25858 154245
git-buildpackage_0.6.0~git20120524.tar.gz
85e992c03bf782f055caf417eb78246eb2ce350e 308838
git-buildpackage_0.6.0~git20120524_all.deb
Checksums-Sha256:
bd90f81b107c9104d7bfc433c49f8c0d0c0c706e98445d17949fbe37a559fff8 1270
git-buildpackage_0.6.0~git20120524.dsc
53ea430576d6de779df243b0b900135bca59094c5b073f111de2326012862144 154245
git-buildpackage_0.6.0~git20120524.tar.gz
17b4b7baeda4726054f6eeba963922b22409b30722df7d3bd351f0fdb90695fa 308838
git-buildpackage_0.6.0~git20120524_all.deb
Files:
483a253181c17cecf79b7721f8990097 1270 vcs optional
git-buildpackage_0.6.0~git20120524.dsc
ada53f514f52ae47c9d5da884151fbdb 154245 vcs optional
git-buildpackage_0.6.0~git20120524.tar.gz
b20839c94f990da93528b2363b3f813e 308838 vcs optional
git-buildpackage_0.6.0~git20120524_all.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (GNU/Linux)
iD8DBQFPviqPn88szT8+ZCYRAjbMAJ9LEgmEJcuwDwcBkHdvsyzHrTy9jgCdHiAE
WsvG+cgQZks7/Mm8zbwLuO4=
=0xc9
-----END PGP SIGNATURE-----
--- End Message ---