summaryrefslogtreecommitdiffstats
path: root/finddeps
diff options
context:
space:
mode:
authorAaron Griffin <aaronmgriffin@gmail.com>2007-11-28 22:10:28 +0100
committerAaron Griffin <aaronmgriffin@gmail.com>2007-11-29 04:00:07 +0100
commitc229a696a23bf99c4dd8c4b40d942b74c0da1672 (patch)
tree35a84c9180e1c2cf6468b25df82fe1152526d147 /finddeps
parente77986fc084255a5fae45bc0542b4d0b9bd01fb5 (diff)
downloaddevtools-c229a696a23bf99c4dd8c4b40d942b74c0da1672.tar.gz
devtools-c229a696a23bf99c4dd8c4b40d942b74c0da1672.tar.xz
Add finddeps script from cvs-arch
Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
Diffstat (limited to 'finddeps')
-rwxr-xr-xfinddeps36
1 files changed, 36 insertions, 0 deletions
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 <depname>"
+ 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
+