From: Kevin Rosenberg Date: Mon, 9 Feb 2009 09:53:17 +0000 (-0700) Subject: Automated commit for debian release 0.8.2-1 X-Git-Tag: debian-0.8.2-1^0 X-Git-Url: http://git.kpe.io/?p=wdq2wav.git;a=commitdiff_plain;h=e90ca2650b36325e0da0c9bf201069f0abf71ed1 Automated commit for debian release 0.8.2-1 --- diff --git a/debian/copyright b/debian/copyright index cb90512..75ecf37 100644 --- a/debian/copyright +++ b/debian/copyright @@ -11,5 +11,5 @@ Copyright (C) 2003 by Kevin M. Rosenberg This program is licensed under the GNU General Public License. A copy of this license is in your Debian file system as -/usr/share/common-licenses/GPL. +/usr/share/common-licenses/GPL-3. diff --git a/debian/postinst b/debian/postinst deleted file mode 100644 index 5db5772..0000000 --- a/debian/postinst +++ /dev/null @@ -1,48 +0,0 @@ -#! /bin/sh -# postinst script for wdq2wav -# -# see: dh_installdeb(1) - -set -e - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure) - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/debian/postrm b/debian/postrm deleted file mode 100644 index 8da4652..0000000 --- a/debian/postrm +++ /dev/null @@ -1,38 +0,0 @@ -#! /bin/sh -# postrm script for wdq2wav -# -# see: dh_installdeb(1) - -set -e - -# summary of how this script can be called: -# * `remove' -# * `purge' -# * `upgrade' -# * `failed-upgrade' -# * `abort-install' -# * `abort-install' -# * `abort-upgrade' -# * `disappear' overwrit>r> -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - - -case "$1" in - purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) - - - ;; - - *) - echo "postrm called with unknown argument \`$1'" >&2 - exit 1 - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 diff --git a/debian/preinst b/debian/preinst deleted file mode 100644 index 199f4c9..0000000 --- a/debian/preinst +++ /dev/null @@ -1,44 +0,0 @@ -#! /bin/sh -# preinst script for wdq2wav -# -# see: dh_installdeb(1) - -set -e - -# summary of how this script can be called: -# * `install' -# * `install' -# * `upgrade' -# * `abort-upgrade' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - - -case "$1" in - install|upgrade) -# if [ "$1" = "upgrade" ] -# then -# start-stop-daemon --stop --quiet --oknodo \ -# --pidfile /var/run/wdq2wav.pid \ -# --exec /usr/sbin/wdq2wav 2>/dev/null || true -# fi - ;; - - abort-upgrade) - ;; - - *) - echo "preinst called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/debian/prerm b/debian/prerm deleted file mode 100644 index 9cb9a7d..0000000 --- a/debian/prerm +++ /dev/null @@ -1,39 +0,0 @@ -#! /bin/sh -# prerm script for wdq2wav -# -# see: dh_installdeb(1) - -set -e - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - - -case "$1" in - remove|upgrade|deconfigure) -# install-info --quiet --remove /usr/info/wdq2wav.info.gz - ;; - failed-upgrade) - ;; - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - -