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

[SCM] Debian package checker branch, master, updated. 2.2.18-41-gfe2b34c



The following commit has been merged in the master branch:
commit fe2b34c5ad5c04bd6d414c9c8d4bbb660fa5c4fd
Author: Russ Allbery <rra@debian.org>
Date:   Thu Dec 24 12:51:54 2009 -0800

    Allow automake and libtool in build-depends-indep
    
    * checks/cruft:
      + [RA] Allow an automake or libtool dependency in Build-Depends-Indep
        to also satisfy the check for outdated helper files.  Thanks,
        Guillaume Delacour.  (Closes: #557530)

diff --git a/checks/cruft b/checks/cruft
index 4e833f6..1074de8 100644
--- a/checks/cruft
+++ b/checks/cruft
@@ -112,8 +112,8 @@ if (defined $info->field('architecture')) {
 }
 
 # Check if the package build-depends on autotools-dev, automake, or libtool.
-my $atdinbd = $info->relation('build-depends')->implies($AUTOTOOLS);
-my $ltinbd  = $info->relation('build-depends')->implies('libtool');
+my $atdinbd = $info->relation('build-depends-all')->implies($AUTOTOOLS);
+my $ltinbd  = $info->relation('build-depends-all')->implies('libtool');
 
 # Create a closure so that we can pass our lexical variables into the find
 # wanted function.  We don't want to make them global because we'll then leak
diff --git a/debian/changelog b/debian/changelog
index 7ae7269..79f03fc 100755
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,6 +8,10 @@ lintian (2.3.0) UNRELEASED; urgency=low
     + [ADB] Exempt all binary packages built from the zlib source from
       the embedded-zlib test, not just those with binary package names
       matching zlib.+.  Thanks, Mark Brown.
+  * checks/cruft:
+    + [RA] Allow an automake or libtool dependency in Build-Depends-Indep
+      to also satisfy the check for outdated helper files.  Thanks,
+      Guillaume Delacour.  (Closes: #557530)
   * checks/fields.desc:
     + [ADB] Re-order the fields of build-depends-on-build-essential so that
       all of the descriptive text is included.  Thanks, Jonathan Wiltshire.

-- 
Debian package checker


Reply to: