]> git.decadent.org.uk Git - dak.git/blob - daklib/lintian.py
Tidy upload.check_lintian.
[dak.git] / daklib / lintian.py
1 from regexes import re_parse_lintian
2
3 def parse_lintian_output(output):
4     """
5     Parses Lintian output and returns a generator with the data.
6
7     >>> list(parse_lintian_output('W: pkgname: some-tag path/to/file'))
8     [('W', 'pkgname', 'some-tag', 'path/to/file')]
9     """
10
11     for line in output.split('\n'):
12         m = re_parse_lintian.match(line)
13         if m:
14             yield m.groups()
15
16 def generate_reject_messages(parsed_tags, tag_definitions, log=lambda *args: args):
17     """
18     Generates package reject messages by comparing parsed lintian output with
19     tag definitions.
20     """
21
22     rejects = []
23
24     tags = set()
25     for values in tag_definitions.values():
26         for tag in values:
27             tags.add(tag)
28
29     for etype, epackage, etag, etext in parsed_tags:
30         if etag not in tags:
31             continue
32
33         # Was tag overridden?
34         if etype == 'O':
35
36             if etag in tag_definitions['nonfatal']:
37                 # Overriding this tag is allowed.
38                 pass
39
40             elif etag in tag_definitions['fatal']:
41                 # Overriding this tag is NOT allowed.
42
43                 log('ftpmaster does not allow tag to be overridable', etag)
44                 rejects.append(
45                     "%s: Overriden tag %s found, but this tag "
46                     "may not be overridden." % (epackage, etag)
47                 )
48
49         else:
50             # Tag is known and not overridden; reject
51             rejects.append(
52                 "%s: Found lintian output: '%s %s', automatically "
53                 "rejected package." % (epackage, etag, etext)
54             )
55
56             # Now tell if they *might* override it.
57             if etag in tag_definitions['nonfatal']:
58                 log("auto rejecting", "overridable", etag)
59                 rejects.append(
60                     "%s: If you have a good reason, you may override this "
61                     "lintian tag." % epackage)
62             else:
63                 log("auto rejecting", "not overridable", etag)
64
65     return rejects