X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=dgit;h=6d7e5740638ed259cd583e9d6f0ca89497f37988;hb=802c7301eadda1f7664c0efe3193050e5a70cc2d;hp=f65b51a73f356fd50c47596fec8572cfdbf73972;hpb=f014eb0c1a3acacf61b760af4c76f7d6233f5504;p=dgit.git diff --git a/dgit b/dgit index f65b51a7..6d7e5740 100755 --- a/dgit +++ b/dgit @@ -551,13 +551,50 @@ sub pull () { printdone "fetched to ".lrref()." and merged into HEAD"; } +sub check_not_dirty () { + my $output = cmdoutput @git, qw(status --porcelain); + if (length $output) { + my $m = "tree dirty:\n$output\n"; + if (!$dryrun) { + die $m; + } else { + warn $m; + } + } +} + +sub commit_quilty_patch () { + my $output = cmdoutput @git, qw(status --porcelain); + my $vsn = $dsc->{Version}; + my %fixups = map {$_=>1} + (".pc/debian-changes-$vsn/","debian/patches/debian-changes-2.8-5"); + my @files; + foreach my $l (split /\n/, $output) { + next unless $l =~ s/^\?\? //; + next unless $fixups{$l}; + push @files, $l; + } + print DEBUG "checking for quilty\n", Dumper(\@files); + if (@files == 2) { + runcmd_ordryrun @git, qw(add), @files; + runcmd_ordryrun + @git, qw(commit -m), "Commit Debian 3.0 (quilt) metadata"; + } +} + sub dopush () { - runcmd @git, qw(diff --quiet HEAD); + print DEBUG "actually entering push\n"; + runcmd qw(debian/rules clean); my $clogp = parsechangelog(); $package = $clogp->{Source}; my $dscfn = "${package}_$clogp->{Version}.dsc"; stat "../$dscfn" or die "$dscfn $!"; $dsc = parsecontrol("../$dscfn"); + print DEBUG "format $dsc->{Format}\n"; + if ($dsc->{Format} eq '3.0 (quilt)') { + commit_quilty_patch(); + } + check_not_dirty(); prep_ud(); chdir $ud or die $!; print "checking that $dscfn corresponds to HEAD\n"; @@ -671,6 +708,7 @@ sub cmd_pull { sub cmd_push { parseopts(); die if defined $package; + runcmd @git, qw(diff --quiet HEAD); my $clogp = parsechangelog(); $package = $clogp->{Source}; if (@ARGV==0) {