From: Debian BTS Date: Tue, 10 Apr 2007 11:33:13 +0000 (+0000) Subject: More fixes for etch as stable. X-Git-Url: https://git.donarmstrong.com/?p=bugscan.git;a=commitdiff_plain;h=2076316f9eac086043f75fad2729a58cc067cf08 More fixes for etch as stable. --- diff --git a/dohtml b/dohtml index bf6ad1b..ebdd716 100755 --- a/dohtml +++ b/dohtml @@ -56,7 +56,7 @@ tags:

The second set of tags indicate what releases a bug applies to: -O for oldstable (woody), S for stable (sarge), T for testing (etch), +O for oldstable (sarge), S for stable (etch), T for testing (lenny), U for unstable (sid) or E for experimental.

diff --git a/makepost b/makepost index 76b76d0..4d96cf4 100755 --- a/makepost +++ b/makepost @@ -23,7 +23,7 @@ Explanation for bug tags: I etch-ignore The second set of tags indicate what releases a bug applies to: -O for oldstable (woody), S for stable (sarge), T for testing (etch), +O for oldstable (sarge), S for stable (etch), T for testing (lenny), U for unstable (sid) or E for experimental. ------------------------------------------------------------------------------ diff --git a/scanlib.pm b/scanlib.pm index 4c76872..4ef4191 100644 --- a/scanlib.pm +++ b/scanlib.pm @@ -174,9 +174,9 @@ sub scanspooldir() { next if $skip==1; my %disttags = (); - $disttags{'oldstable'} = grep(/^woody$/, @tags); - $disttags{'stable'} = grep(/^sarge$/, @tags); - $disttags{'testing'} = grep(/^etch$/, @tags); + $disttags{'oldstable'} = grep(/^sarge$/, @tags); + $disttags{'stable'} = grep(/^etch$/, @tags); + $disttags{'testing'} = grep(/^lenny$/, @tags); $disttags{'unstable'} = grep(/^sid$/, @tags); $disttags{'experimental'} = grep(/^experimental$/, @tags);