aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEd Bartosh <ed.bartosh@linux.intel.com>2016-01-08 11:17:20 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-01-11 23:26:33 +0000
commitfebb898a065bd5eb8cd11e4b57ae83e7cdaab526 (patch)
treebfeb21f8c4e10fa6b22c79fd63e8372ebaf672f3
parent2ff4ccb13f6046783cddb734ee98093721bb30cc (diff)
downloadopenembedded-core-contrib-febb898a065bd5eb8cd11e4b57ae83e7cdaab526.tar.gz
bitbake: toaster: show list of provides for the recipe
Showed list of names that recipe provides. (Bitbake rev: 60318c9a049292bd33322d8446a629d778337e8a) 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>
-rw-r--r--bitbake/lib/toaster/toastergui/templates/recipe.html10
1 files changed, 10 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/recipe.html b/bitbake/lib/toaster/toastergui/templates/recipe.html
index c6ae2f3802..bbe747517d 100644
--- a/bitbake/lib/toaster/toastergui/templates/recipe.html
+++ b/bitbake/lib/toaster/toastergui/templates/recipe.html
@@ -71,6 +71,16 @@
Layer commit
</dt>
<dd class="iscommit">{{layer_version.commit}}</dd>
+ {% if object.provides_set.all %}
+ <dt>
+ <i class="icon-question-sign get-help"
+ title="A list of aliases by which a particular recipe can be known. The additional aliases are
+ synonyms for the recipe and can be useful satisfying dependencies of other recipes during
+ the build"></i>
+ PROVIDES
+ </dt>
+ <dd><code>{% for provider in object.provides_set.all %}{{ provider.name }}&nbsp;{% endfor %}</code></dd>
+ {% endif %}
</dl>
<h2 class="details">Tasks</h2>