This file is indexed.

/usr/share/lintian/checks/python/egg-info.desc is in lintian4python 0.28.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
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
Check-Script: python/egg-info
Author: Jakub Wilk <jwilk@debian.org>
Type: binary
Info: egg metadata
Needs-Info: index, unpacked

Tag: missing-requires.txt-dependency
Severity: serious
Certainty: possible
Ref: http://packages.python.org/distribute/pkg_resources.html
Info: A package listed as a dependency in the <tt>requires.txt</tt> file is
 missing from the Depends line.
 .
 Importing the package via <tt>pkg_resources</tt> will fail if dependencies
 from <tt>requires.txt</tt> are not satisfied.  You can test this using the
 following command:
 .
  python -c 'import pkg_resources as p; p.require("<i>module-name</i>")'

Tag: missing-requires.txt-optional-dependency
Severity: normal
Certainty: possible
Ref: http://packages.python.org/distribute/pkg_resources.html
Info: An package listed as an optional dependency in the <tt>requires.txt</tt>
 file is missing from the Depends line.
 .
 Importing the package via <tt>pkg_resources</tt> will fail if dependencies
 from <tt>requires.txt</tt> are not satisfied.  You can test this using the
 following command:
 .
  python -c 'import pkg_resources as p; p.require("<i>module-name</i>")'

Tag: unknown-project-in-requires.txt
Severity: serious
Certainty: possible
Ref: http://packages.python.org/distribute/pkg_resources.html
Info: A project listed as a dependency in the <tt>requires.txt</tt> file is not
 provided by any Debian package.
 .
 Importing the package via <tt>pkg_resources</tt> will fail if dependencies
 from <tt>requires.txt</tt> are not satisfied.  You can test this using the
 following command:
 .
  python -c 'import pkg_resources as p; p.require("<i>module-name</i>")'

Tag: unknown-optional-project-in-requires.txt
Severity: normal
Certainty: possible
Ref: http://packages.python.org/distribute/pkg_resources.html
Info: A project listed as an optional dependency in the <tt>requires.txt</tt>
 file is not provided by any Debian package.
 .
 Importing the package via <tt>pkg_resources</tt> will fail if dependencies
 from <tt>requires.txt</tt> are not satisfied.  You can test this using the
 following command:
 .
  python -c 'import pkg_resources as p; p.require("<i>module-name</i>")'

Tag: strict-versioned-dependency-in-requires.txt
Severity: serious
Certainty: possible
Ref: http://packages.python.org/distribute/pkg_resources.html
Info: The <tt>requires.txt</tt> file declares a strict versioned dependency on
 a project.
 .
 Importing the package via <tt>pkg_resources</tt> will fail if dependencies
 from <tt>requires.txt</tt> are not satisfied.  You can test this using the
 following command:
 .
  python -c 'import pkg_resources as p; p.require("<i>module-name</i>==<i>version</i>")'

Tag: egg-info-version-mismatch
Severity: important
Certainty: wild-guess
Info: Version in the egg meta metadata doesn't match version of the Debian
 package.

Tag: SOURCES.txt-in-binary-package
Severity: pedantic
Certainty: possible
Info: SOURCES.txt lists files in the source distribution and therefore is
 normally not useful in a binary package.