fix android package
[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 gui/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     for n in ['gui_android.py', 'pyqrnative.py', 'bmp.py']:
29         shutil.copy("gui/%s"%n,'dist/e4a-%s/gui'%version)
30     open('dist/e4a-%s/gui/__init__.py'%version,'w').close()
31
32     os.chdir("dist")
33     # create the zip file
34     os.system( "zip -r e4a-%s.zip e4a-%s"%(version, version) )
35
36     # change filename because some 3G carriers do not allow users to download a zip file...
37     e4a_name = "e4a-%s.zip"%version
38     e4a_name2 = e4a_name.replace(".","")
39     os.system( "cp %s %s"%(e4a_name, e4a_name2) )
40     os.chdir("..")
41
42     md5_tgz = hashlib.md5(file('dist/'+_tgz, 'r').read()).digest().encode('hex')
43     md5_zip = hashlib.md5(file('dist/'+_zip, 'r').read()).digest().encode('hex')
44     md5_android = hashlib.md5(file('dist/'+e4a_name2, 'r').read()).digest().encode('hex')
45
46     print ""
47     print "Packages are ready:"
48     print "dist/%s     "%_tgz, md5_tgz
49     print "dist/%s        "%_zip, md5_zip
50     print "dist/%s                "%e4a_name2, md5_android
51     print "To make a release, upload the files to the server, and update the webpages in branch gh-pages"
52