summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Stapelberg <stapelberg@debian.org>2013-07-16 23:53:32 +0200
committerMichael Stapelberg <michael@stapelberg.de>2013-07-16 23:59:13 +0200
commit3e80b7d1415885208800e1788d26f6a2e4fa47db (patch)
tree6c79d61de514d7385a0cae9a62955f2f1abe892f
parent165521c09afb46443e35602fa362c4f5197342ff (diff)
downloadinit-system-helpers-3e80b7d1415885208800e1788d26f6a2e4fa47db.tar.gz
use pod2man and install manpages, update changelogdebian/1.7
-rw-r--r--debian/changelog7
-rw-r--r--debian/control2
-rw-r--r--debian/dh-systemd.manpages2
-rw-r--r--debian/init-system-helpers.manpages2
-rwxr-xr-xdebian/rules6
5 files changed, 18 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index cf9407e..ee6191c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+init-system-helpers (1.7) unstable; urgency=low
+
+ * Drop dependency on libmodule-install-perl to make it easier to have this
+ package in Ubuntu (Thanks Jeremy Bicha) (Closes: #716929)
+
+ -- Michael Stapelberg <stapelberg@debian.org> Tue, 16 Jul 2013 23:53:28 +0200
+
init-system-helpers (1.6) unstable; urgency=low
* Fix syntax error in dh_systemd_start (Closes: #716946)
diff --git a/debian/control b/debian/control
index c9634a1..d0edec7 100644
--- a/debian/control
+++ b/debian/control
@@ -5,7 +5,7 @@ Maintainer: pkg-systemd-maintainers <pkg-systemd-maintainers@lists.alioth.debian
Uploaders: Michael Stapelberg <stapelberg@debian.org>,
Tollef Fog Heen <tfheen@debian.org>,
Michael Biebl <biebl@debian.org>
-Build-Depends: debhelper (>= 8.0.0)
+Build-Depends: debhelper (>= 8.0.0), perl
Standards-Version: 3.9.4
Vcs-Git: git://anonscm.debian.org/collab-maint/init-system-helpers.git
Vcs-Browser: http://anonscm.debian.org/gitweb/?p=collab-maint/init-system-helpers.git;a=summary
diff --git a/debian/dh-systemd.manpages b/debian/dh-systemd.manpages
new file mode 100644
index 0000000..fae3610
--- /dev/null
+++ b/debian/dh-systemd.manpages
@@ -0,0 +1,2 @@
+script/dh_systemd_enable.1p
+script/dh_systemd_start.1p
diff --git a/debian/init-system-helpers.manpages b/debian/init-system-helpers.manpages
new file mode 100644
index 0000000..7330f21
--- /dev/null
+++ b/debian/init-system-helpers.manpages
@@ -0,0 +1,2 @@
+script/deb-systemd-helper.1p
+script/deb-systemd-invoke.1p
diff --git a/debian/rules b/debian/rules
index b760bee..b77c86d 100755
--- a/debian/rules
+++ b/debian/rules
@@ -9,5 +9,11 @@
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
+override_dh_auto_build:
+ dh_auto_build
+ for file in $$(ls script); do \
+ pod2man --section=1p --utf8 script/$$file script/$$file.1p; \
+ done
+
%:
dh $@