From c229a696a23bf99c4dd8c4b40d942b74c0da1672 Mon Sep 17 00:00:00 2001 From: Aaron Griffin Date: Wed, 28 Nov 2007 15:10:28 -0600 Subject: Add finddeps script from cvs-arch Signed-off-by: Aaron Griffin --- finddeps | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100755 finddeps (limited to 'finddeps') diff --git a/finddeps b/finddeps new file mode 100755 index 0000000..e80c940 --- /dev/null +++ b/finddeps @@ -0,0 +1,36 @@ +#!/bin/bash + +if [ "$1" = "" ]; then + echo "usage: finddep " + echo "" + echo "run this script from the top-level directory of your ABS tree" + echo "" + exit 0 +fi + +match=$1 +tld=`pwd` + +for d in `find . -type d`; do + cd $d + if [ -f PKGBUILD ]; then + unset pkgname depends makedepends + . PKGBUILD + for dep in "${depends[@]}"; do + # lose the version comaparator, if any + depname=${dep%%[<>=]*} + if [ "$depname" = "$match" ]; then + echo $pkgname + fi + done + for dep in "${makedepends[@]}"; do + # lose the version comaparator, if any + depname=${dep%%[<>=]*} + if [ "$depname" = "$match" ]; then + echo $pkgname + fi + done + fi + cd $tld +done + -- cgit v1.2.3-24-g4f1b