mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-03-12 23:51:08 +00:00
[ Michael Bienia ]
Update the defaults for maverick and let requestsync and pull-debian-source default to unstable (lp: #472837).
This commit is contained in:
parent
2b34773630
commit
9e89a22c58
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -6,7 +6,11 @@ ubuntu-dev-tools (0.99) UNRELEASED; urgency=low
|
||||
[ Andrey Voronov ]
|
||||
* pbuilder-dist: change requested/system arch order in check (LP: #557097)
|
||||
|
||||
-- Emmet Hikory <persia@ubuntu.com> Tue, 20 Apr 2010 06:23:28 +0900
|
||||
[ Michael Bienia ]
|
||||
* Update the defaults for maverick and let requestsync and
|
||||
pull-debian-source default to unstable (lp: #472837).
|
||||
|
||||
-- Michael Bienia <geser@ubuntu.com> Tue, 20 Apr 2010 17:53:57 +0200
|
||||
|
||||
ubuntu-dev-tools (0.98) lucid; urgency=low
|
||||
|
||||
|
@ -23,7 +23,7 @@ This is the source package that you would like to be downloaded from Debian.
|
||||
.TP
|
||||
.B [target release]
|
||||
This is the release that you would like the source package to be downloaded from.
|
||||
This value defaults to 'testing'.
|
||||
This value defaults to 'unstable'.
|
||||
|
||||
.SH AUTHOR
|
||||
.PP
|
||||
|
@ -44,7 +44,7 @@ Display a help message and exit.
|
||||
.TP
|
||||
.B \-d
|
||||
Specifies which Debian distribution a package should be synced from.
|
||||
Default is \fItesting\fR.
|
||||
Default is \fIunstable\fR.
|
||||
.TP
|
||||
.B \-n
|
||||
Specifies that the package is a new package, and requestsync should not
|
||||
|
@ -30,7 +30,7 @@ my($package)=$ARGV[0] || &usage();
|
||||
my($help)=0;
|
||||
GetOptions('help' => \$help);
|
||||
&usage() if($help);
|
||||
my($release)=$ARGV[1] || 'testing';
|
||||
my($release)=$ARGV[1] || 'unstable';
|
||||
$release=&convertCodeName($release);
|
||||
&checkRelease($release);
|
||||
my($dsc)=&getDSC(&getMadison(&getURL($package,$release)));
|
||||
|
@ -47,7 +47,7 @@ if __name__ == '__main__':
|
||||
optParser = OptionParser(usage)
|
||||
|
||||
optParser.add_option('-d', type = 'string',
|
||||
dest = 'dist', default = 'testing',
|
||||
dest = 'dist', default = 'unstable',
|
||||
help = 'Debian distribution to sync from.')
|
||||
optParser.add_option('-k', type = 'string',
|
||||
dest = 'keyid', default = None,
|
||||
@ -101,10 +101,9 @@ if __name__ == '__main__':
|
||||
if len(args) == 1:
|
||||
if lpapi:
|
||||
release = Distribution('ubuntu').getDevelopmentSeries().name
|
||||
print >> sys.stderr, 'W: Target release missing - assuming %s' % release
|
||||
else:
|
||||
print >> sys.stderr, 'E: Source package or target release missing. Exiting.'
|
||||
sys.exit(1)
|
||||
release = 'maverick'
|
||||
print >> sys.stderr, 'W: Target release missing - assuming %s' % release
|
||||
elif len(args) == 2:
|
||||
release = args[1]
|
||||
elif len(args) == 3:
|
||||
|
@ -75,7 +75,7 @@ my $progname = basename($0);
|
||||
my $version = '1.0';
|
||||
my $dctrl = "/usr/bin/grep-dctrl";
|
||||
my $sources_path = "/var/lib/apt/lists/";
|
||||
my $source_pattern = ".*_dists_lucid_.*Sources\$";
|
||||
my $source_pattern = ".*_dists_maverick_.*Sources\$";
|
||||
my @source_files;
|
||||
my $sources_count=0;
|
||||
my $opt_debug;
|
||||
|
@ -90,7 +90,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 lucid ubuntu-patch" -T patch -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 maverick ubuntu-patch" -T 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