117 lines
3.2 KiB
Bash
Executable File
117 lines
3.2 KiB
Bash
Executable File
#!/bin/sh -efu
|
|
#
|
|
# Copyright (C) 2000-2006 Dmitry V. Levin <ldv@altlinux.org>
|
|
# Copyright (C) 2007 Alexey Tourbin <at@altlinux.org>
|
|
#
|
|
# find-provides - generate list of linux-specific package provides.
|
|
# Inspired by tool with same name from RPM distribution.
|
|
#
|
|
# 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.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
#
|
|
|
|
. @RPMCONFIGDIR@/functions
|
|
ValidateBuildRoot
|
|
|
|
workdir=
|
|
exit_handler()
|
|
{
|
|
local rc=$?
|
|
trap - EXIT
|
|
[ -z "$workdir" ] || rm -rf "$workdir"
|
|
cat >/dev/null
|
|
exit $rc
|
|
}
|
|
|
|
trap exit_handler EXIT HUP INT QUIT PIPE TERM
|
|
|
|
methods=$(SetupMethods prov "$RPM_FINDPROV_METHOD")
|
|
if [ -z "$methods" ]; then
|
|
Info "AutoProv disabled, nothing to do"
|
|
exit 0
|
|
fi
|
|
|
|
workdir=$(mktemp -dt "$PROG".XXXXXXXX)
|
|
|
|
# filter file list through TOPDIR and SKIPLIST patterns
|
|
while IFS= read -r f; do
|
|
fname="${f#$RPM_BUILD_ROOT}"
|
|
if [ -n "${RPM_FINDPROV_TOPDIR-}" ] && [ -z "${fname%%$RPM_FINDPROV_TOPDIR/*}" ]; then
|
|
Debug "skip $f due to RPM_FINDPROV_TOPDIR=$RPM_FINDPROV_TOPDIR"
|
|
continue
|
|
fi
|
|
if [ -n "${RPM_FINDPROV_SKIPLIST-}" ]; then
|
|
for skip in $RPM_FINDPROV_SKIPLIST; do
|
|
if [ -z "${fname##$skip}" ]; then
|
|
Debug "skip $f due to RPM_FINDPROV_SKIPLIST pattern $skip"
|
|
continue 2
|
|
fi
|
|
done
|
|
fi
|
|
if [ -L "$f" ]; then
|
|
to="$(readlink "$f")"
|
|
if [ -n "$to" -a -z "${to##/*}" ]; then
|
|
Info "absolute symbolic link $f -> $to is not going to provide anything"
|
|
continue
|
|
elif ! [ -e "$f" ]; then
|
|
Info "broken symbolic link $f -> $to is not going to provide anything"
|
|
continue
|
|
fi
|
|
fi
|
|
echo "$f"
|
|
done >"$workdir"/files
|
|
|
|
if ! [ -s "$workdir"/files ]; then
|
|
Info "empty file list, nothing to do"
|
|
exit 0
|
|
fi
|
|
|
|
# filter file list through file(1) to append types (dereference symlinks)
|
|
if ! file -L -NF$'\t' -f "$workdir"/files >"$workdir"/files+types; then
|
|
sed -n '/\t *ERROR:/p' "$workdir"/files+types >&2
|
|
exit 1
|
|
fi
|
|
|
|
found=
|
|
RunMethod()
|
|
{
|
|
local exe="$1"; shift
|
|
local filter="$exe".files
|
|
if ! [ -x "$filter" ]; then
|
|
# XXX should be Fatal
|
|
Info "$filter not available"
|
|
return
|
|
fi
|
|
local filelist="$workdir/${exe##*/}".files
|
|
local deplist="$workdir/${exe##*/}".deps
|
|
Debug "running $filter"
|
|
"$filter" <"$workdir"/files+types >"$filelist"
|
|
Verbose "$filter: $(wc -l <"$filelist") files"
|
|
[ -s "$filelist" ] || return 0
|
|
# XXX validate $filelist
|
|
Debug "running $exe"
|
|
"$exe" <"$filelist" >"$deplist"
|
|
if [ -s "$deplist" ]; then
|
|
LC_COLLATE=C sort -u -o "$deplist" "$deplist"
|
|
Verbose "$exe: $(wc -l <"$deplist") dependencies"
|
|
found=1
|
|
else
|
|
rm -f "$deplist"
|
|
fi
|
|
}
|
|
|
|
Info "running scripts ($methods)"
|
|
RunMethods prov "$methods" RunMethod
|
|
[ -z "$found" ] || (set +f; LC_COLLATE=C sort -u -m "$workdir"/*.deps) || exit 1
|