From c527fd1f14c27855a37f2e8ac5346ce8d940ced2 Mon Sep 17 00:00:00 2001 From: Tudor Florea Date: Thu, 16 Oct 2014 03:05:19 +0200 Subject: initial commit for Enea Linux 4.0-140929 Migrated from the internal git server on the daisy-enea-point-release branch Signed-off-by: Tudor Florea --- .../templates/package_built_dependencies.html | 99 ++++++++++++++++++++++ 1 file changed, 99 insertions(+) create mode 100644 bitbake/lib/toaster/toastergui/templates/package_built_dependencies.html (limited to 'bitbake/lib/toaster/toastergui/templates/package_built_dependencies.html') diff --git a/bitbake/lib/toaster/toastergui/templates/package_built_dependencies.html b/bitbake/lib/toaster/toastergui/templates/package_built_dependencies.html new file mode 100644 index 0000000000..a0c5a1e4f0 --- /dev/null +++ b/bitbake/lib/toaster/toastergui/templates/package_built_dependencies.html @@ -0,0 +1,99 @@ +{% extends "package_detail_base.html" %} +{% load projecttags %} + +{% block tabcontent %} + +
+
+ {% ifequal runtime_deps|length 0 %} +
+ {{package.fullpackagespec}} has no runtime dependencies. +
+ {% else %} +
+ {{package.fullpackagespec}} is not included in any image. This page shows you the projected runtime dependencies if you include {{package.fullpackagespec}} in future builds. +
+ + + + + + + + + + {% for runtime_dep in runtime_deps %} + + {% if runtime_dep.size != -1 %} + + {% else %} + + {% endif %} + + + + {% endfor %} + +
PackageVersionSize
+ + {{runtime_dep.name}} + + + {{runtime_dep.name|format_vpackage_namehelp}} + {{runtime_dep.version}}{{runtime_dep.size|filtered_filesizeformat}}
+ {% endifequal %} + {% ifnotequal other_deps|length 0 %} +

Other runtime relationships

+ + + + + + + + + + + {% for other_dep in other_deps %} + + {% if other_dep.size != -1 %} + + {% else %} + + {% endif %} + + + + + {% endfor %} + +
PackageVersionSize + + Relationship type +
+ + {{other_dep.name}} + + + {{other_dep.name|format_vpackage_namehelp}} + {{other_dep.version}}{{other_dep.size|filtered_filesizeformat}} + {{other_dep.dep_type_display}} + +
+ {% endifnotequal %} +
+
+{% endblock tabcontent %} -- cgit v1.2.3-54-g00ecf