This file is indexed.

/usr/share/perl5/Arch.pm is in libarch-perl 0.5.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
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# Arch Perl library, Copyright (C) 2004 Mikhael Goikhman
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

use 5.005;
use strict;

package Arch;

use vars qw($VERSION);

$VERSION = '0.5.2';
$VERSION = eval $VERSION;

1;

__END__

=head1 NAME

Arch - GNU Arch Perl library

=head1 SYNOPSIS 

    use Arch 0.5.2;

    # perldoc Arch
    # axp man Arch

    # example: produce ChangeLog for the current project
    use Arch::Tree;

    foreach my $log (Arch::Tree->new->get_logs) {
        print "-" x 80, "\n";
        print $log->standard_date, "\n";
        print $log->summary, "\n\n";
        print $log->body;
    }


=head1 DESCRIPTION

The Arch-Perl library allows Perl developers to create GNU Arch front-ends
in an object oriented fashion. GNU Arch is a decentralized, changeset-oriented
revision control system.

Currently, a pragmatic high-level interface is built around tla or baz.
This functionality was initially developed for ArchZoom project,
and was highly enhanced to serve AXP and ArchWay projects as well.

=head1 AUTHORS

Mikhael Goikhman (migo@homemail.com--Perl-GPL/arch-perl--devel).

Enno Cramer (uebergeek@web.de--2003/arch-perl--devel).

=head1 SEE ALSO

For more information, see L<tla>,
L<Arch::Backend>,
L<Arch::Changes>,
L<Arch::Changeset>,
L<Arch::DiffParser>,
L<Arch::FileHighlighter>,
L<Arch::Inventory>,
L<Arch::Library>,
L<Arch::LiteWeb>,
L<Arch::Log>,
L<Arch::Name>,
L<Arch::Registry>,
L<Arch::RevisionBunches>,
L<Arch::Run>,
L<Arch::RunLimit>,
L<Arch::Session>,
L<Arch::SharedCache>,
L<Arch::SharedIndex>,
L<Arch::Storage>,
L<Arch::Tarball>,
L<Arch::TempFiles>,
L<Arch::Test::Archive>,
L<Arch::Test::Cases>,
L<Arch::Test::Framework>,
L<Arch::Test::Tree>.
L<Arch::Tree>,
L<Arch::Util>.

=cut