This file is indexed.

/usr/share/perl5/Debian/Debhelper/Sequence/cli_nant.pm is in cli-common-dev 0.9+nmu1.

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
#!/usr/bin/perl
# debhelper sequence file for cli-common-dev scripts

use warnings;
use strict;
use Debian::Debhelper::Dh_Lib;

insert_after("dh_auto_build", "dh_auto_build_nant");
insert_after("dh_auto_clean", "dh_auto_clean_nant");

remove_command("dh_auto_configure");
remove_command("dh_auto_build");
remove_command("dh_auto_test");
remove_command("dh_auto_clean");

1;