diff -Nru miredo-1.2.6/debian/changelog miredo-1.2.6/debian/changelog --- miredo-1.2.6/debian/changelog 2013-07-30 21:30:37.000000000 +0000 +++ miredo-1.2.6/debian/changelog 2013-12-27 13:02:43.000000000 +0000 @@ -1,3 +1,12 @@ +miredo (1.2.6-2) unstable; urgency=medium + + * Fixed Vcs urls + * Added "status" to mired-server init.d + * Bumped standards version to 3.9.5 + * Added a patch fixing systemd service file (Closes: #733154) + + -- Tomasz Buchert Fri, 27 Dec 2013 14:01:01 +0100 + miredo (1.2.6-1) unstable; urgency=low * Change of maintainers (Closes: #713005) diff -Nru miredo-1.2.6/debian/control miredo-1.2.6/debian/control --- miredo-1.2.6/debian/control 2013-07-30 21:30:37.000000000 +0000 +++ miredo-1.2.6/debian/control 2013-11-28 09:34:29.000000000 +0000 @@ -6,10 +6,10 @@ automake (>= 1.11), libtool, autopoint, libjudy-dev, libcap2-dev [linux-any], dh-systemd (>= 1.4) -Standards-Version: 3.9.4 +Standards-Version: 3.9.5 Homepage: http://www.remlab.net/miredo/ -Vcs-Git: git://git.debian.org/git/collab-maint/miredo.git -Vcs-Browser: http://git.debian.org/?p=collab-maint/miredo.git +Vcs-Git: git://anonscm.debian.org/collab-maint/miredo.git +Vcs-Browser: http://anonscm.debian.org/gitweb/?p=collab-maint/miredo.git Package: miredo Architecture: any diff -Nru miredo-1.2.6/debian/miredo-server.init miredo-1.2.6/debian/miredo-server.init --- miredo-1.2.6/debian/miredo-server.init 2013-07-30 17:03:38.000000000 +0000 +++ miredo-1.2.6/debian/miredo-server.init 2013-11-28 09:34:29.000000000 +0000 @@ -84,8 +84,11 @@ sleep 1 $0 start ;; + status) + status_of_proc -p "$PIDFILE" "$DAEMON" "$NAME" && exit 0 || exit $? + ;; *) - echo "Usage: $SCRIPTNAME {start|force-start|stop|force-stop|restart|reload|force-reload}" >&2 + echo "Usage: $SCRIPTNAME {start|force-start|stop|force-stop|restart|reload|force-reload|status}" >&2 exit 1 ;; esac diff -Nru miredo-1.2.6/debian/patches/0001-Fix-to-bug-733154.patch miredo-1.2.6/debian/patches/0001-Fix-to-bug-733154.patch --- miredo-1.2.6/debian/patches/0001-Fix-to-bug-733154.patch 1970-01-01 00:00:00.000000000 +0000 +++ miredo-1.2.6/debian/patches/0001-Fix-to-bug-733154.patch 2013-12-27 12:59:09.000000000 +0000 @@ -0,0 +1,25 @@ +From: Tomasz Buchert +Subject: There is a small typo in upstream service file. + This patch fixes only one byte that causes a problem. +Bug-Debian: http://bugs.debian.org/634451 + +--- + misc/miredo.service-in | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/misc/miredo.service-in b/misc/miredo.service-in +index 6b52def..fd8f374 100644 +--- a/misc/miredo.service-in ++++ b/misc/miredo.service-in +@@ -3,7 +3,7 @@ Description=Teredo IPv6 tunneling + After=network.target + + [Service] +-ExecStartpre=@sbindir@/miredo-checkconf -f @sysconfdir@/miredo/miredo.conf ++ExecStartPre=@sbindir@/miredo-checkconf -f @sysconfdir@/miredo/miredo.conf + ExecStart=@sbindir@/miredo -f + ExecReload=/bin/kill -HUP $MAINPID + +-- +1.8.5.1 + diff -Nru miredo-1.2.6/debian/patches/series miredo-1.2.6/debian/patches/series --- miredo-1.2.6/debian/patches/series 1970-01-01 00:00:00.000000000 +0000 +++ miredo-1.2.6/debian/patches/series 2013-12-27 12:56:52.000000000 +0000 @@ -0,0 +1 @@ +0001-Fix-to-bug-733154.patch