aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornoreply@github.com <noreply@github.com>2019-08-19 07:28:50 +0000
committernoreply@github.com <noreply@github.com>2019-08-19 07:28:50 +0000
commitcc227d005db42eb36d78677c2a61192a4af014c0 (patch)
tree087bf5ef0ca77ad701ec25d34d5c62e30a26ac64
parent95d513c4d4b417afcb251863651e91a7b2563452 (diff)
parentce1888b3bc83e42167de1bd365de395aaf762748 (diff)
downloadcpt-cc227d005db42eb36d78677c2a61192a4af014c0.tar.gz
Merge pull request #42 from kisslinux/fixdeps
kiss: Added function to dynamically set depends FossilOrigin-Name: a78a2cf5f3890c6d8c21f89b84cd6c479c1af959b6166acc6ca39a6fc6c45ca3
-rwxr-xr-xkiss72
1 files changed, 72 insertions, 0 deletions
diff --git a/kiss b/kiss
index 7d6ce54..950aa9c 100755
--- a/kiss
+++ b/kiss
@@ -308,6 +308,77 @@ pkg_strip() {
done
}
+pkg_fixdeps() {
+ # Dynamically look for missing runtime dependencies by checking
+ # each binary and library with 'ldd'. This catches any extra
+ # libraries and or dependencies pulled in by the package's
+ # build suite.
+
+ # Store the package name in a variable as the code below
+ # redefines the argument list.
+ pkg_name=$1
+
+ log "[$1]: Checking 'ldd' for missing dependencies..."
+
+ # Go to the directory containing the built package to
+ # simplify path building.
+ cd "$pkg_dir/$1/$pkg_db/$1"
+
+ # Generate a list of binaries and libraries, false files
+ # will be found however it's faster to get 'ldd' to check
+ # them anyway than to filter them out.
+ set -- $(find "$pkg_dir/$1/usr/bin/" \
+ "$pkg_dir/$1/usr/lib/" -type f 2>/dev/null)
+
+ # Make a copy of the depends file if it exists to have a
+ # reference to 'diff' against.
+ [ -f depends ] && cp -f depends depends-copy
+
+ for file; do
+ # Run 'ldd' on the file and parse each line. The code
+ # then checks to see which packages own the linked
+ # libraries and it prints the result.
+ ldd "$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.
+ dep=$(readlink -f "$KISS_ROOT/${dep##$KISS_ROOT}")
+
+ # Figure out which package owns the file.
+ dep=$(set +f; grep -lFx "${dep##$KISS_ROOT}" \
+ "$KISS_ROOT/$pkg_db/"*/manifest)
+
+ # Extract package name from 'grep' match.
+ dep=${dep%/*}
+ dep=${dep##*/}
+
+ case $dep in
+ # Skip listing these packages as dependencies.
+ musl|gcc|$pkg_name) ;;
+ *) printf '%s\n' "$dep" ;;
+ esac
+ done ||:
+ done >> depends-copy
+
+ # Remove duplicate entries from the new depends file.
+ # This remove duplicate lines looking *only* at the
+ # first column.
+ sort -u -k1,1 depends-copy > depends-new
+
+ # Display a 'diff' of the new dependencies agaisnt
+ # the old ones. '-N' treats non-existent files as blank.
+ diff -N depends depends-new ||:
+
+ # Do some clean up as this required a few temporary files.
+ mv -f depends-new depends
+ rm -f .depends
+}
+
pkg_manifest() (
# Generate the package's manifest file. This is a list of each file
# and directory inside the package. The file is used when uninstalling
@@ -495,6 +566,7 @@ pkg_build() {
: > "$pkg_dir/$pkg/$pkg_db/$pkg/manifest"
pkg_strip "$pkg"
+ pkg_fixdeps "$pkg"
pkg_manifest "$pkg"
pkg_tar "$pkg"