-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathgenerate_changelog.py
executable file
·54 lines (49 loc) · 2.16 KB
/
generate_changelog.py
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
#!/usr/bin/env python
import argparse
import re
from subprocess import check_output
if __name__ == '__main__':
parser = argparse.ArgumentParser()
parser.add_argument('repository', metavar='REPOSITORY', type=str,
help='File path to the LibrePCB repository')
parser.add_argument('from_ref', metavar='FROM_REF', type=str,
help='Git ref of the previous release')
parser.add_argument('to_ref', metavar='TO_REF', type=str,
help='Git ref of the next release')
args = parser.parse_args()
separator = '~~~~'
output = check_output(
['git', '--no-pager', 'log', '--reverse', '--first-parent',
'--format=' + separator + '%H%n%an (%ae)%n%B',
args.from_ref + '..' + args.to_ref],
cwd=args.repository).decode()
commits = output.split(separator)
for commit in commits:
if not commit.strip():
continue
lines = commit.splitlines()
sha = lines[0].strip()
body_lines = lines[2:]
subject = re.sub('\\(#\\d+\\)', '', body_lines[0]).strip()
match = re.match('.*\\(?#(\\d+)(\\)?).*', body_lines[0])
number = match.group(1) if match else None
is_simple = len(match.group(2)) if match else 1
title = body_lines[2] if ((len(body_lines) > 2) and not is_simple) \
else subject
if number:
text = '#{}'.format(number)
url = 'https://github.com/LibrePCB/LibrePCB/pull/{}'.format(number)
else:
text = sha[:8]
url = 'https://github.com/LibrePCB/LibrePCB/commit/{}'.format(sha)
print('- ' + title)
print(' ({url}[{text}])'.format(text=text, url=url))
print('\nAuthors:')
authors = check_output(
['git', '--no-pager', 'log', '--no-merges', '--format=%an (%ae)',
args.from_ref + '..' + args.to_ref],
cwd=args.repository).decode().splitlines()
authors = {name: authors.count(name) for name in set(authors)}
authors = {k: v for k, v in sorted(authors.items(), key=lambda x: -x[1])}
for name, count in authors.items():
print('- [{}] {}'.format(count, name))