aboutsummaryrefslogtreecommitdiff
path: root/contrib/kiss-orphans
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/kiss-orphans')
-rwxr-xr-xcontrib/kiss-orphans20
1 files changed, 0 insertions, 20 deletions
diff --git a/contrib/kiss-orphans b/contrib/kiss-orphans
deleted file mode 100755
index 7ffc939..0000000
--- a/contrib/kiss-orphans
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh -e
-# List orphaned packages
-
-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 "$KISS_ROOT/var/db/kiss/installed/"
-
-for pkg in *; do
- case $pkg in
- baseinit|baselayout|gcc|pkgconf|e2fsprogs|musl|\
- make|busybox|bzip2|grub|kiss|git|linux-headers)
- continue
- esac
-
- grep -q "^$pkg$" ./*/depends || printf '%s\n' "$pkg"
-done