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

lintian: r498 - in trunk: checks debian



Author: djpig
Date: 2005-09-21 23:52:03 +0200 (Wed, 21 Sep 2005)
New Revision: 498

Modified:
   trunk/checks/scripts
   trunk/debian/changelog
Log:
PythonX.Y dependency can also be satisfied with pythonX.Y-minimal.
Noted by Matthias Klose (Closes: #326643)


Modified: trunk/checks/scripts
===================================================================
--- trunk/checks/scripts	2005-09-21 21:33:28 UTC (rev 497)
+++ trunk/checks/scripts	2005-09-21 21:52:03 UTC (rev 498)
@@ -256,7 +256,8 @@
 	    } elsif ($base =~ /^python(\d.\d)?$/) {
 		my $ver = $1 ? $1 : "";
 		tag_error("python-script-but-no-python-dep", $filename)
-		    unless ($deps{"python$ver"});
+		    unless ($deps{"python$ver"}
+			    || $deps{"python${ver}-minimal"});
 	    } elsif ($base =~ /^ruby(\d.\d)?$/) {
 		my $ver = $1 ? $1 : "";
 		tag_error("ruby-script-but-no-ruby-dep", $filename)

Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog	2005-09-21 21:33:28 UTC (rev 497)
+++ trunk/debian/changelog	2005-09-21 21:52:03 UTC (rev 498)
@@ -10,6 +10,9 @@
   * checks/files:
     + [FL] Add some formats to the exception list for extra-license-file
       (jpe?g, gif and svg) (Closes: #324944)
+  * checks/scripts:
+    + [FL] PythonX.Y dependency can also be satisfied with pythonX.Y-minimal.
+      Noted by Matthias Klose (Closes: #326643)
   * checks/shared-libs:
     + [HE] Apply patch from Bastian Blank to check for executable stacks in
       binaries. New checks are called shlib-without-PT_GNU_STACK-section,



Reply to: