{% extends "base.html" %} {% load package_extras %} {% block title %}Arch Linux - Todo Lists{% endblock %} {% block content %}

Developer Todo Lists

Open Developer Todo Lists

Todo lists are used by the developers when a rebuild of a set of packages is needed. This is common when a library has an .so version bump; during a toolchain rebuild, or a general cleanup of packages in the repositories. The progress can be tracked here. Only todo lists with currently incomplete packages are shown.

{% if todo_lists %}{% else %}

There are currently no incomplete developer todo lists.

{% endif %}
{% if todo_lists %}
{% for list in todo_lists %}

{{ list.name }}

{{ list.date_added|date }} - {{ list.creator.get_full_name }}

{{ list.description|urlize|linebreaks }}
{% for pkg in list.packages %} {% endfor %}
Name Arch Repo Maintainer Status
{% pkg_details_link pkg.pkg %} {{ pkg.pkg.arch.name }} {{ pkg.pkg.repo.name|capfirst }} {{ pkg.pkg.maintainers|join:', ' }} {% if pkg.complete %} Complete {% else %} Incomplete {% endif %}
{% endfor %}
{% endif %} {% load cdn %}{% jquery %} {% endblock %}