/usr/share/perl5/graphincludes/extractor.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 | # This file is part of the graph-includes package
#
# (c) 2005 Yann Dirson <ydirson@altern.org>
# Distributed under version 2 of the GNU GPL.
package graphincludes::extractor;
use strict;
use warnings;
use graphincludes::params;
sub pattern { '^$' }
sub accepts_file {
my $class = shift;
my $pat = $graphincludes::params::filename_regexp || ${class}->pattern;
m/$pat/;
}
sub get_default_sysincludes {
return ();
}
1;
|