summarylogtreecommitdiffstats
path: root/xfconf.install
diff options
context:
space:
mode:
Diffstat (limited to 'xfconf.install')
-rw-r--r--xfconf.install24
1 files changed, 0 insertions, 24 deletions
diff --git a/xfconf.install b/xfconf.install
deleted file mode 100644
index 0517e71e3976..000000000000
--- a/xfconf.install
+++ /dev/null
@@ -1,24 +0,0 @@
-post_install() {
- printf "$(tput setaf 1)$(tput bold) ==> WARNING: $(tput sgr0)"
- echo "List of packages which are linked against legacy xfconf (4.12.x)"
- echo "Please rebuild manually."
- echo "pacman -Sb <package>"
- while read pkg; do
- mapfile -t files < <(pacman -Qlq $pkg | grep -v /$)
- grep -Fq 'libxfconf-0.so.2' "${files[@]}" <&- 2>/dev/null && echo " >> $pkg"
- done < <(pacman -Qq | grep -E '(^(xf|libxfce|garcon|tumbler|mousepad|orage|thunar)|xfce|xfwm)' )
-}
-
-post_upgrade() {
- post_install
-}
-
-post_remove() {
- printf "$(tput setaf 1)$(tput bold) ==> WARNING: $(tput sgr0)"
- echo "Packages linked against uninstalled version of xfconf:"
- echo "If you are reverting to xfconf 4.12.x reinstall or rebuild packages in this list"
- while read pkg; do
- mapfile -t files < <(pacman -Qlq $pkg | grep -v /$)
- grep -Fq 'libxfconf-0.so.3' "${files[@]}" <&- 2>/dev/null && echo " >> $pkg"
- done < <(pacman -Qq | grep -E '(^(xf|libxfce|garcon|tumbler|mousepad|orage|thunar)|xfce|xfwm)' )
-}