File: git2changelog.py

package info (click to toggle)
fdkaac 1.0.0-1
  • links: PTS, VCS
  • area: contrib
  • in suites: bookworm, bullseye, sid, trixie
  • size: 556 kB
  • sloc: ansic: 6,382; makefile: 51; python: 34; sh: 1
file content (44 lines) | stat: -rwxr-xr-x 1,539 bytes parent folder | download | duplicates (2)
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
#!/usr/bin/env python

# Copyright (C) 2013 nu774
# For conditions of distribution and use, see copyright notice in COPYING

import sys
import re
from subprocess import Popen, PIPE
from itertools import groupby
from collections import namedtuple

GITLOG_FMT = 'commit %H%nauthor %cn <%ae>%ndate %ad%nsubject %s%nref %d%n%n'
GITLOG_CMD = ['git','log','--date=short','--format={0}'.format(GITLOG_FMT)]

Commit = namedtuple('Commit', 'commit author date subject ref')

def parse_gitlog(stream):
    re_decode_ref = re.compile(r'(?<=\()([^,)]+)')
    re_strip_tag = re.compile(r'^tag: ')
    commit = dict()
    for line in stream:
        fields = line.decode('utf-8').rstrip('\r\n').split(' ', 1)
        if len(fields) == 2:
            key, value = fields
            if key == 'ref':
                m = re_decode_ref.search(value)
                if m:
                    value = ' [{0}]'.format(re_strip_tag.sub('', m.group()))
                else:
                    value = ''
            commit[key] = value
        elif commit:
            yield Commit(**commit) 
            commit = dict()

output=sys.stdout.write

with Popen(GITLOG_CMD, shell=False, stdout=PIPE).stdout as pipe:
    commits = parse_gitlog(pipe)
    commits_by_date_author = groupby(commits, key=lambda x: (x.date, x.author))
    for (date, author), commits in commits_by_date_author:
        output(u'{0}  {1}\n\n'.format(date, author).encode('utf-8'))
        for c in commits:
            output(u'  * {0}{1}\n\n'.format(c.subject, c.ref).encode('utf-8'))