2010-03-05 19:12:23 +01:00
|
|
|
#! /usr/bin/env python
|
2009-01-29 01:35:57 +01:00
|
|
|
import os
|
|
|
|
import sys
|
2012-09-29 23:30:40 +02:00
|
|
|
import glob
|
2009-01-29 01:35:57 +01:00
|
|
|
|
|
|
|
version = (int(sys.argv[1]), int(sys.argv[2]), int(sys.argv[3]), int(sys.argv[4]))
|
|
|
|
|
|
|
|
def substitute_file(name):
|
|
|
|
subst = ''
|
|
|
|
f = open(name)
|
|
|
|
for l in f:
|
2009-04-03 21:33:24 +02:00
|
|
|
if '#define LIBTORRENT_VERSION_MAJOR' in l and name.endswith('.hpp'):
|
2009-01-29 01:35:57 +01:00
|
|
|
l = '#define LIBTORRENT_VERSION_MAJOR %d\n' % version[0]
|
2009-04-03 21:33:24 +02:00
|
|
|
elif '#define LIBTORRENT_VERSION_MINOR' in l and name.endswith('.hpp'):
|
2009-01-29 01:35:57 +01:00
|
|
|
l = '#define LIBTORRENT_VERSION_MINOR %d\n' % version[1]
|
2009-09-18 19:43:50 +02:00
|
|
|
elif '#define LIBTORRENT_VERSION_TINY' in l and name.endswith('.hpp'):
|
2009-03-20 08:38:47 +01:00
|
|
|
l = '#define LIBTORRENT_VERSION_TINY %d\n' % version[2]
|
2012-03-26 18:11:29 +02:00
|
|
|
elif '#define LIBTORRENT_VERSION ' in l and name.endswith('.hpp'):
|
2009-01-29 01:35:57 +01:00
|
|
|
l = '#define LIBTORRENT_VERSION "%d.%d.%d.%d"\n' % (version[0], version[1], version[2], version[3])
|
2009-09-18 20:44:12 +02:00
|
|
|
elif 'AC_INIT([libtorrent-rasterbar]' in l and name.endswith('.ac'):
|
2013-05-12 01:05:30 +02:00
|
|
|
l = 'AC_INIT([libtorrent-rasterbar],[%d.%d.%d],[arvid@rasterbar.com],\n' % (version[0], version[1], version[2])
|
2009-09-18 20:44:12 +02:00
|
|
|
elif 'set (VERSION ' in l and name.endswith('.txt'):
|
2009-01-29 01:35:57 +01:00
|
|
|
l = 'set (VERSION "%d.%d.%d")\n' % (version[0], version[1], version[2])
|
2013-08-18 03:16:13 +02:00
|
|
|
elif ':Version: ' in l and (name.endswith('.rst') or name.endswith('.py')):
|
2009-01-29 01:35:57 +01:00
|
|
|
l = ':Version: %d.%d.%d\n' % (version[0], version[1], version[2])
|
2009-04-03 21:33:24 +02:00
|
|
|
elif 'VERSION = ' in l and name.endswith('Jamfile'):
|
2009-04-03 01:21:44 +02:00
|
|
|
l = 'VERSION = %d.%d.%d ;\n' % (version[0], version[1], version[2])
|
2009-01-29 01:35:57 +01:00
|
|
|
|
|
|
|
subst += l
|
|
|
|
|
|
|
|
f.close()
|
|
|
|
open(name, 'w+').write(subst)
|
|
|
|
|
|
|
|
|
|
|
|
substitute_file('include/libtorrent/version.hpp')
|
|
|
|
substitute_file('CMakeLists.txt')
|
2009-09-18 20:44:12 +02:00
|
|
|
substitute_file('configure.ac')
|
2013-08-18 03:16:13 +02:00
|
|
|
substitute_file('docs/gen_reference_doc.py')
|
2012-09-29 23:30:40 +02:00
|
|
|
for i in glob.glob('docs/*.rst'):
|
|
|
|
substitute_file(i)
|
2009-04-03 21:33:24 +02:00
|
|
|
substitute_file('Jamfile')
|
|
|
|
|
2009-01-29 01:35:57 +01:00
|
|
|
|