This file is indexed.

/usr/share/perl5/Config/Model/models/Dpkg.pod is in libconfig-model-dpkg-perl 2.076.

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
 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
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
# PODNAME: Config::Model::models::Dpkg
# ABSTRACT:  Configuration class Dpkg
=head1 NAME

Config::Model::models::Dpkg - Configuration class Dpkg

=head1 DESCRIPTION

Configuration classes used by L<Config::Model>

Model of Debian source package files (e.g debian/control, debian/copyright...)

=head1 Elements

=head2 my_config

This element contains a set of parameters to tune the behavior of this dpkg editor. You can for instance specify e-mail replacements. These parameters are stored in ~/.dpkg-meta.yml or ~/.local/share/.dpkg-meta.yml. These parameters can be applied to all Debian packages you maintain in this unix account.I<< Optional. Type node of class L<Dpkg::Meta|Config::Model::models::Dpkg::Meta> .  >> 

=head2 control

Package control file. Specifies the most vital (and version-independent) information about the source package and about the binary packages it creates.I<< Optional. Type node of class L<Dpkg::Control|Config::Model::models::Dpkg::Control> .  >> 

=head2 rules - package build rules

debian/rules is a makefile containing all instructions required to build a debian package.I<< Optional. Type string.  >> 

=head2 scan-copyright-patterns

This parameter is used by "cme update dpkg-copyright". This command scans all source files to get copyright and license information. By default, the decision whether to scan a file or not is left to licensecheck. You can override this behavior using this parameter.

See L<Dpkg::Copyright::Scanner/"electing or ignoring files to scan"> for more details.I<< Optional. Type node of class L<Dpkg::Copyright::ScanPatterns|Config::Model::models::Dpkg::Copyright::ScanPatterns> .  >> 

=head2 fill-copyright-blanks - Provides missing copyright info for cme update

This parameter is used by "cme update dpkg-copyright command".

Sometimes, upstream coders are not perfect: some source files cannot be parsed correctly or some legal information is missing. A file without copyright and license information is skipped. On the other hand, a file with either copyright or license missing will be used. Unfortunately, this will prevent a correct grouping and merging of copyright entries. Instead of patching upstream source files to fill the blank, you can specify the missing information in a special file.I<< Optional. Type node of class L<Dpkg::Copyright::FillBlanks|Config::Model::models::Dpkg::Copyright::FillBlanks> .  >> 

=head2 fix.scanned.copyright

Instructions to alter or set specific copyright entries in
"debian/fix.scanned.copyright" file. Each line of this file
follows the syntax described in L<Config::Model::Loader>
to modify copyright information.

See L<Config::Model::Dpkg::Copyright/"Tweak copyright entries"> for more
details. I<< Optional. Type string.  >> 

=head2 copyright - copyright and license information

copyright and license information of all files contained in this package. I<< Optional. Type node of class L<Dpkg::Copyright|Config::Model::models::Dpkg::Copyright> .  >> 

=head2 source

I<< Optional. Type node of class L<Dpkg::Source|Config::Model::models::Dpkg::Source> .  >> 

=head2 clean - list of files to clean

list of files to remove when dh_clean is run. Files names can include wild cards. For instance:

 build.log
 Makefile.in
 */Makefile.in
 */*/Makefile.in

I<< Optional. Type list of uniline.  >> 

=head2 patches - Debian patches applied to original sources

Series of patches applied by Debian. Note that you cannot change the order of patches in the series. Use L<quilt> for this task. Comments in series file are skipped and not shown in annotation.I<< Optional. Type hash of node of class L<Dpkg::Patch|Config::Model::models::Dpkg::Patch> .  >> 

=head2 compat

compat file defines the debhelper compatibility level. I<< Optional. Type integer. default: '9'.  >> 

=head2 dirs - Extra directories

This file specifies any directories which we need but which are not created by the normal installation procedure (make install DESTDIR=... invoked by dh_auto_install). This generally means there is a problem with the Makefile.

Files listed in an install file don't need their directories created first. 

It is best to try to run the installation first and only use this if you run into trouble. There is no preceding slash on the directory names listed in the dirs file. I<< Optional. Type list of uniline.  >> 

=head2 docs

This file specifies the file names of documentation files we can have dh_installdocs(1) install into the temporary directory for us.

By default, it will include all existing files in the top-level source directory that are called BUGS, README*, TODO etc. I<< Optional. Type list of uniline.  >> 

=head1 SEE ALSO

=over

=item *

L<cme>

=item *

L<Config::Model::models::Dpkg::Control>

=item *

L<Config::Model::models::Dpkg::Copyright>

=item *

L<Config::Model::models::Dpkg::Copyright::FillBlanks>

=item *

L<Config::Model::models::Dpkg::Copyright::ScanPatterns>

=item *

L<Config::Model::models::Dpkg::Meta>

=item *

L<Config::Model::models::Dpkg::Patch>

=item *

L<Config::Model::models::Dpkg::Source>

=back

=head1 AUTHOR

=over

=item Dominique Dumont


=back

=head1 COPYRIGHT

=over

=item 2010-2015 Dominique Dumont


=back

=head1 LICENSE

=over

=item LGPL2


=back

=cut