mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
build-wine/deterministic.spec: add Coldcard plugin and ckcc-protocol dependancy Require version 0.7.2 of ckcc-protocol (window fixes) Rework import paths to new standards Updated icons New minimum version, for latest PSBT constants Upgrade to final PSBT (BIP 174) standard encoding Remove log noise Show bootloader version number as well Handle case where libraries are missing better Remove noise about missing packages, for rest of world Add reference to ckcc-protocol module/data Remove dead code Beef up the README more Slightly better looking Add version numbers and upgrade firmware feature Split out DFU support into own file First pass at adding Coinkite Coldcard hardware wallet to Electrum
139 lines
4.4 KiB
Python
139 lines
4.4 KiB
Python
# -*- mode: python -*-
|
|
|
|
from PyInstaller.utils.hooks import collect_data_files, collect_submodules, collect_dynamic_libs
|
|
|
|
import sys
|
|
for i, x in enumerate(sys.argv):
|
|
if x == '--name':
|
|
cmdline_name = sys.argv[i+1]
|
|
break
|
|
else:
|
|
raise Exception('no name')
|
|
|
|
PYTHON_VERSION = '3.6.6'
|
|
PYHOME = 'c:/python' + PYTHON_VERSION
|
|
|
|
home = 'C:\\electrum\\'
|
|
|
|
# see https://github.com/pyinstaller/pyinstaller/issues/2005
|
|
hiddenimports = []
|
|
hiddenimports += collect_submodules('trezorlib')
|
|
hiddenimports += collect_submodules('safetlib')
|
|
hiddenimports += collect_submodules('btchip')
|
|
hiddenimports += collect_submodules('keepkeylib')
|
|
hiddenimports += collect_submodules('websocket')
|
|
hiddenimports += collect_submodules('ckcc')
|
|
|
|
# Add libusb binary
|
|
binaries = [(PYHOME+"/libusb-1.0.dll", ".")]
|
|
|
|
# Workaround for "Retro Look":
|
|
binaries += [b for b in collect_dynamic_libs('PyQt5') if 'qwindowsvista' in b[0]]
|
|
|
|
binaries += [('C:/tmp/libsecp256k1.dll', '.')]
|
|
|
|
datas = [
|
|
(home+'electrum/*.json', 'electrum'),
|
|
(home+'electrum/wordlist/english.txt', 'electrum/wordlist'),
|
|
(home+'electrum/locale', 'electrum/locale'),
|
|
('C:\\Program Files (x86)\\ZBar\\bin\\', '.')
|
|
]
|
|
datas += collect_data_files('trezorlib')
|
|
datas += collect_data_files('safetlib')
|
|
datas += collect_data_files('btchip')
|
|
datas += collect_data_files('keepkeylib')
|
|
datas += collect_data_files('ckcc')
|
|
|
|
# We don't put these files in to actually include them in the script but to make the Analysis method scan them for imports
|
|
a = Analysis([home+'run_electrum',
|
|
home+'electrum/gui/qt/main_window.py',
|
|
home+'electrum/gui/text.py',
|
|
home+'electrum/util.py',
|
|
home+'electrum/wallet.py',
|
|
home+'electrum/simple_config.py',
|
|
home+'electrum/bitcoin.py',
|
|
home+'electrum/dnssec.py',
|
|
home+'electrum/commands.py',
|
|
home+'electrum/plugins/cosigner_pool/qt.py',
|
|
home+'electrum/plugins/email_requests/qt.py',
|
|
home+'electrum/plugins/trezor/client.py',
|
|
home+'electrum/plugins/trezor/qt.py',
|
|
home+'electrum/plugins/safe_t/client.py',
|
|
home+'electrum/plugins/safe_t/qt.py',
|
|
home+'electrum/plugins/keepkey/qt.py',
|
|
home+'electrum/plugins/ledger/qt.py',
|
|
home+'electrum/plugins/coldcard/qt.py',
|
|
#home+'packages/requests/utils.py'
|
|
],
|
|
binaries=binaries,
|
|
datas=datas,
|
|
#pathex=[home+'lib', home+'gui', home+'plugins'],
|
|
hiddenimports=hiddenimports,
|
|
hookspath=[])
|
|
|
|
|
|
# http://stackoverflow.com/questions/19055089/pyinstaller-onefile-warning-pyconfig-h-when-importing-scipy-or-scipy-signal
|
|
for d in a.datas:
|
|
if 'pyconfig' in d[0]:
|
|
a.datas.remove(d)
|
|
break
|
|
|
|
# hotfix for #3171 (pre-Win10 binaries)
|
|
a.binaries = [x for x in a.binaries if not x[1].lower().startswith(r'c:\windows')]
|
|
|
|
pyz = PYZ(a.pure)
|
|
|
|
|
|
#####
|
|
# "standalone" exe with all dependencies packed into it
|
|
|
|
exe_standalone = EXE(
|
|
pyz,
|
|
a.scripts,
|
|
a.binaries,
|
|
a.datas,
|
|
name=os.path.join('build\\pyi.win32\\electrum', cmdline_name + ".exe"),
|
|
debug=False,
|
|
strip=None,
|
|
upx=False,
|
|
icon=home+'icons/electrum.ico',
|
|
console=False)
|
|
# console=True makes an annoying black box pop up, but it does make Electrum output command line commands, with this turned off no output will be given but commands can still be used
|
|
|
|
exe_portable = EXE(
|
|
pyz,
|
|
a.scripts,
|
|
a.binaries,
|
|
a.datas + [ ('is_portable', 'README.md', 'DATA' ) ],
|
|
name=os.path.join('build\\pyi.win32\\electrum', cmdline_name + "-portable.exe"),
|
|
debug=False,
|
|
strip=None,
|
|
upx=False,
|
|
icon=home+'icons/electrum.ico',
|
|
console=False)
|
|
|
|
#####
|
|
# exe and separate files that NSIS uses to build installer "setup" exe
|
|
|
|
exe_dependent = EXE(
|
|
pyz,
|
|
a.scripts,
|
|
exclude_binaries=True,
|
|
name=os.path.join('build\\pyi.win32\\electrum', cmdline_name),
|
|
debug=False,
|
|
strip=None,
|
|
upx=False,
|
|
icon=home+'icons/electrum.ico',
|
|
console=False)
|
|
|
|
coll = COLLECT(
|
|
exe_dependent,
|
|
a.binaries,
|
|
a.zipfiles,
|
|
a.datas,
|
|
strip=None,
|
|
upx=True,
|
|
debug=False,
|
|
icon=home+'icons/electrum.ico',
|
|
console=False,
|
|
name=os.path.join('dist', 'electrum'))
|