]> git.ipfire.org Git - thirdparty/systemd.git/blame - make-man-rules.py
cryptsetup-generator: fix the kernel command line strategy for luks.uuid
[thirdparty/systemd.git] / make-man-rules.py
CommitLineData
56ba3c78
ZJS
1# -*- Mode: python; coding: utf-8; indent-tabs-mode: nil -*- */
2#
3# This file is part of systemd.
4#
5# Copyright 2013 Zbigniew Jędrzejewski-Szmek
6#
7# systemd is free software; you can redistribute it and/or modify it
8# under the terms of the GNU Lesser General Public License as published by
9# the Free Software Foundation; either version 2.1 of the License, or
10# (at your option) any later version.
11#
12# systemd is distributed in the hope that it will be useful, but
13# WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15# Lesser General Public License for more details.
16#
17# You should have received a copy of the GNU Lesser General Public License
18# along with systemd; If not, see <http://www.gnu.org/licenses/>.
19
20from __future__ import print_function
21import xml.etree.ElementTree as tree
22import collections
23import sys
185c3be0 24import os
56ba3c78
ZJS
25
26SECTION = '''\
27MANPAGES += \\
28 {manpages}
29MANPAGES_ALIAS += \\
30 {aliases}
31{rules}
32'''
33
34CONDITIONAL = '''\
35if {conditional}
36''' \
37+ SECTION + \
38'''\
39endif
40'''
41
42HEADER = '''\
43# Do not edit. Generated by make-man-rules.py.
185c3be0 44# Regenerate with 'make all update-man-list'.
56ba3c78
ZJS
45
46'''
47
c78ab911
ZJS
48CLEANFILES = '''\
49
50CLEANFILES += \\
51 {cleanfiles}
52'''
53
56ba3c78
ZJS
54def man(page, number):
55 return 'man/{}.{}'.format(page, number)
56
57def add_rules(rules, name):
58 xml = tree.parse(name)
59 # print('parsing {}'.format(name), file=sys.stderr)
60 conditional = xml.getroot().get('conditional') or ''
61 rulegroup = rules[conditional]
62 refmeta = xml.find('./refmeta')
63 title = refmeta.find('./refentrytitle').text
64 number = refmeta.find('./manvolnum').text
65 refnames = xml.findall('./refnamediv/refname')
66 target = man(refnames[0].text, number)
67 if title != refnames[0].text:
68 raise ValueError('refmeta and refnamediv disagree: ' + name)
69 for refname in refnames:
70 assert all(refname not in group
71 for group in rules.values()), "duplicate page name"
72 alias = man(refname.text, number)
73 rulegroup[alias] = target
74 # print('{} => {} [{}]'.format(alias, target, conditional), file=sys.stderr)
75
76def create_rules(*xml_files):
77 " {conditional => {alias-name => source-name}} "
78 rules = collections.defaultdict(dict)
79 for name in xml_files:
80 add_rules(rules, name)
81 return rules
82
83def mjoin(files):
84 return ' \\\n\t'.join(sorted(files) or '#')
85
c78ab911 86def make_makefile(rules, cleanfiles):
56ba3c78
ZJS
87 return HEADER + '\n'.join(
88 (CONDITIONAL if conditional else SECTION).format(
89 manpages=mjoin(set(rulegroup.values())),
90 aliases=mjoin(k for k,v in rulegroup.items() if k != v),
91 rules='\n'.join('{}: {}'.format(k,v)
92 for k,v in sorted(rulegroup.items())
93 if k != v),
94 conditional=conditional)
c78ab911
ZJS
95 for conditional,rulegroup in sorted(rules.items())) + \
96 CLEANFILES.format(cleanfiles=mjoin(cleanfiles))
56ba3c78
ZJS
97
98if __name__ == '__main__':
c78ab911 99 sources = set(sys.argv[1:])
185c3be0 100 basenames = [os.path.basename(source) for source in sources]
c78ab911 101 spares = set([source for source in sources
185c3be0 102 if os.path.basename(source) + '.in' in basenames])
c78ab911
ZJS
103 rules = create_rules(*(sources - spares))
104 print(make_makefile(rules, spares), end='')