From: Ian Jackson Date: Wed, 23 Oct 2013 10:33:45 +0000 (+0100) Subject: When generating git tags, quote the (uncanonicalised) changelog's Distribution field... X-Git-Tag: debian/0.17_experimental2~4 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=dgit.git;a=commitdiff_plain;h=1d7cbdc7bef6b4752ba0d46b22dd77136c5b3efb When generating git tags, quote the (uncanonicalised) changelog's Distribution field as the suite. --- diff --git a/debian/changelog b/debian/changelog index b8393b17..89f416ee 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,5 +1,8 @@ dgit (0.17~experimental2) experimental; urgency=low + * When generating git tags, quote the (uncanonicalised) changelog's + Distribution field as the suite. + Changes to remote functionality: * More bugfixes. diff --git a/dgit b/dgit index 0b177d36..5ea9c266 100755 --- a/dgit +++ b/dgit @@ -1152,6 +1152,7 @@ sub push_mktag ($$$$$$$) { } my $cversion = getfield $clogp, 'Version'; + my $clogsuite = getfield $clogp, 'Distribution'; # We make the git tag by hand because (a) that makes it easier # to control the "tagger" (b) we can do remote signing @@ -1163,7 +1164,7 @@ type commit tag $tag tagger $authline -$package release $cversion for $csuite [dgit] +$package release $cversion for $clogsuite [dgit] END close TO or die $!;