From: joey Date: Tue, 17 Aug 1999 04:56:04 +0000 (+0000) Subject: r102: Initial Import X-Git-Tag: debian_version_0_1~132 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=aec37078c45ab2dc23bfb7bb9bde2c5d130d663f;p=debhelper.git r102: Initial Import --- diff --git a/debian/changelog b/debian/changelog index cf103bd..db56690 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,17 @@ +debhelper (1.0) stable unstable; urgency=low + + * 1.0 at last! + + * This relelase is not really intended for stable. I throw a copy into + stable-updates because I want it to be available as an upgrade for + people using debian 2.0 (the current version in debian 2.0 has no + critical bugs, but this version is of course a lot nicer), and I plan + to start work on a new branch of debhelper that will fix many wishlist + bug reports, and of course introduce many new bugs, and which will go + into unstable only. + + -- Joey Hess Sat, 8 Aug 1998 17:33:20 -0700 + debhelper (0.99.4) unstable; urgency=low * dh_debstd: only warn about scripts that actually lack #DEBHELPER#. diff --git a/dh_compress b/dh_compress index 1b58f70..7d6e497 100755 --- a/dh_compress +++ b/dh_compress @@ -13,7 +13,7 @@ filelist () { if [ "$compress" ]; then # The config file is a sh script that outputs the files to be compressed # (typically using find). - sh $olddir/$compress 2>/dev/null + sh $olddir/$compress 2>/dev/null || true else # By default fall back on what the policy manual says to compress. find usr/info usr/man usr/X11*/man -type f ! -name "*.gz" 2>/dev/null || true diff --git a/dh_fixperms b/dh_fixperms index 544ee9b..0e84533 100755 --- a/dh_fixperms +++ b/dh_fixperms @@ -18,7 +18,7 @@ for PACKAGE in $DH_DOPACKAGES; do doit "chmod -R u+rw $TMP" fi - FIND_OPTIONS= + FIND_OPTIONS="" else # Do it the hard way. complex_doit "find $TMP ! \( $DH_EXCLUDE_FIND \) -print0 \ @@ -33,8 +33,8 @@ for PACKAGE in $DH_DOPACKAGES; do # Fix up premissions in usr/doc, setting everything to not exectable # by default, but leave examples directories alone. - complex_doit "find $TMP/usr/doc -type f $FIND_OPTIONS -print0 \ - 2>/dev/null | xargs -0r chmod 644" + complex_doit "find $TMP/usr/doc -type f $FIND_OPTIONS ! -regex .\*/examples/.\* -print0 \ + 2>/dev/null | xargs -0r chmod 644" complex_doit "find $TMP/usr/doc -type d $FIND_OPTIONS -print0 \ 2>/dev/null | xargs -0r chmod 755" diff --git a/dh_installdocs b/dh_installdocs index fcdedc5..7a11b7f 100755 --- a/dh_installdocs +++ b/dh_installdocs @@ -41,7 +41,7 @@ for PACKAGE in $DH_DOPACKAGES; do todo=`pkgfile $PACKAGE TODO` if [ "$todo" ]; then if isnative; then - doit "install -m 655 -p $todo $TMP/usr/doc/$PACKAGE/TODO" + doit "install -m 644 -p $todo $TMP/usr/doc/$PACKAGE/TODO" else doit "install -m 644 -p $todo $TMP/usr/doc/$PACKAGE/TODO.Debian" fi