aboutsummaryrefslogtreecommitdiff
path: root/other/kiss-orphans
diff options
context:
space:
mode:
authorCem Keylan <cem@ckyln.com>2020-07-25 11:20:55 +0300
committerCem Keylan <cem@ckyln.com>2020-07-25 11:20:55 +0300
commit47a3723632b82a0d3caf79dbe8ada1eae60dd976 (patch)
tree2c41b08502e35378af35fcda7622d3eaab776420 /other/kiss-orphans
parenta80ec35b458ad1616758aff8257d42b3b51ed17e (diff)
downloadcpt-extra-47a3723632b82a0d3caf79dbe8ada1eae60dd976.tar.gz
rename to cpt-extra
Diffstat (limited to 'other/kiss-orphans')
-rwxr-xr-xother/kiss-orphans23
1 files changed, 0 insertions, 23 deletions
diff --git a/other/kiss-orphans b/other/kiss-orphans
deleted file mode 100755
index fd8b9d1..0000000
--- a/other/kiss-orphans
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/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 "$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