{% extends "repo_master.html" %} {% block title %}Releases - {{ repo.namespace + '/' if repo.namespace }}{{ repo.name }}{% endblock %} {% set tag = "home" %} {% block repo %}

Releases {% if config.get('UPLOAD_FOLDER_PATH') and config.get('UPLOAD_FOLDER_URL') %} {% if g.repo_admin %} {% endif %} {% endif %}

{% if config.get('UPLOAD_FOLDER_PATH') and config.get('UPLOAD_FOLDER_URL') %}

If the developers have upload one or more tarball(s), you will be able to find them in the release folder.

{% if pagure_checksum %}

The CHECKSUMS file contains the checksums (sha256 and sha512) of the files uploaded to pagure.

To use this file, simply download it next to the tarball you downloaded and run

sha512sum -c CHECKSUMS

{% endif %} {% endif %}
{% if tags %}
{% for tag in tags %}
{{tag['date'] | humanize}} {{ tag['object'].oid | short }}
{% if tag['objecttype'] == "tag" and tag['object'].message.strip() %} {{tag['tagname']}} {{ tag['head_msg'] }} {% if tag['body_msg'] %}
{{ tag['body_msg'] }}
{% endif %} {% else %} {{tag['tagname']}} {% endif %}
{% endfor %}
{% else %}

This project has not been tagged.

{% endif %}
{% endblock %}