From: joey Date: Tue, 17 Aug 1999 05:17:11 +0000 (+0000) Subject: r232: Initial Import X-Git-Tag: debian_version_0_1~13 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=c5cca23df59c38a414d7b8ef4725f0533723d77c;p=debhelper.git r232: Initial Import --- diff --git a/debian/changelog b/debian/changelog index 1556aeb..c5b997d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +debhelper (2.0.07) unstable; urgency=low + + * Added dh_perl calls to example rules files. + + -- Joey Hess 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 diff --git a/dh_md5sums b/dh_md5sums index 2b62629..8015df7 100755 --- a/dh_md5sums +++ b/dh_md5sums @@ -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"); diff --git a/dh_movefiles b/dh_movefiles index 2ed8e37..09159d3 100755 --- a/dh_movefiles +++ b/dh_movefiles @@ -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"); } } diff --git a/examples/rules b/examples/rules index 5e805ed..5ad6892 100755 --- a/examples/rules +++ b/examples/rules @@ -66,6 +66,7 @@ binary-arch: build install dh_suidregister # dh_makeshlibs dh_installdeb +# dh_perl dh_shlibdeps dh_gencontrol dh_md5sums diff --git a/examples/rules.multi b/examples/rules.multi index 7a609e6..034a451 100755 --- a/examples/rules.multi +++ b/examples/rules.multi @@ -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