On Tue, 04 Jan 2011 at 10:40:52 +0000, Mark Brown wrote: > On Mon, Jan 03, 2011 at 09:48:38PM +0100, Jakub Wilk wrote: > > - dh_installmanpages -a > > + dh_installman -a $(shell find -type f -name '*.[0-9]') > > ...if you're going to do the conversion why not do it properly?
Hopefully the patch below is better? It's also available from <http://git.debian.org/?p=users/smcv/qa/tendra.git> which also has some minor lintian fixes as separate commits. (I can't help wondering how useful this compiler remains without support for non-i386 architectures, though; perhaps it's time to consider removing it from testing?) Regards, S commit e0f44a65a1891e113255fea6b9c7493675d905bc Author: Simon McVittie <[email protected]> Date: 2011-01-09 18:36:29 +0000 Port from dh_installmanpages to dh_installman, avoiding a FTBFS caused by file(1) thinking one man page is Fortran source code (Closes: #608179) diff --git a/debian/changelog b/debian/changelog index a28db6d..03ce8d8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +tendra (4.1.2-18.1) UNRELEASED; urgency=low + + * Non-maintainer upload. + * Port from dh_installmanpages to dh_installman, avoiding a FTBFS caused + by file(1) thinking one man page is Fortran source code (Closes: #608179) + + -- Simon McVittie <[email protected]> Sun, 09 Jan 2011 17:36:26 +0000 + tendra (4.1.2-18) unstable; urgency=low * The kernel team have decided to stop shipping page.h (closes: #479978). diff --git a/debian/rules b/debian/rules index 5dd386c..a86300e 100755 --- a/debian/rules +++ b/debian/rules @@ -44,7 +44,7 @@ binary-arch: build install dh_installdocs -a dh_installexamples -a dh_installmenu -a - dh_installmanpages -a + dh_installman -a mv debian/tendra/usr/bin/tcc debian/tendra/usr/bin/tendracc mv debian/tendra/usr/share/man/man1/tcc.1 debian/tendra/usr/share/man/man1/tendracc.1 rm debian/tendra/usr/bin/trans debian/tendra/usr/share/man/man1/trans.1 diff --git a/debian/tendra.manpages b/debian/tendra.manpages new file mode 100644 index 0000000..d798a77 --- /dev/null +++ b/debian/tendra.manpages @@ -0,0 +1,14 @@ +src/producers/c/tdfc2.1 +src/producers/cpp/tcpplus.1 +src/tools/disp/disp.1 +src/tools/pl/pl.1 +src/tools/tcc/tcc.1 +src/tools/tcc/tccenv.5 +src/tools/tcc/tchk.1 +src/tools/tld/tld.1 +src/tools/tnc/tnc.1 +src/tools/tspec/tspec.1 +src/utilities/calculus/calculus.1 +src/utilities/lexi/lexi.1 +src/utilities/sid/sid.1 +src/installers/80x86/linux/trans.1 -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

