From 3e312fee14834a12f1c3f994f3f49c472207f0e3 Mon Sep 17 00:00:00 2001 From: joey Date: Tue, 17 Aug 1999 05:11:32 +0000 Subject: [PATCH] r182: Initial Import --- debian/changelog | 8 ++++++++ debian/rules | 16 ++++++++++++++++ doc/README | 4 ++++ 3 files changed, 28 insertions(+) diff --git a/debian/changelog b/debian/changelog index 7726e2e..2a5843c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +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 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. diff --git a/debian/rules b/debian/rules index 0d9676f..1c8c3b9 100755 --- a/debian/rules +++ b/debian/rules @@ -41,6 +41,22 @@ binary-indep: build ./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 () { \ + s/#LIST#/$$collect/; \ + print O; \ + } \ + close I; \ + close O; \ + }' *.1 ./dh_installchangelogs ./dh_movefiles ./dh_link diff --git a/doc/README b/doc/README index 07048e3..3406362 100644 --- a/doc/README +++ b/doc/README @@ -9,6 +9,10 @@ that use debhelper commands extensively. See /usr/doc/debhelper/examples/ . 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: ---------------------- -- 2.39.5