{% extends "base.html" %} {% load i18n %} {% comment %} layerindex-web - recipe detail page template Copyright (C) 2013 Intel Corporation Licensed under the MIT license, see COPYING.MIT for details {% endcomment %} {% block content %} {% autoescape on %}
{% if recipe.blacklisted %}

This recipe is blacklisted by the {{ recipe.layerbranch.layer.name }} layer. The reason provided is:

{{ recipe.blacklisted }}

{% endif %} {% if recipe.bugtracker %} {% endif %}
Name {{ recipe.name }}
Version {{ recipe.pv }}
Summary {{ recipe.summary }}
Description {{ recipe.description }}
Section {{ recipe.section }}
License {{ recipe.license }}
Homepage {% if recipe.homepage_url_only %} {{ recipe.homepage }} {% elif recipe.homepage %} {{ recipe.homepage }} {% endif %}
Bug tracker {{ recipe.bugtracker }}
Recipe file {% if recipe.vcs_web_url %} {{ recipe.full_path }} {% else %} {{ recipe.full_path }} {% endif %}
Layer {{ recipe.layerbranch.layer.name }} ({{ recipe.layerbranch.branch.name}} branch)
Inherits {% if recipe.inherits %}
    {% for recipe in recipe.inherits.split %}
  • {{ recipe }}
  • {% endfor %}
{% endif %}
Dependencies {% if staticdependencies %}
    {% for dep in staticdependencies %}
  • {{dep.name}}
  • {% endfor %}
{% endif %} {% if packageconfigs %}
    {% for pc in packageconfigs %} {% for dep in pc.dynamicbuilddep_set.all %}
  • {{dep.name}}
  • {% endfor %} {% endfor %}
{% endif %}
PACKAGECONFIG options {% if packageconfigs %}
    {% for pc in packageconfigs %}
  • {{ pc.feature }}
  • {% endfor %}
{% endif %}

Patches

{% if recipe.patch_set.exists %} {% for patch in recipe.patch_set.all %} {% endfor %}
Patch Status
{{ patch.src_path }} {{ patch.get_status_display }} {{ patch.status_extra | urlize }}
{% else %}

None

{% endif %} {% if appends %}

bbappends

This recipe is appended by:

{% for append in verappends %} {% endfor %} {% for append in appends %} {% if not append in verappends %} {% endif %} {% endfor %}
{{ append.layerbranch.layer.name }} {{ append.filename }}
{{ append.layerbranch.layer.name }} {{ append.filename }}
{% endif %}
{% endautoescape %} {% endblock %} {% block scripts %} {% endblock %}