finddeps: Proper quoting, use double brackets

Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
This commit is contained in:
Lukas Fleischer 2011-09-27 09:40:31 +02:00
parent fe2040cd14
commit 4800be25c2
1 changed files with 11 additions and 17 deletions

View File

@ -3,7 +3,10 @@
# finddeps - find packages that depend on a given depname # finddeps - find packages that depend on a given depname
# #
if [ "$1" = '' ]; then match=$1
tld=$(pwd)
if [[ -z $match ]]; then
echo 'usage: finddeps <depname>' echo 'usage: finddeps <depname>'
echo '' echo ''
echo 'Find packages that depend on a given depname.' echo 'Find packages that depend on a given depname.'
@ -12,35 +15,26 @@ if [ "$1" = '' ]; then
exit 0 exit 0
fi fi
match=$1 for d in "$(find . -type d)"; do
tld=$(pwd) cd "$d"
if [[ -f PKGBUILD ]]; then
for d in $(find . -type d); do
cd $d
if [ -f PKGBUILD ]; then
unset pkgname depends makedepends unset pkgname depends makedepends
. PKGBUILD . PKGBUILD
for dep in "${depends[@]}"; do for dep in "${depends[@]}"; do
# lose the version comparator, if any # lose the version comparator, if any
depname=${dep%%[<>=]*} depname=${dep%%[<>=]*}
if [ "$depname" = "$match" ]; then [[ $depname = $match ]] && echo "$d (depends)"
echo "$d (depends)"
fi
done done
for dep in "${makedepends[@]}"; do for dep in "${makedepends[@]}"; do
# lose the version comparator, if any # lose the version comparator, if any
depname=${dep%%[<>=]*} depname=${dep%%[<>=]*}
if [ "$depname" = "$match" ]; then [[ $depname = $match ]] && echo "$d (makedepends)"
echo "$d (makedepends)"
fi
done done
for dep in "${optdepends[@]/:*}"; do for dep in "${optdepends[@]/:*}"; do
# lose the version comaparator, if any # lose the version comaparator, if any
depname=${dep%%[<>=]*} depname=${dep%%[<>=]*}
if [ "$depname" = "$match" ]; then [[ $depname = $match ]] && echo "$d (optdepends)"
echo "$d (optdepends)"
fi
done done
fi fi
cd $tld cd "$tld"
done done