diff options
author | Michael Wood <michael.g.wood@intel.com> | 2016-02-05 11:25:34 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-10 13:29:21 +0000 |
commit | 8885b7bfd314f9c654cf7a0937f00f5071fdb970 (patch) | |
tree | 8e427426f9d06e6f64a3b07d68c6d24643dede04 /bitbake | |
parent | 40f6effec40ac6ca0ce96cf1776b0a459596b782 (diff) | |
download | poky-8885b7bfd314f9c654cf7a0937f00f5071fdb970.tar.gz |
bitbake: toaster: pkg_dependencies_popover just show direct dependencies
In the dependencies popover just show direct dependency in the list
rather than recommends, conflicts etc
(Bitbake rev: e69b00532b011327bc2495a6fb52cfe98f0f897d)
Signed-off-by: Michael Wood <michael.g.wood@intel.com>
Signed-off-by: brian avery <avery.brian@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/toaster/toastergui/templates/snippets/pkg_dependencies_popover.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/snippets/pkg_dependencies_popover.html b/bitbake/lib/toaster/toastergui/templates/snippets/pkg_dependencies_popover.html index a08409ac7f..a3fcdb09ed 100644 --- a/bitbake/lib/toaster/toastergui/templates/snippets/pkg_dependencies_popover.html +++ b/bitbake/lib/toaster/toastergui/templates/snippets/pkg_dependencies_popover.html | |||
@@ -1,9 +1,9 @@ | |||
1 | {# Popover that displays the dependences and sizes of a package 'data' used in the Packages table #} | 1 | {# Popover that displays the dependences and sizes of a package 'data' used in the Packages table #} |
2 | {% with data.package_dependencies_source.count as dep_count %} | 2 | {% with data.package_dependencies_source.all_depends.count as dep_count %} |
3 | {% load projecttags %} | 3 | {% load projecttags %} |
4 | {% if dep_count %} | 4 | {% if dep_count %} |
5 | <a data-content="<ul class='unstyled'> | 5 | <a data-content="<ul class='unstyled'> |
6 | {% for dep in data.package_dependencies_source.all %} | 6 | {% for dep in data.package_dependencies_source.all_depends %} |
7 | <li>{{dep.depends_on.name}} {% if dep.depends_on.size > 0 %}({{dep.depends_on.size|filtered_filesizeformat}}){% endif %}</li> | 7 | <li>{{dep.depends_on.name}} {% if dep.depends_on.size > 0 %}({{dep.depends_on.size|filtered_filesizeformat}}){% endif %}</li> |
8 | {% endfor %} | 8 | {% endfor %} |
9 | </ul>" title="" class="btn" data-original-title=" | 9 | </ul>" title="" class="btn" data-original-title=" |