diff options
author | joey <joey> | 2002-07-19 00:58:01 +0000 |
---|---|---|
committer | joey <joey> | 2002-07-19 00:58:01 +0000 |
commit | 699d0e5c2bd5bcd52a1833a802281ca66d7ae111 (patch) | |
tree | 32e4bf6134ab9281fd07d5f2cb9dff7d910327da /dh_compress | |
parent | 620d5c492f5bfd918f3d88a8270b5e4565a41635 (diff) | |
download | debhelper-699d0e5c2bd5bcd52a1833a802281ca66d7ae111.tar.gz |
r538: * Make dh_installchangelogs install debian/NEWS files as well, as
NEWS.Debian. Make dh_compress always compress them. The idea is to make
these files be in a machine parsable form, like the debian changelog, but
only put newsworthy info into them. Automated tools can then display new
news on upgrade. It is hoped that if this catches on it will reduce the
abuse of debconf notes. See discussion on debian-devel for details.
Diffstat (limited to 'dh_compress')
-rwxr-xr-x | dh_compress | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dh_compress b/dh_compress index 5e8bb379..5c04e0c3 100755 --- a/dh_compress +++ b/dh_compress @@ -95,7 +95,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { # ".tgz", "-gz", "-z", "_z" push @files, split(/\n/,` find usr/info usr/share/info usr/man usr/share/man usr/X11*/man -type f ! -name "*.gz" 2>/dev/null || true; - find usr/doc usr/share/doc -type f \\( -size +4k -or -name "changelog*" \\) \\ + find usr/doc usr/share/doc -type f \\( -size +4k -or -name "changelog*" -or -name "NEWS*" \\) \\ \\( -name changelog.html -or ! -iname "*.htm*" \\) \\ ! -iname "*.gif" ! -iname "*.png" ! -iname "*.jpg" \\ ! -iname "*.jpeg" ! -iname "*.gz" ! -iname "*.taz" \\ |