The following commit has been merged in the master branch:
commit 797f8512f6326a22d816a08958cef965269f1009
Author: Guillem Jover <[email protected]>
Date:   Sat Jul 6 22:07:54 2013 +0200

    dpkg-buildpackage: Do not warn on unsigned UNRELEASED builds on -uc or -us
    
    If the user has explicitly requested not to sign the build, do not
    complain that we are not going to sign it due to it being UNRELEASED.
    
    Regression introduced in commit 8a8030be47fee6b480905781e56eacc8005227fc.

diff --git a/scripts/dpkg-buildpackage.pl b/scripts/dpkg-buildpackage.pl
index 6b53908..ddecbdb 100755
--- a/scripts/dpkg-buildpackage.pl
+++ b/scripts/dpkg-buildpackage.pl
@@ -332,7 +332,7 @@ if (not $signcommand) {
 } elsif ($signforce) {
     $signsource = 1;
     $signchanges = 1;
-} elsif ($distribution eq 'UNRELEASED') {
+} elsif (($signsource or $signchanges) and $distribution eq 'UNRELEASED') {
     $signreleased = 0;
     $signsource = 0;
     $signchanges = 0;

-- 
dpkg's main repository


-- 
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]

Reply via email to