blob: 1503a0676e79d81b69b28d46341711fb07d5abec (
plain)
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
|
#!/usr/bin/python
"""
(C) 2014 Jack Lloyd
Distributed under the terms of the Botan license
"""
import re
import sys
import os
def combine_relnotes(relnote_dir):
relnotes = [p for p in os.listdir(relnote_dir) if p.startswith(('0', '1', '2'))]
print relnotes
re_version = re.compile('Version (\d+\.\d+\.\d+), ([0-9]{4}-[0-9]{2}-[0-9]{2})$')
re_nyr = re.compile('Version (\d+\.\d+\.\d+), Not Yet Released$')
version_contents = {}
version_date = {}
versions = []
versions_nyr = []
for f in relnotes:
contents = open(os.path.join(relnote_dir, f)).readlines()
match = re_version.match(contents[0])
if match:
version = match.group(1)
date = match.group(2)
versions.append(version)
version_date[version] = date
else:
match = re_nyr.match(contents[0])
version = match.group(1)
versions_nyr.append(version)
if not match:
raise Exception('No version match for %s' % (f))
version_contents[version] = (''.join(contents)).strip()
def make_label(v):
return ".. _v%s:\n" % (v.replace('.', '_'))
s = ''
s += "Release Notes\n"
s += "========================================\n"
s += "\n"
date_to_version = {}
for (v,d) in version_date.items():
date_to_version.setdefault(d, []).append(v)
if len(versions_nyr) > 0:
for v in versions_nyr:
s += make_label(v) + "\n"
s += version_contents[v]
s += "\n\n"
for d in sorted(date_to_version.keys(), reverse=True):
for v in sorted(date_to_version[d]):
s += make_label(v) + "\n"
s += version_contents[v]
s += "\n\n"
return s
def main(args = None):
if args is None:
args = sys.argv
print combine_relnotes(args[1])
if __name__ == '__main__':
sys.exit(main())
|