317 lines
9.5 KiB
Plaintext
317 lines
9.5 KiB
Plaintext
|
|
||
|
# -*- mode: python ; coding: utf-8 -*-
|
||
|
import os
|
||
|
import sys
|
||
|
import deluge.common
|
||
|
from PyInstaller.compat import is_win
|
||
|
from PyInstaller.utils.hooks import collect_all, copy_metadata
|
||
|
|
||
|
datas = []
|
||
|
binaries = []
|
||
|
hiddenimports = []
|
||
|
|
||
|
# Collect Meta Data
|
||
|
datas += copy_metadata('deluge', recursive=True)
|
||
|
datas += copy_metadata('service-identity', recursive=True)
|
||
|
|
||
|
# Add Deluge Hidden Imports
|
||
|
tmp_ret = collect_all('deluge')
|
||
|
hiddenimports += tmp_ret[2]
|
||
|
|
||
|
# Get build_version from installed deluge.
|
||
|
build_version = deluge.common.get_version()
|
||
|
|
||
|
#Copy UI/Plugin files to where pyinstaller expects
|
||
|
datas += [ ('../../deluge/ui', 'deluge/ui'),
|
||
|
('../../deluge/plugins', 'deluge/plugins') ]
|
||
|
|
||
|
|
||
|
block_cipher = None
|
||
|
|
||
|
|
||
|
a = Analysis([os.path.abspath(os.path.join(HOMEPATH,os.pardir,os.pardir)) + '\Scripts\deluge-console-script.py'],
|
||
|
pathex=[],
|
||
|
binaries=binaries,
|
||
|
datas=datas,
|
||
|
hiddenimports=hiddenimports,
|
||
|
hookspath=[],
|
||
|
hooksconfig={},
|
||
|
runtime_hooks=[],
|
||
|
excludes=[],
|
||
|
win_no_prefer_redirects=False,
|
||
|
win_private_assemblies=False,
|
||
|
cipher=block_cipher,
|
||
|
noarchive=False)
|
||
|
pyz = PYZ(a.pure, a.zipped_data,
|
||
|
cipher=block_cipher)
|
||
|
exe = EXE(pyz,
|
||
|
a.scripts,
|
||
|
[],
|
||
|
exclude_binaries=True,
|
||
|
name='deluge-console',
|
||
|
debug=False,
|
||
|
bootloader_ignore_signals=False,
|
||
|
strip=False,
|
||
|
upx=True,
|
||
|
icon='../../deluge/ui/data/pixmaps/deluge.ico',
|
||
|
console=True,
|
||
|
disable_windowed_traceback=False,
|
||
|
target_arch=None,
|
||
|
codesign_identity=None,
|
||
|
entitlements_file=None )
|
||
|
|
||
|
b = Analysis([os.path.abspath(os.path.join(HOMEPATH,os.pardir,os.pardir)) + '\Scripts\deluge-gtk-script.pyw'],
|
||
|
pathex=[],
|
||
|
binaries=binaries,
|
||
|
datas=datas,
|
||
|
hiddenimports=hiddenimports,
|
||
|
hookspath=[],
|
||
|
hooksconfig={},
|
||
|
runtime_hooks=[],
|
||
|
excludes=[],
|
||
|
win_no_prefer_redirects=False,
|
||
|
win_private_assemblies=False,
|
||
|
cipher=block_cipher,
|
||
|
noarchive=False)
|
||
|
pyzb = PYZ(b.pure, b.zipped_data,
|
||
|
cipher=block_cipher)
|
||
|
exeb = EXE(pyzb,
|
||
|
b.scripts,
|
||
|
[],
|
||
|
exclude_binaries=True,
|
||
|
name='deluge-gtk',
|
||
|
debug=False,
|
||
|
bootloader_ignore_signals=False,
|
||
|
strip=False,
|
||
|
upx=True,
|
||
|
icon='../../deluge/ui/data/pixmaps/deluge.ico',
|
||
|
console=False,
|
||
|
disable_windowed_traceback=False,
|
||
|
target_arch=None,
|
||
|
codesign_identity=None,
|
||
|
entitlements_file=None )
|
||
|
|
||
|
c = Analysis([os.path.abspath(os.path.join(HOMEPATH,os.pardir,os.pardir)) + '\Scripts\deluged-script.py'],
|
||
|
pathex=[],
|
||
|
binaries=binaries,
|
||
|
datas=datas,
|
||
|
hiddenimports=hiddenimports,
|
||
|
hookspath=[],
|
||
|
hooksconfig={},
|
||
|
runtime_hooks=[],
|
||
|
excludes=[],
|
||
|
win_no_prefer_redirects=False,
|
||
|
win_private_assemblies=False,
|
||
|
cipher=block_cipher,
|
||
|
noarchive=False)
|
||
|
pyzc = PYZ(c.pure, c.zipped_data,
|
||
|
cipher=block_cipher)
|
||
|
|
||
|
exec = EXE(pyzc,
|
||
|
c.scripts,
|
||
|
[],
|
||
|
exclude_binaries=True,
|
||
|
name='deluged',
|
||
|
debug=False,
|
||
|
bootloader_ignore_signals=False,
|
||
|
strip=False,
|
||
|
upx=True,
|
||
|
icon='../../deluge/ui/data/pixmaps/deluge.ico',
|
||
|
console=False,
|
||
|
disable_windowed_traceback=False,
|
||
|
target_arch=None,
|
||
|
codesign_identity=None,
|
||
|
entitlements_file=None )
|
||
|
|
||
|
d = Analysis([os.path.abspath(os.path.join(HOMEPATH,os.pardir,os.pardir)) + '\Scripts\deluged-debug-script.py'],
|
||
|
pathex=[],
|
||
|
binaries=binaries,
|
||
|
datas=datas,
|
||
|
hiddenimports=hiddenimports,
|
||
|
hookspath=[],
|
||
|
hooksconfig={},
|
||
|
runtime_hooks=[],
|
||
|
excludes=[],
|
||
|
win_no_prefer_redirects=False,
|
||
|
win_private_assemblies=False,
|
||
|
cipher=block_cipher,
|
||
|
noarchive=False)
|
||
|
pyzd = PYZ(d.pure, d.zipped_data,
|
||
|
cipher=block_cipher)
|
||
|
exed = EXE(pyzd,
|
||
|
d.scripts,
|
||
|
[],
|
||
|
exclude_binaries=True,
|
||
|
name='deluged-debug',
|
||
|
debug=False,
|
||
|
bootloader_ignore_signals=False,
|
||
|
strip=False,
|
||
|
upx=True,
|
||
|
icon='../../deluge/ui/data/pixmaps/deluge.ico',
|
||
|
console=True,
|
||
|
disable_windowed_traceback=False,
|
||
|
target_arch=None,
|
||
|
codesign_identity=None,
|
||
|
entitlements_file=None )
|
||
|
|
||
|
e = Analysis([os.path.abspath(os.path.join(HOMEPATH,os.pardir,os.pardir)) + '\Scripts\deluge-debug-script.py'],
|
||
|
pathex=[],
|
||
|
binaries=binaries,
|
||
|
datas=datas,
|
||
|
hiddenimports=hiddenimports,
|
||
|
hookspath=[],
|
||
|
hooksconfig={},
|
||
|
runtime_hooks=[],
|
||
|
excludes=[],
|
||
|
win_no_prefer_redirects=False,
|
||
|
win_private_assemblies=False,
|
||
|
cipher=block_cipher,
|
||
|
noarchive=False)
|
||
|
pyze = PYZ(e.pure, e.zipped_data,
|
||
|
cipher=block_cipher)
|
||
|
exee = EXE(pyze,
|
||
|
e.scripts,
|
||
|
[],
|
||
|
exclude_binaries=True,
|
||
|
name='deluge-debug',
|
||
|
debug=False,
|
||
|
bootloader_ignore_signals=False,
|
||
|
strip=False,
|
||
|
upx=True,
|
||
|
icon='../../deluge/ui/data/pixmaps/deluge.ico',
|
||
|
console=True,
|
||
|
disable_windowed_traceback=False,
|
||
|
target_arch=None,
|
||
|
codesign_identity=None,
|
||
|
entitlements_file=None )
|
||
|
|
||
|
f = Analysis([os.path.abspath(os.path.join(HOMEPATH,os.pardir,os.pardir)) + '\Scripts\deluge-script.pyw'],
|
||
|
pathex=[],
|
||
|
binaries=binaries,
|
||
|
datas=datas,
|
||
|
hiddenimports=hiddenimports,
|
||
|
hookspath=[],
|
||
|
hooksconfig={},
|
||
|
runtime_hooks=[],
|
||
|
excludes=[],
|
||
|
win_no_prefer_redirects=False,
|
||
|
win_private_assemblies=False,
|
||
|
cipher=block_cipher,
|
||
|
noarchive=False)
|
||
|
pyzf = PYZ(f.pure, f.zipped_data,
|
||
|
cipher=block_cipher)
|
||
|
exef = EXE(pyzf,
|
||
|
f.scripts,
|
||
|
[],
|
||
|
exclude_binaries=True,
|
||
|
name='deluge',
|
||
|
debug=False,
|
||
|
bootloader_ignore_signals=False,
|
||
|
strip=False,
|
||
|
upx=True,
|
||
|
icon='../../deluge/ui/data/pixmaps/deluge.ico',
|
||
|
console=False,
|
||
|
disable_windowed_traceback=False,
|
||
|
target_arch=None,
|
||
|
codesign_identity=None,
|
||
|
entitlements_file=None )
|
||
|
|
||
|
g = Analysis([os.path.abspath(os.path.join(HOMEPATH,os.pardir,os.pardir)) + '\Scripts\deluge-web-debug-script.py'],
|
||
|
pathex=[],
|
||
|
binaries=binaries,
|
||
|
datas=datas,
|
||
|
hiddenimports=hiddenimports,
|
||
|
hookspath=[],
|
||
|
hooksconfig={},
|
||
|
runtime_hooks=[],
|
||
|
excludes=[],
|
||
|
win_no_prefer_redirects=False,
|
||
|
win_private_assemblies=False,
|
||
|
cipher=block_cipher,
|
||
|
noarchive=False)
|
||
|
pyzg = PYZ(g.pure, g.zipped_data,
|
||
|
cipher=block_cipher)
|
||
|
exeg = EXE(pyzg,
|
||
|
g.scripts,
|
||
|
[],
|
||
|
exclude_binaries=True,
|
||
|
name='deluge-web-debug',
|
||
|
debug=False,
|
||
|
bootloader_ignore_signals=False,
|
||
|
strip=False,
|
||
|
upx=True,
|
||
|
icon='../../deluge/ui/data/pixmaps/deluge.ico',
|
||
|
console=True,
|
||
|
disable_windowed_traceback=False,
|
||
|
target_arch=None,
|
||
|
codesign_identity=None,
|
||
|
entitlements_file=None )
|
||
|
|
||
|
h = Analysis([os.path.abspath(os.path.join(HOMEPATH,os.pardir,os.pardir)) + '\Scripts\deluge-web-script.py'],
|
||
|
pathex=[],
|
||
|
binaries=binaries,
|
||
|
datas=datas,
|
||
|
hiddenimports=hiddenimports,
|
||
|
hookspath=[],
|
||
|
hooksconfig={},
|
||
|
runtime_hooks=[],
|
||
|
excludes=[],
|
||
|
win_no_prefer_redirects=False,
|
||
|
win_private_assemblies=False,
|
||
|
cipher=block_cipher,
|
||
|
noarchive=False)
|
||
|
pyzh = PYZ(h.pure, h.zipped_data,
|
||
|
cipher=block_cipher)
|
||
|
exeh = EXE(pyzh,
|
||
|
h.scripts,
|
||
|
[],
|
||
|
exclude_binaries=True,
|
||
|
name='deluge-web',
|
||
|
debug=False,
|
||
|
bootloader_ignore_signals=False,
|
||
|
strip=False,
|
||
|
upx=True,
|
||
|
icon='../../deluge/ui/data/pixmaps/deluge.ico',
|
||
|
console=False,
|
||
|
disable_windowed_traceback=False,
|
||
|
target_arch=None,
|
||
|
codesign_identity=None,
|
||
|
entitlements_file=None )
|
||
|
|
||
|
coll = COLLECT(exe,
|
||
|
a.binaries,
|
||
|
a.zipfiles,
|
||
|
a.datas,
|
||
|
exeb,
|
||
|
b.binaries,
|
||
|
b.zipfiles,
|
||
|
b.datas,
|
||
|
exec,
|
||
|
c.binaries,
|
||
|
c.zipfiles,
|
||
|
c.datas,
|
||
|
exed,
|
||
|
d.binaries,
|
||
|
d.zipfiles,
|
||
|
d.datas,
|
||
|
exee,
|
||
|
e.binaries,
|
||
|
e.zipfiles,
|
||
|
e.datas,
|
||
|
exef,
|
||
|
f.binaries,
|
||
|
f.zipfiles,
|
||
|
f.datas,
|
||
|
exeg,
|
||
|
g.binaries,
|
||
|
g.zipfiles,
|
||
|
g.datas,
|
||
|
exeh,
|
||
|
h.binaries,
|
||
|
h.zipfiles,
|
||
|
h.datas,
|
||
|
strip=False,
|
||
|
upx=True,
|
||
|
upx_exclude=[],
|
||
|
name='Deluge')
|