mirror of
https://github.com/borgbackup/borg.git
synced 2024-11-05 03:25:19 +03:00
37e958bfa4
Remove pyinstaller's default executable icon by setting it to the string 'NONE'. While we're at it, update a comment.
75 lines
2.2 KiB
Python
75 lines
2.2 KiB
Python
# -*- mode: python -*-
|
|
# this pyinstaller spec file is used to build borg binaries on posix platforms and Windows
|
|
|
|
import os, sys
|
|
|
|
is_win32 = sys.platform.startswith('win32')
|
|
|
|
# Note: SPEC contains the spec file argument given to pyinstaller
|
|
here = os.path.dirname(os.path.abspath(SPEC))
|
|
basepath = os.path.abspath(os.path.join(here, '..'))
|
|
|
|
if is_win32:
|
|
hiddenimports = []
|
|
else:
|
|
hiddenimports = ['borg.platform.posix', 'pkg_resources.py2_warn', ]
|
|
|
|
block_cipher = None
|
|
|
|
a = Analysis([os.path.join(basepath, 'src', 'borg', '__main__.py'), ],
|
|
pathex=[basepath, ],
|
|
binaries=[],
|
|
datas=[
|
|
(os.path.join(basepath, 'src', 'borg', 'paperkey.html'), 'borg'),
|
|
],
|
|
hiddenimports=hiddenimports,
|
|
hookspath=[],
|
|
runtime_hooks=[],
|
|
excludes=[
|
|
'_ssl', 'ssl',
|
|
],
|
|
win_no_prefer_redirects=False,
|
|
win_private_assemblies=False,
|
|
cipher=block_cipher)
|
|
|
|
if sys.platform == 'darwin':
|
|
# do not bundle the osxfuse libraries, so we do not get a version
|
|
# mismatch to the installed kernel driver of osxfuse.
|
|
a.binaries = [b for b in a.binaries if 'libosxfuse' not in b[0]]
|
|
|
|
pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher)
|
|
|
|
exe = EXE(pyz,
|
|
a.scripts,
|
|
a.binaries,
|
|
a.zipfiles,
|
|
a.datas,
|
|
name='borg.exe',
|
|
debug=False,
|
|
strip=False,
|
|
upx=True,
|
|
console=True,
|
|
icon='NONE')
|
|
|
|
# Build a directory-based binary in addition to a packed
|
|
# single file. This allows one to look at all included
|
|
# files easily (e.g. without having to strace or halt the built binary
|
|
# and introspect /tmp). Also avoids unpacking all libs when
|
|
# running the app, which is better for app signing on various OS.
|
|
slim_exe = EXE(pyz,
|
|
a.scripts,
|
|
exclude_binaries=True,
|
|
name='borg.exe',
|
|
debug=False,
|
|
strip=False,
|
|
upx=False,
|
|
console=True)
|
|
|
|
coll = COLLECT(slim_exe,
|
|
a.binaries,
|
|
a.zipfiles,
|
|
a.datas,
|
|
strip=False,
|
|
upx=False,
|
|
name='borg-dir')
|