{% extends "base.html" %} {% load static from staticfiles %} {% load package_extras %} {% load pgp %} {% block title %}Arch Linux - {{ pkg.pkgname }} {{ pkg.full_version }} ({{ pkg.arch.name }}){% endblock %} {% block navbarclass %}anb-packages{% endblock %} {% load package_extras %} {% block content %}

{{ pkg.pkgname }} {{ pkg.full_version }}

{% ifequal pkg.pkgname pkg.pkgbase %} {% with pkg.split_packages as splits %}{% if splits %} {% endif %}{% endwith %} {% else %} {% with pkg.base_package as base %}{% if base %} {% else %} {% endif %}{% endwith %} {% endifequal %} {% with pkg.groups.all as groups %}{% if groups %} {% endif %}{% endwith %} {% with pkg.provides.all as all_related %}{% if all_related %} {% endif %}{% endwith %} {% with pkg.replaces.all as all_related %}{% if all_related %} {% endif %}{% endwith %} {% with pkg.conflicts.all as all_related %}{% if all_related %} {% endif %}{% endwith %} {% with pkg.reverse_conflicts as rev_conflicts %}{% if rev_conflicts %} {% endif %}{% endwith %} {% with pkg.maintainers as maints %} {% endwith %} {% if pkg.signature %}{% else %}{% endif %} {% if user.is_authenticated %}{% with pkg.flag_request as flag_request %}{% if flag_request %}{% endif %}{% endwith %}{% endif %}
Architecture: {{ pkg.arch.name }}
Repository: {{ pkg.repo.name|capfirst }}
Split Packages: {% for s in splits %}{% pkg_details_link s %}{% if not forloop.last %}, {% endif %}{% endfor %}
Base Package:{% pkg_details_link base %}{{ pkg.pkgbase }}
Description: {{ pkg.pkgdesc|default:"" }}
Upstream URL: {% if pkg.url %}{% endif %}
License(s): {{ pkg.licenses.all|join:", " }}
Groups: {% for g in groups %} {{ g.name }}{% if not forloop.last %}, {% endif %}{% endfor %}
Provides: {% include "packages/details_relatedto.html" %}
Replaces: {% include "packages/details_relatedto.html" %}
Conflicts: {% include "packages/details_relatedto.html" %}
Reverse Conflicts: {% for conflict in rev_conflicts %} {% pkg_details_link conflict %}{% if not forloop.last %}, {% endif %}{% endfor %}
Maintainers:{% if maints %} {% for m in maints %} {% maintainer_link m %}
{% endfor %} {% else %}Orphan{% endif %}
Package Size: {{ pkg.compressed_size|filesizeformat }}
Installed Size: {{ pkg.installed_size|filesizeformat }}
Last Packager: {% with pkg.packager as pkgr %}{% if pkgr %}{% packager_link pkgr %}{% else %}{{ pkg.packager_str }}{% endif %}{% endwith %}
Build Date: {{ pkg.build_date|date:"DATETIME_FORMAT" }} UTC
Signed By: {% with pkg.signer as signer %}{% if signer %}{% pgp_key_link pkg.signature.key_id signer.get_full_name %}{% else %}Unknown ({% pgp_key_link pkg.signature.key_id %}){% endif %}{% endwith %}
Signature Date: {{ pkg.signature.creation_time|date:"DATETIME_FORMAT" }} UTC
Signed By: Unsigned
Last Updated: {{ pkg.last_update|date:"DATETIME_FORMAT" }} UTC
Last Flag Request: From {{ flag_request.who }} on {{ flag_request.created|date }}:
{{ flag_request.message|linebreaksbr|default:"{no message}" }}
{% with pkg.get_depends as deps %}

Dependencies ({{deps|length}})

{% if deps %}
    {% for depend in deps %}{% include "packages/details_depend.html" %}{% endfor %}
{% endif %}
{% endwith %} {% with pkg.get_requiredby as rqdby %}

Required By ({{rqdby|length}})

{% if rqdby %}
    {% for req in rqdby %}{% include "packages/details_requiredby.html" %}{% endfor %}
{% endif %}
{% endwith %}
{% load cdn %}{% jquery %} {% endblock %}