diff --git a/dch-repeat b/dch-repeat index 5c475d7..54d75cd 100755 --- a/dch-repeat +++ b/dch-repeat @@ -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"; diff --git a/debian/changelog b/debian/changelog index bada289..0eb28bc 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 Sat, 08 Nov 2008 06:33:00 -0500 diff --git a/pbuilder-dist b/pbuilder-dist index a86e49c..2ce38fd 100755 --- a/pbuilder-dist +++ b/pbuilder-dist @@ -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 ;; diff --git a/pull-lp-source b/pull-lp-source index 87f9641..e9fc787 100755 --- a/pull-lp-source +++ b/pull-lp-source @@ -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 [release]" diff --git a/submittodebian b/submittodebian index ddd8a9c..6f27ffc 100755 --- a/submittodebian +++ b/submittodebian @@ -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):