X-Git-Url: https://git.novaco.in/?a=blobdiff_plain;f=make_packages;h=22e01a30cd93654d5890ac2222819d8cfe0db9f4;hb=98acf49b4ef193ec2b6b582da646bfc976de389e;hp=a790c873b5c54f7eedb018e58e06464ae5d678a0;hpb=7940cf870a8045bed3f70038da33ebe85c5965d1;p=electrum-nvc.git diff --git a/make_packages b/make_packages index a790c87..22e01a3 100755 --- a/make_packages +++ b/make_packages @@ -5,12 +5,12 @@ 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." + if not ( os.path.exists('packages')): + print "The packages directory is missing." sys.exit() - os.system("python mki18n.py") - os.system("pyrcc4 icons.qrc -o lib/icons_rc.py") + # os.system("python mki18n.py") + os.system("pyrcc4 icons.qrc -o gui/qt/icons_rc.py") os.system("python setup.py sdist --format=zip,gztar") _tgz="Electrum-%s.tar.gz"%version @@ -20,29 +20,38 @@ if __name__ == '__main__': # android os.system('rm -rf dist/e4a-%s'%version) os.mkdir('dist/e4a-%s'%version) - shutil.copyfile("electrum",'dist/e4a-%s/electrum.py'%version) - shutil.copytree("ecdsa",'dist/e4a-%s/ecdsa'%version) - shutil.copytree("aes",'dist/e4a-%s/aes'%version) - shutil.copytree("lib",'dist/e4a-%s/electrum'%version) + shutil.copyfile("electrum",'dist/e4a-%s/e4a.py'%version) + shutil.copytree("packages",'dist/e4a-%s/packages'%version) + shutil.copytree("lib",'dist/e4a-%s/lib'%version) + os.mkdir('dist/e4a-%s/gui'%version) + for n in ['android.py']: + shutil.copy("gui/%s"%n,'dist/e4a-%s/gui'%version) + open('dist/e4a-%s/gui/__init__.py'%version,'w').close() os.chdir("dist") # create the zip file os.system( "zip -r e4a-%s.zip e4a-%s"%(version, version) ) + os.system( "rm -rf e4a-%s"%(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("..") + os.system( "mv %s %s"%(e4a_name, e4a_name2) ) + + import getpass + password = getpass.getpass("Password:") + for f in os.listdir("."): + os.system( "gpg --sign --armor --detach --passphrase \"%s\" %s"%(password, f) ) - 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') + md5_tgz = hashlib.md5(file(_tgz, 'r').read()).digest().encode('hex') + md5_zip = hashlib.md5(file(_zip, 'r').read()).digest().encode('hex') + md5_android = hashlib.md5(file(e4a_name2, 'r').read()).digest().encode('hex') + os.chdir("..") print "" print "Packages are ready:" print "dist/%s "%_tgz, md5_tgz print "dist/%s "%_zip, md5_zip - print "dist/e4a ", md5_android + 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"