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

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



Author: rra
Date: 2008-02-08 19:46:11 +0100 (Fri, 08 Feb 2008)
New Revision: 1191

Modified:
   trunk/checks/fields
   trunk/debian/changelog
   trunk/testset/relations/debian/control
   trunk/testset/relations/debian/rules
Log:
* checks/fields:
  + [RA] Fix coding error that didn't allow python-all-dev to satisfy a
    Python build dependency.  Thanks, Joerg Jaspert.  (Closes: #464709)

Modified: trunk/checks/fields
===================================================================
--- trunk/checks/fields	2008-02-08 18:22:14 UTC (rev 1190)
+++ trunk/checks/fields	2008-02-08 18:46:11 UTC (rev 1191)
@@ -33,7 +33,7 @@
 # The allowed Python dependencies currently.  This is the list of alternatives
 # that, either directly or through transitive dependencies that can be relied
 # upon, ensure /usr/bin/python will exist for the use of dh_python.
-my $python_depend = 'python | python-dev | python-all | python-all-dev'
+my $python_depend = 'python | python-dev | python-all | python-all-dev | '
     . join (' | ', map { "python$_ | python$_-dev" } qw(2.4 2.5));
 
 # Certain build tools must be listed in Build-Depends even if there are no

Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog	2008-02-08 18:22:14 UTC (rev 1190)
+++ trunk/debian/changelog	2008-02-08 18:46:11 UTC (rev 1191)
@@ -3,8 +3,11 @@
   * checks/po-debconf:
     + [RA] Also accept nnn_NN names for po files.  nds_DE and nds_NL are
       valid locales.  Thanks, Christian Perrier.
+  * checks/fields:
+    + [RA] Fix coding error that didn't allow python-all-dev to satisfy a
+      Python build dependency.  Thanks, Joerg Jaspert.  (Closes: #464709)
 
- -- Russ Allbery <rra@debian.org>  Fri, 08 Feb 2008 10:21:55 -0800
+ -- Russ Allbery <rra@debian.org>  Fri, 08 Feb 2008 10:27:18 -0800
 
 lintian (1.23.44) unstable; urgency=low
 

Modified: trunk/testset/relations/debian/control
===================================================================
--- trunk/testset/relations/debian/control	2008-02-08 18:22:14 UTC (rev 1190)
+++ trunk/testset/relations/debian/control	2008-02-08 18:46:11 UTC (rev 1191)
@@ -1,7 +1,7 @@
 Source: relations
 Section: misc
 Priority: optional
-Build-Depends: mail-transport-agent, libc6-dev, findutils, foo (= 3) [!amd64 !i386], bar, arch-test1 [i386], arch-test2 [!i386], quilt (>= 0.40), perl
+Build-Depends: mail-transport-agent, libc6-dev, findutils, foo (= 3) [!amd64 !i386], bar, arch-test1 [i386], arch-test2 [!i386], quilt (>= 0.40), perl, python-all-dev
 Build-Depends-Indep: make, bash, debmake, build-essential, baz (= 2.0),
   car (>= 1.0), car (<= 2.0), caz (= 1.0) [amd64], caz (>= 2.0) [i386],
   caz (= 2.0) [powerpc], perl (>= 5.0), foo (<< 4) [!amd64 !i386], libfoo (>= 1.2-1)

Modified: trunk/testset/relations/debian/rules
===================================================================
--- trunk/testset/relations/debian/rules	2008-02-08 18:22:14 UTC (rev 1190)
+++ trunk/testset/relations/debian/rules	2008-02-08 18:46:11 UTC (rev 1191)
@@ -36,6 +36,9 @@
 clean::
 	rm -rf debian/tmp debian/files
 
+# Test that python-all-dev satisfies a Python requirement.
+	python -V || true
+
 # Test allowing quilt Build-Depends for manual quilt invocations.
 	TESTING=foo ANOTHER=bar quilt || true
 


Reply to: