From: Ian Jackson Date: Sun, 15 Sep 2013 12:28:07 +0000 (+0100) Subject: wip changes for remote push - support supplying gpg command X-Git-Tag: debian/0.16_experimental1~5 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=dgit.git;a=commitdiff_plain;h=5ed00ff3ed9037f29a6718888525e32731947da2;ds=sidebyside wip changes for remote push - support supplying gpg command --- diff --git a/dgit b/dgit index 0bf0585b..58567498 100755 --- a/dgit +++ b/dgit @@ -49,6 +49,9 @@ our (@git) = qw(git); our (@dget) = qw(dget); our (@dput) = qw(dput); our (@debsign) = qw(debsign); +our (@gpg) = qw(gpg); +fixme should be in manual +fixme should pass this to debsign our (@sbuild) = qw(sbuild -A); our (@dpkgbuildpackage) = qw(dpkg-buildpackage -i\.git/ -I.git); our (@dpkgsource) = qw(dpkg-source -i\.git/ -I.git); @@ -59,6 +62,7 @@ our (@changesopts) = (''); our %opts_opt_map = ('dget' => \@dget, 'dput' => \@dput, 'debsign' => \@debsign, + 'gpg' => \@gpg, 'sbuild' => \@sbuild, 'dpkg-source' => \@dpkgsource, 'dpkg-buildpackage' => \@dpkgbuildpackage,