-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathlaps-client.macos.spec
127 lines (115 loc) · 3.61 KB
/
laps-client.macos.spec
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
# -*- mode: python ; coding: utf-8 -*-
block_cipher = None
version = '1.11.4'
# find the SHA-1 hash of you Developer ID Application certificate
# for signing via `security find-identity -v -p codesigning` or use `None`
codesign_identity = '4B7092469383AAFE294DA4B2B0CCB1BB0050DF72'
def Entrypoint(dist, group, name, **kwargs):
import pkg_resources
# get toplevel packages of distribution from metadata
def get_toplevel(dist):
distribution = pkg_resources.get_distribution(dist)
if distribution.has_metadata('top_level.txt'):
return list(distribution.get_metadata('top_level.txt').split())
else:
return []
kwargs.setdefault('hiddenimports', [])
packages = []
for distribution in kwargs['hiddenimports']:
packages += get_toplevel(distribution)
kwargs.setdefault('pathex', [])
# get the entry point
ep = pkg_resources.get_entry_info(dist, group, name)
# insert path of the egg at the verify front of the search path
kwargs['pathex'] = [ep.dist.location] + kwargs['pathex']
# script name must not be a valid module name to avoid name clashes on import
script_path = os.path.join(workpath, name + '-script.py')
print("creating script for entry point", dist, group, name)
with open(script_path, 'w') as fh:
print("import", ep.module_name, file=fh)
print("%s.%s()" % (ep.module_name, '.'.join(ep.attrs)), file=fh)
for package in packages:
print("import", package, file=fh)
return Analysis(
[script_path] + kwargs.get('scripts', []),
**kwargs
)
gui_a = Entrypoint('laps4linux_client', 'gui_scripts', 'laps-gui',
pathex=[],
binaries=[],
datas=[],
hiddenimports=[],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=[],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher,
noarchive=False
)
cli_a = Entrypoint('laps4linux_client', 'console_scripts', 'laps-cli',
pathex=[],
binaries=[],
datas=[],
hiddenimports=[],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=[],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher,
noarchive=False
)
MERGE( (gui_a, 'laps-gui', 'laps-gui'), (cli_a, 'laps-cli', 'laps-cli') )
gui_pyz = PYZ(gui_a.pure, gui_a.zipped_data, cipher=block_cipher)
gui_exe = EXE(gui_pyz, gui_a.scripts, [],
exclude_binaries=True,
name='laps-gui',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
console=False,
disable_windowed_traceback=False,
target_arch=None,
codesign_identity=codesign_identity,
entitlements_file=None
)
cli_pyz = PYZ(cli_a.pure, cli_a.zipped_data, cipher=block_cipher)
cli_exe = EXE(cli_pyz, cli_a.scripts, [],
exclude_binaries=True,
name='laps-cli',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
console=False,
disable_windowed_traceback=False,
target_arch=None,
codesign_identity=codesign_identity,
entitlements_file=None
)
coll = COLLECT(
gui_exe, gui_a.binaries, gui_a.zipfiles, gui_a.datas,
cli_exe, cli_a.binaries, cli_a.zipfiles, cli_a.datas,
strip=False,
upx=True,
upx_exclude=[],
name='LAPS4LINUX'
)
app = BUNDLE(coll,
name='LAPS4LINUX.app',
icon='../assets/laps.icns',
bundle_identifier='systems.sieber.laps4mac',
version=version,
info_plist={
'CFBundleURLTypes': [
{
'CFBundleURLName': 'Local Administrator Password Solution',
'CFBundleURLSchemes': ['laps']
}
]
}
)