+debhelper (1.2.45) unstable; urgency=low
+
+ * dh_installwm.1: fixed two errors (#34534, #34535)
+ * debhelper.1: list all other debhelper commands with synopses
+ (automatically generated by build process).
+
+ -- Joey Hess <joeyh@master.debian.org> Sun, 14 Mar 1999 11:33:39 -0800
+
debhelper (1.2.44) unstable; urgency=medium
* dh_fixperms: has been mostly broken when used with -X, corrected this.
./dh_installexamples examples/*
./dh_installmenu
./dh_installmanpages
+ # Fix up the debhelper.1 man page, substituting in a list of all
+ # debhelper commands. eek!
+ perl -ne ' \
+ s/\\- /(1)\n/; \
+ $$collect.=".TP\n.BR $$_" if $$. eq 3 && /^dh_/; \
+ close(ARGV) if eof; \
+ END { \
+ open(I,"debhelper.1"); \
+ open(O,">debian/tmp/usr/man/man1/debhelper.1"); \
+ while (<I>) { \
+ s/#LIST#/$$collect/; \
+ print O; \
+ } \
+ close I; \
+ close O; \
+ }' *.1
./dh_installchangelogs
./dh_movefiles
./dh_link
These files are also useful as they give one good order you can run the
various debhelper scripts in (though other variations are possible).
+For a more gentle introduction, the maint-guid debian package contains a
+tutorial about making your first package using Debhelper.
+
+
Starting a new package:
----------------------