mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-05-10 00:11:29 +00:00
Merge with trunk.
This commit is contained in:
commit
660c7f8eae
7
debian/changelog
vendored
7
debian/changelog
vendored
@ -9,6 +9,11 @@ ubuntu-dev-tools (0.24) UNRELEASED; urgency=low
|
|||||||
[ Cesare Tirabassi ]
|
[ Cesare Tirabassi ]
|
||||||
* Add man page for check-symbols (Thanks to Albert Damen - LP: #174123).
|
* Add man page for check-symbols (Thanks to Albert Damen - LP: #174123).
|
||||||
|
|
||||||
|
[ Michael Bienia ]
|
||||||
|
* requestsync:
|
||||||
|
- Set importance to wishlist.
|
||||||
|
- Strip some more whitespace.
|
||||||
|
|
||||||
[ Siegfried-Angel Gevatter Pujals (RainCT) ]
|
[ Siegfried-Angel Gevatter Pujals (RainCT) ]
|
||||||
* what-patch:
|
* what-patch:
|
||||||
- Print a list of files that have been modified outside debian/
|
- Print a list of files that have been modified outside debian/
|
||||||
@ -17,7 +22,7 @@ ubuntu-dev-tools (0.24) UNRELEASED; urgency=low
|
|||||||
* debian/control:
|
* debian/control:
|
||||||
- Bump standards version to 3.7.3
|
- Bump standards version to 3.7.3
|
||||||
- Move python-central to Build-Depends-Indep
|
- Move python-central to Build-Depends-Indep
|
||||||
- Rename XS-Vcs-* fields to Vcs-*
|
- Rename XS-Vcs-{Bzr,Browser} fields to Vcs-{Bzr,Browser}
|
||||||
- Bump minimum cdbs version to 0.4.49
|
- Bump minimum cdbs version to 0.4.49
|
||||||
* Add Albert Damen to the Authors and Copyright Holders
|
* Add Albert Damen to the Authors and Copyright Holders
|
||||||
|
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# Copyright (C) Jamin W. Collins <jcollins@asgardsrealm.net>
|
# Copyright by:
|
||||||
# and Jordan Mantha <mantha@ubuntu.com>
|
# Jamin W. Collins <jcollins@asgardsrealm.net>
|
||||||
# Copyright 2007 (C) Siegfried-A. Gevatter <siggi.gevatter@gmail.com>
|
# Jordan Mantha <mantha@ubuntu.com>
|
||||||
|
# Siegfried-A. Gevatter <siggi.gevatter@gmail.com>
|
||||||
# License: GPLv2 or later
|
# License: GPLv2 or later
|
||||||
#
|
#
|
||||||
# This script is a wrapper to use pbuilder with many different
|
# This script is a wrapper to use pbuilder with many different
|
||||||
|
@ -42,7 +42,7 @@ def cur_deb_version(sourcepkg):
|
|||||||
print "%s doesn't appear to exist in Debian." % sourcepkg
|
print "%s doesn't appear to exist in Debian." % sourcepkg
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
return out.split('|')[1].rstrip('[]''').lstrip()
|
return out.split('|')[1].rstrip('[]''').strip()
|
||||||
|
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
@ -76,7 +76,7 @@ def debian_component(sourcepkg):
|
|||||||
raw_comp = out.split('|')[2].split('/')
|
raw_comp = out.split('|')[2].split('/')
|
||||||
component = 'main'
|
component = 'main'
|
||||||
if len(raw_comp) == 2:
|
if len(raw_comp) == 2:
|
||||||
component = raw_comp[1]
|
component = raw_comp[1].strip()
|
||||||
return component
|
return component
|
||||||
|
|
||||||
def usage():
|
def usage():
|
||||||
@ -136,6 +136,7 @@ if newsource:
|
|||||||
|
|
||||||
report = ''' affects ubuntu%s
|
report = ''' affects ubuntu%s
|
||||||
status %s
|
status %s
|
||||||
|
importance wishlist
|
||||||
subscribe %s
|
subscribe %s
|
||||||
|
|
||||||
Please sync %s %s (%s) from Debian unstable (%s).
|
Please sync %s %s (%s) from Debian unstable (%s).
|
||||||
|
Loading…
x
Reference in New Issue
Block a user