updates fro android
[electrum-nvc.git] / make_packages
1 #!/usr/bin/python
2
3 from lib.version import ELECTRUM_VERSION as version
4
5 if __name__ == '__main__':
6     import sys, re, shutil, os, hashlib
7
8     if not ( os.path.exists('aes') and os.path.exists('ecdsa') ):
9         print "aes and ecdsa are missing. copy them locally before."
10         sys.exit()
11
12     os.system("python mki18n.py")
13     os.system("pyrcc4 icons.qrc -o lib/icons_rc.py")
14     os.system("python setup.py sdist --format=zip,gztar")
15     
16     _tgz="Electrum-%s.tar.gz"%version
17     _zip="Electrum-%s.zip"%version
18
19
20     # android
21     os.system('rm -rf dist/e4a-%s'%version)
22     os.mkdir('dist/e4a-%s'%version)
23     shutil.copyfile("electrum",'dist/e4a-%s/e4a.py'%version)
24     shutil.copytree("ecdsa",'dist/e4a-%s/ecdsa'%version)
25     shutil.copytree("aes",'dist/e4a-%s/aes'%version)
26     shutil.copytree("lib",'dist/e4a-%s/lib'%version)
27     os.mkdir('dist/e4a-%s/gui'%version)
28     shutil.copy("gui/gui_android.py",'dist/e4a-%s/gui'%version)
29     shutil.copy("gui/__init__.py",'dist/e4a-%s/gui'%version)
30
31     os.chdir("dist")
32     # create the zip file
33     os.system( "zip -r e4a-%s.zip e4a-%s"%(version, version) )
34
35     # change filename because some 3G carriers do not allow users to download a zip file...
36     e4a_name = "e4a-%s.zip"%version
37     e4a_name2 = e4a_name.replace(".","")
38     os.system( "cp %s %s"%(e4a_name, e4a_name2) )
39     os.chdir("..")
40
41     md5_tgz = hashlib.md5(file('dist/'+_tgz, 'r').read()).digest().encode('hex')
42     md5_zip = hashlib.md5(file('dist/'+_zip, 'r').read()).digest().encode('hex')
43     md5_android = hashlib.md5(file('dist/'+e4a_name2, 'r').read()).digest().encode('hex')
44
45     print ""
46     print "Packages are ready:"
47     print "dist/%s     "%_tgz, md5_tgz
48     print "dist/%s        "%_zip, md5_zip
49     print "dist/%s                "%e4a_name2, md5_android
50     print "To make a release, upload the files to the server, and update the webpages in branch gh-pages"
51