{% extends "coprs/detail.html" %} {% from "coprs/_coprs_forms.html" import copr_legal_flag_form with context %} {% block overview_selected %}selected{% endblock %} {% block detail_body %}
{% if latest_build %} Latest build #{{ latest_build.id }}: {{ latest_build.state }}, submitted {{ latest_build.submitted_on|time_ago }} ago {% else %} No build submitted yet {% endif %}

Description

{{ copr.description|markdown|default('Description not filled in by author. Very likely personal repository for testing purpose, which you should not use.', true) }}

Installation Instructions

{{ copr.instructions|markdown|default('Instructions not filled in by author. Author knows what to do. Everybody else should avoid this repo.', true) }}

Active Releases

The following unofficial repositories are provided as-is by owner of this project. Contact the owner directly for bugs or issues (IE: not bugzilla).

# More info about how to enable a repo on the wiki page.
{% for repo in repos_info_list %} {% endfor %}
Release Architecture Yum Repo
{{ repo.name_release_human|capitalize }} {{ repo.arch_list|join(", ") }} {{ repo.repo_file }}
{% if copr.repos_list %}

Repository List

{% endif %} {% if g.user and g.user.can_edit(copr) and copr and copr.owner and not copr.auto_createrepo %}
Automatic repository meta data generation is disabled. You can regenerate it manually or enable the automatic refresh on the edit page.
{% endif %} {% for chroot in copr.modified_chroots %} {% endfor %}
{{ copr_legal_flag_form(form, copr) }} {% endblock %}