bitbake: toaster: show 'satisfied via' text for reverse deps

Showed '<dependency> satisfied via <provider>' text and
help tooltip for the reverse build dependencies provided
through 'PROVIDES' in the 'Reverse build dependencies' tab.

[YOCTO #6169]

(Bitbake rev: c7bb98e2e2111790ded86087b13c8b49462d6b75)

Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Elliot Smith <elliot.smith@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Ed Bartosh 2016-01-08 11:17:22 +00:00 committed by Richard Purdie
parent 89f493261a
commit dff7a277e3
1 changed files with 8 additions and 1 deletions

View File

@ -211,7 +211,14 @@
{% for rr in object.r_dependencies_depends.all|dictsort:"recipe.name" %}
<tr>
<td><a href="{% url "recipe" build.pk rr.recipe.pk %}">{{rr.recipe.name}}</a></td>
<td><a href="{% url "recipe" build.pk rr.recipe.pk %}">{{rr.recipe.name}}</a>
{% if rr.via %}
<span class="muted"> satisfied via {{rr.via.name}}</span>
<i class="icon-question-sign get-help hover-help"
title="This dependency is satisfied by the PROVIDES value
{{rr.via.name}} in the {{rr.depends_on.name}} recipe"></i>
{% endif %}
</td>
<td><a href="{% url "recipe" build.pk rr.recipe.pk %}">{{rr.recipe.version}}</a></td>
</tr>
{% endfor %}