From dff7a277e31d62d32938cc676db3d8cc0242924d Mon Sep 17 00:00:00 2001 From: Ed Bartosh Date: Fri, 8 Jan 2016 11:17:22 +0000 Subject: bitbake: toaster: show 'satisfied via' text for reverse deps Showed ' satisfied via ' 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 Signed-off-by: Elliot Smith Signed-off-by: Richard Purdie --- bitbake/lib/toaster/toastergui/templates/recipe.html | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/bitbake/lib/toaster/toastergui/templates/recipe.html b/bitbake/lib/toaster/toastergui/templates/recipe.html index d6b464b9a8..1d6d64e3c7 100644 --- a/bitbake/lib/toaster/toastergui/templates/recipe.html +++ b/bitbake/lib/toaster/toastergui/templates/recipe.html @@ -211,7 +211,14 @@ {% for rr in object.r_dependencies_depends.all|dictsort:"recipe.name" %} - {{rr.recipe.name}} + {{rr.recipe.name}} + {% if rr.via %} + satisfied via {{rr.via.name}} + + {% endif %} + {{rr.recipe.version}} {% endfor %} -- cgit 1.2.3-korg