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

lintian: r1148 - in trunk: debian frontend



Author: rra
Date: 2008-01-26 02:41:50 +0100 (Sat, 26 Jan 2008)
New Revision: 1148

Modified:
   trunk/debian/changelog
   trunk/frontend/lintian
Log:
  + [RA] Don't require *.changes files for source-only uploads to have a
    Description field.  Thanks, Cyril Brulebois.  (Closes: #462586)

Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog	2008-01-26 01:37:23 UTC (rev 1147)
+++ trunk/debian/changelog	2008-01-26 01:41:50 UTC (rev 1148)
@@ -58,6 +58,8 @@
       Thanks, Håkon Stordahl.  (Closes: #461978)
     + [RA] Cope with a relative path to the lab.  Patch from Håkon
       Stordahl.  (Closes: #461982)
+    + [RA] Don't require *.changes files for source-only uploads to have a
+      Description field.  Thanks, Cyril Brulebois.  (Closes: #462586)
 
   * lib/Spelling.pm:
     + [RA] Add spelling corrections for PostgreSQL and OCaml and lots of

Modified: trunk/frontend/lintian
===================================================================
--- trunk/frontend/lintian	2008-01-26 01:37:23 UTC (rev 1147)
+++ trunk/frontend/lintian	2008-01-26 01:41:50 UTC (rev 1148)
@@ -638,8 +638,9 @@
 
 	    Tags::set_pkg( $arg, $arg_name, "", "", 'binary' );
 
-	    # Description is mandated by dak
-	    if (!$data->{'description'}) {
+	    # Description is mandated by dak, but only makes sense if binary
+	    # packages are included.  Don't tag pure source uploads.
+	    if (!$data->{'description'} && $data->{'architecture'} ne 'source') {
 		tag("no-description-in-changes-file");
 	    }
 


Reply to: