Author: joeyh
Date: 2006-01-21 20:31:38 +0000 (Sat, 21 Jan 2006)
New Revision: 3334
Modified:
bin/checklist
Log:
skip codename tagged lines
Modified: bin/checklist
==================================================================---
bin/checklist 2006-01-21 20:27:02 UTC (rev 3333)
+++ bin/checklist 2006-01-21 20:31:38 UTC (rev 3334)
@@ -113,6 +113,9 @@
elsif (/^((?:DSA|DTSA|CVE)-[^\s]+)/) { # Check for a line with an advisory at
the start : Set $id to it
$id=$1;
}
+ elsif (/^\s+\[\w+\]\s+/) { # line tagged with a debian codename
+ next; # don''t handle these for now
+ }
elsif (/^\s+(?:\[\w+\]\s+)?[!-]\s+(\S+)\s+(.*?)\s*$/) { # Deal with the rest
of the lines
my $package=$1; # We know which package it is.
my $rest=$2;