From 75808db17caf8b960b351e3408e74142f4c85aac Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 14 Apr 2024 15:42:30 +0200 Subject: Adding upstream version 2.117.0. Signed-off-by: Daniel Baumann --- reporting/templates/index.tmpl | 128 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 128 insertions(+) create mode 100644 reporting/templates/index.tmpl (limited to 'reporting/templates/index.tmpl') diff --git a/reporting/templates/index.tmpl b/reporting/templates/index.tmpl new file mode 100644 index 0000000..0889624 --- /dev/null +++ b/reporting/templates/index.tmpl @@ -0,0 +1,128 @@ +{ head("Lintian") } +
+
+

+ Lintian dissects Debian + packages and tries to find + bugs and policy violations. It contains automated checks for many + aspects of Debian + policy as well as some checks for common errors. +

+ +

+ For more information, see the User + Manual. +

+ +

+ Auto-generated documentation of the Lintian Perl Library API can + be found here. +

+ + +

+ Lintian is available in the Debian + lintian package. +

+
+
+
+ + + +
+

Archives

+

The following archives are processed by Lintian:

+ + +{ + for my $archive_info (@archives) { + my $name = $archive_info->{'name'}; + my $archs = join(' ', @{$archive_info->{'architectures'}}); + my $distributions = join(' ', @{$archive_info->{'distributions'}}); + my $components = join(' ', @{$archive_info->{'components'}}); + my $timestamp = $archive_info->{'timestamp'}; + $OUT .= qq{ \n}; + $OUT .= qq{ \n}; + $OUT .= qq{ \n}; + $OUT .= qq{ \n}; + } +} +
Archive nameAttributeAttribute value
${name}Architectures$archs
Distributions/Suites$distributions
Components$components
Mirror timestamp$timestamp
+
+ +
+

Statistics

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Last updated: {$timestamp}
Maintainers: {$delta{maintainers}}
Package groups: {$delta{'groups-known'}}
Rescheduled groups: {$delta{'groups-backlog'}}
Groups with processing errors: {$delta{'groups-with-errors'}}
Source packages: {$delta{'source-packages'}}
Binary packages: {$delta{'binary-packages'}}
μdeb packages: {$delta{'udeb-packages'}}
E Errors:{$delta{errors}}
W Warnings:{$delta{warnings}}
I Info tags:{$delta{info}}
P Pedantic tags:{$delta{pedantic}}
O Overridden tags:{$delta{overridden}}
X Experimental tags:{$delta{experimental}}
Lintian version: {$version}
+ +

+ (The numbers in parentheses describe the changes since the last Lintian + report, published on {$previous}.) +

+ +{ + if ($graphs) { + my $graph_link = resource_path('statistics.svg'); + $OUT .= qq(

\n); + $OUT .= qq( Evolution of Lintian tags over the past\n); + $OUT .= qq( $graphs_days days:

\n); + $OUT .= qq(
The beforementioned graph of Lintian\n);
+        $OUT .= qq(    tags
\n); + } +} + +
+{ foot() } -- cgit v1.2.3