Author: rra
Date: 2006-11-11 03:25:30 +0100 (Sat, 11 Nov 2006)
New Revision: 762

Modified:
   trunk/checks/fields
   trunk/debian/changelog
Log:
* checks/fields{.desc,}:
  + [RA] Avoid Perl warning when diagnosing a Python-Version of the form
    "all, >= 2.4".  Thanks, Thijs Kinkhorst.  (Closes: #394104)

Modified: trunk/checks/fields
===================================================================
--- trunk/checks/fields 2006-11-11 02:17:34 UTC (rev 761)
+++ trunk/checks/fields 2006-11-11 02:25:30 UTC (rev 762)
@@ -752,7 +752,7 @@
                my $okay = 0;
                for my $rule (@valid) {
                        if ($pyversion[0] =~ /^$rule->[0]$/
-                           && (($pyversion[1] && $pyversion[1] =~ 
/^$rule->[1]$/)
+                           && (($pyversion[1] && $rule->[1] && $pyversion[1] 
=~ /^$rule->[1]$/)
                                 || (! $pyversion[1] && ! $rule->[1]))) {
                                $okay = 1;
                                last;

Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog      2006-11-11 02:17:34 UTC (rev 761)
+++ trunk/debian/changelog      2006-11-11 02:25:30 UTC (rev 762)
@@ -1,10 +1,12 @@
 lintian (1.23.26) UNRELEASED; urgency=low
 
-  * checks/fields.desc:
+  * checks/fields{.desc,}:
     + [RA] Clarify in missing-build-dependency why lintian does not take
       into account transitive build dependencies.  (Closes: #393975)
+    + [RA] Avoid Perl warning when diagnosing a Python-Version of the form
+      "all, >= 2.4".  Thanks, Thijs Kinkhorst.  (Closes: #394104)
 
- -- Russ Allbery <[EMAIL PROTECTED]>  Fri, 10 Nov 2006 18:16:21 -0800
+ -- Russ Allbery <[EMAIL PROTECTED]>  Fri, 10 Nov 2006 18:24:29 -0800
 
 lintian (1.23.25) unstable; urgency=low
 


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to