https://lintian.debian.org is unmaintained, and the data it displays has not been updated since January 2022.
A replacement has been developed inside UDD (see https://lists.debian.org/debian-qa/2022/07/msg00006.html). This wiki page documents how to use it.
Accessing data
Web
The UDD lintian data is used by https://tracker.debian.org and https://qa.debian.org/developer.php
A web interface on UDD provides per maintainer and per package views:
There's also a per-tag interface:
Raw access
The UDD data is accessible using SQL. See https://wiki.debian.org/UltimateDebianDatabase for details. Some example queries:
all results (only first 1000 here):
- select * from lintian_results_agg limit 1000;
Add a release column:
- select release, lintian.* from lintian_results_agg lintian join sources_uniq sources using (source, version) limit 1000;
Filter by release and tag:
- select release, lintian.* from lintian_results_agg lintian join sources_uniq sources using (source, version) where release='bookworm' and tag='shared-library-lacks-stack-section' limit 1000;