-
-
Notifications
You must be signed in to change notification settings - Fork 347
/
Copy pathgitlog2changelog.py
executable file
·142 lines (128 loc) · 4.75 KB
/
gitlog2changelog.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
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
#!/usr/bin/env python3
# Copyright 2008 Marcus D. Hanwell <[email protected]>
# Minor changes for NUT by Charles Lepple
# Distributed under the terms of the GNU General Public License v2 or later
import re
from textwrap import TextWrapper
import sys
import subprocess
rev_range = ""
# Define the git command and its arguments as a list
git_command = [
"git",
"log",
"--summary",
"--stat",
"--no-merges",
"--date=short",
]
if len(sys.argv) > 1:
base = sys.argv[1]
rev_range = "%s..HEAD" % base
git_command.append(rev_range)
# Execute git log with the desired command line options.
process = subprocess.Popen(git_command, stdout=subprocess.PIPE, encoding="utf8")
fin = process.stdout
# Set up the loop variables in order to locate the blocks we want
authorFound = False
dateFound = False
messageFound = False
filesFound = False
message = ""
messageNL = False
files = ""
prevAuthorLine = ""
wrapper = TextWrapper(initial_indent="\t", subsequent_indent="\t ")
with open("ChangeLog", "w") as fout:
# The main part of the loop
for line in fin:
# The commit line marks the start of a new commit object.
if line.startswith("commit"):
# Start all over again...
authorFound = False
dateFound = False
messageFound = False
messageNL = False
message = ""
filesFound = False
files = ""
continue
# Match the author line and extract the part we want
# (Don't use startswith to allow Author override inside commit message.)
elif "Author:" in line:
authorList = re.split(r": ", line, 1)
try:
author = authorList[1]
author = author[0 : len(author) - 1]
authorFound = True
except Exception as e:
print(f"Could not parse authorList = '{line}'. Error: {e!s}")
# Match the date line
elif line.startswith("Date:"):
dateList = re.split(r": ", line, 1)
try:
date = dateList[1]
date = date[0 : len(date) - 1]
dateFound = True
except Exception as e:
print(f"Could not parse dateList = '{line}'. Error: {e!s}")
# The Fossil-IDs, svn-id, ad sign off lines are ignored:
elif (
line.startswith((" Fossil-ID:", " [[SVN:"))
or " git-svn-id:" in line
or "Signed-off-by" in line
):
continue
# Extract the actual commit message for this commit
elif authorFound & dateFound & messageFound is False:
# Find the commit message if we can
if len(line) == 1:
if messageNL:
messageFound = True
else:
messageNL = True
elif len(line) == 4:
messageFound = True
elif len(message) == 0:
message += line.strip()
else:
message = message + " " + line.strip()
# If this line is hit all of the files have been stored for this commit
elif re.search(r"files? changed", line):
filesFound = True
continue
# Collect the files for this commit. FIXME: Still need to add +/- to files
elif authorFound & dateFound & messageFound:
fileList = re.split(r" \| ", line, 2)
if len(fileList) > 1:
if len(files) > 0:
files = files + ", " + fileList[0].strip()
else:
files = fileList[0].strip()
# All of the parts of the commit have been found - write out the entry
if authorFound & dateFound & messageFound & filesFound:
# First the author line, only outputted if it is the first for that
# author on this day
authorLine = date + " " + author
if len(prevAuthorLine) == 0:
fout.write(authorLine + "\n\n")
elif authorLine == prevAuthorLine:
pass
else:
fout.write("\n" + authorLine + "\n\n")
# Assemble the actual commit message line(s) and limit the line length
# to 80 characters.
commitLine = "* " + files + ": " + message
# Write out the commit line
fout.write(wrapper.fill(commitLine) + "\n")
# Now reset all the variables ready for a new commit block.
authorFound = False
dateFound = False
messageFound = False
messageNL = False
message = ""
filesFound = False
files = ""
prevAuthorLine = authorLine
# Close the input and output lines now that we are finished.
fin.close()