summaryrefslogtreecommitdiff
path: root/dgit
diff options
context:
space:
mode:
authorIan Jackson <ijackson@chiark.greenend.org.uk>2016-06-04 15:04:28 +0100
committerIan Jackson <ijackson@chiark.greenend.org.uk>2016-07-16 16:47:47 +0100
commit71350fe30f7449b24dc2884b42cc5ff50a2bf84e (patch)
tree3cb472956e6ec744327a2ac4403e222cb7a4bf6c /dgit
parentdfec10c836bfb4cf5bc80e0e90d6d7306442be1b (diff)
Split brain: Make quiltify_trees_differ cleverer
Have it be able to explain what was different, by returning a bitmask. Update the call sites. Incidentally, fix a bug where .gitignores other than in the toplevel would not be ignored when they ought to have been.
Diffstat (limited to 'dgit')
-rwxr-xr-xdgit23
1 files changed, 14 insertions, 9 deletions
diff --git a/dgit b/dgit
index c64f0fe..0c8183d 100755
--- a/dgit
+++ b/dgit
@@ -2511,17 +2511,22 @@ END
}
sub quiltify_trees_differ ($$;$) {
- my ($x,$y,$ignoregitignore) = @_;
- # returns 1 iff the two tree objects differ other than in debian/
+ my ($x,$y,$finegrained) = @_;
+ # returns true iff the two tree objects differ other than in debian/
+ # returns bitmas 01 - differ in upstream files except .gitignore
+ # 02 - differ in .gitignore
local $/=undef;
- my @cmd = (@git, qw(diff-tree --name-only -z), $x, $y);
+ my @cmd = (@git, qw(diff-tree --name-only -z));
+ push @cmd, qw(-r) if $finegrained;
+ push @cmd, $x, $y;
my $diffs= cmdoutput @cmd;
+ my $r = 0;
foreach my $f (split /\0/, $diffs) {
- next if $f eq 'debian';
- next if $f eq '.gitignore' && $ignoregitignore;
- return 1;
+ next if $f =~ m#^debian(?:/.*)?$#s;
+ $r |= ($f =~ m#^(?:.*/)?.gitignore$#s) ? 02 : 01;
}
- return 0;
+ printdebug "quiltify_trees_differ $x $y => $r\n";
+ return $r;
}
sub quiltify_tree_sentinelfiles ($) {
@@ -2536,8 +2541,8 @@ sub quiltify_tree_sentinelfiles ($) {
sub quilt_could_gbp ($$$) {
my ($userhead,$unapplied,$applied) = @_;
return
- !quiltify_trees_differ($userhead,$unapplied,1) &&
- quiltify_trees_differ($userhead,$applied,1);
+ !(quiltify_trees_differ($userhead,$unapplied,1) & 01) &&
+ (quiltify_trees_differ($userhead,$applied,1) & 01);
}
sub quiltify ($$$$) {