This file is indexed.

/usr/share/perl5/DEPS/Object.pm is in libdeps-perl 0.13-1.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
# This file is part of the DEPS/graph-includes package
#
# (c) 2006 Yann Dirson <ydirson@altern.org>
# Distributed under version 2 of the GNU GPL.

# DEPS::Object
# A base class for simple hash-based objects that belong to a graph

package DEPS::Object;
use strict;
use warnings;

use base qw(DEPS::Ingredientable);

sub copy {
  my $self = shift;
  my $class = ref $self;

  my $copy = {};

  foreach my $field (keys %$self) {
    $copy->{$field} = $self->{$field};
  }

  bless ($copy, $class);
  return $copy;
}

sub dump {
  my $obj = shift->copy;
  $obj->{ORIGINGGRAPH} = "$obj->{ORIGINGGRAPH}" if defined $obj->{ORIGINGGRAPH};
  use Data::Dumper;
  Dumper $obj;
}

1;