This file is indexed.

/usr/share/perl5/Lire/UI/ExecutableWidget.pm is in lire 2:2.1.1-2.1.

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

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
package Lire::UI::ExecutableWidget;

use strict;

use base qw/ Lire::UI::FileWidget /;

use Locale::TextDomain 'lire';

sub invalid_label_str {
    return __( 'Invalid executable' );
}

sub browser_title_str {
    return __( 'Select an Executable');
}

1;