From: Rhonda D'Vine Date: Fri, 1 Jan 2016 15:14:28 +0000 (+0100) Subject: also get rid of postrm file X-Git-Tag: debian/2.1.2-2~4 X-Git-Url: https://git.deb.at/w?p=pkg%2Fblosxom.git;a=commitdiff_plain;h=22b56380c1dfc0c659954fe6b571f43022a801f3 also get rid of postrm file --- diff --git a/debian/NEWS b/debian/NEWS new file mode 100644 index 0000000..4a645b4 --- /dev/null +++ b/debian/NEWS @@ -0,0 +1,34 @@ +blosxom (2.1.0-1) unstable; urgency=low + + * This update is a major switch, all local patches have been incorporated + into upstream version again. Furthermore, html and rss flavours are now + included in the blosxom script directly and the old 1993 and index + flavours are not included anymore, to get rid of some further historical + annoyances with the packaging. + + * MOST IMPORTANTLY: This update adds a new tag into rss feeds: + which helps to notice duplicates and not let + them appear again for aggregators. Though, for the time of switching it + might mean that your last entries might appear as new when aggregators + (like e.g. PlanetPlanet on planet.debian.org) don't check (which + already should be cached) when finding . This is unfortunate but not + really avoidable. To limit impact a new plugin was added: 00RssLimit which + turns the syndicated feed in only pick up the last 5 entries. + + * The plugin timezone got disabled and gets only installed into a new + /etc/blosxom/plugins-available directory which is the first step to the + planned blosxom-plugins package. If you found it useful and made use of it + just symlink it from the plugins directory. + + -- Rhonda D'Vine Fri, 25 Jul 2008 16:19:49 +0200 + +blosxom (2.0-15) unstable; urgency=low + + * The parameter -f for specifying a different configuration file was dropped + due to security concerns. It was an illuse of the CGI.pm function. + It got replaced by a more flexible option: set the environment variable + BLOSXOM_CONFIG_FILE to an alternative configuration file you want to use. + This is especially useful in server contexts where one can use e.g. + apache's SetEnv directive. + + -- Rhonda D'Vine Fri, 27 Jul 2007 16:49:43 +0200 diff --git a/debian/NEWS.Debian b/debian/NEWS.Debian deleted file mode 100644 index 4a645b4..0000000 --- a/debian/NEWS.Debian +++ /dev/null @@ -1,34 +0,0 @@ -blosxom (2.1.0-1) unstable; urgency=low - - * This update is a major switch, all local patches have been incorporated - into upstream version again. Furthermore, html and rss flavours are now - included in the blosxom script directly and the old 1993 and index - flavours are not included anymore, to get rid of some further historical - annoyances with the packaging. - - * MOST IMPORTANTLY: This update adds a new tag into rss feeds: - which helps to notice duplicates and not let - them appear again for aggregators. Though, for the time of switching it - might mean that your last entries might appear as new when aggregators - (like e.g. PlanetPlanet on planet.debian.org) don't check (which - already should be cached) when finding . This is unfortunate but not - really avoidable. To limit impact a new plugin was added: 00RssLimit which - turns the syndicated feed in only pick up the last 5 entries. - - * The plugin timezone got disabled and gets only installed into a new - /etc/blosxom/plugins-available directory which is the first step to the - planned blosxom-plugins package. If you found it useful and made use of it - just symlink it from the plugins directory. - - -- Rhonda D'Vine Fri, 25 Jul 2008 16:19:49 +0200 - -blosxom (2.0-15) unstable; urgency=low - - * The parameter -f for specifying a different configuration file was dropped - due to security concerns. It was an illuse of the CGI.pm function. - It got replaced by a more flexible option: set the environment variable - BLOSXOM_CONFIG_FILE to an alternative configuration file you want to use. - This is especially useful in server contexts where one can use e.g. - apache's SetEnv directive. - - -- Rhonda D'Vine Fri, 27 Jul 2007 16:49:43 +0200 diff --git a/debian/changelog b/debian/changelog index 7aa7c31..4a66e67 100644 --- a/debian/changelog +++ b/debian/changelog @@ -9,9 +9,10 @@ blosxom (2.1.2-2) UNRELEASED; urgency=medium * Add debian/gbp.conf declaring non-default git branch names. [ Rhonda D'Vine ] - * Get rid of the ancient preinst file (closes: #512389) + * Get rid of the ancient preinst & postrm files (closes: #512389) * Convert debian/rules to dh style. - * Switch to source format 3.0 (quilt). + * Switch to source format 3.0 (quilt): + - Rename debian/NEWS.Debian to debian/NEWS. -- Axel Beckert Sat, 07 Feb 2015 13:54:51 +0100 diff --git a/debian/postrm b/debian/postrm deleted file mode 100644 index 1d2d137..0000000 --- a/debian/postrm +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# postrm script for blosxom -# copyright 2007-2008 by Rhonda D'Vine -# Licenced in the same way as blosxom itself - -set -e - -# cleanup for old flavors that got installed by packages prior to 2.1.0 -case "$1" in - purge) - if [ -d /var/lib/blosxom/data/flavours ] ; then - cd /var/lib/blosxom/data/flavours - for i in content_type.1993 content_type.html content_type.index \ - date.1993 date.html date.index \ - foot.1993 foot.html foot.index \ - head.1993 head.html head.index \ - story.1993 story.html story.index ; do - test ! -L $i || rm $i - done - fi - ;; -esac - -exit 0