]> err.no Git - dpkg/commitdiff
dpkg-buildpackage: Add -z/-Z to passthrough opts
authorFrank Lichtenheld <djpig@debian.org>
Sun, 7 Oct 2007 19:50:37 +0000 (21:50 +0200)
committerFrank Lichtenheld <djpig@debian.org>
Mon, 8 Oct 2007 22:41:40 +0000 (00:41 +0200)
ChangeLog
scripts/dpkg-buildpackage.pl

index 525c26611a9b01a1c50443416d048ff202f26f61..8b9fa461813f38e93a222797ba47a74aa043552c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
        * scripts/dpkg-buildpackage.pl (usage): Remove details about running
        fakeroot only if it's available.
 
+2007-10-07  Frank Lichtenheld  <djpig@debian.org>
+
+       * scripts/dpkg-buildpackage.pl: Add -z/-Z to
+       passthrough opts (will be passed to dpkg-source).
+
 2007-10-07  Frank Lichtenheld  <djpig@debian.org>
            Marcel Toele  <mtoele@kern.nl>
 
index 232fd884efa300bf223d935355c74df15fd952cc..f72454438bfc2a65b13d6678c3e6d97d1a7034b7 100644 (file)
@@ -59,8 +59,10 @@ Options:
   -si (default)  src includes orig for rev. 0 or 1.    }
   -sa            uploaded src always includes orig.    }
   -sd            uploaded src is diff and .dsc only.   }
-  -sn            force Debian native source format.      } only passed
-  -s[sAkurKUR]   see dpkg-source for explanation.        } to dpkg-source
+  -sn            force Debian native source format.      }
+  -s[sAkurKUR]   see dpkg-source for explanation.        } only passed
+  -z<level>      compression level of source             } to dpkg-source
+  -Z(gz|bz2|lzma) compression to use for source          }
   -nc            do not clean source tree (implies -b).
   -tc            clean source tree when finished.
   -ap            add pause before starting signature process.
@@ -141,6 +143,8 @@ while (@ARGV) {
        $sourcestyle = $_;
     } elsif (/^-s[nsAkurKUR]$/) {
        push @passopts, $_; # passed to dpkg-source
+    } elsif (/^-[zZ]/) {
+       push @passopts, $_; # passed to dpkg-source
     } elsif (/^-i.*$/) {
        $diffignore = $_;
     } elsif (/^-I.*$/) {