This file is indexed.

/usr/share/perl5/RDF/DOAP/ChangeSet.pm 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
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package RDF::DOAP::ChangeSet;

our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION   = '0.100';

use Moose;
extends qw(RDF::DOAP::Resource);

use RDF::DOAP::ChangeSet;
use RDF::DOAP::Change;
use RDF::DOAP::Types -types;
use RDF::DOAP::Utils -traits;

use RDF::Trine::Namespace qw(rdf rdfs owl xsd);
my $doap = 'RDF::Trine::Namespace'->new('http://usefulinc.com/ns/doap#');
my $dc   = 'RDF::Trine::Namespace'->new('http://purl.org/dc/terms/');
my $dcs  = 'RDF::Trine::Namespace'->new('http://ontologi.es/doap-changeset#');

has items => (
	traits     => [ WithURI ],
	is         => 'ro',
	isa        => ArrayRef[Change],
	coerce     => 1,
	uri        => $dcs->item,
	multi      => 1,
);

1;