summaryrefslogtreecommitdiffstats
path: root/finddeps
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2007-11-29 04:20:24 +0100
committerDan McGee <dan@archlinux.org>2007-11-29 04:20:24 +0100
commitf05495dfc83739c795b5de9cf18e4cd6f29a7803 (patch)
treefc215294dc4a724d747648ceaef318f407d7c747 /finddeps
parentc229a696a23bf99c4dd8c4b40d942b74c0da1672 (diff)
downloaddevtools-f05495dfc83739c795b5de9cf18e4cd6f29a7803.tar.gz
devtools-f05495dfc83739c795b5de9cf18e4cd6f29a7803.tar.xz
Whitespace fixes/cleanup to all of the scripts
Add the same vim modeline to all the files, as well as cleanup the newly added scripts a bit. If you look at this diff with the -w option, you'll see it really isn't all that significant. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'finddeps')
-rwxr-xr-xfinddeps59
1 files changed, 32 insertions, 27 deletions
diff --git a/finddeps b/finddeps
index e80c940..347a7cb 100755
--- a/finddeps
+++ b/finddeps
@@ -1,36 +1,41 @@
#!/bin/bash
+#
+# finddeps - find packages that depend on a given depname
+#
if [ "$1" = "" ]; then
- echo "usage: finddep <depname>"
- echo ""
- echo "run this script from the top-level directory of your ABS tree"
- echo ""
- exit 0
+ echo "usage: finddeps <depname>"
+ echo ""
+ echo "Find packages that depend on a given depname."
+ echo "Run this script from the top-level directory of your ABS tree."
+ echo ""
+ exit 0
fi
match=$1
-tld=`pwd`
+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
+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
+# vim:ft=sh:ts=4:sw=4:et: