]> git.donarmstrong.com Git - debhelper.git/commitdiff
r232: Initial Import
authorjoey <joey>
Tue, 17 Aug 1999 05:17:11 +0000 (05:17 +0000)
committerjoey <joey>
Tue, 17 Aug 1999 05:17:11 +0000 (05:17 +0000)
debian/changelog
dh_md5sums
dh_movefiles
examples/rules
examples/rules.multi

index 1556aebce09da4dbe528aefea5da6341039a4680..c5b997d1cda16981ff326b0a48982541082d202b 100644 (file)
@@ -1,3 +1,9 @@
+debhelper (2.0.07) unstable; urgency=low
+
+  * Added dh_perl calls to example rules files.
+
+ -- Joey Hess <joeyh@master.debian.org>  Sun,  4 Jul 1999 15:57:51 -0700
+
 debhelper (2.0.06) unstable; urgency=low
 
   * Now depends on perl5 | perl, I'll kill the | perl bit later on, but it
index 2b62629280f67aab5c863102d733d7776fb886c7..8015df79cd7cb1476f711a5f5d999e6eea6cf397 100755 (executable)
@@ -34,7 +34,7 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) {
        }
        
        $olddir=getcwd();
-       complex_doit("cd $TMP ; find * -type f $exclude ! -regex '^DEBIAN/.*' -print0 | xargs -r0 md5sum > DEBIAN/md5sums ; cd $olddir");
+       complex_doit("cd $TMP >/dev/null ; find * -type f $exclude ! -regex '^DEBIAN/.*' -print0 | xargs -r0 md5sum > DEBIAN/md5sums ; cd $olddir >/dev/null");
        # If the file's empty, no reason to waste inodes on it.
        if (-z "$TMP/DEBIAN/md5sums") {
                doit("rm","-f","$TMP/DEBIAN/md5sums");
index 2ed8e3763fa0e0e11de5587bb50d167dc1fde7c3..09159d3b10d21fc376670a2b7eb544159b0ef12d 100755 (executable)
@@ -59,15 +59,15 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) {
                        $file=$_;
                        $ret=1 if (! -e $file && ! -l $file);
                        $file=~s:^$sourcedir/+::;
-                       complex_doit("(cd $sourcedir ; find $file ! -type d -and ! -type l -print || true) >> movelist");
+                       complex_doit("(cd $sourcedir >/dev/null ; find $file ! -type d -and ! -type l -print || true) >> movelist");
                }
                foreach (@filelist) {
                        $file=$_;
                        $ret=1 if (! -e $file && ! -l $file);
                        $file=~s:^$sourcedir/+::;
-                       complex_doit("(cd $sourcedir ; find $file ! -type d -and -type l -print || true) >> movelist");
+                       complex_doit("(cd $sourcedir >/dev/null ; find $file ! -type d -and -type l -print || true) >> movelist");
                }
-               complex_doit("(cd $sourcedir;tar --create --remove-files --files-from=../../movelist --file -) | (cd $TMP;tar xpf -)");
+               complex_doit("(cd $sourcedir >/dev/null ; tar --create --remove-files --files-from=../../movelist --file -) | (cd $TMP >/dev/null ;tar xpf -)");
                doit("rm","-f","movelist");
        }
 }
index 5e805edbe7b88853034ddb6492de0a953e08155e..5ad68924b509e9dc75ad0c3d2e6b691a3f793cd3 100755 (executable)
@@ -66,6 +66,7 @@ binary-arch: build install
        dh_suidregister
 #      dh_makeshlibs
        dh_installdeb
+#      dh_perl
        dh_shlibdeps
        dh_gencontrol
        dh_md5sums
index 7a609e6c469e6ff4d5b5bcc54d35a5aa1c79803e..034a45143cce916a1ca7092410553a9c9a969cc7 100755 (executable)
@@ -64,6 +64,7 @@ binary-indep: build install
        # You may want to make some executables suid here.
        dh_suidregister -i
        dh_installdeb -i
+#      dh_perl -i
        dh_gencontrol -i
        dh_md5sums -i
        dh_builddeb -i
@@ -91,6 +92,7 @@ binary-arch: build install
        dh_suidregister -a
        dh_installdeb -a
 #      dh_makeshlibs -a
+#      dh_perl -a
        dh_shlibdeps -a
        dh_gencontrol -a
        dh_md5sums -a