* buildd: Fixed rescore (tested by Sarah Hobbs)

* submittodebian: Changed default tag to Jaunty
* pbuilder-dist: Added jaunty to ubuntu releases
* pull-lp-source: Made jaunty the default
* dch-repeat: Added jaunty
This commit is contained in:
Michael Casadevall 2008-11-09 06:54:51 -05:00
parent 194a4c3251
commit 9e1272482c
5 changed files with 10 additions and 6 deletions

View File

@ -47,7 +47,7 @@ EOM
exit(0);
}
my @releases = ('dapper', 'gutsy', 'hardy', 'intrepid');
my @releases = ('dapper', 'gutsy', 'hardy', 'intrepid', 'jaunty');
#Getopt::Long::Configure("bundling", "no_ignore_case");
our $opt_build_tree = "/scratch/ubuntu/build";

8
debian/changelog vendored
View File

@ -1,4 +1,4 @@
ubuntu-dev-tools (0.47) UNRELEASED; urgency=low
ubuntu-dev-tools (0.47) jaunty; urgency=low
[ Kees Cook ]
* dch-repeat: drop "feisty" from the list of known releases.
@ -11,7 +11,11 @@ ubuntu-dev-tools (0.47) UNRELEASED; urgency=low
giving the sponsorship warning, rather than appearing to hang.
[ Michael Casadevall ]
* Fixed buildd rescore (tested by Sarah Hobbs)
* buildd: Fixed rescore (tested by Sarah Hobbs)
* submittodebian: Changed default tag to Jaunty
* pbuilder-dist: Added jaunty to ubuntu releases
* pull-lp-source: Made jaunty the default
* dch-repeat: Added jaunty
-- Michael Casadevall <sonicmctails@gmail.com> Sat, 08 Nov 2008 06:33:00 -0500

View File

@ -183,7 +183,7 @@ fi
# Check if the distribution exists, and fill the variables that change
# depending on wheter the target distribution is Ubuntu or Debian.
case $DISTRIBUTION in
dapper|edgy|feisty|gutsy|hardy|intrepid)
dapper|edgy|feisty|gutsy|hardy|intrepid|jaunty)
distdata ubuntu
;;

View File

@ -59,7 +59,7 @@ class BackportFromLP:
'Ensure that the package specified is a valid source ' +\
'package name and that Launchpad is not down.'
default_release = 'intrepid'
default_release = 'jaunty'
if __name__ == '__main__':
usage = "Usage: %prog <package> [release]"

View File

@ -83,7 +83,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 intrepid 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 jaunty 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):