5
<title>rcbuggy problem packages</title>
9
background-color: #ffd;
16
background-color: #dfd;
19
background-color: #ddd;
28
white-space: pre-wrap;
29
display: inline-block;
34
.removal-ok .commands {
36
background-color: #cfc;
38
.removal-not-ok .commands {
40
background-color: #ccc;
45
<h1>rcbuggy problem packages</h1>
49
{% for package in packages %}
50
<div class="package {{ package.css_class }}">
51
<h2 id="{{ package.source_package_name }}">{{ package.source_package_name }}</h2>
54
Kept out of Debian testing by Debian bug{% if package.bugs|length > 1 %}s{% endif %}
55
{% for bug in package.bugs %}
56
<a href="https://bugs.debian.org/{{bug}}">#{{bug}}</a>{% if not loop.last %},{% endif %}{% endfor %}.
58
{% if package.block_by_regression %}
60
The failures of this package's autopkgtests block migration of {{ package.block_by_regression|join(", ") }}.
63
{% if package.block_by_uninstallability %}
65
At least one binary from this package is made uninstallable by the versions of {{ package.block_by_uninstallability|sort|join(", ") }} in -proposed.
68
{% if package._rdeps_lines %}
70
{{ package.rdeps_text_short }}
71
{% if package.rdeps_text_more -%}
72
<details><summary>more...</summary>
73
{{ package.rdeps_text_more }}
79
Suggested removal commands:
81
<pre class="commands">
82
{% for cmd in package.removal_commands -%}