{% extends "base.html" %} {% load i18n %} {% load static %} {% comment %} rrs-web - recipe detail page template Copyright (C) 2015 Intel Corporation Licensed under the MIT license, see COPYING.MIT for details {% endcomment %} {% autoescape on %} {% block title_append %} - {% if recipe %}{{ recipe.name }}{% else %}{{ recipesymbol.pn }}{% endif %}{% endblock %} {% endautoescape %} {% block topfunctions %} {% endblock %} {% block contenttag %}
{% endblock %} {% block content %} {% autoescape on %}
{% if upstream_no_update_reason %}

Reason why this recipe can't be updated

{{ upstream_no_update_reason }}

{% endif %}

Updates

{% if recipe_upgrade_detail_count == 0 %}
There are no updates prior to {{ milestone_name }}
{% else %} {% for rud in recipe_upgrade_details %} {% if multigroup %} {% ifchanged rud.group %} {% endifchanged %} {% endif %} {% if rud.milestone_name %} {% else %} {% endif %} {% if rud.is_recipe_maintainer %} {% else %} {% endif %} {% endfor %}
Title Version Milestone Date Committer Commit
{{ rud.group.title }}
{{ rud.title }} {% if rud.upgrade_type != 'R' %}{{ rud.version }}{% if rud.upgrade_type == 'D' %} downgrade{% endif %}{% endif %} {{ rud.release_name }} {% if rud.milestone_name != "All" %} {{ rud.milestone_name }} {% endif %} {{ rud.release_name }} {% if rud.milestone_name != "All" %} {{ rud.milestone_name }} {% endif %} {{ rud.date }}{{ rud.maintainer_name }}{{ rud.maintainer_name }}{{ rud.commit }}
{% endif %} {% if recipe %}

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

About {{ recipe.pn }}

Summary
{% if recipe %}{{ recipe.summary }}{% else %}{{ recipesymbol.summary }}{% endif %}
Section
{{ recipe.section }}
License
{{ recipe.license }}
Recipe file
{% if recipe %} {% if recipe.vcs_web_url %} {{ recipe.full_path }} {% else %} {{ recipe.full_path }} {% endif %} {% else %} {{ last_filepath }} {% endif %}
Layer
{{ recipesymbol.layerbranch.layer.name }} ({{ recipesymbol.layerbranch.branch.name}} branch)
{% if recipe.homepage %}
Homepage
{% if recipe.homepage %}{{ recipe.homepage }}{% endif %}
{% endif %} {% if recipe.bugtracker %}
Bug tracker
{{ recipe.bugtracker }}
{% endif %} {% if recipe.source_set.exists %}
Sources
{% endif %} {% if recipe_provides %}
Provides
    {% for p in recipe_provides %}
  • {{ p }}
  • {% endfor %}
{% endif %} {% if recipe_depends or recipe.packageconfig_set %}
Depends
    {% for d in recipe_depends %}
  • {{ d }}
  • {% endfor %} {% for pkc in recipe.packageconfig_set.all %} {% for dep in pkc.get_deps_list %}
  • {{ dep }} (optional)
  • {% endfor %} {% endfor %}
{% endif %} {% if recipe_distros or recipe.comparison_recipes.exists %}
Distributions
{% endif %}
{% endautoescape %} {% endblock %}