{% extends "base.html" %}
{% block title %}
debian specific patch information for {{ pkg.name }} / {{ pkg.version }}
{% endblock %}
{% block content %}
debian specific patch information for {{ pkg.name }} / {{ pkg.version }}
Summary
Package Version |
Package Type |
Source Package Format |
{{ pkg.version }} |
{{ pkg.type }} |
{{ pkg.format }} |
{% if pkg.debtar_name %}
Debian packaging Information
{% endif %}
{% if pkg.diffgz_name %}
Debian packaging Information
Diff file |
{{ pkg.diffgz_name }}
|
Size | {{ pkg.diffgz_size }} |
MD5sum | {{ pkg.diffgz_md5sum }} |
./debian only changes |
view
|
download
|
{% if pkg.diffgz_name and pkg.diffhandler.nondebiandir.lines %}
non packaging (i.e. not ./debian) changes |
view
|
download
|
{% endif %}
{% endif %}
{% if pkg.diffgz_name or pkg.debtar_name %}
{% if pkg.diffhandler.series %}
"series" style patches
patch |
summary |
view |
raw |
{% for name,patch in pkg.diffhandler.series.iterpatches %}
{{ name }} |
{{ patch.diffstat }} |
view
|
download
|
{% endfor %}
{% endif %}
{% endif %}
{% if pkg.diffgz_name and pkg.diffhandler.nondebiandir.lines %}
Misc. Non-packaging "direct" style patches
file |
inserted |
deleted |
modified |
view |
download |
{% for insd,deld,modd,f in pkg.diffhandler.nondebiandir.diffstat.stats %}
{{ f }} | {{ insd }} | {{ deld }} | {{ modd }} |
view
|
download
|
{% endfor %}
{% endif %}
{% endblock %}