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

lintian: r97 - in trunk: checks debian testset/relations/debian



Author: jeroen
Date: 2004-03-08 00:54:04 +0100 (Mon, 08 Mar 2004)
New Revision: 97

Modified:
   trunk/checks/fields
   trunk/debian/changelog
   trunk/testset/relations/debian/control
Log:
checks/fields:
+ Don't consider depending on coreutils bad, as this is in a way a
  versioned depend (Closes: #216536)


Modified: trunk/checks/fields
===================================================================
--- trunk/checks/fields	2004-03-07 23:11:00 UTC (rev 96)
+++ trunk/checks/fields	2004-03-07 23:54:04 UTC (rev 97)
@@ -325,7 +325,10 @@
 		    }
 
 		    if (not $versioned and exists $known_essential{$relpkg}) {
-			tag_error("depends-on-essential-package-without-using-version", $relpkg);
+			# exception for coreutils, as it is quite new,
+			# depending on coreutils is NOT a no-op. Bug#216536
+			tag_error("depends-on-essential-package-without-using-version", $relpkg)
+			    unless $relpkg eq 'coreutils';
 		    }
 		}
 

Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog	2004-03-07 23:11:00 UTC (rev 96)
+++ trunk/debian/changelog	2004-03-07 23:54:04 UTC (rev 97)
@@ -4,12 +4,12 @@
   * debian/control:
     + make Uploaders a single line field. It didn't really
       break, but at least DDPO had its difficulties
-  
+
   * man/lintian.1:
     + sync man page with the --help output by adding
       missing options (Closes: #198615)
       Based on a patch by Robert Lemmen.
-  
+
   * checks/binaries:
     + don't complain about non-stripped kernel modules (Closes: #203373)
       Patch by Dagfinn Ilmari Mannsaker
@@ -83,8 +83,10 @@
       test. Exception for sash removed (override case) (Closes: #215235)
   * checks/fields:
     + Test syntax of Uploaders: too
+    + Don't consider depending on coreutils bad, as this is in a way a
+      versioned depend (Closes: #216536)
 
- -- Jeroen van Wolffelaar <jeroen@wolffelaar.nl>  Fri,  5 Mar 2004 04:35:22 +0100
+ -- Frank Lichtenheld <djpig@debian.org>  Mon,  8 Mar 2004 00:46:15 +0100
 
 lintian (1.22.11) unstable; urgency=low
 

Modified: trunk/testset/relations/debian/control
===================================================================
--- trunk/testset/relations/debian/control	2004-03-07 23:11:00 UTC (rev 96)
+++ trunk/testset/relations/debian/control	2004-03-07 23:54:04 UTC (rev 97)
@@ -7,7 +7,7 @@
 
 Package: relations
 Architecture: all
-Depends: relations, relations(<< 3), dpkg, bash (>> 2.0), mail-transport-agent, gawk | awk, foo (>> 2.0), foo (<< 2.2)
+Depends: relations, relations(<< 3), dpkg, bash (>> 2.0), mail-transport-agent, gawk | awk, foo (>> 2.0), foo (<< 2.2), coreutils
 Provides: mail-reader
 Replaces: relations
 Conflicts: foobar (<< 5&5), foo, relations,



Reply to: