mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-05-05 22:11:28 +00:00
pull-debian-source: Fix logical error in abort check (lp: #678072).
This commit is contained in:
parent
bf8f15471f
commit
d55ea2647f
5
debian/changelog
vendored
5
debian/changelog
vendored
@ -7,7 +7,10 @@ ubuntu-dev-tools (0.106) UNRELEASED; urgency=low
|
|||||||
* sponsor-patch: Call dpkg-source with --no-preparation to not apply patches
|
* sponsor-patch: Call dpkg-source with --no-preparation to not apply patches
|
||||||
if the packages uses the 3.0 (quilt) format.
|
if the packages uses the 3.0 (quilt) format.
|
||||||
|
|
||||||
-- Benjamin Drung <bdrung@ubuntu.com> Sat, 20 Nov 2010 22:03:07 +0100
|
[ Michael Bienia ]
|
||||||
|
* pull-debian-source: Fix logical error in abort check (lp: #678072).
|
||||||
|
|
||||||
|
-- Michael Bienia <geser@ubuntu.com> Sun, 21 Nov 2010 14:46:12 +0100
|
||||||
|
|
||||||
ubuntu-dev-tools (0.105) experimental; urgency=low
|
ubuntu-dev-tools (0.105) experimental; urgency=low
|
||||||
|
|
||||||
|
@ -74,7 +74,7 @@ sub getURL{
|
|||||||
$package=lc($package);
|
$package=lc($package);
|
||||||
$package=~s/\+/%2b/g;
|
$package=~s/\+/%2b/g;
|
||||||
$release=lc($release);
|
$release=lc($release);
|
||||||
my($baseURL)='http://qa.debian.org/madison.php?text=on';
|
my($baseURL)='http://qa.debian.org/madison.php?text=on&a=source';
|
||||||
my($url)=$baseURL . '&package=' . $package . '&s=' . $release;
|
my($url)=$baseURL . '&package=' . $package . '&s=' . $release;
|
||||||
return $url;
|
return $url;
|
||||||
}
|
}
|
||||||
@ -82,7 +82,7 @@ sub getMadison {
|
|||||||
my($url)=shift || die("No URL Passed to getMadison: $!\n");
|
my($url)=shift || die("No URL Passed to getMadison: $!\n");
|
||||||
chomp $url;
|
chomp $url;
|
||||||
my($madison)=get($url);
|
my($madison)=get($url);
|
||||||
die("The source package $package isn't available in Debian testing.\nRun $name $package unstable if the package has not yet migrated from Debian unstable to Debian testing.\n") unless ($release=~m/testing/ && $madison!~m/^\s*$/);
|
die("The source package $package isn't available in Debian testing.\nRun $name $package unstable if the package has not yet migrated from Debian unstable to Debian testing.\n") if ($release=~m/testing/ && $madison=~m/^\s*$/);
|
||||||
return $madison;
|
return $madison;
|
||||||
}
|
}
|
||||||
sub getDSC {
|
sub getDSC {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user