/usr/share/perl5/DEPS/Node.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 | # This file is part of the DEPS/graph-includes package
#
# (c) 2005,2006 Yann Dirson <ydirson@altern.org>
# Distributed under version 2 of the GNU GPL.
package DEPS::Node;
use strict;
use warnings;
use base qw(DEPS::Object);
use Carp qw(croak);
use Set::Object qw();
# Objects keys of this class are intentionally not locked, since many
# attributes will be used for various purposes, and it probably makes
# no sense to make things more complicated.
sub new {
my $class = shift;
my $self = {};
($self->{LABEL}) = @_;
# sanity check
croak "node name must not be an object or reference" if ref $self->{LABEL};
bless ($self, $class);
return $self;
}
1;
|