[SCM] libgig/master: Remove postrm postinst scripts.
mira-guest at users.alioth.debian.org
mira-guest at users.alioth.debian.org
Tue Nov 15 22:40:58 UTC 2016
The following commit has been merged in the master branch:
commit c0e6171bec4e474063705e0e3accf3c265bc3cba
Author: Jaromír Mikeš <mira.mikes at seznam.cz>
Date: Tue Nov 15 23:34:14 2016 +0100
Remove postrm postinst scripts.
diff --git a/debian/libgig7.postinst b/debian/libgig7.postinst
deleted file mode 100644
index a213d72..0000000
--- a/debian/libgig7.postinst
+++ /dev/null
@@ -1,41 +0,0 @@
-#!/bin/sh
-# postinst script for libgig
-#
-# see: dh_installdeb(1)
-
-set -e
-
-# summary of how this script can be called:
-# * <postinst> `configure' <most-recently-configured-version>
-# * <old-postinst> `abort-upgrade' <new version>
-# * <conflictor's-postinst> `abort-remove' `in-favour' <package>
-# <new-version>
-# * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
-# <failed-install-package> <version> `removing'
-# <conflicting-package> <version>
-# for details, see http://www.debian.org/doc/debian-policy/ or
-# the debian-policy package
-#
-
-case "$1" in
- configure)
- echo '/usr/lib/libgig' >> /etc/ld.so.conf
- ldconfig
- ;;
-
- 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/libgig7.postrm b/debian/libgig7.postrm
deleted file mode 100644
index 3f641d7..0000000
--- a/debian/libgig7.postrm
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/bin/sh
-# postrm script for libgig
-#
-# see: dh_installdeb(1)
-
-set -e
-
-# summary of how this script can be called:
-# * <postrm> `remove'
-# * <postrm> `purge'
-# * <old-postrm> `upgrade' <new-version>
-# * <new-postrm> `failed-upgrade' <old-version>
-# * <new-postrm> `abort-install'
-# * <new-postrm> `abort-install' <old-version>
-# * <new-postrm> `abort-upgrade' <old-version>
-# * <disappearer's-postrm> `disappear' <r>overwrit>r> <new-version>
-# 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)
-
- sed < /etc/ld.so.conf > /etc/ld.so.conf.2 '/libgig/d'
- mv /etc/ld.so.conf.2 /etc/ld.so.conf
- ldconfig
- ;;
-
- *)
- 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
--
libgig packaging
More information about the pkg-multimedia-commits
mailing list