# HG changeset patch # User Paul Boddie # Date 1408200337 -7200 # Node ID ccea965b76b4db934712af75291750a46932ae9f # Parent 55f81ede76f1a9f7850bfd630f806c98554f5ad7 Packaging for kolab-freebusy 1.0.4-0~kolab1 from upstream. diff -r 55f81ede76f1 -r ccea965b76b4 debian/changelog --- a/debian/changelog Sat Feb 22 00:46:46 2014 +0100 +++ b/debian/changelog Sat Aug 16 16:45:37 2014 +0200 @@ -1,3 +1,16 @@ +kolab-freebusy (1.0.4-0~kolab1) unstable; urgency=low + + * New upstream version enabling real-time Free/Busy data directly from IMAP through + proxy authentication. + + -- Jeroen van Meeuwen (Kolab Systems) Wed, 21 May 2014 12:00:22 +0200 + +kolab-freebusy (1.0.2-3~kolab3) unstable; urgency=low + + * Remove apache site configuration on package removal + + -- Jeroen van Meeuwen (Kolab Systems) Wed, 09 Apr 2014 12:00:22 +0200 + kolab-freebusy (1.0.2-3~kolab1) unstable; urgency=low * call dh_install in debian.rules diff -r 55f81ede76f1 -r ccea965b76b4 debian/dirs --- a/debian/dirs Sat Feb 22 00:46:46 2014 +0100 +++ b/debian/dirs Sat Aug 16 16:45:37 2014 +0200 @@ -1,3 +1,3 @@ etc/kolab-freebusy -usr/share/kolab-freebusy/public_html/ +usr/share/kolab-freebusy var/log/kolab-freebusy diff -r 55f81ede76f1 -r ccea965b76b4 debian/install --- a/debian/install Sat Feb 22 00:46:46 2014 +0100 +++ b/debian/install Sat Aug 16 16:45:37 2014 +0200 @@ -1,3 +1,3 @@ lib usr/share/kolab-freebusy/ vendor usr/share/kolab-freebusy/ -web/* usr/share/kolab-freebusy/public_html/ +public_html usr/share/kolab-freebusy/ diff -r 55f81ede76f1 -r ccea965b76b4 debian/links --- a/debian/links Sat Feb 22 00:46:46 2014 +0100 +++ b/debian/links Sat Aug 16 16:45:37 2014 +0200 @@ -1,2 +1,2 @@ etc/kolab-freebusy /usr/share/kolab-freebusy/config -var/log/kolab-freebusy /usr/share/kolab-freebusy/log +var/log/kolab-freebusy /usr/share/kolab-freebusy/logs diff -r 55f81ede76f1 -r ccea965b76b4 debian/prerm --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/debian/prerm Sat Aug 16 16:45:37 2014 +0200 @@ -0,0 +1,20 @@ +#!/bin/bash + +reload_apache() +{ + if apache2ctl configtest 2>/dev/null; then + invoke-rc.d apache2 $1 || true + else + echo "Your apache2 configuration is broken, so we're not restarting it for you." + fi +} + + +case "$1" in + remove) + if [ -e "/etc/apache2/sites-enabled/kolab-freebusy" ]; then + a2ensite kolab-freebusy + fi + reload_apache reload + ;; +esac