Fixing wineprefix directory cleanup
[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/electrum.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/electrum'%version)
27
28     os.chdir("dist")
29     # create the zip file
30     os.system( "zip -r e4a-%s.zip e4a-%s"%(version, version) )
31
32     # change filename because some 3G carriers do not allow users to download a zip file...
33     e4a_name = "e4a-%s.zip"%version
34     e4a_name2 = e4a_name.replace(".","")
35     os.system( "cp %s %s"%(e4a_name, e4a_name2) )
36     os.chdir("..")
37
38     md5_tgz = hashlib.md5(file('dist/'+_tgz, 'r').read()).digest().encode('hex')
39     md5_zip = hashlib.md5(file('dist/'+_zip, 'r').read()).digest().encode('hex')
40     md5_android = hashlib.md5(file('dist/'+e4a_name2, 'r').read()).digest().encode('hex')
41
42     print ""
43     print "Packages are ready:"
44     print "dist/%s     "%_tgz, md5_tgz
45     print "dist/%s        "%_zip, md5_zip
46     print "dist/%s                "%e4a_name2, md5_android
47     print "To make a release, upload the files to the server, and update the webpages in branch gh-pages"
48