r82: Initial Import
authorjoey <joey>
Tue, 17 Aug 1999 04:50:57 +0000 (04:50 +0000)
committerjoey <joey>
Tue, 17 Aug 1999 04:50:57 +0000 (04:50 +0000)
debian/changelog
debian/control
dh_compress
examples/rules.indep

index 0ddba87b088447c5ef3747a76fae11bb178331d9..0103f06edd690ba88ac9df6827e91aa547b40351 100644 (file)
@@ -1,3 +1,16 @@
+debhelper (0.85) unstable; urgency=low
+
+  * Moved a few things around that were broken by Che's patch:
+    - dh_installdirs should go in install target.
+    - dh_clean should not run in binary targets.
+  * This is just a quick fix to make it work, I'm not happy with it. I'm
+    going to discuss my problems with it with Che, and either make a new
+    version fixing them, or revert to 0.83.
+  * So be warned that the example rules files are not currently in good
+    shape if you're starting a new package.
+
+ -- Joey Hess <joeyh@master.debian.org>  Sat, 18 Apr 1998 23:30:38 -0700
+
 debhelper (0.84) unstable; urgency=low
 
   * Applied Che_Fox'x patches to example rules files, which makes them use
index d35fa0ae7a8eb65610a03d9f52784ff897049580..4ec15b0140b7218e8f426f845c6f563c90de90a0 100644 (file)
@@ -2,7 +2,7 @@ Source: debhelper
 Section: devel
 Priority: optional
 Maintainer: Joey Hess <joeyh@master.debian.org>
-Standards-Version: 2.4.0.0
+Standards-Version: 2.4.1.0
 
 Package: debhelper
 Architecture: all
index 5af172c833e57547c98bd3567bfd3edd347aa6ac..27f931f5d1917a52f6ecf9888b3747c1948041de 100755 (executable)
@@ -22,9 +22,9 @@ for PACKAGE in $DH_DOPACKAGES; do
        else
                # By default fall back on what the policy manual says to compress.
                files=`
-                       find usr/info usr/man usr/X11*/man -type f 2>/dev/null ;
+                       find usr/info usr/man usr/X11*/man -type f ! -name "*.gz" 2>/dev/null ;
                        find usr/doc -type f \( -size +4k -or -name "changelog*" \) \
-                               ! -name "*.htm*" ! -name "*.gif" \
+                               ! -name "*.htm*" ! -name "*.gif" ! -name "*.gz" \
                                ! -name "copyright" 2>/dev/null ;
                        true
                        `
index 08ce4b62c538a07614875cecf160ad52babb8fd1..d0cce4663b493bd8d1ba115ba5bfd978b8b90cb4 100755 (executable)
@@ -29,7 +29,8 @@ install: install-stamp
 install-stamp: build
        dh_testdir
        dh_testroot
-       dh_clean
+       dh_clean -k
+       dh_installdirs
 
        # Add here commands to install the package into debian/tmp.
        #$(MAKE) prefix=`pwd`/debian/tmp/usr install
@@ -41,8 +42,6 @@ binary-indep: build install
 #      dh_testversion
        dh_testdir
        dh_testroot
-       dh_clean -k
-       dh_installdirs
        dh_installdocs
        dh_installexamples
        dh_installmenu