]> git.donarmstrong.com Git - debhelper.git/commitdiff
r191: Initial Import
authorjoey <joey>
Tue, 17 Aug 1999 05:12:14 +0000 (05:12 +0000)
committerjoey <joey>
Tue, 17 Aug 1999 05:12:14 +0000 (05:12 +0000)
debian/changelog
dh_compress.1

index 0410d70ac6e2da16a5bd6fe319553a98796c23fb..72475f924b0ae95d86d9cb716aef7accf9de1c3b 100644 (file)
@@ -1,3 +1,9 @@
+debhelper (1.2.52) unstable; urgency=low
+
+  * dh_installmodules: new program, closes #32546.
+
+ -- Joey Hess <joeyh@master.debian.org>  Thu,  1 Apr 1999 17:25:37 -0800
+
 debhelper (1.2.51) unstable; urgency=low
 
   * Another very minor typo fix.
index f66283348e5556e8aad52e5b3e0c8a5e2e978aec..77cd68f9069b31694b1a20fad55998895bcabff1 100644 (file)
@@ -13,7 +13,9 @@ to the new files.
 By default, dh_compress compresses files that debian policy mandates should
 be compressed, namely all files in usr/info, usr/man, usr/X11R6/man, and
 all files in usr/doc that are larger than 4k in size, except
-the copyright file, .html files and .gif files, and all changelog files.
+the copyright file, .html files and .gif files, and all changelog files. It
+skips any files that appear to be already compressed (based on their
+extentions).
 .P
 If a debian/package.compress file exists (debian/compress may be used for the
 first binary package in debian/control), however, it will be ran as a shell
@@ -26,9 +28,10 @@ the same files as it would by default. This is a good starting point for
 customization of what files are compressed:
 .PP
  find usr/info usr/man usr/X11*/man -type f
- find usr/doc -type f \\
+ find usr/doc -type f \\ 
        \\( -size +4k -or -name "changelog*" \\) \\
-       ! -name "*.htm*" ! -name "*.gif" \\
+       ! -name "*.htm*" ! -name "*.gif" ! -iname "*.gz" \\
+       ! -iname "*.taz" ! -iname "*.tgz" ! -iname "*.z" \\
        ! -name "copyright"
 .SH OPTIONS
 .TP