aboutsummaryrefslogtreecommitdiff
path: root/contrib/kiss-depends-finder
diff options
context:
space:
mode:
authordylan.araps@gmail.com <dylan.araps@gmail.com>2020-02-25 20:56:40 +0000
committerdylan.araps@gmail.com <dylan.araps@gmail.com>2020-02-25 20:56:40 +0000
commit3d8badd82230be192b90b50d6550e5f5cea87487 (patch)
tree16b2d922e0a2c5d7c2e4897077601daded403b7b /contrib/kiss-depends-finder
parentdccd4404c4ab677480c0fe0aed0f1d3b82e4210b (diff)
downloadcpt-3d8badd82230be192b90b50d6550e5f5cea87487.tar.gz
contrib: clean up
FossilOrigin-Name: 2ea8ee144f0d0cdaaa8c95a7fedf53d7a3fc8e305ed99d51639a7f4450e475ed
Diffstat (limited to 'contrib/kiss-depends-finder')
-rwxr-xr-xcontrib/kiss-depends-finder46
1 files changed, 0 insertions, 46 deletions
diff --git a/contrib/kiss-depends-finder b/contrib/kiss-depends-finder
deleted file mode 100755
index 3a7f88b..0000000
--- a/contrib/kiss-depends-finder
+++ /dev/null
@@ -1,46 +0,0 @@
-#!/bin/sh -e
-#
-# Find missing dependencies by parsing 'ldd'.
-
-db_dir=$KISS_ROOT/var/db/kiss/installed
-
-# Check if package is installed and exit if it is not.
-[ -d "$db_dir/${1-null}" ] || {
- printf '%s\n' "error: '$1' not installed." >&2
- exit 1
-}
-
-printf '%s\n' "=> Detected dependencies:"
-
-while read -r file; do
- # Skip directories.
- [ -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##*/}
-
- case $pkg in
- # Skip listing these packages as dependencies.
- musl|gcc|$1) ;;
- *) printf '%s\n' "$pkg" ;;
- esac
- done &
-done < "$db_dir/$1/manifest" | sort | uniq
-
-printf '\n%s\n' "=> Package dependencies:"
-
-[ -f "$db_dir/$1/depends" ] &&
- cat "$db_dir/$1/depends"