* Added support for Bugs/Debian/Usertagging in submittodebian.

* setup.py: actually install submittodebian.
This commit is contained in:
Daniel Holbach 2007-10-05 11:36:28 +02:00
parent 3af39d99b9
commit 85c1a202d2
4 changed files with 14 additions and 3 deletions

10
debian/changelog vendored
View File

@ -1,3 +1,13 @@
ubuntu-dev-tools (0.16) gutsy; urgency=low
[ Lucas Nussbaum ]
* Added support for Bugs/Debian/Usertagging in submittodebian.
[ Daniel Holbach ]
* setup.py: actually install submittodebian.
-- Daniel Holbach <daniel.holbach@ubuntu.com> Fri, 05 Oct 2007 11:05:29 +0200
ubuntu-dev-tools (0.15) gutsy; urgency=low
[ Laurent Bigonville ]

2
debian/control vendored
View File

@ -12,7 +12,7 @@ Standards-Version: 3.7.2
Package: ubuntu-dev-tools
Architecture: all
Section: devel
Depends: ${python:Depends}, ${misc:Depends}, binutils, devscripts, sudo, python-launchpad-bugs (>= 0.2.14)
Depends: ${python:Depends}, ${misc:Depends}, binutils, devscripts, sudo, python-launchpad-bugs (>= 0.2.14), reportbug (>= 3.38ubuntu3)
Recommends: bzr, pbuilder
Conflicts: devscripts (<< 2.10.7ubuntu5)
Replaces: devscripts (<< 2.10.7ubuntu5)

View File

@ -28,7 +28,8 @@ setup(name='ubuntu-dev-tools',
'ppaput',
'requestsync',
'hugdaylist',
'massfile'
'massfile',
'submittodebian'
],
)

View File

@ -64,7 +64,7 @@ def edit_debdiff(debdiff):
run_cmd(cmd)
def submit_bugreport(body, debdiff, changelog):
cmd = 'reportbug -A %s -B debian -i %s -V %s %s' % (debdiff, body, deb_version, changelog.package)
cmd = 'reportbug -P "User: ubuntu-devel@lists.ubuntu.com" -P "Usertags: origin-ubuntu hardy ubuntu-patch" -A %s -B debian -i %s -V %s %s' % (debdiff, body, deb_version, changelog.package)
run_cmd(cmd)
def run_cmd(cmd):