* dch-repeat, pbuilder-dist, pull-lp-source: Add Jaunty to known releases

* submittodebian: Set usertags to jaunty
This commit is contained in:
Iain Lane 2008-11-08 17:09:08 +00:00
parent 194a4c3251
commit 5f9e407f94
5 changed files with 9 additions and 5 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";

6
debian/changelog vendored
View File

@ -13,7 +13,11 @@ ubuntu-dev-tools (0.47) UNRELEASED; urgency=low
[ Michael Casadevall ]
* Fixed buildd rescore (tested by Sarah Hobbs)
-- Michael Casadevall <sonicmctails@gmail.com> Sat, 08 Nov 2008 06:33:00 -0500
[ Iain Lane ]
* dch-repeat, pbuilder-dist, pull-lp-source: Add Jaunty to known releases
* submittodebian: Set usertags to jaunty
-- Michael Casadevall <sonicmctails@gmail.com> Sat, 08 Nov 2008 17:07:48 +0000
ubuntu-dev-tools (0.46) intrepid; urgency=low

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):