[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

lintian: r949 - in trunk: debian frontend



Author: rra
Date: 2007-08-06 04:59:17 +0200 (Mon, 06 Aug 2007)
New Revision: 949

Modified:
   trunk/debian/changelog
   trunk/frontend/lintian
Log:
The "brown paper operator" release.
* frontend/lintian:
  + [RA] Use =~ with regexes, not eq.  Thanks, Guillem Jover.
    (Closes: #436180)

Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog	2007-08-05 19:19:45 UTC (rev 948)
+++ trunk/debian/changelog	2007-08-06 02:59:17 UTC (rev 949)
@@ -1,3 +1,13 @@
+lintian (1.23.34) unstable; urgency=low
+
+  The "brown paper operator" release.
+
+  * frontend/lintian:
+    + [RA] Use =~ with regexes, not eq.  Thanks, Guillem Jover.
+      (Closes: #436180)
+
+ -- Russ Allbery <rra@debian.org>  Sun, 05 Aug 2007 19:58:38 -0700
+
 lintian (1.23.33) unstable; urgency=low
 
   The "menu and cruft reorganization" release.

Modified: trunk/frontend/lintian
===================================================================
--- trunk/frontend/lintian	2007-08-05 19:19:45 UTC (rev 948)
+++ trunk/frontend/lintian	2007-08-06 02:59:17 UTC (rev 949)
@@ -641,7 +641,7 @@
                        or ($data->{distribution} eq 'testing')
                        or ($data->{distribution} eq 'unstable')
                        or ($data->{distribution} eq 'experimental')
-		       or ($data->{distribution} eq /\w+-backports/)
+		       or ($data->{distribution} =~ /\w+-backports/)
                        or ($data->{distribution} =~ /\w+-proposed-updates/)
                        or ($data->{distribution} =~ /\w+-security/))
                ) {



Reply to: