This file is indexed.

/usr/share/doc/librdf-doap-perl/examples/moose-data.pl is in librdf-doap-perl 0.100-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
use strict;
use warnings;

use RDF::DOAP;

my $url  = 'http://api.metacpan.org/source/DOY/Moose-2.0604/doap.rdf';
my $doap = 'RDF::DOAP'->from_url($url);
my $proj = $doap->project;

print($proj->name, "\n");   # Moose
print($_->name, "\n")
	for @{ $proj->maintainer };