diff -u courier-authlib-0.61.0/debian/control courier-authlib-0.61.0/debian/control --- courier-authlib-0.61.0/debian/control +++ courier-authlib-0.61.0/debian/control @@ -1,7 +1,8 @@ Source: courier-authlib Section: mail Priority: optional -Maintainer: Stefan Hornburg (Racke) +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: Stefan Hornburg (Racke) Standards-Version: 3.6.1.1 Build-Depends: libmysqlclient-dev | libmysqlclient15-dev, libpam0g-dev, libgdbm-dev | libgdbmg1-dev, debhelper (>= 4.1.16), libldap-dev, libsasl2-dev | libsasl-dev, libpq-dev, libtool, libltdl3-dev, procps, expect diff -u courier-authlib-0.61.0/debian/changelog courier-authlib-0.61.0/debian/changelog --- courier-authlib-0.61.0/debian/changelog +++ courier-authlib-0.61.0/debian/changelog @@ -1,3 +1,10 @@ +courier-authlib (0.61.0-1+lenny1ubuntu1) jaunty; urgency=low + + * Merge from debian unstable (LP: #309837), remaining changes: + -debian/courier-authdaemon.init: recreate /var/run/courier/authdaemon. + + -- Manny Vindiola Fri, 19 Dec 2008 16:40:29 -0500 + courier-authlib (0.61.0-1+lenny1) testing-security; urgency=high * Non-maintainer upload by the security team @@ -7,6 +14,13 @@ -- Steffen Joeris Mon, 08 Dec 2008 13:48:12 +0000 +courier-authlib (0.61.0-1ubuntu1) intrepid; urgency=low + + * Merge from Debian unstable (LP: #239643), remaining Ubuntu changes: + - debian/courier-authdaemon.init: recreate /var/run/courier/authdaemon. + + -- Luca Falavigna Sat, 02 Aug 2008 14:58:09 +0200 + courier-authlib (0.61.0-1) unstable; urgency=low * new upstream release @@ -33,6 +47,21 @@ -- Stefan Hornburg (Racke) Mon, 7 Apr 2008 13:21:37 +0200 +courier-authlib (0.60.1-1ubuntu2) hardy; urgency=low + + * No-change rebuild against libldap-2.4-2. + + -- Steve Langasek Thu, 27 Mar 2008 22:37:23 +0000 + +courier-authlib (0.60.1-1ubuntu1) hardy; urgency=low + + * Merge from Debian unstable (LP: #159633). Remaining Ubuntu changes: + - debian/courier-authdaemon.init: recreate + /var/run/courier/authdaemon + - Modify Maintainer value to match Debian-Maintainer-Field Spec + + -- Stefan Ebner Sun, 21 Oct 2007 18:55:04 +0200 + courier-authlib (0.60.1-1) unstable; urgency=low * new upstream release @@ -45,6 +74,15 @@ -- Stefan Hornburg (Racke) Sun, 30 Sep 2007 21:58:35 +0200 +courier-authlib (0.59.3-2ubuntu1) gutsy; urgency=low + + * Merge from Debian unstable. Remaining Ubuntu changes: + - debian/courier-authdaemon.init: recreate + /var/run/courier/authdaemon + - Modify Maintainer value to match Debian-Maintainer-Field Spec + + -- Andrea Veri Thu, 21 Jun 2007 23:33:42 +0200 + courier-authlib (0.59.3-2) unstable; urgency=low * dropped alternative build dependency on postgresql-dev @@ -52,6 +90,15 @@ -- Stefan Hornburg (Racke) Thu, 21 Jun 2007 20:26:38 +0200 +courier-authlib (0.59.3-1ubuntu1) gutsy; urgency=low + + * Merge from Debian unstable. Remaining Ubuntu changes: + - debian/courier-authdaemon.init: recreate + /var/run/courier/authdaemon + * DebianMaintainerField update + + -- Soren Hansen Tue, 1 May 2007 13:42:10 +0200 + courier-authlib (0.59.3-1) unstable; urgency=low * new upstream release @@ -64,6 +111,14 @@ -- Stefan Hornburg (Racke) Wed, 17 Jan 2007 11:58:29 +0100 +courier-authlib (0.58-5ubuntu1) feisty; urgency=low + + * Merge from Debian unstable, remaining change: + + debian/courier-authdaemon.init: recreate + /var/run/courier/authdaemon + + -- Soren Hansen Sat, 2 Dec 2006 03:35:16 +0100 + courier-authlib (0.58-5) unstable; urgency=low * added dependency and build dependency on expect (Closes: #400812, @@ -71,6 +126,14 @@ -- Stefan Hornburg (Racke) Wed, 29 Nov 2006 11:42:45 +0100 +courier-authlib (0.58-4ubuntu1) edgy; urgency=low + + * Merge from Debian unstable. Remaining changes: + + debian/courier-authdaemon.init: recreate + /var/run/courier/authdaemon + + -- Michael Bienia Wed, 27 Sep 2006 00:58:55 +0200 + courier-authlib (0.58-4) unstable; urgency=medium * call dh_makeshlibs during binary-arch target in order to get proper shlib @@ -91,6 +154,13 @@ -- Margarita Manterola Tue, 1 Aug 2006 16:45:07 -0300 +courier-authlib (0.58-3ubuntu1) edgy; urgency=low + + * Initial upload to Ubuntu: + - replace init script with LSB init script from original courier source. + + -- Scott James Remnant Tue, 11 Jul 2006 21:00:57 +0100 + courier-authlib (0.58-3) unstable; urgency=low * remove all Courier runtime files on purge of courier-authdaemon diff -u courier-authlib-0.61.0/debian/courier-authdaemon.init courier-authlib-0.61.0/debian/courier-authdaemon.init --- courier-authlib-0.61.0/debian/courier-authdaemon.init +++ courier-authlib-0.61.0/debian/courier-authdaemon.init @@ -13,6 +13,14 @@ sysconfdir="/etc/courier" sbindir="${exec_prefix}/sbin" daemonscript="${sbindir}/authdaemond" +run_dir="/var/run/courier/authdaemon" + +# create /var/run if it does not already exist +if [ ! -d ${run_dir} ]; then + mkdir -p ${run_dir} + chown daemon:daemon ${run_dir} /var/run/courier + chmod 750 ${run_dir} +fi . /lib/lsb/init-functions