#!/bin/dash # (This script requires either dash or bash due to its use of test -ef.) # Copyright 2020 Collabora Ltd. # SPDX-License-Identifier: MIT # (see "Expat" paragraph in debian/copyright) set -eu # global bug_ref=911225 force= me="$0" need_ldconfig= really=yes verbose= debug () { [ -z "$verbose" ] || echo "DEBUG: $me: $*" >&2 } warning () { echo "WARNING: $me: $*" >&2 } usage () { local status="${1:-2}" if [ "$status" -gt 0 ]; then exec >&2 fi cat <&2 || : if [ -n "$really" ]; then warning "Moving $impl into $removal" install -d "$removal" rm -f "$removal/${impl##*/}" mv "$impl" "$removal/." else warning "Not moving $impl into $removal (--dry-run)" fi echo >&2 need_ldconfig=yes done if [ -z "$found_one" ]; then debug "No stray files found at /lib/$multiarch/$soname.*" fi } main () { local getopt_temp local multiarch local soname getopt_temp="help" getopt_temp="$getopt_temp,bug-ref:" getopt_temp="$getopt_temp,dry-run" getopt_temp="$getopt_temp,force" getopt_temp="$getopt_temp,verbose" getopt_temp="$(getopt -o '' --long "$getopt_temp" -n "$me" -- "$@")" eval "set -- $getopt_temp" while [ "$#" -gt 0 ] do case "$1" in (--dry-run) really= verbose=yes shift ;; (--bug-ref) bug_ref="$2" shift 2 ;; (--force) force=yes shift ;; (--help) usage 0 ;; (--verbose) verbose=yes shift ;; (--) shift break ;; (-*) warning "Unknown option: $1" usage 2 ;; (*) break ;; esac done if [ "$#" -lt 2 ]; then warning "A multiarch tuple and at least one SONAME are required" usage 2 fi multiarch="$1" shift if [ -n "$force" ]; then debug "Using force" elif [ "/usr/lib/$multiarch" -ef "/lib/$multiarch" ]; then # On a merged-/usr system, a new library like libglib-2.0.so.0.5000.0 # will take precedence over a stale library like # libglib-2.0.so.0.4200.0 in the same directory without us needing # to do anything, so the safe route is to avoid doing anything. debug "Merged-/usr system, no need to do anything without --force" return 0 fi for soname in "$@"; do do_soname "$multiarch" "$soname" done if [ -n "$need_ldconfig" ] && [ -n "$really" ]; then warning "Changes were made, running ldconfig..." ldconfig || ldconfig --verbose elif [ -n "$need_ldconfig" ]; then debug "Would run ldconfig, but skipped due to --dry-run" fi } main "$@" # vim:set sw=4 sts=4 et: