From 22b56380c1dfc0c659954fe6b571f43022a801f3 Mon Sep 17 00:00:00 2001 From: Rhonda D'Vine Date: Fri, 1 Jan 2016 16:14:28 +0100 Subject: [PATCH] also get rid of postrm file --- debian/{NEWS.Debian => NEWS} | 0 debian/changelog | 5 +++-- debian/postrm | 24 ------------------------ 3 files changed, 3 insertions(+), 26 deletions(-) rename debian/{NEWS.Debian => NEWS} (100%) delete mode 100644 debian/postrm diff --git a/debian/NEWS.Debian b/debian/NEWS similarity index 100% rename from debian/NEWS.Debian rename to debian/NEWS 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 -- 2.39.2