{% extends "base.html" %} {% import "macros.html" as macros %} {% block title %}Koschei - {{ package.name }}{% endblock %} {% macro next_change(changes) %} {{ inext(changes, '') | format_depchange | columnize(css_class="mono") }} {% endmacro %} {% block content %} {% set editable = "" if g.user else 'disabled="true"' %}
{% if g.user %} {% endif %} {% if g.user %} {% endif %} {% if package.state_string == 'unresolved' and package.resolution_problems %} {% for problem in package.resolution_problems[1:] %} {% endfor %} {% endif %} {{ macros.depchange_table(package.unapplied_changes) }}
Package state {{ package.state_string }}
Current priority {{ package.current_priority }}
Manual priority
Static priority {{ package.static_priority }}
Arch override
Global package groups {% for group in package.global_groups %} {{ group.name }} {% if group.editable %} {% endif %} {% endfor %}
Your package groups {% for group in package.user_groups %} {{ group.full_name }} {% endfor %}
Available package groups {% for group in package.available_groups %} {{ group.full_name }} {% endfor %}
Links {% set enc_name = package.name | urlencode %} Koji, Bugzilla, Dist-git, PkgDB, Bodhi, Packages
Bug reports File new FTBFS bug
Dependency problems {{ package.resolution_problems[0].problem }}
{{ problem.problem }}
{{ macros.pagination_row(page, "Builds") }} {% for build in builds %} {% set row_class = ["odd", "even"][loop.index % 2] + ["", " real"][build.real] %} {% set changes = iter(build.dependency_changes) if build.deps_processed else iter([]) %} {% if build.real %} {% endif %} {% if build.deps_processed and build.deps_resolved %} {{ next_change(changes) }} {% elif build.deps_processed %} {% else %} {% endif %} {% for subtask in build.build_arch_tasks %} {{ next_change(changes) }} {% endfor %} {% for change in changes %} {{ change | format_depchange | columnize(css_class="mono") }} {% endfor %} {% endfor %}
State Koji task Started Dependency changes Build details
Real build: {{ package.name }}-{{ build.version }}-{{ build.release }}
{{ build.state_string }} {{ build.task_id }} {{ build.started | date }} Dependencies for this build couldn't be processedDependencies for this build weren't processed yet details
{{ subtask.arch }}
{{ "├└"[loop.last] }}{{ subtask.task_id }} ( build.log | root.log )
{{ macros.pagination_row(page, "Builds") }} {% endblock %}