diff options
author | merakor <cem@ckyln.com> | 2020-05-15 10:27:38 +0000 |
---|---|---|
committer | merakor <cem@ckyln.com> | 2020-05-15 10:27:38 +0000 |
commit | 16d89890200d7745ef0ec1999b9098bf6eb4dabc (patch) | |
tree | 2b8a5d383e10f86163277438ea49c95bc8efaec9 /contrib/kiss-depends-finder | |
parent | d88c7c3f97baa5abbb5e7827712c99f10b82c25b (diff) | |
download | cpt-16d89890200d7745ef0ec1999b9098bf6eb4dabc.tar.gz |
contrib: move some utilities to kiss-extra
FossilOrigin-Name: 5fdd54935c99b2416dfc244cf838092ba03423c21c647d74221e65c66923b5e3
Diffstat (limited to 'contrib/kiss-depends-finder')
-rwxr-xr-x | contrib/kiss-depends-finder | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/contrib/kiss-depends-finder b/contrib/kiss-depends-finder deleted file mode 100755 index 31320ed..0000000 --- a/contrib/kiss-depends-finder +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -e -# Find missing dependencies by parsing 'ldd' - -case "$1" in ''|--help|-h) printf '\033[1;33m-> \033[m%s\n' "usage: ${0##*/} <pkg>" ; exit 0 ; esac - -kiss l "$1" >/dev/null - -db_dir=$KISS_ROOT/var/db/kiss/installed -grep=$(command -v ggrep) || grep='grep' - -printf '=> Detected dependencies:\n' - -while read -r file; do - [ -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 - musl|gcc|"$1") ;; - *) printf '%s\n' "$pkg" ;; - esac - done -done < "$db_dir/$1/manifest" | sort -u - -printf '\n=> Package dependencies:\n' - -[ -f "$db_dir/$1/depends" ] && - cat "$db_dir/$1/depends" |