diff --git a/debian/changelog b/debian/changelog index 91f65922..5877fedd 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +davical (0.9.9.3-1) unstable; urgency=low + + * New upstream release + * Run update-davical-database in postinst (closes: #578357) + * Remove ancient references to rscds package. + + -- Andrew McMillan Sat, 25 Dec 2010 16:07:44 +1300 + davical (0.9.9.3-0) unstable; urgency=low * New upstream release diff --git a/debian/control b/debian/control index 6bdeee5a..4c8c4149 100644 --- a/debian/control +++ b/debian/control @@ -10,9 +10,8 @@ Homepage: http://davical.org/ Package: davical Architecture: all -Depends: ${misc:Depends}, debconf (>= 1.0.32), php5-pgsql, postgresql-client-9.0 | postgresql-client-8.4 | postgresql-client-8.3 | postgresql-client-8.2 | postgresql-client-8.1, libawl-php (= 0.45-0), libdbd-pg-perl, libyaml-perl +Depends: ${misc:Depends}, debconf (>= 1.0.32), php5-pgsql, postgresql-client-9.0 | postgresql-client-8.4 | postgresql-client-8.3 | postgresql-client-8.2 | postgresql-client-8.1, libawl-php (= 0.46-1), libdbd-pg-perl, libyaml-perl Recommends: postgresql (>= 8.1) -Conflicts: rscds Description: The DAViCal CalDAV Server The DAViCal CalDAV Server is designed to trivially store CalDAV calendars, such as those from Evolution, Sunbird/Lightning, diff --git a/debian/davical.postinst b/debian/davical.postinst index 84b82145..0f299b32 100644 --- a/debian/davical.postinst +++ b/debian/davical.postinst @@ -6,18 +6,6 @@ set -e PACKAGE=::package:: [ -n "${DEBUG}" ] && echo "PostInst Parameters: $@" -# -# Migrate directory location to /etc/davical from /etc/rscds -# -if [ -d /etc/rscds -a -d /etc/davical -a ! -h /etc/rscds ]; then - for CNFFILE in /etc/rscds/*; do - if [ -f "${CNFFILE}" ]; then - mv "${CNFFILE}" /etc/davical - fi - done - rmdir /etc/rscds -fi - case $1 in configure) # Attempt to run the database upgrade script with default diff --git a/debian/rscds.docs b/debian/rscds.docs deleted file mode 100644 index f815a06f..00000000 --- a/debian/rscds.docs +++ /dev/null @@ -1,4 +0,0 @@ -README -TODO -INSTALL -CREDITS diff --git a/debian/rscds.install b/debian/rscds.install deleted file mode 100644 index 3ddd3e2a..00000000 --- a/debian/rscds.install +++ /dev/null @@ -1,5 +0,0 @@ -dba htdocs inc locale usr/share/rscds -debian/keepme etc/davical/.keep -config/example-config.php usr/share/doc/rscds/examples/davical-conf.php -config/example-administration.yml usr/share/doc/rscds/examples/administration.yml -config/debug-config.php config/other-config.php usr/share/doc/rscds/examples diff --git a/debian/rscds.postinst b/debian/rscds.postinst deleted file mode 100644 index 36d3cb6c..00000000 --- a/debian/rscds.postinst +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh - -set -e - -[ -n "${DEBUG}" ] && set -o xtrace -PACKAGE=::package:: -[ -n "${DEBUG}" ] && echo "PostInst Parameters: $@" - -# -# Migrate directory location to /etc/davical from /etc/rscds -# -if [ -d /etc/rscds -a -d /etc/davical -a ! -h /etc/rscds ]; then - for CNFFILE in /etc/rscds/*; do - if [ -f "${CNFFILE}" ]; then - mv "${CNFFILE}" /etc/davical - fi - done - rmdir /etc/rscds - ln -s /etc/davical /etc/rscds -fi - -case $1 in - configure) - ;; -esac - -#DEBHELPER# diff --git a/debian/rscds.postrm b/debian/rscds.postrm deleted file mode 100644 index 18b25f50..00000000 --- a/debian/rscds.postrm +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh - -set -e - -[ -n "${DEBUG}" ] && set -o xtrace -PACKAGE=::package:: - -[ -n "${DEBUG}" ] && echo "PostRM Parameters: $@" - -case $1 in - purge) - ;; -esac - -#DEBHELPER# diff --git a/debian/rscds.prerm b/debian/rscds.prerm deleted file mode 100644 index c6daa218..00000000 --- a/debian/rscds.prerm +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh - -set -e - -[ -n "${DEBUG}" ] && set -o xtrace -PACKAGE=::package:: - -[ -n "${DEBUG}" ] && echo "PreRM Parameters: $@" - -case $1 in - remove) - ;; -esac - -#DEBHELPER#