Author: myon
Date: 2008-12-23 16:37:58 +0000 (Tue, 23 Dec 2008)
New Revision: 1767

Modified:
   trunk/debian/changelog
   trunk/scripts/dscverify.1
   trunk/scripts/dscverify.pl
Log:
dscverify: Accept -u as an alias for --nosigcheck, inspired by dput -u.

Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog      2008-12-17 21:48:00 UTC (rev 1766)
+++ trunk/debian/changelog      2008-12-23 16:37:58 UTC (rev 1767)
@@ -1,5 +1,6 @@
 devscripts (2.10.44) UNRELEASED; urgency=low
 
+  [ Adam D. Barratt ]
   * bts: Allow an alternative debbugs server to be specified.
     (Closes: #508676)
   * Debbugs.pm: Allow the address of the debbugs server to be specified
@@ -16,8 +17,11 @@
       rather than bugs.debian.org.
     + Add BTS_SERVER.
 
- -- Adam D. Barratt <[email protected]>  Mon, 08 Dec 2008 06:49:32 +0000
+  [ Christoph Berg ]
+  * dscverify: Accept -u as an alias for --nosigcheck, inspired by dput -u.
 
+ -- Christoph Berg <[email protected]>  Tue, 23 Dec 2008 17:37:16 +0100
+
 devscripts (2.10.43) unstable; urgency=low
 
   The "how did I miss that one?" release

Modified: trunk/scripts/dscverify.1
===================================================================
--- trunk/scripts/dscverify.1   2008-12-17 21:48:00 UTC (rev 1766)
+++ trunk/scripts/dscverify.1   2008-12-23 16:37:58 UTC (rev 1767)
@@ -26,7 +26,7 @@
 Do not read any configuration files.  This can only be used as the
 first option given on the command-line.
 .TP
-\fB\-\-nosigcheck\fR, \fB\-\-no\-sig\-check\fR
+\fB\-\-nosigcheck\fR, \fB\-\-no\-sig\-check\fR, \fB-u\fR
 Skip the signature verification step. That is, only verify the sizes and 
 checksums of the files listed in the \fI.changes\fR or \fI.dsc\fR files.
 .TP

Modified: trunk/scripts/dscverify.pl
===================================================================
--- trunk/scripts/dscverify.pl  2008-12-17 21:48:00 UTC (rev 1766)
+++ trunk/scripts/dscverify.pl  2008-12-23 16:37:58 UTC (rev 1767)
@@ -54,7 +54,7 @@
                        Add <keyring> to the list of keyrings used
            --no-default-keyrings
                        Do not check against the default keyrings
-           --nosigcheck, --no-sig-check
+           --nosigcheck, --no-sig-check, -u
                        Do not verify the GPG signature
            --no-conf, --noconf
                        Do not read the devscripts config file
@@ -342,7 +342,7 @@
     while (@ARGV > 0) {
        if ($ARGV[0] eq '--help') { usage; exit 0; }
        if ($ARGV[0] eq '--version') { print $version; exit 0; }
-       if ($ARGV[0] =~ /^--no(sig|-sig-)check$/) { $verify_sigs = 0; shift 
@ARGV; }
+       if ($ARGV[0] =~ /^(--no(sig|-sig-)check|-u)$/) { $verify_sigs = 0; 
shift @ARGV; }
        if ($ARGV[0] =~ /^--no-?conf$/) {
            xdie "$ARGV[0] is only acceptable as the first command-line 
option!\n";
        }



-- 
To unsubscribe, send mail to [email protected].

Reply via email to