Added InfoWin.py to the library
[rox-lib.git] / MakeDist
blob5ecea80cb1f39515b7dbb73c2efb485bb88e5f2f
1 #!/usr/bin/env python
2 from xml.dom import minidom, Node
3 import os
5 appinfo = minidom.parse('AppInfo.xml')
6 root = appinfo.documentElement
7 assert root.localName == 'AppInfo'
8 for x in root.childNodes:
9 if x.nodeType != Node.ELEMENT_NODE: continue
10 if x.localName == 'About': break
11 else:
12 assert 0
13 for y in x.childNodes:
14 if y.nodeType != Node.ELEMENT_NODE: continue
15 if y.localName == 'Version': break
16 else:
17 assert 0
18 version = ''.join([text.nodeValue for text in y.childNodes
19 if text.nodeType == Node.TEXT_NODE])
21 a, b, c = map(int, version.split(' ')[0].split('.')[:3])
23 raw_input("Create rox-lib-%s (%d.%d.%d)?" % (version, a, b, c))
25 os.system('cvs rel .')
26 os.system('cvs tag -F Release-%d-%d-%d' % (a, b, c))
28 os.chdir(os.environ['HOME'])
29 dir = 'rox-lib-%d.%d.%d' % (a, b, c)
30 os.mkdir(dir)
31 os.chdir(dir)
32 #os.system('cvs -d:pserver:anonymous@cvs.rox.sourceforge.net:/cvsroot/rox export -r Release-%d-%d-%d ROX-Lib2' % (a, b, c))
33 os.system('cvs -dtal197@cvs.rox.sourceforge.net:/cvsroot/rox export -r Release-%d-%d-%d ROX-Lib2' % (a, b, c))
34 os.system('cd ROX-Lib2/python; ./make_docs.py; rm rox/.cvsignore rox/*.pyc')
35 os.chdir(os.environ['HOME'])
36 os.system('tar czf %s.tgz %s' % (dir, dir))
37 print "%s.tgz is ready!" % dir