diff options
author | Kali Kaneko <kali@leap.se> | 2018-02-08 01:03:09 +0100 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2018-02-15 16:36:37 +0100 |
commit | 29832c73adea3573ead5fcc8007419c67305014e (patch) | |
tree | 23e8ec8c65b9db91afc5eca7565576d1d67365e1 /pkg/pyinst/anonvpn.spec | |
parent | 7697beb7034acacbe6964af0385a03b2ea33ec93 (diff) |
[feat] anonvpn entrypoints
Diffstat (limited to 'pkg/pyinst/anonvpn.spec')
-rw-r--r-- | pkg/pyinst/anonvpn.spec | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/pkg/pyinst/anonvpn.spec b/pkg/pyinst/anonvpn.spec new file mode 100644 index 00000000..3f5e18da --- /dev/null +++ b/pkg/pyinst/anonvpn.spec @@ -0,0 +1,56 @@ +# -*- mode: python -*- +import os +import sys +import platform + +block_cipher = None + +IS_MAC = sys.platform.startswith('darwin') +IS_WIN = platform.system() == 'Windows' + +BITMASK_VERSION = open('pkg/next-version').read() +if IS_MAC: + # launchd chokes because more digits are added to the version string, + # so let's skip the patch part of the version. + BITMASK_VERSION = '.'.join(BITMASK_VERSION.split('.')[:-1]) + +hiddenimports = [ + 'appdirs', + 'service_identity', + 'leap.common', 'leap.bitmask', + 'leap.bitmask.core.logs', + 'packaging', 'packaging.version', 'packaging.specifiers', + 'packaging.requirements'] + +VENV = os.environ.get('VIRTUAL_ENV', '') +ENTRYPOINT = ['../../src/leap/bitmask/gui/anonvpn.py'] + +a = Analysis(ENTRYPOINT, + binaries=None, + datas=None, + hiddenimports=hiddenimports, + hookspath=[], + runtime_hooks=[], + excludes=excludes, + + win_no_prefer_redirects=False, + win_private_assemblies=False, + cipher=block_cipher) +pyz = PYZ(a.pure, a.zipped_data, + cipher=block_cipher) +exe = EXE(pyz, + a.scripts, + exclude_binaries=True, + name='anonvpn', + debug=True, + strip=True, + upx=True, + # TODO remove console for win + console=True) +coll = COLLECT(exe, + a.binaries, + a.zipfiles, + a.datas, + strip=False, + upx=True, + name='anonvpn') |