{% load debusine %}

Request

{% if debdiff_parser_error %} {% endif %} {% if not debdiff_differences_reported %}

DebDiff did not report any differences.

{% elif debdiff_binary_parsed %} {#Binary artifacts#}

Files in original artifacts but not in new artifacts

{% if debdiff_binary_parsed.removed_files %}
{{ debdiff_binary_parsed.removed_files }}
{% else %}

All files from the original artifacts are present in the new artifacts.

{% endif %}

Files in new artifacts but not in original artifacts

{% if debdiff_binary_parsed.added_files %}
{{ debdiff_binary_parsed.added_files }}
{% else %}

All files from the new artifacts were present in the original artifacts.

{% endif %}

Control diffs changes

{% if debdiff_binary_parsed.control_diffs %}
{{ debdiff_binary_parsed.control_diffs }}
{% endif %} {% if debdiff_binary_parsed.control_diffs_packages_items %} {% for package, changes in debdiff_binary_parsed.control_diffs_packages_items %}
Package: {{ package }}
{{ changes }}
{% endfor %} {% endif %} {% if debdiff_binary_parsed.control_diffs_packages_no_changes %}

No differences were encountered between the control files of package{{ debdiff_binary_parsed.control_diffs_packages_no_changes|length|pluralize }}:

{% endif %} {% if not debdiff_binary_parsed.control_diffs and not debdiff_binary_parsed.control_diffs_packages_items and not debdiff_binary_parsed.control_diffs_packages_no_changes %}

No changes reported by debdiff in control files.

{% endif %} {% else %} {#Source artifacts#}

Summary of changes

debdiff output

{% widget debdiff_source_file_widget %} {% endif %}