eggification
[GroupUserFolder.git] / Products / GroupUserFolder / debian / static / gitweb.js
diff --git a/debian/prerm b/debian/prerm
deleted file mode 100755 (executable)
index 8cd992c..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-#! /bin/sh
-#----------------------------------------------------------------
-# Simple `.prerm' script for zope-* packages.
-# First coded by Luca - De Whiskey's - De Vitis <luca@debian.org>
-#----------------------------------------------------------------
-
-set -e
-
-# summary of how this script can be called:
-#        * <prerm> `remove'
-#        * <old-prerm> `upgrade' <new-version>
-#        * <new-prerm> `failed-upgrade' <old-version>
-#        * <conflictor's-prerm> `remove' `in-favour' <package> <new-version>
-#        * <deconfigured's-prerm> `deconfigure' `in-favour'
-#          <package-being-installed> <version> `removing'
-#          <conflicting-package> <version>
-# for details, see /usr/share/doc/packaging-manual/
-
-# I simply replaced the PACKAGE variable with the subscript
-dpkg --listfiles $(basename $0 .prerm) |
-       awk '$0~/\.py$/ {print $0"c\n" $0"o"}' |
-       xargs rm -f >&2
-
-case "$1" in
-       remove|upgrade|deconfigure)
-       ;;
-       failed-upgrade)
-       ;;
-       *)
-               echo "prerm called with unknown argument \`$1'" >&2
-               exit 0
-       ;;
-esac
-
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
-#DEBHELPER#
-
-exit 0