This file is indexed.

/usr/share/perl5/Debian/Debhelper/Sequence/dpatch.pm is in dpatch 2.0.34ubuntu1.

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
#!/usr/bin/perl
use warnings;
use strict;
use Debian::Debhelper::Dh_Lib;

insert_before("dh_auto_configure", "dh_dpatch_patch");
insert_before("dh_clean", "dh_dpatch_unpatch");

# Eval to avoid problem with debhelper < 7.3.12
eval {
    add_command("dh_dpatch_patch", "patch");
};

1;