summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2011-08-20 15:13:56 -0400
committerJoey Hess <joey@kitenet.net>2011-08-20 15:13:56 -0400
commit1c928d2d414cc0423429ad7b8b25cd981d2eeb75 (patch)
treeb0c38e93a894627f1c233e7c79b5ea82466b34da
parent416f106f1d231e742670ea51b310ec9c43971c21 (diff)
dh_compress: Don't compress _sources documentation subdirectory as used by python-sphinx. Closes: #637492 Thanks, Jakub Wilk
-rw-r--r--debian/changelog8
-rwxr-xr-xdh_compress4
2 files changed, 11 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index ffc30784..e4499963 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+debhelper (8.9.5) UNRELEASED; urgency=low
+
+ * dh_compress: Don't compress _sources documentation subdirectory
+ as used by python-sphinx. Closes: #637492
+ Thanks, Jakub Wilk
+
+ -- Joey Hess <joeyh@debian.org> Sat, 20 Aug 2011 15:13:01 -0400
+
debhelper (8.9.4) unstable; urgency=low
* dh: The --before --after --until and --remaining options are deprecated.
diff --git a/dh_compress b/dh_compress
index 3eb6ff24..ff98cb9d 100755
--- a/dh_compress
+++ b/dh_compress
@@ -108,7 +108,9 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
! -iname "*.gif" ! -iname "*.png" ! -iname "*.jpg" \\
! -iname "*.jpeg" \\
2>/dev/null || true;
- find usr/share/doc -type f \\( -size +4k -or -name "changelog*" -or -name "NEWS*" \\) \\
+ find usr/share/doc \\
+ \\( -type d -name _sources -prune -false \\) -o \\
+ -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" \\