2008-01-13 23:22:08 +01:00
|
|
|
#!/bin/bash
|
2008-01-17 19:43:26 +01:00
|
|
|
# Copyright (C) 2007 Siegfried-A. Gevatter <rainct@ubuntu.com>
|
2008-01-13 23:22:08 +01:00
|
|
|
# Based upon a short script by an unknown author
|
|
|
|
# License: GPLv2+
|
|
|
|
#
|
|
|
|
# This script is used to find the reverse build dependencies
|
|
|
|
# that a package has.
|
|
|
|
|
|
|
|
usage() {
|
2008-01-13 23:32:03 +01:00
|
|
|
echo "Usage: $0 [-c|-s] <package name>"
|
|
|
|
echo "Options:"
|
|
|
|
echo " -c: Print only the number of reverse dependencies."
|
|
|
|
echo " -s: Print all reverse dependencies in a single line."
|
2008-01-13 23:22:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if [ "$1" = '-c' ]
|
|
|
|
then
|
|
|
|
count=1
|
|
|
|
shift
|
|
|
|
fi
|
|
|
|
|
2008-01-13 23:32:03 +01:00
|
|
|
if [ "$1" = '-s' ]
|
|
|
|
then
|
|
|
|
single_line=1
|
|
|
|
shift
|
|
|
|
fi
|
|
|
|
|
2008-01-13 23:22:08 +01:00
|
|
|
if [ $# -ne 1 ];
|
|
|
|
then
|
|
|
|
usage
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$1" = '-h' ] || [ "$1" = '--help' ]
|
|
|
|
then
|
|
|
|
usage
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
result=$(
|
|
|
|
grep-dctrl -sPackage -F Build-Depends,Build-Depends-Indep $1 \
|
|
|
|
/var/lib/apt/lists/*Sources | cut -d ' ' -f 2)
|
|
|
|
|
2008-01-13 23:32:03 +01:00
|
|
|
if [ -z $count ] && [ -z $single_line ]
|
2008-01-13 23:22:08 +01:00
|
|
|
then
|
2008-01-13 23:32:03 +01:00
|
|
|
echo "$result"
|
2008-01-13 23:22:08 +01:00
|
|
|
else
|
2008-01-13 23:32:03 +01:00
|
|
|
if [ -z $count ]
|
|
|
|
then
|
|
|
|
echo $result
|
|
|
|
else
|
|
|
|
echo "$result" | wc -l
|
|
|
|
fi
|
2008-01-13 23:22:08 +01:00
|
|
|
fi
|