summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2013-11-25 12:51:43 -0400
committerJoey Hess <joey@kitenet.net>2013-11-25 12:51:43 -0400
commit23f4a575b60762065d97915ec9e384931b1dd7f4 (patch)
tree71da655a84ba7308da3bfd4fb1c0b8fb95e2ca1a
parent3d69644835fe1a0cd6b9854a8f1627fea986177d (diff)
dh_compress: Exclude several more compressed file formats. Closes: #730483
-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..ba608e2c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+debhelper (9.20131111) UNRELEASED; urgency=low
+
+ * dh_compress: Exclude several more compressed file formats.
+ Closes: #730483
+
+ -- Joey Hess <joeyh@debian.org> Mon, 25 Nov 2013 12:51:11 -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;