AppData: 'revision' in revision.cc is expected in the 2nd line

Signed-off-by: Nils Philippsen <nils@tiptoe.de>
This commit is contained in:
Guido Aulisi 2017-05-21 12:31:12 +02:00 committed by Paul Davis
parent 2b8f25e05e
commit 5ffd2078da
1 changed files with 6 additions and 9 deletions

15
wscript
View File

@ -166,11 +166,9 @@ def fetch_tarball_revision_date():
content = f.readlines()
remove_punctuation_map = dict((ord(char), None) for char in '";')
raw_line_tokens = content[2].decode('utf-8').strip().split(' ')
rev = raw_line_tokens[4].translate(remove_punctuation_map)
raw_line_tokens = content[3].decode('utf-8').strip().split(' ')
date = raw_line_tokens[4].translate(remove_punctuation_map)
raw_line_tokens = content[1].decode('utf-8').strip().split(' ')
rev = raw_line_tokens[7].translate(remove_punctuation_map)
date = raw_line_tokens[12].translate(remove_punctuation_map)
return rev, date
@ -310,10 +308,9 @@ def create_stored_revision():
#
text = '#include "ardour/revision.h"\n'
text += (
'namespace ARDOUR {\n'
' const char* revision = \"%s\";\n'
' const char* date = \"%s\";\n'
'}\n') % (rev, rev_date)
'namespace ARDOUR { const char* revision = \"%s\"; '
'const char* date = \"%s\"; }\n'
) % (rev, rev_date)
print('Writing revision info to libs/ardour/revision.cc using ' + rev + ', ' + rev_date)
o = open('libs/ardour/revision.cc', 'w')
o.write(text)