summaryrefslogtreecommitdiffstats
path: root/la_remove_up_trigger.function
diff options
context:
space:
mode:
authorThomas Orgis2020-09-08 01:14:56 +0200
committerThomas Orgis2020-09-08 01:28:17 +0200
commitf016d3a1563b38feac284559eaf99d8d4d9080a8 (patch)
tree79eb12a6e69545f3887f7f21b6d8783dc7d7a89c /la_remove_up_trigger.function
parent265221efc753e2ad9d77fca3666a099aaadb41d0 (diff)
libtool-nola, la_remove_up_trigger.function: infrastructure for dropping .la
As long as we do not have central filters for libtool archives, spells that have non-trivial lists of those files need some help: - libtool-nola: Inject that into the libtool calls of the build (sed Makefiles) to have it call the real libtool, but remove the .la files afterwards. - la_remove_up_trigger.function: Use that in UP_TRIGGERS to safely re-cast spells that reference the removed .la files in theirs.
Diffstat (limited to 'la_remove_up_trigger.function')
-rwxr-xr-xla_remove_up_trigger.function32
1 files changed, 32 insertions, 0 deletions
diff --git a/la_remove_up_trigger.function b/la_remove_up_trigger.function
new file mode 100755
index 0000000000..3881f742a3
--- /dev/null
+++ b/la_remove_up_trigger.function
@@ -0,0 +1,32 @@
+#---------------------------------------------------------------------
+## @param check all spells (1) or only direct dependees (0)
+##
+## Check any usage of .la files from this spell by others and
+## trigger re-cast to facilitate removal of libtool archives from
+## a spell.
+#---------------------------------------------------------------------
+
+la_remove_up_trigger()
+{
+ local force_all=$1
+ local la_match=$( gaze install "$SPELL" | grep '\.la$' \
+ | while read f; do printf " -e /%s" "$(basename "$f")"; done )
+
+ message "This is an upgrade which removes libtool archives."
+ message "Determining affected spells and triggering them ..."
+
+ local check_spells
+ if [[ $force_all -gt 0 ]]; then
+ check_spells=$(gaze installed | cut -d: -f1)
+ else
+ check_spells=$(show_up_depends $SPELL 1)
+ fi
+ for other_spell in $check_spells
+ do
+ [[ $SPELL != $other_spell ]] || continue
+ match_count=$( gaze install "$other_spell" | grep '\.la$' \
+ | xargs grep $la_match | wc -l )
+ [[ "$match_count" -gt 0 ]] && up_trigger "$other_spell" cast_self
+ done
+ true
+}