diff options
author | Toyam Cox <Vaelatern@voidlinux.org> | 2019-06-20 14:23:36 -0400 |
---|---|---|
committer | Toyam Cox <Vaelatern@voidlinux.org> | 2019-06-20 14:23:36 -0400 |
commit | a609698fed931f4e8d132969404151ad7724c523 (patch) | |
tree | ab3e0c43b0b5a53f4b1fe17daaf297a712d25aec | |
parent | b52bb5fa18f67c3cd71a169548c03c70fb3f4f6d (diff) | |
download | xtools-a609698fed931f4e8d132969404151ad7724c523.tar.gz xtools-a609698fed931f4e8d132969404151ad7724c523.tar.xz xtools-a609698fed931f4e8d132969404151ad7724c523.zip |
xmindep: Removed, is now considered the wrong approach
-rwxr-xr-x | xmindep | 10 |
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 |