summaryrefslogtreecommitdiff
path: root/dgit
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2020-02-20 22:24:07 -0700
committerSean Whitton <spwhitton@spwhitton.name>2020-02-20 22:24:07 -0700
commitb16d55213da9f96d71d50bfa78db3ccc561f46fd (patch)
tree4f960f4526d2c36560c806c23699a2f9cef5fcbb /dgit
parentb7fe58b0f4793dbd1eb9920e7233825c22b2928c (diff)
parent4f41d991f1343912b5bd704be1e1cbb1ace52dba (diff)
Merge tag 'debian/9.10' into buster-bpo
dgit release 9.10 for unstable (sid) [dgit] [dgit distro=debian no-split] # gpg: Signature made Mon 03 Feb 2020 01:48:30 AM MST # gpg: using RSA key 559AE46C2D6B6D3265E7CBA1E3E3392348B50D39 # gpg: Can't check signature: No public key
Diffstat (limited to 'dgit')
-rwxr-xr-xdgit10
1 files changed, 9 insertions, 1 deletions
diff --git a/dgit b/dgit
index 4804c9b..b035e10 100755
--- a/dgit
+++ b/dgit
@@ -36,6 +36,7 @@ use File::Path;
use File::Spec;
use File::Temp qw(tempdir);
use File::Basename;
+use File::Copy ();
use Dpkg::Version;
use Dpkg::Compression;
use Dpkg::Compression::Process;
@@ -2659,6 +2660,8 @@ END
chomp $@;
progress "warning: $@";
$path = "$absurdity:$path";
+ open T, ">../../absurd-apply-warnings" or die $!;
+ close T or die $!;
progress f_ "%s: trying slow absurd-git-apply...", $us;
rename "../../gbp-pq-output","../../gbp-pq-output.0"
or $!==ENOENT
@@ -2693,6 +2696,11 @@ gbp-pq import and dpkg-source disagree!
dpkg-source --before-build gave tree %s
END
$rawimport_hash = $gapplied;
+
+ if ($use_absurd) {
+ File::Copy::copy("../../absurd-apply-warnings", \*STDERR)
+ or die $!;
+ }
};
last unless $@;
}
@@ -4596,7 +4604,7 @@ END
" of the archive's version.\n".
"To overwrite the archive's contents,".
" pass --overwrite[=VERSION].\n".
- "To rewind history, if permitted by the archive,".
+ "To rewrite history, if permitted by the archive,".
" use --deliberately-not-fast-forward.";
}
}