代码拉取完成,页面将自动刷新
"""
This file is able to create a self contained Conan executable that contains all it needs,
including the Python interpreter, so it wouldnt be necessary to have Python installed
in the system
It is important to install the dependencies and the project first with "pip install -e ."
which configures the project as "editable", that is, to run from the current source folder
After creating the executable, it can be pip uninstalled
$ pip install -e .
$ python pyinstaller.py
This has to run in the same platform that will be using the executable, pyinstaller does
not cross-build
The resulting executable can be put in the system PATH of the running machine
"""
import argparse
import os
import platform
import shutil
import sys
from conans import __version__
from conans.util.files import save
def _run_bin(pyinstaller_path):
# run the binary to test if working
conan_bin = os.path.join(pyinstaller_path, 'dist', 'conan', 'conan')
if platform.system() == 'Windows':
conan_bin = '"' + conan_bin + '.exe' + '"'
retcode = os.system(conan_bin)
if retcode != 0:
raise Exception("Binary not working")
def _windows_version_file(version):
template = """# UTF-8
#
# For more details about fixed file info 'ffi' see:
# http://msdn.microsoft.com/en-us/library/ms646997.aspx
VSVersionInfo(
ffi=FixedFileInfo(
# filevers and prodvers should be always a tuple with four items: (1, 2, 3, 4)
# Set not needed items to zero 0.
filevers={version_tuple},
prodvers={version_tuple},
# Contains a bitmask that specifies the valid bits 'flags'r
mask=0x3f,
# Contains a bitmask that specifies the Boolean attributes of the file.
flags=0x0,
# The operating system for which this file was designed.
# 0x4 - NT and there is no need to change it.
OS=0x4,
# The general type of file.
# 0x1 - the file is an application.
fileType=0x1,
# The function of the file.
# 0x0 - the function is not defined for this fileType
subtype=0x0,
# Creation date and time stamp.
date=(0, 0)
),
kids=[
StringFileInfo(
[
StringTable(
u'000004b0',
[StringStruct(u'Comments', u'This executable was created with pyinstaller'),
StringStruct(u'CompanyName', u'JFrog'),
StringStruct(u'FileDescription', u'Conan C, C++ Open Source Package Manager'),
StringStruct(u'FileVersion', u'{version}'),
StringStruct(u'LegalCopyright', u'Copyright 2020 JFrog'),
StringStruct(u'ProductName', u'Conan'),
StringStruct(u'ProductVersion', u'{version}')])
]),
VarFileInfo([VarStruct(u'Translation', [0, 1200])])
]
)"""
if "-" in version:
version, _ = version.split("-")
version_tuple = tuple([int(v) for v in version.split(".")] + [0])
return template.format(version=version, version_tuple=version_tuple)
def pyinstall(source_folder, onefile=False):
try:
import PyInstaller.__main__ # noqa Pyinstaller is not in the default requirements.txt
except ImportError:
print(f"ERROR: PyInstaller not found. Please install it with "
f"'python -m pip install pyinstaller'")
sys.exit(-1)
pyinstaller_path = os.path.join(os.getcwd(), 'pyinstaller')
if not os.path.exists(pyinstaller_path):
os.mkdir(pyinstaller_path)
try:
shutil.rmtree(os.path.join(pyinstaller_path))
except Exception as e:
print("Unable to remove old folder", e)
conan_path = os.path.join(source_folder, 'conans', 'conan.py')
hidden = ("--hidden-import=glob " # core stdlib
"--hidden-import=pathlib "
# Modules that can be imported in ConanFile conan.tools and errors
"--collect-submodules=conan.cli.commands "
"--hidden-import=conan.errors "
"--hidden-import=conan.tools.microsoft "
"--hidden-import=conan.tools.gnu --hidden-import=conan.tools.cmake "
"--hidden-import=conan.tools.meson --hidden-import=conan.tools.apple "
"--hidden-import=conan.tools.build --hidden-import=conan.tools.env "
"--hidden-import=conan.tools.files "
"--hidden-import=conan.tools.google --hidden-import=conan.tools.intel "
"--hidden-import=conan.tools.layout --hidden-import=conan.tools.premake "
"--hidden-import=conan.tools.qbs --hidden-import=conan.tools.scm "
"--hidden-import=conan.tools.system --hidden-import=conan.tools.system.package_manager")
if platform.system() != "Windows":
hidden += " --hidden-import=setuptools.msvc"
win_ver = ""
else:
win_ver_file = os.path.join(pyinstaller_path, 'windows-version-file')
content = _windows_version_file(__version__)
save(win_ver_file, content)
win_ver = ["--version-file", win_ver_file]
if not os.path.exists(pyinstaller_path):
os.mkdir(pyinstaller_path)
if onefile:
distpath = os.path.join(pyinstaller_path, "dist", "conan")
else:
distpath = os.path.join(pyinstaller_path, "dist")
command_args = [conan_path, "--noconfirm", f"--paths={source_folder}",
"--console", f"--distpath={distpath}"]
command_args.extend(hidden.split(" "))
if win_ver:
command_args.extend(win_ver)
if onefile:
command_args.append("--onefile")
PyInstaller.__main__.run(command_args)
_run_bin(pyinstaller_path)
return os.path.abspath(os.path.join(pyinstaller_path, 'dist', 'conan'))
if __name__ == "__main__":
parser = argparse.ArgumentParser()
parser.add_argument('--onefile', action='store_true')
parser.set_defaults(onefile=False)
args = parser.parse_args()
src_folder = os.path.abspath(os.path.dirname(os.path.abspath(__file__)))
output_folder = pyinstall(src_folder, args.onefile)
print("\n**************Conan binaries created!******************\n"
"\nAppend this folder to your system PATH: '%s'\n"
"Feel free to move the whole folder to another location." % output_folder)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。