1
0
mirror of https://codeberg.org/kiss-community/kiss synced 2024-07-02 14:02:26 +00:00
kiss/contrib/kiss-orphans
2020-09-22 15:11:30 +03:00

18 lines
406 B
Bash
Executable File

#!/bin/sh -e
# List orphaned packages
cd "$KISS_ROOT/var/db/kiss/installed/"
set -- *
for pkg in *; do
case $pkg in
# Exemptions for orphans which aren't really
# orphans. Exclude them from the list.
baseinit|baselayout|gcc|e2fsprogs|musl|\
make|busybox|bzip2|grub|kiss|git)
continue
esac
grep -q "^$pkg$" ./*/depends || printf '%s\n' "$pkg"
done