You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.9 KiB
51 lines
1.9 KiB
#!/usr/bin/python |
|
|
|
from lib.version import ELECTRUM_VERSION as version |
|
|
|
if __name__ == '__main__': |
|
import sys, re, shutil, os, hashlib |
|
|
|
if not ( os.path.exists('aes') and os.path.exists('ecdsa') ): |
|
print "aes and ecdsa are missing. copy them locally before." |
|
sys.exit() |
|
|
|
os.system("python mki18n.py") |
|
os.system("pyrcc4 icons.qrc -o gui/icons_rc.py") |
|
os.system("python setup.py sdist --format=zip,gztar") |
|
|
|
_tgz="Electrum-%s.tar.gz"%version |
|
_zip="Electrum-%s.zip"%version |
|
|
|
|
|
# android |
|
os.system('rm -rf dist/e4a-%s'%version) |
|
os.mkdir('dist/e4a-%s'%version) |
|
shutil.copyfile("electrum",'dist/e4a-%s/e4a.py'%version) |
|
shutil.copytree("ecdsa",'dist/e4a-%s/ecdsa'%version) |
|
shutil.copytree("aes",'dist/e4a-%s/aes'%version) |
|
shutil.copytree("lib",'dist/e4a-%s/lib'%version) |
|
os.mkdir('dist/e4a-%s/gui'%version) |
|
shutil.copy("gui/gui_android.py",'dist/e4a-%s/gui'%version) |
|
shutil.copy("gui/__init__.py",'dist/e4a-%s/gui'%version) |
|
|
|
os.chdir("dist") |
|
# create the zip file |
|
os.system( "zip -r e4a-%s.zip e4a-%s"%(version, version) ) |
|
|
|
# change filename because some 3G carriers do not allow users to download a zip file... |
|
e4a_name = "e4a-%s.zip"%version |
|
e4a_name2 = e4a_name.replace(".","") |
|
os.system( "cp %s %s"%(e4a_name, e4a_name2) ) |
|
os.chdir("..") |
|
|
|
md5_tgz = hashlib.md5(file('dist/'+_tgz, 'r').read()).digest().encode('hex') |
|
md5_zip = hashlib.md5(file('dist/'+_zip, 'r').read()).digest().encode('hex') |
|
md5_android = hashlib.md5(file('dist/'+e4a_name2, 'r').read()).digest().encode('hex') |
|
|
|
print "" |
|
print "Packages are ready:" |
|
print "dist/%s "%_tgz, md5_tgz |
|
print "dist/%s "%_zip, md5_zip |
|
print "dist/%s "%e4a_name2, md5_android |
|
print "To make a release, upload the files to the server, and update the webpages in branch gh-pages" |
|
|
|
|