This file is indexed.

/usr/share/perl5/Aspect/Library.pm is in libaspect-perl 1.04-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
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package Aspect::Library;

use strict;

our $VERSION = '1.04';

1;

__END__

=pod

=head1 NAME

Aspect::Library - Base class for all reusable aspects

=head1 DESCRIPTION

B<Aspect::Library> provides a base class for all reusable aspects,
regardless of implementation.

It was created as part of the L<Aspect> namespace reorganisation. It
provides no functionality, and only acts as a method for identifying
L<Aspect> libraries.

The original first generation of libraries are implemented via the
L<Aspect::Modular> class and are deeply tied to it. For the second
generation API this lower level base class is provided to provide
a mechanism for identifying all reusable library aspects, from either
the L<Aspect::Modular> API or independently.

=head1 AUTHORS

Adam Kennedy E<lt>adamk@cpan.orgE<gt>

=head1 COPYRIGHT

Copyright 2009 - 2013 Adam Kennedy.

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.

=cut