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

Releases {{tags|length}} {% 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 uploaded 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 %}
{% if tag['objecttype'] == "tag" and tag['object'].message.strip() %}
{{ tag['head_msg'] }} • {{tag['date'] | humanize_tooltip | safe}}
{% else %}
{{tag['tagname']}}
{{tag['date'] | humanize_tooltip | safe}}
{% endif %}
{% if tag['body_msg'] %}
{{ tag['body_msg'] }}
{% endif %}
{% endfor %}
{% else %}

This project has not been tagged.

{% endif %}
{% endblock %}