#!/usr/bin/python3 # # This script is part of the workflow for BUILDERs to reproduce and sign the # release binaries. (for builders who do not have sftp access to "electrum-downloads-airlock") # # - BUILDER builds all binaries and checks they match the official releases # (using release.sh, and perhaps some manual steps) # - BUILDER creates a PR against https://github.com/spesmilo/electrum-signatures/ # to add their sigs for a given release, which then gets merged # - SFTPUSER runs `$ electrum/contrib/add_cosigner $BUILDER` # - SFTPUSER runs `$ SSHUSER=$SFTPUSER electrum/contrib/upload` # - SFTPUSER runs `$ electrum/contrib/make_download $WWW_DIR` # - $ (cd $WWW_DIR; git commit -a -m "add_cosigner"; git push) # - SFTPUSER runs `$ electrum-web/publish.sh $SFTPUSER` # - (for the website to be updated, both ThomasV and SomberNight needs to run publish.sh) import re import os import sys import importlib # cd to project root os.chdir(os.path.dirname(os.path.dirname(__file__))) # load version.py; needlessly complicated alternative to "imp.load_source": version_spec = importlib.util.spec_from_file_location('version', 'electrum/version.py') version_module = importlib.util.module_from_spec(version_spec) version_spec.loader.exec_module(version_module) ELECTRUM_VERSION = version_module.ELECTRUM_VERSION APK_VERSION = version_module.APK_VERSION print("version", ELECTRUM_VERSION) # GPG names of cosigner cosigner = sys.argv[1] version = version_win = version_mac = version_android = ELECTRUM_VERSION files = { 'tgz': "Electrum-%s.tar.gz" % version, 'appimage': "electrum-%s-x86_64.AppImage" % version, 'mac': "electrum-%s.dmg" % version_mac, 'win': "electrum-%s.exe" % version_win, 'win_setup': "electrum-%s-setup.exe" % version_win, 'win_portable': "electrum-%s-portable.exe" % version_win, 'apk_arm64': "Electrum-%s-arm64-v8a-release.apk" % APK_VERSION, 'apk_armeabi': "Electrum-%s-armeabi-v7a-release.apk" % APK_VERSION, } for k, n in files.items(): path = "dist/%s"%n link = "https://download.electrum.org/%s/%s"%(version,n) if not os.path.exists(path): os.system("wget -q %s -O %s" % (link, path)) if not os.path.getsize(path): raise Exception(path) sig_name = n + '.'+cosigner+'.asc' sig_url = "https://raw.githubusercontent.com/spesmilo/electrum-signatures/master/%s/%s/%s"%(version, n, sig_name) sig_path = "dist/%s"% sig_name os.system("wget -nc %s -O %s"%(sig_url, sig_path)) if os.system("gpg --verify %s %s"%(sig_path, path)) != 0: raise Exception(sig_name)