From: Joey Hess Date: Wed, 3 Nov 2010 03:02:16 +0000 (-0400) Subject: Fix deprecated command list on translated debhelper(7) man pages. Closes: #601204 X-Git-Tag: 8.1.0~22 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=80031722bde4dbdcea47a2cbe979bfbd31adc61a;p=debhelper.git Fix deprecated command list on translated debhelper(7) man pages. Closes: #601204 --- diff --git a/Makefile b/Makefile index 3d47ea9..38f3c15 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,9 @@ +# List of files of dh_* commands. Sorted for debhelper man page. +COMMANDS=$(shell find . -maxdepth 1 -type f -perm +100 -name "dh_*" -printf "%f\n" | sort) + +# Find deprecated commands by looking at their synopsis. +DEPRECATED=$(shell egrep -l '^dh_.* - .*deprecated' $(COMMANDS)) + # This generates a list of synopses of debhelper commands, and substitutes # it in to the #LIST# line on the man page fed to it on stdin. Must be passed # parameters of all the executables or pod files to get the synopses from. @@ -11,7 +17,7 @@ MAKEMANLIST=perl -e ' \ close IN; \ if ($$file=~m/=head1 .*?\n\n(.*?) - (.*?)\n\n/s) { \ my $$item="=item $$1(1)\n\n$$2\n\n"; \ - if ($$2!~/deprecated/) { \ + if (" $(DEPRECATED) " !~ / $$1 /) { \ $$list.=$$item; \ } \ else { \ @@ -61,7 +67,7 @@ version: debhelper.7: debhelper.pod cat debhelper.pod | \ - $(MAKEMANLIST) `find . -maxdepth 1 -type f -perm +100 -name "dh_*" | sort` | \ + $(MAKEMANLIST) $(COMMANDS) | \ $(POD2MAN) --name="debhelper" --section=7 > debhelper.7 clean: @@ -76,7 +82,7 @@ install: $(DESTDIR)/usr/share/debhelper/autoscripts \ $(DESTDIR)$(PERLLIBDIR)/Sequence \ $(DESTDIR)$(PERLLIBDIR)/Buildsystem - install $(shell find -maxdepth 1 -mindepth 1 -name dh\* |grep -v \.1\$$) $(DESTDIR)/usr/bin + install dh $(COMMANDS) $(DESTDIR)/usr/bin install -m 0644 autoscripts/* $(DESTDIR)/usr/share/debhelper/autoscripts install -m 0644 Debian/Debhelper/*.pm $(DESTDIR)$(PERLLIBDIR) install -m 0644 Debian/Debhelper/Sequence/*.pm $(DESTDIR)$(PERLLIBDIR)/Sequence diff --git a/debian/changelog b/debian/changelog index a0ae5e1..04927d6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -23,6 +23,8 @@ debhelper (8.1.0) UNRELEASED; urgency=low * dh: Inhibit logging when an override target runs the overridden command, to avoid unexpected behavior if the command succeeded but the overall target fails. Closes: #601037 + * Fix deprecated command list on translated debhelper(7) man pages. + Closes: #601204 -- Joey Hess Sat, 07 Aug 2010 11:27:24 -0400