1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>rcbuggy problem packages</title>
<style>
body {
font-family: ubuntu;
background-color: #ffd;
}
.package {
margin: 0.5em;
padding: 0.5em;
}
.removal-ok {
background-color: #dfd;
}
.removal-not-ok {
background-color: #ddd;
}
h2 {
margin: 0em;
}
.rdeps {
margin-left: 1em;
}
.commands {
white-space: pre-wrap;
display: inline-block;
margin: 0em;
padding: 0.2em;
border: solid;
}
.removal-ok .commands {
border-color: #afa;
background-color: #cfc;
}
.removal-not-ok .commands {
border-color: #aaa;
background-color: #ccc;
}
</style>
</head>
<body lang="en">
<h1>rcbuggy problem packages</h1>
<p>
Generated: {{ now }}
</p>
{% for package in packages %}
<div class="package {{ package.css_class }}">
<h2 id="{{ package.source_package_name }}">{{ package.source_package_name }}</h2>
<div class="details">
<p>
Kept out of Debian testing by Debian bug{% if package.bugs|length > 1 %}s{% endif %}
{% for bug in package.bugs %}
<a href="https://bugs.debian.org/{{bug}}">#{{bug}}</a>{% if not loop.last %},{% endif %}{% endfor %}.
</p>
{% if package.block_by_regression %}
<p>
The failures of this package's autopkgtests block migration of {{ package.block_by_regression|join(", ") }}.
</p>
{% endif %}
{% if package.block_by_uninstallability %}
<p>
At least one binary from this package is made uninstallable by the versions of {{ package.block_by_uninstallability|sort|join(", ") }} in -proposed.
</p>
{% endif %}
{% if package._rdeps_lines %}
<pre class="rdeps">
{{ package.rdeps_text_short }}
{% if package.rdeps_text_more -%}
<details><summary>more...</summary>
{{ package.rdeps_text_more }}
</details>
{% endif -%}
</pre>
{% endif %}
<p>
Suggested removal commands:
</p>
<pre class="commands">
{% for cmd in package.removal_commands -%}
{{ cmd }}
{% endfor -%}
</pre>
</div>
</div>
{% endfor %}
</body>
</html>
|