{% extends "basebuildpage.html" %} {% load projecttags %} {% block localbreadcrumb %}
  • Packages
  • {% endblock %} {% block nav-packages %}
  • Packages
  • {% endblock %} {% block buildinfomain %}
    {% if not request.GET.filter and not request.GET.search and not objects.paginator.count %}
    No packages were built. How did this happen? Well, BitBake reuses as much stuff as possible. If all of the packages needed were already built and available in your build infrastructure, BitBake will not rebuild any of them. This might be slightly confusing, but it does make everything faster.
    {% else %} {% if objects.paginator.count == 0 %}
    {% if request.GET.search %}{% endif %}
    {% else %} {% include "basetable_top.html" %} {% for package in objects %} {{package.name}} {%if package.version%}{{package.version}}-{{package.revision}}{%endif%} {{package.size|filtered_filesizeformat}} {{package.license}} {%if package.recipe%} {{package.recipe.name}} {{package.recipe.version}} {{package.recipe.layer_version.layer.name}} {{package.recipe.layer_version.branch}} {{package.recipe.layer_version.commit|truncatechars:13}} {{package.recipe.layer_version.layer.local_path}} {%else%} {%endif%} {% endfor %} {% include "basetable_bottom.html" %} {% endif %} {# objects.paginator.count #} {% endif %} {# Empty #}
    {% endblock %}