mirror of
https://git.yoctoproject.org/poky
synced 2026-04-04 23:02:22 +02:00
bitbake: toaster: unbuilt package dependency formats
[YOCTO 6057] For a package shown on the package build dependency page, the dependent packages may be unbuilt packages, as indicated with the dependent package's size set to -1. This fix changes the build template to use the same formatting functions for unbuilt dependent packages as the include package templates use for unbuilt dependent packages. (Bitbake rev: b095ab30a827a50f66a06ac9170d33fae2670736) Signed-off-by: Dave Lerner <dave.lerner@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
69856969d7
commit
362b71a07c
@@ -36,24 +36,21 @@
|
||||
</thead>
|
||||
<tbody>
|
||||
{% for runtime_dep in runtime_deps %}
|
||||
{% ifequal runtime_dep.version '' %}
|
||||
<tr class="muted">
|
||||
<td>{{runtime_dep.name}}</td>
|
||||
<td>{{runtime_dep.version}}</td>
|
||||
<td></td>
|
||||
</div>
|
||||
</tr>
|
||||
<tr {{runtime_dep.size|format_vpackage_rowclass}} >
|
||||
{% if runtime_dep.size != -1 %}
|
||||
<td>
|
||||
<a href="{% url 'package_built_detail' build.id runtime_dep.depends_on_id %}">
|
||||
{{runtime_dep.name}}
|
||||
</a>
|
||||
</td>
|
||||
{% else %}
|
||||
<tr>
|
||||
<td>
|
||||
<a href="{% url 'package_built_detail' build.id runtime_dep.depends_on_id %}">
|
||||
{{runtime_dep.name}}
|
||||
</a>
|
||||
</td>
|
||||
<td>{{runtime_dep.version}}</td>
|
||||
<td>{{runtime_dep.size|filtered_filesizeformat}}</td>
|
||||
</tr>
|
||||
{% endifequal %}
|
||||
<td>
|
||||
{{runtime_dep.name|format_vpackage_namehelp}}
|
||||
</td>
|
||||
{% endif %}
|
||||
<td>{{runtime_dep.version}}</td>
|
||||
<td>{{runtime_dep.size|filtered_filesizeformat}}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
@@ -74,31 +71,25 @@
|
||||
</thead>
|
||||
<tbody>
|
||||
{% for other_dep in other_deps %}
|
||||
{% ifequal other_dep.version '' %}
|
||||
<tr class="muted">
|
||||
<td>{{other_dep.name}}</td>
|
||||
<td>{{other_dep.version}}</td>
|
||||
<td></td>
|
||||
<td>
|
||||
{{other_dep.dep_type_display}}
|
||||
<i class="icon-question-sign get-help hover-help" title="{{other_dep.dep_type_help}}" ></i>
|
||||
</td>
|
||||
</tr>
|
||||
{% else %}
|
||||
<tr>
|
||||
<td>
|
||||
<a href="{% url 'package_built_detail' build.id other_dep.depends_on_id %}">
|
||||
{{other_dep.name}}
|
||||
</a>
|
||||
</td>
|
||||
<td>{{other_dep.version}}</td>
|
||||
<td>{{other_dep.size|filtered_filesizeformat}}</td>
|
||||
<td>
|
||||
{{other_dep.dep_type_display}}
|
||||
<i class="icon-question-sign get-help hover-help" title="{{other_dep.dep_type_help}}" ></i>
|
||||
</td>
|
||||
</tr>
|
||||
{% endifequal %}
|
||||
<tr {{other_dep.size|format_vpackage_rowclass}} >
|
||||
{% if other_dep.size != -1 %}
|
||||
<td>
|
||||
<a href="{% url 'package_built_detail' build.id other_dep.depends_on_id %}">
|
||||
{{other_dep.name}}
|
||||
</a>
|
||||
</td>
|
||||
{% else %}
|
||||
<td>
|
||||
{{other_dep.name|format_vpackage_namehelp}}
|
||||
</td>
|
||||
{% endif %}
|
||||
<td>{{other_dep.version}}</td>
|
||||
<td>{{other_dep.size|filtered_filesizeformat}}</td>
|
||||
<td>
|
||||
{{other_dep.dep_type_display}}
|
||||
<i class="icon-question-sign get-help hover-help" title="{{other_dep.dep_type_help}}" ></i>
|
||||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
Reference in New Issue
Block a user