do not bundle blockchain headers with packages
[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     # copy to a filename without extension
32     os.system( "cp e4a-%s.zip e4a"%version )
33     os.chdir("..")
34
35     md5_tgz = hashlib.md5(file('dist/'+_tgz, 'r').read()).digest().encode('hex')
36     md5_zip = hashlib.md5(file('dist/'+_zip, 'r').read()).digest().encode('hex')
37     md5_android = hashlib.md5(file('dist/e4a', 'r').read()).digest().encode('hex')
38
39     print ""
40     print "Packages are ready:"
41     print "dist/%s     "%_tgz, md5_tgz
42     print "dist/%s        "%_zip, md5_zip
43     print "dist/e4a                       ", md5_android
44     print "To make a release, upload the files to https://github.com/spesmilo/electrum/downloads and update the webpages in branch gh-pages"
45