aboutsummaryrefslogtreecommitdiffstats
path: root/gen-changelog.py
blob: 91909b2548523af091d2312a430f619dcc4dc2c3 (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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
#!/usr/bin/env python3

# LFS ChangeLog generator for trivial package addition, removal, and update

from subprocess import Popen, PIPE
from urllib.request import urlopen
from os import getenv

def get_entity(line):
    line = line[1:]
    if not line.startswith("<!ENTITY "):
        return None
    quote_pos = line.find(' "')
    key = line[len("<!ENTITY "):quote_pos]
    value = line[quote_pos + 2:]
    value = value[:value.find('"')]
    return (key, value)

def expand_entity(ent, key):
    value = ent[key]
    out = ""
    sub_ent = ""
    for c in value:
        if c == '&':
            sub_ent = c
        elif sub_ent:
            sub_ent += c
            if c == ';':
                out += expand_entity(ent, sub_ent[1:-1])
                sub_ent = ""
        else:
            out += c
    return out

git_diff = Popen(["git", "diff", "-U999999", "packages.ent"],
                 stdout = PIPE,
                 text = True)
stdout, _ = git_diff.communicate()

lines = stdout.rstrip().split("\n")
ent = [get_entity(i) for i in lines if i[0] != '-']
ent = dict(i for i in ent if i)

add = set()
rem = set()

for l in lines:
    if l[0] in '+-':
        pair = get_entity(l)
        if pair:
            key, _ = pair
            if key.endswith('-md5'):
                pkg = key[:-len('-md5')]
                if l[0] == '+':
                    add.add(pkg)
                else:
                    rem.add(pkg)

upd = add.intersection(rem)
add = add.symmetric_difference(upd)
rem = rem.symmetric_difference(upd)

ticket = {}
security = set()
url = 'https://wiki.linuxfromscratch.org/lfs/report/1?format=tab'
tsv = urlopen(url)
for i in tsv:
    fields = i.decode().split('\t')
    if len(fields) >= 2:
        pkg = fields[1].lower()
        pos = pkg.find(' ')
        if pos > 0:
            pkg = pkg[:pos]
        tic = fields[0]
        sec = len(fields) >= 3 and fields[2].startswith("high")
        ticket[pkg] = tic
        security.add(pkg)

print("Plain Text:")
for (s, act) in [(upd, "Update to "), (add, "Add ")]:
    for i in s:
        pkgver = i + "-" + expand_entity(ent, i + "-version")
        out = act + pkgver
        if pkgver in ticket:
            out += ' (#' + ticket[pkgver] + ')'
        print(out)
for i in rem:
    print("Remove", i)

print("---------------------")

print("XML")
name = getenv("USER")
for (s, act) in [(upd, "Update to "), (add, "Add ")]:
    for i in s:
        print('        <listitem>')
        pkgver = i + "-" + expand_entity(ent, i + "-version")
        out = '          <para>[' + name + '] - ' + act + pkgver + "."
        if pkgver in ticket:
            out += "  Fixes\n          "
            out += "<ulink url='&lfs-ticket-root;" + ticket[pkgver] + "'>#"
            out += ticket[pkgver] + "</ulink>."
        out += "</para>"
        print(out)
        print('        </listitem>')