kiss/contrib/kiss-owns

37 lines
676 B
Plaintext
Raw Normal View History

2019-10-30 10:51:48 +00:00
#!/bin/sh -e
2020-05-01 06:07:20 +00:00
# Check which package owns a file
2019-10-30 10:51:48 +00:00
# Follow symlinks to any paths.
case $1 in
/*)
cd -P "${KISS_ROOT:-/}${1%/*}"
[ "$PWD" = / ] && KISS_ROOT=
;;
2019-10-30 10:51:48 +00:00
*/*)
cd -P "${1%/*}"
;;
*)
cd -P .
;;
esac
[ -f "$PWD/${1##*/}" ] || {
printf 'usage: kiss-owns [/path/to/file]\n' >&2
2019-10-30 10:51:48 +00:00
exit 1
}
# Print the full path to the manifest file which contains
# the match to our search.
pkg_owns=$(grep -lFx \
"${PWD#"$KISS_ROOT"}/${1##*/}" \
"$KISS_ROOT/var/db/kiss/installed/"*/manifest)
2019-10-30 10:51:48 +00:00
# Extract the package name from the path above.
pkg_owns=${pkg_owns%/*}
pkg_owns=${pkg_owns##*/}
printf '%s\n' "$pkg_owns"