1
0
mirror of https://codeberg.org/kiss-community/kiss synced 2024-10-02 14:30:54 -06:00
kiss/contrib/kiss-depends-finder

47 lines
1.2 KiB
Plaintext
Raw Normal View History

2020-02-27 13:32:59 -07:00
#!/bin/sh -e
2020-05-01 00:07:20 -06:00
# Find missing dependencies by parsing ldd
2020-02-27 13:32:59 -07:00
# Ignore shellcheck as we want the warning's behavior.
# shellcheck disable=2015
[ "$1" ] && kiss l "${1:-null}" >/dev/null || {
printf 'usage: kiss-depends-finder [pkg]\n'
exit 1
}
2020-02-27 13:32:59 -07:00
db_dir=$KISS_ROOT/var/db/kiss/installed
grep=$(command -v ggrep) || grep='grep'
printf '=> Detected dependencies:\n'
2020-03-11 12:04:07 -06:00
while read -r file; do
2020-02-27 13:32:59 -07:00
[ -d "$KISS_ROOT/$file" ] && continue
ldd "$KISS_ROOT/$file" 2>/dev/null | while read -r dep; do
# Skip lines containing 'ldd'.
[ "${dep##*ldd*}" ] || continue
# Extract the file path from 'ldd' output.
dep=${dep#* => }
dep=${dep% *}
# Traverse symlinks to get the true path to the file.
pkg=$(readlink -f "$KISS_ROOT/${dep##$KISS_ROOT}")
# Figure out which package owns the file.
pkg=$("$grep" -lFx "${pkg##$KISS_ROOT}" "$db_dir/"*/manifest)
pkg=${pkg%/*}
pkg=${pkg##*/}
# Skip listing these packages as dependencies.
case $pkg in
2020-04-18 03:36:38 -06:00
musl|gcc|llvm|"$1") ;;
2020-02-27 13:32:59 -07:00
*) printf '%s\n' "$pkg" ;;
esac
2020-03-22 06:46:38 -06:00
done
2020-02-27 13:32:59 -07:00
done < "$db_dir/$1/manifest" | sort -u
printf '\n=> Package dependencies:\n'
[ -f "$db_dir/$1/depends" ] &&
cat "$db_dir/$1/depends"