Package: release.debian.org Severity: normal Tags: stretch User: release.debian....@packages.debian.org Usertags: pu
* debchange: + Target stretch-backports with --bpo. Closes: #867662 + Support $codename{,-{proposed-updates,security}} as well. * bts: + Add support for the new 'a11y' tag. Closes: #867416 -- System Information: Debian Release: buster/sid APT prefers unstable-debug APT policy: (500, 'unstable-debug'), (500, 'unstable'), (1, 'experimental-debug'), (1, 'experimental') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 4.9.0-3-amd64 (SMP w/4 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), LANGUAGE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Init: systemd (via /run/systemd/system)
diffstat for devscripts-2.17.6 devscripts-2.17.6+deb9u1 debian/changelog | 12 ++++++++++++ scripts/bts.pl | 2 +- scripts/debchange.pl | 17 ++++++++++------- test/test_debchange | 7 +++++++ 4 files changed, 30 insertions(+), 8 deletions(-) diff -Nru devscripts-2.17.6/debian/changelog devscripts-2.17.6+deb9u1/debian/changelog --- devscripts-2.17.6/debian/changelog 2017-06-03 14:29:24.000000000 -0400 +++ devscripts-2.17.6+deb9u1/debian/changelog 2017-07-11 22:06:17.000000000 -0400 @@ -1,3 +1,15 @@ +devscripts (2.17.6+deb9u1) stretch; urgency=medium + + [ Mattia Rizzolo ] + * debchange: + + Target stretch-backports with --bpo. Closes: #867662 + + Support $codename{,-{proposed-updates,security}} as well. + * bts: + + Add patch from Samuel Thibault <sthiba...@debian.org> to add support for + the new 'a11y' tag. Closes: #867416 + + -- James McCoy <james...@debian.org> Tue, 11 Jul 2017 22:06:17 -0400 + devscripts (2.17.6) unstable; urgency=medium [ Osamu Aoki ] diff -Nru devscripts-2.17.6/scripts/bts.pl devscripts-2.17.6+deb9u1/scripts/bts.pl --- devscripts-2.17.6/scripts/bts.pl 2017-06-03 14:29:24.000000000 -0400 +++ devscripts-2.17.6+deb9u1/scripts/bts.pl 2017-07-11 22:06:17.000000000 -0400 @@ -160,7 +160,7 @@ "potato", "woody", "sid", "help", "security", "upstream", "pending", "sarge", "sarge-ignore", "experimental", "d-i", "confirmed", "ipv6", "lfs", "fixed-in-experimental", - "fixed-upstream", "l10n", "newcomer", "etch", "etch-ignore", + "fixed-upstream", "a11y", "l10n", "newcomer", "etch", "etch-ignore", "lenny", "lenny-ignore", "squeeze", "squeeze-ignore", "wheezy", "wheezy-ignore", "jessie", "jessie-ignore", "stretch", "stretch-ignore", "buster", "buster-ignore", diff -Nru devscripts-2.17.6/scripts/debchange.pl devscripts-2.17.6+deb9u1/scripts/debchange.pl --- devscripts-2.17.6/scripts/debchange.pl 2017-06-03 14:29:24.000000000 -0400 +++ devscripts-2.17.6+deb9u1/scripts/debchange.pl 2017-07-11 22:06:17.000000000 -0400 @@ -161,7 +161,7 @@ distribution name --bpo Increment the Debian release number for a backports upload - to "jessie-backports" + to "stretch-backports" -l, --local <suffix> Add a suffix to the Debian version number for a local build -b, --force-bad-version @@ -472,7 +472,7 @@ # Check the distro name given. if (defined $opt_D) { if ($vendor eq 'Debian') { - unless ($opt_D =~ /^(experimental|unstable|UNRELEASED|((old)?stable|testing)(-proposed-updates)?|proposed-updates|(wheezy|jessie|stretch|buster|bullseye)-security)$/) { + unless ($opt_D =~ /^(experimental|unstable|sid|UNRELEASED|((old){0,2}stable|testing|wheezy|jessie|stretch|buster|bullseye)(-proposed-updates|-security)?|proposed-updates)$/) { my $deb_info = get_debian_distro_info(); my ($oldstable_backports, $stable_backports) = ("", ""); if ($deb_info == 0) { @@ -487,9 +487,12 @@ if ($deb_info == 0 || $opt_D !~ m/^(\Q$stable_backports\E|\Q$oldstable_backports\E)$/) { $stable_backports = ", " . $stable_backports if $stable_backports; $oldstable_backports = ", " . $oldstable_backports if $oldstable_backports; - warn "$progname warning: Recognised distributions are: unstable, testing, stable,\n" - . "oldstable, experimental, {testing-,stable-,oldstable-,}proposed-updates,\n" - . "{testing,stable,oldstable}-security$oldstable_backports$stable_backports and UNRELEASED.\n" + warn "$progname warning: Recognised distributions are: \n" + . "experimental, unstable, testing, stable, oldstable, oldoldstable,\n" + . "{bullseye,buster,stretch,jessie,wheezy}-proposed-updates,\n" + . "{testing,stable,oldstable,oldoldstable}-proposed-updates,\n" + . "{bullseye,buster,stretch,jessie,wheezy}-security,\n" + . "{testing,stable,oldstable,oldoldstable}}-security$oldstable_backports$stable_backports and UNRELEASED.\n" . "Using your request anyway.\n"; $warnings++ if not $opt_force_dist; } @@ -606,8 +609,8 @@ my $EMAIL = 'EMAIL'; my $DISTRIBUTION = 'UNRELEASED'; my $bpo_dist = ''; -my %bpo_dists = ( 60, 'squeeze', 70, 'wheezy', 8, 'jessie' ); -my $latest_bpo_dist = '8'; +my %bpo_dists = ( 60, 'squeeze', 70, 'wheezy', 8, 'jessie', 9, 'stretch' ); +my $latest_bpo_dist = '9'; my $CHANGES = ''; # Changelog urgency, possibly propogated to NEWS files my $CL_URGENCY = ''; diff -Nru devscripts-2.17.6/test/test_debchange devscripts-2.17.6+deb9u1/test/test_debchange --- devscripts-2.17.6/test/test_debchange 2017-06-03 14:29:24.000000000 -0400 +++ devscripts-2.17.6+deb9u1/test/test_debchange 2017-07-11 22:06:17.000000000 -0400 @@ -82,14 +82,21 @@ } testDebianDistributions() { + checkDebianDistribution "bullseye" checkDebianDistribution "bullseye-security" + checkDebianDistribution "buster" checkDebianDistribution "buster-security" + checkDebianDistribution "stretch" checkDebianDistribution "stretch-security" + checkDebianDistribution "jessie" + checkDebianDistribution "jessie-proposed-updates" checkDebianDistribution "jessie-security" checkDebianDistribution "wheezy-security" checkDebianDistribution "experimental" checkDebianDistribution "oldstable" checkDebianDistribution "oldstable-proposed-updates" + checkDebianDistribution "oldoldstable" + checkDebianDistribution "oldoldstable-proposed-updates" checkDebianDistribution "proposed-updates" checkDebianDistribution "stable" checkDebianDistribution "stable-proposed-updates"