mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-05-11 17:01:31 +00:00
Merge with trunk.
This commit is contained in:
commit
076da39ef8
7
debian/changelog
vendored
7
debian/changelog
vendored
@ -1,5 +1,10 @@
|
|||||||
ubuntu-dev-tools (0.25) UNRELEASED; urgency=low
|
ubuntu-dev-tools (0.25) UNRELEASED; urgency=low
|
||||||
|
|
||||||
|
[ Michael Bienia ]
|
||||||
|
* Add work-around for a bug in Debian's madison.php not returning only the
|
||||||
|
'source' line (LP: #183346).
|
||||||
|
|
||||||
|
[ 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/.
|
||||||
- Add -h and -q options.
|
- Add -h and -q options.
|
||||||
@ -12,7 +17,7 @@ ubuntu-dev-tools (0.25) UNRELEASED; urgency=low
|
|||||||
* Add Albert Damen to the Authors and Copyright Holders.
|
* Add Albert Damen to the Authors and Copyright Holders.
|
||||||
* Add reverse-build-depends script.
|
* Add reverse-build-depends script.
|
||||||
|
|
||||||
-- Siegfried-Angel Gevatter Pujals (RainCT) <rainct@ubuntu.com> Sun, 06 Jan 2008 12:02:54 +0100
|
-- Siegfried-Angel Gevatter Pujals (RainCT) <rainct@ubuntu.com> Thu, 17 Jan 2008 19:17:43 +0100
|
||||||
|
|
||||||
ubuntu-dev-tools (0.24) hardy; urgency=low
|
ubuntu-dev-tools (0.24) hardy; urgency=low
|
||||||
|
|
||||||
|
@ -42,6 +42,12 @@ 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)
|
||||||
|
|
||||||
|
# Work-around for a bug in Debians madison.php script not returning
|
||||||
|
# only the source line
|
||||||
|
for line in out.splitlines():
|
||||||
|
if line.find('source') > 0:
|
||||||
|
out = line
|
||||||
|
|
||||||
return out.split('|')[1].rstrip('[]''').strip()
|
return out.split('|')[1].rstrip('[]''').strip()
|
||||||
|
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user