[Pkg-haskell-commits] darcs: haskell-devscripts: Fix the header and footer in manpages
Giovanni Mascellani
gio at debian.org
Thu Jul 28 16:07:34 UTC 2011
Thu Jul 28 16:06:33 UTC 2011 Giovanni Mascellani <gio at debian.org>
* Fix the header and footer in manpages
Ignore-this: 2bbb460befd58249584140d2c7541ed0
M ./debian/changelog -1 +3
M ./debian/rules -2 +4
Thu Jul 28 16:06:33 UTC 2011 Giovanni Mascellani <gio at debian.org>
* Fix the header and footer in manpages
Ignore-this: 2bbb460befd58249584140d2c7541ed0
diff -rN -u old-haskell-devscripts//debian/changelog new-haskell-devscripts//debian/changelog
--- old-haskell-devscripts//debian/changelog 2011-07-28 16:07:34.250286756 +0000
+++ new-haskell-devscripts//debian/changelog 2011-07-28 16:07:34.278294699 +0000
@@ -2,8 +2,10 @@
* Make -doc packages recommend -dev instead of suggesting. It's likely that
people installing documentation want the library too. (Closes: #635754)
+ * Fix the header and footer in manpages (Haskell is quite the opposite
+ of Perl!).
- -- Iain Lane <laney at debian.org> Thu, 28 Jul 2011 15:54:16 +0100
+ -- Giovanni Mascellani <gio at debian.org> Thu, 28 Jul 2011 18:06:10 +0200
haskell-devscripts (0.8.8) unstable; urgency=low
diff -rN -u old-haskell-devscripts//debian/rules new-haskell-devscripts//debian/rules
--- old-haskell-devscripts//debian/rules 2011-07-28 16:07:34.242278681 +0000
+++ new-haskell-devscripts//debian/rules 2011-07-28 16:07:34.294286568 +0000
@@ -9,13 +9,15 @@
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
+DEB_VERSION := $(shell dpkg-parsechangelog | egrep '^Version:' | cut -f 2 -d ' ')
+
manpages = $(shell cat debian/manpages)
%.1: %.pod
- pod2man $< > $@
+ pod2man -c 'Haskell devscripts documentation' -r 'Haskell devscripts $(DEB_VERSION)' $< > $@
%.1: %
- pod2man $< > $@
+ pod2man -c 'Haskell devscripts documentation' -r 'Haskell devscripts $(DEB_VERSION)' $< > $@
.PHONY: build
build: $(manpages)
More information about the Pkg-haskell-commits
mailing list