{% 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 %}
{% block page_heading %} {% endblock %} {% 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 %} {% for include in recipe.adjacent_includes %} {% if include.vcs_web_url %}
{{ include.filepath }} {% else %}
{{ include.filepath }} {% endif %} {% endfor %}
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 %}

Sources

{% if recipe.source_set.exists %} {% for source in recipe.source_set.all %} {% endfor %}
{% if source.web_url %}{% endif %}{{ source.url }}{% if source.web_url %}{% endif %}
{% else %}

None

{% 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 %} {% if otherbranch_recipes %}

Other branches

This recipe in other branches of {{ recipe.layerbranch.layer.name }}:

{% for other in otherbranch_recipes %} {% endfor %}
Branch Recipe
{{ other.layerbranch.branch }} {% if other == recipe %} {{ other.pn }} {{ other.pv }} (this recipe) {% else %} {{ other.pn }} {{ other.pv }} {% endif %}
{% endif %}
{% block content_extra %} {% endblock %} {% endautoescape %} {% endblock %} {% block scripts %} {% block scripts_extra %} {% endblock %} {% endblock %}