summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog7
-rwxr-xr-xdh_compress4
2 files changed, 10 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index d596288b..77757da9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+debhelper (9.20131127) unstable; urgency=low
+
+ * dh_compress: Exclude several more compressed file formats.
+ Closes: #730483
+
+ -- Joey Hess <joeyh@debian.org> Wed, 27 Nov 2013 19:19:41 -0400
+
debhelper (9.20131110) unstable; urgency=low
* dh_installinit: Revert changes that added versioned dependency on
diff --git a/dh_compress b/dh_compress
index ec07f85d..73c477a3 100755
--- a/dh_compress
+++ b/dh_compress
@@ -118,7 +118,9 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
! -iname "*.jpeg" ! -iname "*.gz" ! -iname "*.taz" \\
! -iname "*.tgz" ! -iname "*.z" ! -iname "*.bz2" \\
! -iname "*-gz" ! -iname "*-z" ! -iname "*_z" \\
- ! -iname "*.jar" ! -iname "*.zip" ! -iname "*.css" \\
+ ! -iname "*.epub" ! -iname "*.jar" ! -iname "*.zip" \\
+ ! -iname "*.odg" ! -iname "*.odp" ! -iname "*.odt" \\
+ ! -iname ".htaccess" ! -iname "*.css" \\
! -iname "*.svg" ! -iname "*.svgz" ! -iname "*.js" \\
! -name "index.sgml" ! -name "objects.inv" \\
! -name "copyright" 2>/dev/null || true;