2017-02-27 13:02:37 +01:00
|
|
|
import ctypes
|
|
|
|
import os
|
|
|
|
import time
|
2019-09-16 12:50:40 +02:00
|
|
|
import sys
|
|
|
|
|
|
|
|
if ctypes.sizeof(ctypes.c_voidp) == 4:
|
|
|
|
arch=32
|
|
|
|
else:
|
|
|
|
arch=64
|
|
|
|
|
|
|
|
sslName = 'OpenSSL-Win%s' % ("32" if arch == 32 else "64")
|
|
|
|
site_root = os.path.abspath(HOMEPATH)
|
|
|
|
spec_root = os.path.abspath(SPECPATH)
|
|
|
|
cdrivePath= site_root[0:3]
|
|
|
|
srcPath = spec_root[:-20]+"src\\"
|
|
|
|
qtPath = site_root+"\\PyQt4\\"
|
|
|
|
openSSLPath = cdrivePath+sslName+"\\"
|
|
|
|
msvcrDllPath = cdrivePath+"windows\\system32\\"
|
|
|
|
pythonDllPath = cdrivePath+"Python27\\"
|
|
|
|
outPath = spec_root+"\\bitmessagemain"
|
|
|
|
|
|
|
|
importPath = srcPath
|
|
|
|
sys.path.insert(0,importPath)
|
|
|
|
os.chdir(sys.path[0])
|
|
|
|
from version import softwareVersion
|
2017-02-27 13:02:37 +01:00
|
|
|
|
|
|
|
today = time.strftime("%Y%m%d")
|
|
|
|
snapshot = False
|
|
|
|
|
|
|
|
os.rename(os.path.join(srcPath, '__init__.py'), os.path.join(srcPath, '__init__.py.backup'))
|
|
|
|
|
|
|
|
# -*- mode: python -*-
|
2019-09-16 12:50:40 +02:00
|
|
|
a = Analysis(
|
|
|
|
[srcPath + 'bitmessagemain.py'],
|
2017-02-27 13:02:37 +01:00
|
|
|
pathex=[outPath],
|
2019-09-16 12:50:40 +02:00
|
|
|
hiddenimports=['pyopencl','numpy', 'win32com' , 'setuptools.msvc' ,'_cffi_backend'],
|
2017-02-27 13:02:37 +01:00
|
|
|
hookspath=None,
|
2019-09-16 12:50:40 +02:00
|
|
|
runtime_hooks=None
|
|
|
|
)
|
2017-02-27 13:02:37 +01:00
|
|
|
|
|
|
|
os.rename(os.path.join(srcPath, '__init__.py.backup'), os.path.join(srcPath, '__init__.py'))
|
|
|
|
|
|
|
|
def addTranslations():
|
|
|
|
import os
|
|
|
|
extraDatas = []
|
|
|
|
for file in os.listdir(srcPath + 'translations'):
|
|
|
|
if file[-3:] != ".qm":
|
|
|
|
continue
|
|
|
|
extraDatas.append((os.path.join('translations', file), os.path.join(srcPath, 'translations', file), 'DATA'))
|
|
|
|
for file in os.listdir(qtPath + 'translations'):
|
|
|
|
if file[0:3] != "qt_" or file[5:8] != ".qm":
|
|
|
|
continue
|
|
|
|
extraDatas.append((os.path.join('translations', file), os.path.join(qtPath, 'translations', file), 'DATA'))
|
|
|
|
return extraDatas
|
|
|
|
|
|
|
|
def addUIs():
|
|
|
|
import os
|
|
|
|
extraDatas = []
|
|
|
|
for file in os.listdir(srcPath + 'bitmessageqt'):
|
|
|
|
if file[-3:] != ".ui":
|
|
|
|
continue
|
|
|
|
extraDatas.append((os.path.join('ui', file), os.path.join(srcPath, 'bitmessageqt', file), 'DATA'))
|
|
|
|
return extraDatas
|
|
|
|
|
|
|
|
# append the translations directory
|
|
|
|
a.datas += addTranslations()
|
|
|
|
a.datas += addUIs()
|
|
|
|
|
2019-09-16 12:50:40 +02:00
|
|
|
|
2017-02-27 13:02:37 +01:00
|
|
|
|
|
|
|
a.binaries += [('libeay32.dll', openSSLPath + 'libeay32.dll', 'BINARY'),
|
2019-09-16 12:50:40 +02:00
|
|
|
('python27.dll', pythonDllPath + 'python27.dll', 'BINARY'),
|
|
|
|
('msvcr120.dll', msvcrDllPath + 'msvcr120.dll','BINARY'),
|
|
|
|
(os.path.join('bitmsghash', 'bitmsghash%i.dll' % (arch)), os.path.join(srcPath, 'bitmsghash', 'bitmsghash%i.dll' % (arch)), 'BINARY'),
|
|
|
|
(os.path.join('bitmsghash', 'bitmsghash.cl'), os.path.join(srcPath, 'bitmsghash', 'bitmsghash.cl'), 'BINARY'),
|
|
|
|
(os.path.join('sslkeys', 'cert.pem'), os.path.join(srcPath, 'sslkeys', 'cert.pem'), 'BINARY'),
|
|
|
|
(os.path.join('sslkeys', 'key.pem'), os.path.join(srcPath, 'sslkeys', 'key.pem'), 'BINARY')
|
|
|
|
]
|
2017-02-27 13:02:37 +01:00
|
|
|
|
|
|
|
|
|
|
|
fname = 'Bitmessage_%s_%s.exe' % ("x86" if arch == 32 else "x64", softwareVersion)
|
|
|
|
if snapshot:
|
|
|
|
fname = 'Bitmessagedev_%s_%s.exe' % ("x86" if arch == 32 else "x64", today)
|
|
|
|
|
|
|
|
pyz = PYZ(a.pure)
|
|
|
|
exe = EXE(pyz,
|
|
|
|
a.scripts,
|
|
|
|
a.binaries,
|
|
|
|
a.zipfiles,
|
|
|
|
a.datas,
|
|
|
|
a.binaries,
|
2019-09-16 12:50:40 +02:00
|
|
|
[],
|
2017-02-27 13:02:37 +01:00
|
|
|
name=fname,
|
|
|
|
debug=False,
|
|
|
|
strip=None,
|
2019-09-16 12:50:40 +02:00
|
|
|
upx=True,
|
|
|
|
console=True, icon= os.path.join(srcPath, 'images', 'can-icon.ico'))
|
|
|
|
|
|
|
|
coll = COLLECT(exe,
|
|
|
|
a.binaries,
|
|
|
|
a.zipfiles,
|
|
|
|
a.datas,
|
|
|
|
strip=False,
|
|
|
|
upx=True,
|
|
|
|
name='main')
|
|
|
|
|