blob: 3228b1cb6c1c03fd1d07ec9a00a30267eb168b5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/bin/sh -e
#
# kiss-orphans - List orphaned packages.
cd "$KISS_ROOT/var/db/kiss/installed/"
for pkg in *; do
case $pkg in
baseinit|baselayout|gcc|pkgconf|e2fsprogs|musl|\
make|busybox|bzip2|grub|automake|kiss|rsync|git)
continue
esac
grep -q "^$pkg$" ./*/depends || printf '%s\n' "$pkg"
done
printf '\033[1;33m-> \033[m%s\n' "kiss-orphans: lists packages that do not" \
"have any packages depending on them" >&2
|