Some small cleanups to make lintian happy / part 1
authorMichael Prokop <devnull@localhost>
Sun, 11 May 2008 08:59:23 +0000 (10:59 +0200)
committerMichael Prokop <devnull@localhost>
Sun, 11 May 2008 08:59:23 +0000 (10:59 +0200)
debian/changelog
debian/control
debian/postrm [deleted file]
debian/preinst [deleted file]

index 7192467..9ce6438 100644 (file)
@@ -3,6 +3,7 @@ zsh-lovers (0.7.1) unstable; urgency=low
   * Apply patch by Christian Schneider providing some further
     examples, thanks!
   * No longer install zsh.vim.
+  * Some small cleanups to make lintian happy.
 
  -- Michael Prokop <mika@grml.org>  Sun, 11 May 2008 10:55:48 +0200
 
index 3994850..244ac72 100644 (file)
@@ -3,7 +3,7 @@ Section: doc
 Priority: optional
 Maintainer: Michael Prokop <mika@grml.org>
 Build-Depends-Indep: debhelper (>= 4.0.0), asciidoc, fop
-Standards-Version: 3.7.2
+Standards-Version: 3.7.3
 Homepage: http://grml.org/zsh/
 XS-Vcs-hg: http://hg.grml.org/zsh-lovers/
 XS-Vcs-Browser: http://hg.grml.org/zsh-lovers/
diff --git a/debian/postrm b/debian/postrm
deleted file mode 100755 (executable)
index b750dfc..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/sh
-# Filename:      postrm
-# Purpose:       postrm script for package zsh-lovers
-# Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
-# Bug-Reports:   see http://grml.org/bugs/
-# License:       This file is licensed under the GPL v2.
-# Latest change: Son Mai 11 10:54:57 CEST 2008 [mika]
-################################################################################
-
-#set -e
-#
-#case "$1" in
-#    remove|purge)
-#      dpkg-divert --remove --rename --package zsh-lovers --divert /usr/share/vim/syntax/zsh.vim.original \
-#      /usr/share/vim/syntax/zsh.vim
-#     ;;
-#
-#    upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
-#      ;;
-#    *)
-#      echo "postrm called with unknown argument \`$1'" >&2
-#      exit 1
-#esac
-#
-#exit 0
-
-## END OF FILE #################################################################
-
-#DEBHELPER#
diff --git a/debian/preinst b/debian/preinst
deleted file mode 100755 (executable)
index 2ccb69b..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/sh
-# Filename:      preinst
-# Purpose:       preinst script for package zsh-lovers
-# Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
-# Bug-Reports:   see http://grml.org/bugs/
-# License:       This file is licensed under the GPL v2.
-# Latest change: Son Mai 11 10:55:11 CEST 2008 [mika]
-################################################################################
-
-#set -e
-#case "$1" in
-#   install|upgrade)
-#        if [ -f /usr/share/vim/syntax/zsh.vim ] ; then
-#           dpkg-divert --add --rename --package zsh-lovers --divert /usr/share/vim/syntax/zsh.vim.original \
-#         /usr/share/vim/syntax/zsh.vim >/dev/null
-#      fi
-#     ;;
-#   *)
-#     echo "preinst called with unknown argument \`$1'" >&2
-#     exit 1
-#esac
-#
-#exit 0
-
-## END OF FILE #################################################################
-
-#DEBHELPER#