From: joey Date: Tue, 17 Aug 1999 05:12:14 +0000 (+0000) Subject: r191: Initial Import X-Git-Tag: debian_version_0_1~53 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=f05e73ca956ba2e8a4c2b75635e94ccd7dc8554a;p=debhelper.git r191: Initial Import --- diff --git a/debian/changelog b/debian/changelog index 0410d70..72475f9 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +debhelper (1.2.52) unstable; urgency=low + + * dh_installmodules: new program, closes #32546. + + -- Joey Hess Thu, 1 Apr 1999 17:25:37 -0800 + debhelper (1.2.51) unstable; urgency=low * Another very minor typo fix. diff --git a/dh_compress.1 b/dh_compress.1 index f662833..77cd68f 100644 --- a/dh_compress.1 +++ b/dh_compress.1 @@ -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