* submittodebian: backed out changes from last upload. This needs Debian Bug

445144 fixed.
* debian/control: don't Depends on a version of reportbug Ubuntu does not
  have yet.
This commit is contained in:
Daniel Holbach 2007-10-05 11:46:58 +02:00
parent 85c1a202d2
commit 727de19248
3 changed files with 11 additions and 2 deletions

9
debian/changelog vendored
View File

@ -1,3 +1,12 @@
ubuntu-dev-tools (0.17) gutsy; urgency=low
* submittodebian: backed out changes from last upload. This needs Debian Bug
445144 fixed.
* debian/control: don't Depends on a version of reportbug Ubuntu does not
have yet.
-- Daniel Holbach <daniel.holbach@ubuntu.com> Fri, 05 Oct 2007 11:44:51 +0200
ubuntu-dev-tools (0.16) gutsy; urgency=low
[ Lucas Nussbaum ]

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), reportbug (>= 3.38ubuntu3)
Depends: ${python:Depends}, ${misc:Depends}, binutils, devscripts, sudo, python-launchpad-bugs (>= 0.2.14), reportbug
Recommends: bzr, pbuilder
Conflicts: devscripts (<< 2.10.7ubuntu5)
Replaces: devscripts (<< 2.10.7ubuntu5)

View File

@ -64,7 +64,7 @@ def edit_debdiff(debdiff):
run_cmd(cmd)
def submit_bugreport(body, debdiff, changelog):
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)
cmd = 'reportbug -A %s -B debian -i %s -V %s %s' % (debdiff, body, deb_version, changelog.package)
run_cmd(cmd)
def run_cmd(cmd):