summaryrefslogtreecommitdiff
path: root/pkg/pyinst/anonvpn.spec
blob: 9c558f6d620c38e4d2557d5d119316bf093be59b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# -*- 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',
     'srp',
     'leap.common', 'leap.bitmask', 
     'leap.bitmask.core.logs',
     'leap.bitmask.gui.housekeeping',
     'packaging', 'packaging.version', 'packaging.specifiers',
     'packaging.requirements']

VENV = os.environ.get('VIRTUAL_ENV', '')
ENTRYPOINT = ['../../src/leap/bitmask/gui/anonvpn.py']
excludes = ['PyQt5', 'pysqlcipher', 'scrypt', 'leap.soledad', 'IPython']

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')
if IS_MAC:
    app = BUNDLE(
    	coll,
        name=os.path.join(
          'dist', 'RiseupVPN.app'),
          appname='RiseupVPN',
          version=BITMASK_VERSION,
          icon='pkg/branding/riseupvpn.icns',
	  bundle_identifier='RiseupVPN-' + BITMASK_VERSION)