From f5dce44bf98218313715bc3b849c9b2120272f0d Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Fri, 5 Jun 2015 07:18:09 +0000 Subject: abuild: add warning when pc:* provider is missing and indicate which package that should provide it and needs a rebuild. --- abuild.in | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'abuild.in') diff --git a/abuild.in b/abuild.in index 3879b5e..9e77ee4 100644 --- a/abuild.in +++ b/abuild.in @@ -1047,13 +1047,16 @@ trace_apk_deps() { # pkg-config depends for i in $(sort -u "$dir"/.needs-pc 2>/dev/null); do - if grep -w "^depend = ${i%[<>=]*}$" "$dir"/.PKGINFO >/dev/null ; then - warning "You can remove '$i' from depends" - continue - fi if subpkg_provides_pc "$i" || cross_compiling \ || $APK info --quiet --installed "pc:$i"; then autodeps="$autodeps pc:$i" + else + warning "Could not find any provider for pc:$i" + local pcfile=/usr/lib/pkgconfig/"${i%%[<>=]*}".pc + if [ -e "$pcfile" ]; then + local owner=$($APK info --quiet --who-owns $pcfile) + warning "${owner:-package providing $pcfile} needs to be rebuilt" + fi fi done -- cgit v1.2.3-60-g2f50