aboutsummaryrefslogtreecommitdiff
path: root/other/cpt-orphans
blob: 2616059f7088dcac9bfc20aa5daf6ad453346d5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/sh -e
# List orphaned packages

# Copyright (C) 2019-2020 - Dylan Araps.
# Distributed under the terms of the MIT License.

case "$1" in ''|--help|-h)
    printf '\033[1;33m-> \033[m%s\n' \
    "${0##*/}: lists packages that do not have any packages depending on them" >&2
    exit 0
esac

cd "$CPT_ROOT/var/db/cpt/installed/"

for pkg in *; do
    case $pkg in
        baseinit|baselayout|gcc|pkgconf|e2fsprogs|musl|\
        make|busybox|bzip2|grub|cpt|git|linux-headers)
            continue
    esac

    grep -q "^$pkg$" ./*/depends || printf '%s\n' "$pkg"
done