2020-03-19 12:36:30 +01:00
|
|
|
#!/usr/bin/env python3
|
2017-01-20 12:28:40 +01:00
|
|
|
|
2018-04-19 15:02:15 +02:00
|
|
|
from __future__ import print_function
|
|
|
|
|
2014-04-25 07:10:50 +02:00
|
|
|
import os
|
2014-04-26 09:34:24 +02:00
|
|
|
import re
|
|
|
|
import urllib2
|
|
|
|
import json
|
2014-04-25 07:10:50 +02:00
|
|
|
|
|
|
|
from scriptCommon import catchPath
|
|
|
|
from scriptCommon import runAndCapture
|
|
|
|
|
2014-04-26 09:34:24 +02:00
|
|
|
issueNumberRe = re.compile( r'(.*?)#([0-9]*)([^0-9]?.*)' )
|
|
|
|
|
2014-04-25 07:10:50 +02:00
|
|
|
rootPath = os.path.join( catchPath, 'include/' )
|
|
|
|
versionPath = os.path.join( rootPath, "internal/catch_version.hpp" )
|
|
|
|
|
|
|
|
|
|
|
|
hashes = runAndCapture( ['git', 'log', '-2', '--format="%H"', versionPath] )
|
|
|
|
lines = runAndCapture( ['git', 'log', hashes[1] + ".." + hashes[0], catchPath] )
|
|
|
|
|
|
|
|
prevLine = ""
|
|
|
|
messages = []
|
|
|
|
dates = []
|
2014-04-26 09:34:24 +02:00
|
|
|
issues = {}
|
|
|
|
|
|
|
|
def getIssueTitle( issueNumber ):
|
|
|
|
try:
|
|
|
|
s = urllib2.urlopen("https://api.github.com/repos/philsquared/catch/issues/" + issueNumber ).read()
|
2017-02-23 09:10:37 +01:00
|
|
|
except:
|
2014-04-26 09:34:24 +02:00
|
|
|
return "#HTTP Error#"
|
|
|
|
|
|
|
|
try:
|
|
|
|
j = json.loads( s )
|
|
|
|
return j["title"]
|
2017-02-23 09:10:37 +01:00
|
|
|
except:
|
2014-04-26 09:34:24 +02:00
|
|
|
return "#JSON Error#"
|
|
|
|
|
2014-04-25 07:10:50 +02:00
|
|
|
for line in lines:
|
|
|
|
if line.startswith( "commit"):
|
|
|
|
pass
|
|
|
|
elif line.startswith( "Author:"):
|
|
|
|
pass
|
|
|
|
elif line.startswith( "Date:"):
|
|
|
|
dates.append( line[5:].lstrip() )
|
|
|
|
elif line == "" and prevLine == "":
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
prevLine = line
|
2014-04-26 09:34:24 +02:00
|
|
|
match = issueNumberRe.match( line )
|
|
|
|
line2 = ""
|
|
|
|
while match:
|
|
|
|
issueNumber = match.group(2)
|
|
|
|
issue = '#{0} ("{1}")'.format( issueNumber, getIssueTitle( issueNumber ) )
|
|
|
|
line2 = line2 + match.group(1) + issue
|
|
|
|
match = issueNumberRe.match( match.group(3) )
|
|
|
|
if line2 == "":
|
|
|
|
messages.append( line )
|
|
|
|
else:
|
|
|
|
messages.append( line2 )
|
2014-04-25 07:10:50 +02:00
|
|
|
|
2018-04-19 15:02:15 +02:00
|
|
|
print("All changes between {0} and {1}:\n".format( dates[-1], dates[0] ))
|
2014-04-25 07:10:50 +02:00
|
|
|
|
|
|
|
for line in messages:
|
2018-04-19 15:02:15 +02:00
|
|
|
print(line)
|