Fix lintian errors in debian/changelog
Lintian complians about a NMU version number. Modify the changelog to use a standard version number. Modify the changelog version to use the last 9 digits of the sha1 hash for the git commit. Add the build-arch and build-indep targets to the debian/rules file. Source init-functions in init script Signed-off-by: Clark Rawlins <clark@bit63.org>
This commit is contained in:
parent
6ff7b56a42
commit
ef953698c5
2
debian/changelog
vendored
2
debian/changelog
vendored
|
@ -1,4 +1,4 @@
|
||||||
timeoutd (1.5-10.1ubuntu1~2.93b017313) UNRELEASED; urgency=low
|
timeoutd (1.5-10.2) unstable; urgency=low
|
||||||
* Non-maintainer upload
|
* Non-maintainer upload
|
||||||
* Resolve the missing symbol XOpenDisplay by linking with libX11
|
* Resolve the missing symbol XOpenDisplay by linking with libX11
|
||||||
* Update debian/control Standards-Version: 3.9.5
|
* Update debian/control Standards-Version: 3.9.5
|
||||||
|
|
3
debian/rules
vendored
3
debian/rules
vendored
|
@ -4,6 +4,9 @@
|
||||||
|
|
||||||
# Uncomment this to turn on verbose mode.
|
# Uncomment this to turn on verbose mode.
|
||||||
#export DH_VERBOSE=1
|
#export DH_VERBOSE=1
|
||||||
|
build-arch: build
|
||||||
|
|
||||||
|
build-indep: build
|
||||||
|
|
||||||
build:
|
build:
|
||||||
$(MAKE) timeoutd
|
$(MAKE) timeoutd
|
||||||
|
|
2
debian/timeoutd.init.d
vendored
2
debian/timeoutd.init.d
vendored
|
@ -16,6 +16,8 @@ DESC="user timeout daemon"
|
||||||
|
|
||||||
test -x $DAEMON || exit 0
|
test -x $DAEMON || exit 0
|
||||||
|
|
||||||
|
. /lib/lsb/init-functions
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
case "$1" in
|
case "$1" in
|
||||||
|
|
Loading…
Reference in a new issue