mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-03-12 23:51:08 +00:00
* Added support for Bugs/Debian/Usertagging in submittodebian.
* setup.py: actually install submittodebian.
This commit is contained in:
parent
3af39d99b9
commit
85c1a202d2
10
debian/changelog
vendored
10
debian/changelog
vendored
@ -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
2
debian/control
vendored
@ -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)
|
||||
|
3
setup.py
3
setup.py
@ -28,7 +28,8 @@ setup(name='ubuntu-dev-tools',
|
||||
'ppaput',
|
||||
'requestsync',
|
||||
'hugdaylist',
|
||||
'massfile'
|
||||
'massfile',
|
||||
'submittodebian'
|
||||
],
|
||||
)
|
||||
|
||||
|
@ -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):
|
||||
|
Loading…
x
Reference in New Issue
Block a user