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
Bash
Executable File

#!/bin/sh -e
# List orphaned packages
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.
baseinit|baselayout|gcc|pkgconf|e2fsprogs|musl|\
make|busybox|bzip2|grub|kiss|git)
continue
esac
grep -q "^$pkg$" ./*/depends || printf '%s\n' "$pkg"
done