+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 <joeyh@master.debian.org> 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#.
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
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 \
# 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"
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