This file is indexed.

/usr/bin/scan-copyrights is in libconfig-model-dpkg-perl 2.076.

This file is owned by root:root, with mode 0o755.

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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#!/usr/bin/perl 

use 5.20.0;
use warnings ;

use Dpkg::Copyright::Scanner qw/print_copyright/;

print_copyright;

__END__

=pod

=head1 NAME

scan-copyrights - Scan source file and print lines for debian/copyright files

=head1 SYNOPSIS

  # in source package directory
  scan-copyrights > debian/copyright.new
  meld debian/copyright{,.new}

=head1 DESCRIPTION

This commands use C<licensecheck> command to scan license and copyright
information from source files. The output of licensecheck is parsed to
generate the Files information of C<debian/copyright> files according to
L<Debian specifications|https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/>

=head1 BUGS

Extracting license and copyright data from unstructured comments is not reliable.
User must check manually the files when no copyright info is found or when the
license is unknown.

The required changes can be stored in
C<debian/fill.copyright.blanks.yml> so that future runs of
scan-copyrights will be more accurate.  Please see
L<Dpkg::Copyright::Scanner/"Filling the blanks"> for instructions to
write this file.

=head1 Examples

In pan source directory:

 $ scan-copyright
 no info for ./uulib/fptools.h, check manually this file
 no info for ./uulib/fptools.c, check manually this file
 no info for ./uulib/uustring.h, check manually this file
 no info for ./uulib/crc32.h, check manually this file
 no info for ./pan/data/defgroup.h, check manually this file
 no info for ./pan/general/time-elapsed.h, check manually this file
 [ snip ]
 Files: *
 Copyright: 1994-2001, by Frank Pilhofer.
 License: GPL-2+

 Files: pan/*
 Copyright: 2002-2006, Charles Kerr <charles@rebelbase.com>
 License: GPL-2

 Files: pan/data/cert-store.cc
 Copyright: 2011, Heinrich Muller <henmull@src.gnome.org>
   2002-2006, Charles Kerr <charles@rebelbase.com>
 License: GPL-2

 Files: pan/data/cert-store.h
 Copyright: 2002-2006, Charles Kerr <charles@rebelbase.com>
   2011, Heinrich Muller <henmull@src.gnome.org>
 License: GPL-2
 [ snip ]


=head1 SUPPORT

For support, please contact the author.

=head1 SEE ALSO

L<licensecheck>, C<licensecheck2dep5> from C<cdbs> package

=head1 AUTHOR

Dominique Dumont <dod@debian.org>

=cut