Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Théo Giovanna
bitmask_client
Commits
b546d642
Unverified
Commit
b546d642
authored
Mar 09, 2016
by
Kali Kaneko
Browse files
[feat] add bitmaskd to multipackage spec
parent
b3f55389
Changes
3
Hide whitespace changes
Inline
Side-by-side
pkg/pyinst/bitmaskd
0 → 120000
View file @
b546d642
../../src/leap/bitmask/core/launcher.py
\ No newline at end of file
pkg/pyinst/bitmaskd.spec
0 → 100644
View file @
b546d642
# -*- mode: python -*-
block_cipher
=
None
a
=
Analysis
([
'bitmaskd'
],
pathex
=
[
'/home/kali/leap/bitmask_client/pkg/pyinst'
],
binaries
=
None
,
datas
=
None
,
hiddenimports
=
[],
hookspath
=
[],
runtime_hooks
=
[],
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
=
'bitmaskd'
,
debug
=
False
,
strip
=
False
,
upx
=
True
,
console
=
True
)
coll
=
COLLECT
(
exe
,
a
.
binaries
,
a
.
zipfiles
,
a
.
datas
,
strip
=
False
,
upx
=
True
,
name
=
'bitmaskd'
)
pkg/pyinst/multi.spec
View file @
b546d642
...
...
@@ -13,7 +13,6 @@ gui_a = Analysis(['bitmask.py'],
excludes
=
None
,
cipher
=
block_cipher
)
cli_a
=
Analysis
([
'bitmask_cli'
],
pathex
=
[
'/home/kali/leap/bitmask_client/pkg/pyinst'
],
binaries
=
None
,
datas
=
None
,
hiddenimports
=
[
...
...
@@ -24,9 +23,21 @@ cli_a = Analysis(['bitmask_cli'],
win_no_prefer_redirects
=
False
,
win_private_assemblies
=
False
,
cipher
=
block_cipher
)
daemon_a
=
Analysis
([
'bitmaskd'
],
binaries
=
None
,
datas
=
None
,
hiddenimports
=
[
'leap.bitmask.core.service'
],
hookspath
=
[],
runtime_hooks
=
[],
excludes
=
[],
win_no_prefer_redirects
=
False
,
win_private_assemblies
=
False
,
cipher
=
block_cipher
)
MERGE
(
(
gui_a
,
'bitmask'
,
'bitmask'
),
(
cli_a
,
'bitmask_cli'
,
'bitmask'
))
(
cli_a
,
'bitmask_cli'
,
'bitmask'
),
(
daemon_a
,
'bitmaskd'
,
'bitmaskd'
))
gui_pyz
=
PYZ
(
gui_a
.
pure
,
gui_a
.
zipped_data
,
cipher
=
block_cipher
)
gui_exe
=
EXE
(
gui_pyz
,
...
...
@@ -41,6 +52,11 @@ cli_exe = EXE(cli_pyz,
exclude_binaries
=
True
,
name
=
'bitmask_cli'
,
debug
=
False
,
strip
=
False
,
upx
=
True
,
console
=
True
)
daemon_pyz
=
PYZ
(
daemon_a
.
pure
,
daemon_a
.
zipped_data
,
cipher
=
block_cipher
)
daemon_exe
=
EXE
(
daemon_pyz
,
daemon_a
.
scripts
,
exclude_binaries
=
True
,
name
=
'bitmaskd'
,
debug
=
False
,
strip
=
False
,
upx
=
True
,
console
=
True
)
gui_coll
=
COLLECT
(
gui_exe
,
gui_a
.
binaries
,
...
...
@@ -52,3 +68,8 @@ cli_coll = COLLECT(cli_exe,
cli_a
.
zipfiles
,
cli_a
.
datas
,
strip
=
False
,
upx
=
True
,
name
=
'bitmask_cli'
)
daemon_coll
=
COLLECT
(
daemon_exe
,
daemon_a
.
binaries
,
daemon_a
.
zipfiles
,
daemon_a
.
datas
,
strip
=
False
,
upx
=
True
,
name
=
'bitmaskd'
)
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment