]> git.donarmstrong.com Git - debhelper.git/commitdiff
r529: * dh_compress: always compress .pcf files in
authorjoey <joey>
Sun, 2 Jun 2002 00:42:47 +0000 (00:42 +0000)
committerjoey <joey>
Sun, 2 Jun 2002 00:42:47 +0000 (00:42 +0000)
     /usr/X11R6/lib/X11/fonts/{100dpi,75dpi,misc}, as is required by policy.

debhelper.pod
debian/changelog
debian/control
dh_compress

index 08c511535215eb19a6b27bb2a7765881211f9cf3..7cf755c049afb9a8769fa8ada9f6d7183e872fa0 100644 (file)
@@ -286,6 +286,12 @@ scripts. (This may later be rolled back into V3).
 
 =item -
 
+You are encouraged to put the new ${misc:Depends} into debian/control to
+suppliment the ${shlibs:Depends} field. In particular, the new
+dh_installinit feature needs a versioned dependency on sysvinit.
+
+=item -
+
 dh_fixperms will make all files in bin/ directories and in etc/init.d 
 executable.
 
index c4b0239f5a67ca1b64316d827efd2707b1e2f5e1..8b2e729616c276fab156491108da621a306754f2 100644 (file)
@@ -1,3 +1,10 @@
+debhelper (4.0.11) unstable; urgency=low
+
+  * dh_compress: always compress .pcf files in
+    /usr/X11R6/lib/X11/fonts/{100dpi,75dpi,misc}, as is required by policy.
+
+ -- Joey Hess <joeyh@debian.org>  Sat,  1 Jun 2002 18:08:50 -0400
+
 debhelper (4.0.10) unstable; urgency=low
 
   * Consistently use the which command instead of command -v or hardcoded
index c97b8c6fd2d87c60283d057f1e76e0ab2ad11483..a20c1c6d6633ffc56572752ed4eb9d6610146461 100644 (file)
@@ -2,12 +2,12 @@ Source: debhelper
 Section: devel
 Priority: optional
 Maintainer: Joey Hess <joeyh@debian.org>
-Build-Depends-Indep: perl (>= 5.6.1), fileutils (>= 4.0-2.1), file (>= 3.23-1), debconf-utils (>= 1.1.1)
+Build-Depends-Indep: perl (>= 5.6.1), fileutils (>= 4.0-2.1), file (>= 3.23-1), debconf-utils (>= 1.1.1), dpkg-dev (>= 1.9.0)
 Standards-Version: 3.5.6.1
 
 Package: debhelper
 Architecture: all
-Depends: ${perl:Depends}, fileutils (>= 4.0-2.1), file (>= 3.23-1), dpkg-dev (>= 1.7.0), html2text, debconf-utils, binutils
+Depends: ${perl:Depends}, ${misc:Depends}, fileutils (>= 4.0-2.1), file (>= 3.23-1), dpkg-dev (>= 1.7.0), html2text, debconf-utils, binutils
 Suggests: dh-make
 Description: helper programs for debian/rules
  A collection of programs that can be used in a debian/rules file to
index 6fc20b196781411781e9edad2ea412548fa8466a..5e8bb379ce45f8a6fd69c0650067f9062555afc4 100755 (executable)
@@ -25,7 +25,8 @@ By default, dh_compress compresses files that debian policy mandates should
 be compressed, namely all files in usr/share/info, usr/share/man,
 usr/X11R6/man, files in usr/share/doc that are larger than 4k in size,
 (except the copyright file, .html files, and files that appear to be already
-compressed based on their extensions), and all changelog files.
+compressed based on their extensions), and all changelog files. Plus PCF
+fonts underneath usr/X11R6/lib/X11/fonts/
 
 If a debian/package.compress file exists, however, it will be ran as a shell
 script, and all filenames that the shell script outputs will be compressed
@@ -101,7 +102,8 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
                                ! -iname "*.tgz" ! -iname "*.z" ! -iname "*.bz2" \\
                                ! -iname "*-gz"  ! -iname "*-z" ! -iname "*_z" \\
                                ! -iname "*.jar" ! -iname "*.zip" \\
-                               ! -name "copyright" 2>/dev/null || true
+                               ! -name "copyright" 2>/dev/null || true;
+                       find usr/X11R6/lib/X11/fonts -type f -name "*.pcf" 2>/dev/null || true;
                `);
        }