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

[SCM] Debian package checker branch, master, updated. 2.2.18-44-gaa22449



The following commit has been merged in the master branch:
commit aa2244929652faea512c55a202f4c2387ce4487b
Author: Russ Allbery <rra@debian.org>
Date:   Thu Dec 24 13:49:01 2009 -0800

    Ignore files in .pc in cruft checks
    
    * checks/cruft:
      + [RA] Ignore files in .pc, created by unpacking 3.0 (quilt) packages.
        Thanks, Ahmed El-Mahmoudy.  (Closes: #556022)

diff --git a/checks/cruft b/checks/cruft
index 1074de8..af1879b 100644
--- a/checks/cruft
+++ b/checks/cruft
@@ -274,6 +274,13 @@ sub find_cruft {
     my ($pkg, $info, $warned, $atdinbd, $ltinbd) = @_;
     (my $name = $File::Find::name) =~ s,^(\./)?unpacked/,,;
 
+    # Ignore the .pc directory and its contents, created as part of the
+    # unpacking of a 3.0 (quilt) source package.
+    if (-d and $_ eq '.pc') {
+        $File::Find::prune = 1;
+        return;
+    }
+
     # Ignore files in test suites.  They may be part of the test.
     if (-d and m,^t(?:est(?:s(?:et)?)?)?\z,) {
         $File::Find::prune = 1;
diff --git a/debian/changelog b/debian/changelog
index 0ad798e..88828c6 100755
--- a/debian/changelog
+++ b/debian/changelog
@@ -16,6 +16,8 @@ lintian (2.3.0) UNRELEASED; urgency=low
     + [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)
+    + [RA] Ignore files in .pc, created by unpacking 3.0 (quilt) packages.
+      Thanks, Ahmed El-Mahmoudy.  (Closes: #556022)
   * 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: