This file is indexed.

/usr/bin/lintian4py-info is in lintian4python 0.28.1.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/perl

use strict;
use warnings;

use Cwd qw();
use File::Basename qw();

my $lintian4python_root = undef;

unshift @ARGV, '--profile', '{VENDOR}/python';
unshift @ARGV, '--include-dir', $lintian4python_root if defined $lintian4python_root;
my $command = '/usr/bin/lintian-info';
exec { $command } $command, @ARGV or die;

# Local Variables:
# indent-tabs-mode: nil
# End:
# vim: syntax=perl sw=4 sts=4 sr et