1 Star 0 Fork 3

abeir/syberh-plugins

forked from SyberOS/syberh-plugins 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
syberh-build.py 4.06 KB
一键复制 编辑 原始数据 按行查看 历史
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import argparse
import os
import time
from multiprocessing import cpu_count
from string import Template
BIN_PATH = os.path.realpath(__file__)
def commands():
parser = argparse.ArgumentParser(description='编译syberh项目')
subparsers_cmd = parser.add_subparsers(dest='cmd', help='commands')
# clear
parser_clear = subparsers_cmd.add_parser('clear')
parser_clear.add_argument('-b', '--build', action='store', required=True,
dest='build_path', help='编译输出路径')
# build
parser_build = subparsers_cmd.add_parser('build')
parser_build.add_argument('-p', '--pro', action='store', required=True,
dest='pro_path', help='项目主pro文件路径')
parser_build.add_argument('-b', '--build', action='store', required=True,
dest='build_path', help='编译输出路径')
parser_build.add_argument('-n', '--num', action='store', type=int, required=False,
dest='process_num', help='并行编译的进程数')
parser_build.add_argument('-d', '--pdk', action='store', required=True,
dest='pdk_path', help='pdk根目录')
parser_build.add_argument('-t', '--target', action='store', required=True,
dest='target_name', help='target名称')
parser_build.add_argument('--args', action='append', required=False,
dest='args', help='qmake额外参数')
return parser
def run_commands(cmds = {}):
parser = commands()
args = parser.parse_args()
if not args.cmd:
print(parser.print_help())
raise SystemExit(1)
for sub_cmd, cmd_func in cmds.items():
if sub_cmd == args.cmd:
cmd_func(args)
def need_package_sop(pro_path):
pro_dir = os.path.dirname(pro_path)
xml_path = os.path.join(pro_dir, 'sopconfig.xml')
return os.path.exists(xml_path) and os.path.isfile(xml_path)
def build(args):
if not os.path.exists(args.build_path):
os.makedirs(args.build_path)
if not os.path.exists(args.pro_path) and not os.path.isfile(args.pro_path):
print('未找到pro文件:' + args.pro_path)
raise SystemExit(1)
if not os.path.exists(args.pdk_path):
print('未安装pdk,不存在的位置:' + args.pdk_path)
raise SystemExit(1)
os.chdir(args.build_path)
kchroot_path = os.path.join(args.pdk_path, 'sdk/script/kchroot')
target_full_name = args.target_name
qmake_path = '/usr/lib/qt5/bin/qmake'
process_num = args.process_num
if not process_num:
process_num = cpu_count()
qmake_args = ''
if args.args and len(args.args) > 0:
qmake_args = ' '.join(args.args)
qmake_args = qmake_args.rstrip()
cmd_setup1 = Template("${kchroot_path} 'sb2 -t ${target_full_name} -R' '${qmake_path} ${pro_path} -r -spec linux-g++ CONFIG+=qml_debug ${qmake_args}'") \
.substitute(kchroot_path=kchroot_path, target_full_name=target_full_name, qmake_path=qmake_path, pro_path=args.pro_path, qmake_args=qmake_args)
cmd_setup2 = Template("${kchroot_path} 'sb2 -t ${target_full_name} -R' '/usr/bin/make -j${process_num}'") \
.substitute(kchroot_path=kchroot_path, target_full_name=target_full_name, process_num=process_num)
cmd_setup3 = Template("${kchroot_path} 'sb2 -t ${target_full_name} -R' 'buildpkg ${pro_path}'") \
.substitute(kchroot_path=kchroot_path, target_full_name=target_full_name, pro_path=args.pro_path)
os.system(cmd_setup1)
os.system(cmd_setup2)
if need_package_sop(args.pro_path):
os.system(cmd_setup3)
def clear(args):
if os.path.exists(args.build_path):
print('开始清理目录:' + args.build_path)
time.sleep(1)
os.system('rm -rf ' + args.build_path + '/*')
else:
print('清理的目录不存在:' + args.build_path)
if __name__ == '__main__':
run_commands({
'build': build,
'clear': clear
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/abeir/syberh-plugins.git
[email protected]:abeir/syberh-plugins.git
abeir
syberh-plugins
syberh-plugins
master

搜索帮助