summary refs log tree commit diff
diff options
context:
space:
mode:
-rwxr-xr-xxmindep10
1 files changed, 0 insertions, 10 deletions
diff --git a/xmindep b/xmindep
deleted file mode 100755
index e758b06..0000000
--- a/xmindep
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-# xmindep PKGS... - minimize list of PKGS by removing implicit dependencies
-
-rdeps() {
-	for pkg; do
-		xbps-query --fulldeptree -Rx $pkg
-	done | xargs -d'\n' -rn1 xbps-uhelper getpkgname | sort -u
-}
-
-printf '%s\n' "$@" | grep -Fvx -e "$(rdeps "$@")" | sort -u | fmt