diff options
| author | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2011-04-06 20:17:29 +0000 |
|---|---|---|
| committer | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2011-04-06 20:17:29 +0000 |
| commit | 2c297760df2d512841d6ad1cb38d09b574530cef (patch) | |
| tree | 2a46e11ca294ce06b3c695489ceccfee4b0bd0a1 /utils/common/deploy.py | |
| parent | 3184cbe10add23e0e4e53523a06e311db0ba15cd (diff) | |
| download | rockbox-2c297760df2d512841d6ad1cb38d09b574530cef.zip rockbox-2c297760df2d512841d6ad1cb38d09b574530cef.tar.gz rockbox-2c297760df2d512841d6ad1cb38d09b574530cef.tar.bz2 rockbox-2c297760df2d512841d6ad1cb38d09b574530cef.tar.xz | |
deploy.py: insert version number into sources.
After downloading the sources insert the number of the revision checked out
into the code. Results in the Rockbox Utility about dialog showing the actual
revision instead of the one of the last change to version.h. Only applied when
building from trunk for now.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29684 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'utils/common/deploy.py')
| -rwxr-xr-x | utils/common/deploy.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/utils/common/deploy.py b/utils/common/deploy.py index 44635c8..1e48f8a 100755 --- a/utils/common/deploy.py +++ b/utils/common/deploy.py @@ -563,6 +563,22 @@ def deploy(): tempclean(workfolder, cleanup and not keeptemp) sys.exit(1) + # replace version strings. Only done when building from trunk + if tag == "": + print "Updating version information in sources" + for f in regreplace: + infile = open(sourcefolder + "/" + f, "r") + incontents = infile.readlines() + infile.close() + + outfile = open(sourcefolder + "/" + f, "w") + for line in incontents: + # replacements made on the replacement string: + # %REVISION% is replaced with the revision number + replacement = re.sub("%REVISION%", str(trunk), regreplace[f][1]) + outfile.write(re.sub(regreplace[f][0], replacement, line)) + outfile.close() + if source == True: tf = tarfile.open(archivename, mode='w:bz2') tf.add(sourcefolder, os.path.basename(re.subn('/$', '', sourcefolder)[0])) |