mirror of
https://github.com/void-linux/void-packages.git
synced 2025-09-24 12:45:11 +02:00
This lists changes per-trigger, triggers that changed the same thing are listed under the same group appstream-cache: gconf-schemas: gdk-pixbuf-loaders: gsettings-schemas: kernel-hooks: mkdirs: pango-modules: register-shell: update-dektopdb: update-desktopdb: x11-fonts: - remove useless PATH expansion that is already done in the hook script. gtk-icon-cache: gtk-immodules: gtk3-immodules: - remove useless PATH expansion that is already done in the hook script. - use exit 0 instead of break hwdb.d: - check if tooling is available info-files - Remove support for using host tooling mimedb: - remove useless PATH expansion that is already done in the hook script. - check if tooling is available xml-catalog: - remove useless PATH expansion that is already done in the hook script. - add a xmlcatmgr variable so that the first check not always fails [ci skip]
43 lines
871 B
Bash
Executable file
43 lines
871 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# This is a reduced version for the pango-modules trigger which is now
|
|
# obsolete upstream.
|
|
# The pango-modulesquery binary was removed from upstream and isn't provided
|
|
# anymore by our 'pango' package
|
|
#
|
|
# This reduced version just removes the pango.modules file if it exists during
|
|
# the removal of the 'pango' package
|
|
#
|
|
# Arguments: $ACTION = [run/targets]
|
|
# $TARGET = [post-remove]
|
|
# $PKGNAME
|
|
# $VERSION
|
|
# $UPDATE = [yes/no]
|
|
#
|
|
ACTION="$1"
|
|
TARGET="$2"
|
|
PKGNAME="$3"
|
|
VERSION="$4"
|
|
UPDATE="$5"
|
|
|
|
pango_modules=etc/pango/pango.modules
|
|
|
|
case "$ACTION" in
|
|
targets)
|
|
echo "post-remove"
|
|
;;
|
|
run)
|
|
if [ "$TARGET" = "post-remove" -a "${PKGNAME}" = "pango" ]; then
|
|
if [ -f ${pango_modules} ]; then
|
|
echo "Removing pango modules file..."
|
|
rm -f ${pango_modules}
|
|
fi
|
|
break
|
|
fi
|
|
;;
|
|
*)
|
|
exit 0
|
|
;;
|
|
esac
|
|
|
|
exit 0
|