代码拉取完成,页面将自动刷新
#!/usr/bin/env python
"""
"""
import subprocess
from sys import platform
from gdbgui import __version__
import os
if platform.startswith("linux"):
platform_dir = "linux"
elif platform.startswith("darwin"):
platform_dir = "mac"
elif platform.startswith("win32"):
platform_dir = "windows"
else:
raise Exception("Unknown platform")
def write_spec_with_gdbgui_version_in_name(spec_path, binary_name):
spec = (
"""# -*- mode: python -*-
# create executable with: pyinstaller gdbgui.spec
# run executable with: dist/gdbgui
block_cipher = None
a = Analysis(['gdbgui/backend.py'], # noqa
pathex=['.'],
binaries=[],
datas=[
('./gdbgui/static*', './static'),
('./gdbgui/templates*', './templates'),
('./gdbgui/VERSION.txt*', './')
],
hiddenimports=[
'engineio.async_gevent',
'engineio.async_threading',
],
hookspath=[],
runtime_hooks=[],
excludes=[],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher,
)
pyz = PYZ(a.pure, a.zipped_data, # noqa
cipher=block_cipher)
exe = EXE(pyz, # noqa
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
name="%s",
debug=False,
strip=False,
upx=False,
runtime_tmpdir=None,
console=True)
"""
% binary_name
)
with open(spec_path, "w+") as f:
f.write(spec)
def main():
binary_name = "gdbgui_%s" % __version__
spec_path = "gdbgui.spec"
write_spec_with_gdbgui_version_in_name(spec_path, binary_name)
subprocess.call(
[
"pyinstaller",
spec_path,
"--distpath",
os.path.join("executable", platform_dir),
"--key",
"a5s1fe65aw41f54sa64v6b4ds98fhea98rhg4etj4et78ku4yu87mn",
]
)
if __name__ == "__main__":
main()
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。