[Collab-qa-commits] r863 - bapase

lucas at alioth.debian.org lucas at alioth.debian.org
Thu May 29 11:29:48 UTC 2008


Author: lucas
Date: 2008-05-29 11:29:47 +0000 (Thu, 29 May 2008)
New Revision: 863

Modified:
   bapase/bugs_rm_pkgs.rb
Log:
put IN_STABLE and EXCLUDED between (). exclude (linux|kernel)-(image|source)

Modified: bapase/bugs_rm_pkgs.rb
===================================================================
--- bapase/bugs_rm_pkgs.rb	2008-05-29 11:21:13 UTC (rev 862)
+++ bapase/bugs_rm_pkgs.rb	2008-05-29 11:29:47 UTC (rev 863)
@@ -11,6 +11,7 @@
   /^wiki.debian.org$/, # pseudo-package not listed on merkel?
   /^release.debian.org$/, # pseudo-package not listed on merkel?
   /^security-tracker$/, # pseudo-package not listed on merkel?
+  /^(linux|kernel)-(image|source)-/, # we don't care about those bugs for now
 ]
 
 #STDERR.puts "#{Time::now} Reading LDAP dump"
@@ -97,7 +98,7 @@
 
   tags = ""
   if stablebins[l[1]] or stablesrcs[l[2]] or stablebins[l[2]] or stablesrcs[l[1]]
-    tags += " IN_STABLE"
+    tags += " (IN_STABLE)"
   end
 
   excluded = false
@@ -106,6 +107,6 @@
       excluded = true
     end
   end
-  tags += " EXCLUDED" if excluded
+  tags += " (EXCLUDED)" if excluded
   puts l.join(' ') + tags
 end




More information about the Collab-qa-commits mailing list