]> git.donarmstrong.com Git - debhelper.git/commitdiff
dh_install: Now --list-missing and --fail-missing are useful even when not all packag...
authorJoey Hess <joey@gnu.kitenet.net>
Sun, 21 Feb 2010 23:11:36 +0000 (18:11 -0500)
committerJoey Hess <joey@gnu.kitenet.net>
Sun, 21 Feb 2010 23:11:36 +0000 (18:11 -0500)
debian/changelog
dh_install

index b45c52a93ebd024da641cde0ed4195133a3d5d35..280c82a19c3d2f8293c008c3ec125525f7af7e87 100644 (file)
@@ -3,6 +3,9 @@ debhelper (7.4.16) UNRELEASED; urgency=low
   * Updated French translation.
   * makefile buildsystem: Chomp output during test for full compatability
     with debhelper 7.4.11. Closes: #570503
+  * dh_install: Now --list-missing and --fail-missing are useful even when
+    not all packages are acted on (due to architecture limits or flags).
+    Closes: #570373
 
  -- Joey Hess <joeyh@debian.org>  Thu, 18 Feb 2010 17:53:27 -0500
 
index 875f80bfe45d3be04e07525799ec98b45105d0f8..c35c8924a67035af1e95991bd2ca86164838b292 100755 (executable)
@@ -126,7 +126,12 @@ my @installed;
 my $srcdir = '.';
 $srcdir = $dh{SOURCEDIR} if defined $dh{SOURCEDIR};
 
-foreach my $package (@{$dh{DOPACKAGES}}) {
+foreach my $package (getpackages()) {
+       # Look at the install files for all packages to handle
+       # list-missing/fail-missing, but skip really installing for
+       # packages that are not being acted on.
+       my $skip_install=! grep { $_ eq $package } @{$dh{DOPACKAGES}};
+
        my $tmp=tmpdir($package);
        my $file=pkgfile($package,"install");
 
@@ -166,12 +171,16 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
                }
 
                if (! compat(4)) { # check added in v5
-                       if (! @filelist) {
+                       if (! @filelist && ! $skip_install) {
                                error("$package missing files (@$set), aborting");
                        }
                }
+
                foreach my $src (@filelist) { 
                        next if excludefile($src);
+                       
+                       push @installed, $src;
+                       next if $skip_install;
                
                        if (! defined $dest) {
                                # Guess at destination directory.
@@ -186,16 +195,6 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
                        if (! -e "$tmp/$dest") {
                                doit("install","-d","$tmp/$dest");
                        }
-
-                       # Keep track of what's installed.
-                       if ($dh{LIST_MISSING} || $dh{FAIL_MISSING}) {
-                               # Kill any extra slashes. Makes the
-                               # @installed stuff more robust.
-                               $src=~y:/:/:s;
-                               $src=~s:/+$::;
-                               $src=~s:^(\./)*::;
-                               push @installed, "\Q$src\E\/.*|\Q$src\E";
-                       }
                        
                        if (-d $src && $exclude) {
                                my $basename = basename($src);
@@ -225,7 +224,13 @@ if ($dh{LIST_MISSING} || $dh{FAIL_MISSING}) {
        }
        
        my @missing;
-       my $installed=join("|", @installed);
+       my $installed=join("|", map {
+               # Kill any extra slashes, for robustness.
+               y:/:/:s;
+               s:/+$::;
+               s:^(\./)*::;
+               "\Q$_\E\/.*|\Q$_\E";
+       } @installed);
        $installed=qr{^($installed)$};
        find(sub {
                -f || -l || return;