{% extends "layout.html" %} {% block title %}Outdated Packages{% endblock %} {% block inner_content %}

Outdated Packages

All packages: {{ all_sources|length }} | Outdated packages: {{ to_update|length }} | Missing version info: {{ missing|length }}

We automatically compare versions against other distributions. See the the packaging guide for how to package new upstream versions.

Repositories:

{% for (s, myver, gitver, ver, url, date) in to_update %} {% endfor %}
Update Date Base Package Repo Version New Version
{{ (date|timestamp).split()[0] if date else '-' }} {{ s.name }} {{ myver }}{% if gitver %} ({{ gitver }} in git){% endif %} {{ ver }}
{{ missing|length }} packages not found in other distros:
{% for s in missing %} {{ s.realname }}{{ ", " if not loop.last else '' }} {% endfor %}

Related to:
{% endblock %}