Skip to content

Commit

Permalink
explicitely flag blocked packages and circular dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
DerDakon authored and kensington committed Dec 5, 2017
1 parent 67aa8bd commit aa9ee18
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions templates/revdep-header
Expand Up @@ -15,6 +15,10 @@ function tatt_pkg_error
echo "USE='${USE}' : USE dependencies not satisfied (probably) for ${1:?}" >> @@REPORTFILE@@
elif [[ "${eout}" =~ keyword\ changes ]]; then
echo "USE='${USE}' : unkeyworded dependencies (probably) for ${1:?}" >> @@REPORTFILE@@
elif [[ "${eout}" =~ Error:\ circular\ dependencies: ]]; then
echo "USE='${USE}' : circular dependencies (probably) for ${1:?}" >> @@REPORTFILE@@
elif [[ "${eout}" =~ \[blocks\ B ]]; then
echo "USE='${USE}' : blocked packages (probably) for ${1:?}" >> @@REPORTFILE@@
else
echo "USE='${USE}' FEATURES='${FEATURES}' failed for ${1:?}" >> @@REPORTFILE@@
fi
Expand Down
4 changes: 4 additions & 0 deletions templates/use-header
Expand Up @@ -15,6 +15,10 @@ function tatt_pkg_error
echo "USE='${USE}' : USE dependencies not satisfied (probably) for ${1:?}" >> @@REPORTFILE@@
elif [[ "${eout}" =~ keyword\ changes ]]; then
echo "USE='${USE}' : unkeyworded dependencies (probably) for ${1:?}" >> @@REPORTFILE@@
elif [[ "${eout}" =~ Error:\ circular\ dependencies: ]]; then
echo "USE='${USE}' : circular dependencies (probably) for ${1:?}" >> @@REPORTFILE@@
elif [[ "${eout}" =~ \[blocks\ B ]]; then
echo "USE='${USE}' : blocked packages (probably) for ${1:?}" >> @@REPORTFILE@@
else
echo "USE='${USE}' FEATURES='${FEATURES}' failed for ${1:?}" >> @@REPORTFILE@@
fi
Expand Down

0 comments on commit aa9ee18

Please sign in to comment.