summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Unit 193 <unit193@ubuntu.com>2016-09-12 11:25:21 -0400
committerLibravatar Unit 193 <unit193@ubuntu.com>2016-09-12 11:25:21 -0400
commit5151660a372b324537aed503be2c8df1169d209b (patch)
treebd2c607aa23e1f7b03828d77480e9f16eba39342
parent8ec5d5f3a7be904df0b8107ff9f2f5d17a4e6398 (diff)
downloadicebox-artwork-5151660a372b324537aed503be2c8df1169d209b.tar.bz2
icebox-artwork-5151660a372b324537aed503be2c8df1169d209b.tar.xz
icebox-artwork-5151660a372b324537aed503be2c8df1169d209b.tar.zst
Drop transitional packages, no longer needed.
-rw-r--r--debian/control28
-rwxr-xr-xdebian/plymouth-theme-openbox-logo.prerm54
-rwxr-xr-xdebian/plymouth-theme-openbox-text.prerm54
3 files changed, 0 insertions, 136 deletions
diff --git a/debian/control b/debian/control
index bacd32a..26dbe21 100644
--- a/debian/control
+++ b/debian/control
@@ -39,31 +39,3 @@ Description: graphical boot animation and logger - icebox-text theme
.
This package contains the default icebox-text theme used when no support for
a graphical theme is found on your system.
-
-Package: openbox-wallpapers
-Section: oldlibs
-Priority: extra
-Architecture: all
-Depends: ${misc:Depends}, icebox-wallpapers
-Description: transitional dummy package for icebox-wallpapers
- This is a transitional package to ease upgrades to icebox-wallpapers.
- It can be safely removed.
-
-Package: plymouth-theme-openbox-logo
-Section: oldlibs
-Priority: extra
-Architecture: all
-Depends: ${misc:Depends}, plymouth-theme-icebox-logo
-Description: transitional dummy package for plymouth-theme-icebox-logo
- This is a transitional package to ease upgrades to plymouth-theme-icebox-logo.
- It can be safely removed.
-
-Package: plymouth-theme-openbox-text
-Section: oldlibs
-Priority: extra
-Architecture: all
-Depends: ${misc:Depends}, plymouth-theme-icebox-text
-Description: transitional dummy package for plymouth-theme-icebox-text
- This is a transitional package to ease upgrades to plymouth-theme-icebox-text.
- It can be safely removed.
-
diff --git a/debian/plymouth-theme-openbox-logo.prerm b/debian/plymouth-theme-openbox-logo.prerm
deleted file mode 100755
index e95659d..0000000
--- a/debian/plymouth-theme-openbox-logo.prerm
+++ /dev/null
@@ -1,54 +0,0 @@
-#!/bin/sh
-# This script can be called in the following ways:
-#
-# After the package was removed:
-# <postrm> remove
-#
-# After the package was purged:
-# <postrm> purge
-#
-# After the package was upgraded:
-# <old-postrm> upgrade <new-version>
-# if that fails:
-# <new-postrm> failed-upgrade <old-version>
-#
-#
-# After all of the packages files have been replaced:
-# <postrm> disappear <overwriting-package> <version>
-#
-#
-# If preinst fails during install:
-# <new-postrm> abort-install
-#
-# If preinst fails during upgrade of removed package:
-# <new-postrm> abort-install <old-version>
-#
-# If preinst fails during upgrade:
-# <new-postrm> abort-upgrade <old-version>
-
-set -e
-
-if dpkg --compare-versions "$2" lt-nl "15.10.0~"; then
- update-alternatives \
- --remove default.plymouth /lib/plymouth/themes/openbox-logo/openbox-logo.plymouth
-
- if which update-initramfs >/dev/null 2>&1
- then
- update-initramfs -u
- fi
-fi
-
-case "$1" in
- remove)
- update-alternatives \
- --remove default.plymouth /lib/plymouth/themes/openbox-logo/openbox-logo.plymouth
-
- if which update-initramfs >/dev/null 2>&1
- then
- update-initramfs -u
- fi
- ;;
-esac
-
-#DEBHELPER#
-exit 0
diff --git a/debian/plymouth-theme-openbox-text.prerm b/debian/plymouth-theme-openbox-text.prerm
deleted file mode 100755
index 20a0e45..0000000
--- a/debian/plymouth-theme-openbox-text.prerm
+++ /dev/null
@@ -1,54 +0,0 @@
-#!/bin/sh
-# This script can be called in the following ways:
-#
-# After the package was removed:
-# <postrm> remove
-#
-# After the package was purged:
-# <postrm> purge
-#
-# After the package was upgraded:
-# <old-postrm> upgrade <new-version>
-# if that fails:
-# <new-postrm> failed-upgrade <old-version>
-#
-#
-# After all of the packages files have been replaced:
-# <postrm> disappear <overwriting-package> <version>
-#
-#
-# If preinst fails during install:
-# <new-postrm> abort-install
-#
-# If preinst fails during upgrade of removed package:
-# <new-postrm> abort-install <old-version>
-#
-# If preinst fails during upgrade:
-# <new-postrm> abort-upgrade <old-version>
-
-set -e
-
-if dpkg --compare-versions "$2" lt-nl "15.10.0~"; then
- update-alternatives \
- --remove text.plymouth /lib/plymouth/themes/openbox-text/openbox-text.plymouth
-
- if which update-initramfs >/dev/null 2>&1
- then
- update-initramfs -u
- fi
-fi
-
-case "$1" in
- remove)
- update-alternatives \
- --remove text.plymouth /lib/plymouth/themes/openbox-text/openbox-text.plymouth
-
- if which update-initramfs >/dev/null 2>&1
- then
- update-initramfs -u
- fi
- ;;
-esac
-
-#DEBHELPER#
-exit 0