mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-03-13 16:11:15 +00:00
71 lines
1.5 KiB
Bash
Executable File
71 lines
1.5 KiB
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Copyright (C) 2007 Siegfried-A. Gevatter <rainct@ubuntu.com>
|
|
# Based upon a short script by an unknown author
|
|
#
|
|
# ##################################################################
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# of the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# See file /usr/share/common-licenses/GPL for more details.
|
|
#
|
|
# ##################################################################
|
|
#
|
|
# This script is used to find the reverse build dependencies
|
|
# that a package has.
|
|
|
|
usage() {
|
|
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."
|
|
}
|
|
|
|
if [ "$1" = '-c' ]
|
|
then
|
|
count=1
|
|
shift
|
|
fi
|
|
|
|
if [ "$1" = '-s' ]
|
|
then
|
|
single_line=1
|
|
shift
|
|
fi
|
|
|
|
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)
|
|
|
|
if [ -z $count ] && [ -z $single_line ]
|
|
then
|
|
echo "$result"
|
|
else
|
|
if [ -z $count ]
|
|
then
|
|
echo $result
|
|
else
|
|
echo "$result" | wc -l
|
|
fi
|
|
fi
|