This file is indexed.

/usr/share/perl5/Carton/Package.pm is in carton 1.0.12-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
package Carton::Package;
use Moo;
use warnings NONFATAL => 'all';

has name     => (is => 'ro');
has version  => (is => 'ro');
has pathname => (is => 'ro');

sub BUILDARGS {
    my($class, @args) = @_;
    return { name => $args[0], version => $args[1], pathname => $args[2] };
}

1;