From e43c8cd8fd278e67cd9f316a8ddf80aad236bdf1 Mon Sep 17 00:00:00 2001 From: Christian Neukirchen Date: Mon, 15 Sep 2014 00:29:34 +0200 Subject: add xoptdiff --- xoptdiff | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100755 xoptdiff (limited to 'xoptdiff') diff --git a/xoptdiff b/xoptdiff new file mode 100755 index 0000000..205f433 --- /dev/null +++ b/xoptdiff @@ -0,0 +1,22 @@ +#!/bin/bash +# xoptdiff [-q] [PKGS...] - show template options which differ from binary package + +# Defaults to list of installed packages with options. + +q="\t&" +if [ "$1" = -q ]; then + shift + q= +fi + +if [ $# = 0 ]; then + xbps-query -p build-options -s '' | sed 's/^\([^ ]*\)-.*/\1/' +else + echo "$@" +fi | while read pkg; do + comm -23 <(./xbps-src show-options $pkg 2>/dev/null | + sed -n '/\(ON\)/s/ *\([^ ]*\):.*/\1/p; + /\(OFF\)/s/ *\([^ ]*\):.*/~\1/p;' | sort) \ + <(xbps-query -R -p build-options $pkg | tr ' ' '\n' | sort) | + tr '\n' ' ' | sed -n "s/^[^ ].*/$pkg$q\n/p" +done -- cgit 1.4.1