]> git.donarmstrong.com Git - debhelper.git/commitdiff
r14: Initial Import
authorjoey <joey>
Tue, 17 Aug 1999 04:36:18 +0000 (04:36 +0000)
committerjoey <joey>
Tue, 17 Aug 1999 04:36:18 +0000 (04:36 +0000)
TODO
debian/changelog
debian/rules
dh_clean
dh_installdebfiles.1
dh_md5sums
examples/rules
examples/rules.multi

diff --git a/TODO b/TODO
index 8bf234fd83a67682756c48d586c197c55e92edad..07796f92560bc62b2455e68520ba76997b40140c 100644 (file)
--- a/TODO
+++ b/TODO
@@ -1,4 +1,3 @@
-.so files of compressed manpages change to symlinks
+.so files of compressed manpages -- change to symlinks
 add all other functionality of debstd (??)
 dh_fixperms: allow listing of files not to be touched (diffucult).
-add suidregister support
index e865dc67006b30b7029e47b41fda372612db6a29..c06f0be19b908ad2c38ea28168f735a2055fffb9 100644 (file)
@@ -1,3 +1,10 @@
+debhelper (0.8) unstable; urgency=low
+
+  * Added dh_md5sum, generates a md5sums file.
+  * dh_clean: fixed to echo all commands when verbose mode is on.
+
+ -- Joey Hess <joeyh@master.debian.org>  Fri, 17 Oct 1997 14:18:26 -0400
+
 debhelper (0.7) unstable; urgency=low
 
   * Sped up some things by removing unnecesary for loops.
index 55fd8e982642cd149d6b3976339cbabb48581dfe..8b635e7b252efa6aa00493094377777506d3d4bf 100755 (executable)
@@ -42,8 +42,9 @@ binary-indep: build
        ./dh_installmanpages
        ./dh_installchangelogs
        ./dh_compress
-       ./dh_installdebfiles
        ./dh_fixperms
+       ./dh_suidregister
+       ./dh_installdebfiles
        ./dh_md5sums
        ./dh_builddeb
 
index 964eec3d485add11379d2f78ad26ab65cb77c152..76522ddab0766028d6151d355dbe1155a6523917 100755 (executable)
--- a/dh_clean
+++ b/dh_clean
@@ -14,8 +14,7 @@ for PACKAGE in $DH_DOPACKAGES; do
 done
 doit "rm -f debian/files* debian/*.debhelper $*"
 
-# Remove other temp files. I don't run this through doit becuase
-# I haven't figured out what I have to esacape to put it in quotes.
-# However, it doesn't modify debian/$TMP, so I guess it's ok to not run it 
-# through doit.
+# Remove other temp files. doit isn't smart enough to handle this, so I echo
+# by hand (sigh).
+verbose_echo "find . \( -name "\#*\#" -o -name "*~" -o -name "DEADJOE" \) -exec rm -f {} \;"
 find . \( -name "\#*\#" -o -name "*~" -o -name "DEADJOE" \) -exec rm -f {} \;
index 9827656a81a966739fb504f33c25b40be473dbd2..924e04b4d682f03c86f11aeea6da37cf4c466a25 100644 (file)
@@ -26,9 +26,9 @@ The files postinst, preinst, postrm, and prerm are handled specially: If a
 corresponding file named debian/script.debhelper exists, the contents of that 
 file are merged into the script as follows: If the script exists, then 
 anywhere in it that "#DEBHELPER#" appears, the text of the .debhelper file is
-inserted. If the script does not exist, then a script is generated from the 
-.debhelper file. The .debhelper files are created by other debhelper programs,
-such as 
+inserted. If the script does not exist, then a script is generated from 
+the .debhelper file. The .debhelper files are created by other debhelper 
+programs, such as 
 .BR dh_installmenu (1)
 , and are shell scripts.
 .P
index 634e2fd6c0bf8c4faa93b1deb279999db9b62e61..8b37bc293a2379ea3a10786cb3d1726666fa5348 100755 (executable)
@@ -1,7 +1,7 @@
 #!/bin/sh -e
 #
-# Generate a DEBIAN/md5sums file, that lists the md5sums of all
-# non-conffiles in the package
+# Generate a DEBIAN/md5sums file, that lists the md5sums of all files in the
+# package.
 
 PATH=debian:$PATH:/usr/lib/debhelper
 . dh_lib
index 961ab45945b46f6dfd3aa2348f0f7484d6db177c..4b4d69d3486c5e787bcbb0e21b1521b07e6113cb 100755 (executable)
@@ -41,6 +41,7 @@ binary-arch: build
        dh_compress
        dh_fixperms
        dh_installdebfiles
+       dh_m5dsums
        dh_builddeb
 
 binary: binary-indep binary-arch
index fd9bf5de2c98eb9253430b448b0a6044c429193b..15ed5a4b440126c38861b136f864f7bdc22a8e44 100755 (executable)
@@ -39,6 +39,7 @@ binary-indep: build
        dh_compress -i
        dh_fixperms -i
        dh_installdebfiles -i
+       dh_md5sums -i
        dh_builddeb -i
 
 # Build architecture-dependent files here.
@@ -59,6 +60,7 @@ binary-arch: build
        dh_compress -a
        dh_fixperms -a
        dh_installdebfiles -a
+       dh_md5sums -a
        dh_builddeb -a
 
 binary: binary-indep binary-arch