aboutsummaryrefslogtreecommitdiff
path: root/kiss
diff options
context:
space:
mode:
authordylan.araps@gmail.com <dylan.araps@gmail.com>2019-08-18 20:02:42 +0000
committerdylan.araps@gmail.com <dylan.araps@gmail.com>2019-08-18 20:02:42 +0000
commitc7f7798d6c8e39ce3fe4da8b1879cfa7bd4e113c (patch)
treefc4ae975acb1b6e57b33bbcff8a9c6c23466fad0 /kiss
parent3f8b570ff2fa472180726b240c44ee6dbf0a5870 (diff)
downloadcpt-c7f7798d6c8e39ce3fe4da8b1879cfa7bd4e113c.tar.gz
kiss: Added function to dynamically set depends
FossilOrigin-Name: 0a94409b006c70c21797e996c1f588240af463779471ba5dcd1513229497540d
Diffstat (limited to 'kiss')
-rwxr-xr-xkiss71
1 files changed, 70 insertions, 1 deletions
diff --git a/kiss b/kiss
index 5617f87..846a066 100755
--- a/kiss
+++ b/kiss
@@ -308,6 +308,75 @@ 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.
+ sort depends-copy | uniq > 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 +564,7 @@ pkg_build() {
: > "$pkg_dir/$pkg/$pkg_db/$pkg/manifest"
pkg_strip "$pkg"
+ pkg_fixdeps "$pkg"
pkg_manifest "$pkg"
pkg_tar "$pkg"
@@ -506,7 +576,6 @@ pkg_build() {
done
log "Successfully built package(s)."
- log "Saved build log files to '$log_dir'."
# Turn the explicit packages into a 'list'.
set -- $explicit_packages