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