From: Joey Hess Date: Sun, 21 Feb 2010 23:11:36 +0000 (-0500) Subject: dh_install: Now --list-missing and --fail-missing are useful even when not all packag... X-Git-Tag: 7.4.16~9 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=00048048303e84604ef52f66070b7b670877ce2a;p=debhelper.git 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 --- diff --git a/debian/changelog b/debian/changelog index b45c52a..280c82a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 Thu, 18 Feb 2010 17:53:27 -0500 diff --git a/dh_install b/dh_install index 875f80b..c35c892 100755 --- a/dh_install +++ b/dh_install @@ -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;