Skip to content
Commits on Source (2)
......@@ -35,6 +35,8 @@ piuparts (0.93) UNRELEASED; urgency=medium
exists since 2005 (even though that FQDN is younger).
- Move suite "by uploaders" and "by source packages" links further up in
navigation menu. Improve structure and headings in navigation menu.
- Drop references to "PTS" and use "tracker.d.o" instead.
- Add link to piuparts source package pages from known problem pages.
- Minor cleanups.
* Use the new debhelper-compat(=11) notation and drop d/compat.
* CONTRIBUTING: explain never to directly push to the develop nor master
......
......@@ -4,6 +4,12 @@
News
</td>
</tr>
<tr class="normalrow">
<td class="contentcell2">
<b>2018-10-19</b>: Three and a half years after stopping linking to packages.qa.debian.org(which was called <em>PTS</em>) we finally drop all references to the PTS and use <em>tracker.d.o</em> instead.
</td>
</tr>
</tr>
<tr class="normalrow">
<td class="contentcell2">
<b>2018-08-28</b>: Enable the logrotate test (temporarily) again, to check whether <a href="https://bugs.debian.org/582630" target="_blank">#582630</a> really has been fixed...
......
......@@ -206,7 +206,7 @@ HTML_HEADER = """<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
</tr>
<tr class="normalrow">
<td class="contentcell">
<a href="https://tracker.debian.org" target="_blank">Debian Package Tracker (former: PTS)</a>
<a href="https://tracker.debian.org" target="_blank">Debian Package Tracker</a>
</td>
<tr class="normalrow">
<td class="contentcell">
......@@ -371,7 +371,8 @@ $PACKAGE_LIST</ul>
PKG_ERROR_TPL = \
"""<li>$RDEPS - <a href=\"$LOG\">$LOG</a>$ARCH
(<a href=\"https://tracker.debian.org/pkg/$SPKG\" target=\"_blank\">PTS</a>)
(<a href=\"https://piuparts.debian.org/$SECTION/source/$SSUBDIR/$SPKG.html\" target=\"_blank\">piuparts.d.o</a>)
(<a href=\"https://tracker.debian.org/pkg/$SPKG\" target=\"_blank\">tracker.d.o</a>)
(<a href=\"https://bugs.debian.org/$PACKAGE?dist=unstable\" target=\"_blank\">BTS</a>)
$BUG</li>
"""
......@@ -1720,6 +1721,8 @@ def dwke_update_tpl(section, problem, failures, ftpl, ptpl, pkgsdb, srcdb):
'BUG': get_bug_text(log),
'RDEPS': rdep_cnt,
'SPKG': src_pkg,
'SSUBDIR': source_subdir(src_pkg),
'SECTION': section,
})
if len(pkg_text):
......