From 89f493261a718603936f95654953f60b558670ec Mon Sep 17 00:00:00 2001 From: Ed Bartosh Date: Fri, 8 Jan 2016 11:17:21 +0000 Subject: bitbake: toaster: show 'satisfied via' text for build deps Showed ' satisfied via ' text and help tooltip for the build dependencies provided through 'PROVIDES' in the 'Build dependencies' tab. [YOCTO #6169] (Bitbake rev: de77e338fe70341fe98561e2e40b534f5c88db10) 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 bbe747517d..d6b464b9a8 100644 --- a/bitbake/lib/toaster/toastergui/templates/recipe.html +++ b/bitbake/lib/toaster/toastergui/templates/recipe.html @@ -172,7 +172,14 @@ {% for rr in object.r_dependencies_recipe.all|dictsort:"depends_on.name" %} - {{rr.depends_on.name}} + {{rr.depends_on.name}} + {% if rr.via %} + satisfied via {{rr.via.name}} + + {% endif %} + {{rr.depends_on.version}} {% endfor %} -- cgit 1.2.3-korg