1
0
mirror of https://codeberg.org/kiss-community/kiss synced 2024-07-02 14:02:26 +00:00
kiss/contrib/kiss-orphans

17 lines
405 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
# List orphaned packages
2019-10-30 10:51:48 +00:00
cd "$KISS_ROOT/var/db/kiss/installed/"
for pkg in *; do
case $pkg in
# Exemptions for orphans which aren't really
# orphans. Exclude them from the list.
2020-02-25 20:56:41 +00:00
baseinit|baselayout|gcc|pkgconf|e2fsprogs|musl|\
make|busybox|bzip2|grub|kiss|git)
2020-02-25 20:56:41 +00:00
continue
2019-10-30 10:51:48 +00:00
esac
grep -q "^$pkg$" ./*/depends || printf '%s\n' "$pkg"
done