openubmc-bingo 0.5.243__py3-none-any.whl → 0.5.254__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of openubmc-bingo might be problematic. Click here for more details.
- bmcgo/__init__.py +1 -1
- bmcgo/bmcgo_config.py +81 -1
- bmcgo/codegen/lua/Makefile +13 -0
- bmcgo/codegen/lua/codegen.py +6 -3
- bmcgo/codegen/lua/script/dto/options.py +1 -0
- bmcgo/codegen/lua/script/{render_utils/factory.py → factory.py} +1 -1
- bmcgo/codegen/lua/script/gen_entry.py +6 -3
- bmcgo/codegen/lua/script/gen_intf_rpc_json.py +12 -0
- bmcgo/codegen/lua/script/gen_schema.py +2 -0
- bmcgo/codegen/lua/script/merge_model.py +10 -3
- bmcgo/codegen/lua/script/render_utils/__init__.py +5 -4
- bmcgo/codegen/lua/script/render_utils/client_lua.py +2 -2
- bmcgo/codegen/lua/script/render_utils/controller_lua.py +2 -2
- bmcgo/codegen/lua/script/render_utils/db_lua.py +2 -2
- bmcgo/codegen/lua/script/render_utils/error_lua.py +2 -2
- bmcgo/codegen/lua/script/render_utils/ipmi_lua.py +2 -2
- bmcgo/codegen/lua/script/render_utils/ipmi_message_lua.py +2 -2
- bmcgo/codegen/lua/script/render_utils/mdb_lua.py +2 -2
- bmcgo/codegen/lua/script/render_utils/message_lua.py +2 -2
- bmcgo/codegen/lua/script/render_utils/messages_lua.py +2 -2
- bmcgo/codegen/lua/script/render_utils/model_lua.py +2 -2
- bmcgo/codegen/lua/script/render_utils/old_model_lua.py +2 -2
- bmcgo/codegen/lua/script/render_utils/plugin_lua.py +2 -2
- bmcgo/codegen/lua/script/render_utils/redfish_proto.py +2 -2
- bmcgo/codegen/lua/script/render_utils/request_lua.py +2 -2
- bmcgo/codegen/lua/script/render_utils/service_lua.py +3 -2
- bmcgo/codegen/lua/script/template.py +5 -1
- bmcgo/codegen/lua/script/utils.py +9 -2
- bmcgo/codegen/lua/templates/Makefile +8 -0
- bmcgo/codegen/lua/templates/apps/Makefile +27 -1
- bmcgo/codegen/lua/templates/apps/controller.lua.mako +20 -4
- bmcgo/codegen/lua/v1/script/gen_schema.py +328 -0
- bmcgo/codegen/lua/v1/script/render_utils/model_lua.py +458 -0
- bmcgo/codegen/lua/v1/templates/apps/model.lua.mako +62 -0
- bmcgo/codegen/lua/v1/templates/apps/service.lua.mako +193 -0
- bmcgo/component/build.py +26 -43
- bmcgo/component/component_helper.py +54 -0
- bmcgo/component/coverage/incremental_cov.py +25 -33
- bmcgo/frame.py +9 -6
- bmcgo/functional/conan_index_build.py +16 -41
- bmcgo/functional/config.py +7 -0
- bmcgo/functional/csr_build.py +313 -88
- bmcgo/functional/diff.py +3 -3
- bmcgo/functional/json_check.py +109 -0
- bmcgo/functional/upgrade.py +31 -1
- bmcgo/misc.py +32 -2
- bmcgo/target/install_sdk.yml +6 -0
- bmcgo/tasks/task.py +69 -43
- bmcgo/tasks/task_build_conan.py +6 -2
- bmcgo/tasks/task_build_wbd_up.py +4 -4
- bmcgo/utils/basic_enums.py +45 -0
- bmcgo/utils/config.py +20 -8
- bmcgo/utils/install_manager.py +75 -20
- bmcgo/utils/installations/base_installer.py +114 -7
- bmcgo/utils/installations/install_consts.py +3 -1
- bmcgo/utils/installations/install_plans/bingo.yml +2 -4
- bmcgo/utils/installations/install_workflow.py +6 -2
- bmcgo/utils/installations/installers/apt_installer.py +58 -136
- bmcgo/utils/installations/installers/pip_installer.py +52 -18
- bmcgo/utils/installations/version_util.py +1 -1
- bmcgo/utils/json_validator.py +241 -0
- {openubmc_bingo-0.5.243.dist-info → openubmc_bingo-0.5.254.dist-info}/METADATA +2 -1
- {openubmc_bingo-0.5.243.dist-info → openubmc_bingo-0.5.254.dist-info}/RECORD +67 -60
- /bmcgo/codegen/lua/script/{render_utils/base.py → base.py} +0 -0
- {openubmc_bingo-0.5.243.dist-info → openubmc_bingo-0.5.254.dist-info}/WHEEL +0 -0
- {openubmc_bingo-0.5.243.dist-info → openubmc_bingo-0.5.254.dist-info}/entry_points.txt +0 -0
- {openubmc_bingo-0.5.243.dist-info → openubmc_bingo-0.5.254.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,241 @@
|
|
|
1
|
+
#!/usr/bin/python
|
|
2
|
+
# -*- coding: utf-8 -*-
|
|
3
|
+
# Copyright (c) 2025 Huawei Technologies Co., Ltd.
|
|
4
|
+
# openUBMC is licensed under Mulan PSL v2.
|
|
5
|
+
# You can use this software according to the terms and conditions of the Mulan PSL v2.
|
|
6
|
+
# You may obtain a copy of Mulan PSL v2 at:
|
|
7
|
+
# http://license.coscl.org.cn/MulanPSL2
|
|
8
|
+
# THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
|
|
9
|
+
# EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
|
|
10
|
+
# MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
|
|
11
|
+
# See the Mulan PSL v2 for more details.
|
|
12
|
+
import os
|
|
13
|
+
import re
|
|
14
|
+
import argparse
|
|
15
|
+
import concurrent.futures
|
|
16
|
+
from enum import auto
|
|
17
|
+
from pathlib import Path
|
|
18
|
+
from typing import Callable, List, Optional
|
|
19
|
+
|
|
20
|
+
from bmcgo.utils.tools import Tools
|
|
21
|
+
from bmcgo.utils.basic_enums import BaseStringEnum
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
tools = Tools("JSONChecker")
|
|
25
|
+
logger = tools.log
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
class JsonTypeEnum(BaseStringEnum):
|
|
29
|
+
JSON = auto()
|
|
30
|
+
JSON5 = auto()
|
|
31
|
+
PYJSON5 = auto()
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
class JSONValidator:
|
|
35
|
+
def __init__(self):
|
|
36
|
+
self.logger = tools.log
|
|
37
|
+
|
|
38
|
+
self.loaders = {
|
|
39
|
+
JsonTypeEnum.JSON: load_json,
|
|
40
|
+
JsonTypeEnum.JSON5: load_json5,
|
|
41
|
+
JsonTypeEnum.PYJSON5: load_pyjson5
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
def validate_files(
|
|
45
|
+
self,
|
|
46
|
+
root_path: Path,
|
|
47
|
+
extensions: List[str],
|
|
48
|
+
json_type: JsonTypeEnum = JsonTypeEnum.JSON,
|
|
49
|
+
max_workers: Optional[int] = None
|
|
50
|
+
):
|
|
51
|
+
root_path = Path(root_path)
|
|
52
|
+
files = find_files(root_path, extensions)
|
|
53
|
+
|
|
54
|
+
if not files:
|
|
55
|
+
self.logger.info(f"没有找到{extensions}后缀的文件!")
|
|
56
|
+
return
|
|
57
|
+
|
|
58
|
+
loader = self._get_loader(json_type)
|
|
59
|
+
fails = {}
|
|
60
|
+
|
|
61
|
+
with concurrent.futures.ThreadPoolExecutor(max_workers=max_workers) as executor:
|
|
62
|
+
future_to_file = {executor.submit(validate, file, loader): file for file in files}
|
|
63
|
+
|
|
64
|
+
for future in concurrent.futures.as_completed(future_to_file):
|
|
65
|
+
file_path = future_to_file[future]
|
|
66
|
+
try:
|
|
67
|
+
error = future.result()
|
|
68
|
+
if error:
|
|
69
|
+
self.logger.debug(f"{str(file_path)}: Failed!")
|
|
70
|
+
fails[file_path] = error
|
|
71
|
+
else:
|
|
72
|
+
self.logger.debug(f"{str(file_path)}: PASS!")
|
|
73
|
+
except Exception as e:
|
|
74
|
+
self.logger.error(f"{file_path} - {str(e)}")
|
|
75
|
+
|
|
76
|
+
self._print_summary(fails)
|
|
77
|
+
if fails:
|
|
78
|
+
raise ValueError("JSON 格式错误!")
|
|
79
|
+
|
|
80
|
+
def _get_loader(self, json_type: JsonTypeEnum):
|
|
81
|
+
if json_type == JsonTypeEnum.JSON5:
|
|
82
|
+
try:
|
|
83
|
+
import json5
|
|
84
|
+
except ImportError:
|
|
85
|
+
self.logger.warning("json5 不可用,使用 json 检查")
|
|
86
|
+
json_type = JsonTypeEnum.JSON
|
|
87
|
+
elif json_type == JsonTypeEnum.PYJSON5:
|
|
88
|
+
try:
|
|
89
|
+
import pyjson5
|
|
90
|
+
except ImportError:
|
|
91
|
+
self.logger.warning("pyjson5 不可用,使用 json 检查")
|
|
92
|
+
json_type = JsonTypeEnum.JSON
|
|
93
|
+
else:
|
|
94
|
+
json_type = JsonTypeEnum.JSON
|
|
95
|
+
|
|
96
|
+
return self.loaders.get(json_type)
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
def _print_summary(self, fails):
|
|
100
|
+
if fails:
|
|
101
|
+
self.logger.error("json 检查找到以下错误:")
|
|
102
|
+
for path, err in fails.items():
|
|
103
|
+
self.logger.error(f"{path}")
|
|
104
|
+
for detail in err:
|
|
105
|
+
self.logger.error(detail)
|
|
106
|
+
else:
|
|
107
|
+
self.logger.info("json 检查全部通过!")
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
def format_error_position(content: str, message: str, position: int, window: int = 50):
|
|
111
|
+
lines = content.splitlines()
|
|
112
|
+
curr_pos = 0
|
|
113
|
+
for ln, line in enumerate(lines, 1):
|
|
114
|
+
if curr_pos + len(line) >= position:
|
|
115
|
+
start = max(0, position - curr_pos - window)
|
|
116
|
+
end = min(len(line), position - curr_pos + window)
|
|
117
|
+
|
|
118
|
+
snippet = line[start:end]
|
|
119
|
+
marker = " " * (position - curr_pos - start) + "↑"
|
|
120
|
+
if start > 0:
|
|
121
|
+
marker = " " * 3 + marker
|
|
122
|
+
|
|
123
|
+
prefix = "..." if start > 0 else ""
|
|
124
|
+
suffix = "..." if end < len(line) else ""
|
|
125
|
+
|
|
126
|
+
return (f"Line {ln}: {message}", f"{prefix}{snippet}{suffix}", f"{marker} ({position - curr_pos + 1})")
|
|
127
|
+
curr_pos += len(line) + 1
|
|
128
|
+
return ""
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
def format_error_row_and_col(content: str, message: str, lineno: int, colno: int, window: int = 50):
|
|
132
|
+
lines = content.splitlines()
|
|
133
|
+
for ln, line in enumerate(lines, 1):
|
|
134
|
+
if ln != lineno:
|
|
135
|
+
continue
|
|
136
|
+
|
|
137
|
+
start = max(0, colno - window)
|
|
138
|
+
end = min(len(line), colno + window)
|
|
139
|
+
|
|
140
|
+
snippet = line[start:end]
|
|
141
|
+
marker = " " * (colno - start - 1) + "↑"
|
|
142
|
+
if start > 0:
|
|
143
|
+
marker = " " * 3 + marker
|
|
144
|
+
|
|
145
|
+
prefix = "..." if start > 0 else ""
|
|
146
|
+
suffix = "..." if end < len(line) else ""
|
|
147
|
+
|
|
148
|
+
return (f"Line {ln}: {message}", f"{prefix}{snippet}{suffix}", f"{marker} ({colno})")
|
|
149
|
+
return ""
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
def format_error(error: Exception, content: str, file_path: Path):
|
|
153
|
+
error_msg = str(error)
|
|
154
|
+
pos = getattr(error, 'pos', None)
|
|
155
|
+
if pos is not None:
|
|
156
|
+
return format_error_position(content, error_msg, error.pos)
|
|
157
|
+
|
|
158
|
+
args = getattr(error, 'args')
|
|
159
|
+
if args:
|
|
160
|
+
msg = args[0]
|
|
161
|
+
|
|
162
|
+
result = re.search(r"<string>:(\d+)\s+(.+?)\s+at column\s+(\d+)", msg)
|
|
163
|
+
if result:
|
|
164
|
+
lineno = int(result.group(1))
|
|
165
|
+
colno = int(result.group(3))
|
|
166
|
+
reason = result.group(2)
|
|
167
|
+
|
|
168
|
+
return format_error_row_and_col(content, reason, lineno=lineno, colno=colno)
|
|
169
|
+
|
|
170
|
+
result = re.search(r"near (\d+)", msg)
|
|
171
|
+
if result:
|
|
172
|
+
pos = int(result.group(1)) - 1
|
|
173
|
+
return format_error_position(content, msg, pos)
|
|
174
|
+
|
|
175
|
+
# 需要以 tuple 返回,和 format_error_x 返回类型一致
|
|
176
|
+
return f"{error_msg}\n in {file_path}",
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
def validate(file_path: Path, loader: Callable):
|
|
180
|
+
try:
|
|
181
|
+
content = file_path.read_text(encoding='utf-8')
|
|
182
|
+
loader(content)
|
|
183
|
+
return None
|
|
184
|
+
except Exception as e:
|
|
185
|
+
return format_error(e, content, file_path)
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
def find_files(root_path: Path, extensions: List[str]):
|
|
189
|
+
if root_path.is_dir():
|
|
190
|
+
ret = list(root_path.rglob("*"))
|
|
191
|
+
elif root_path.is_file():
|
|
192
|
+
ret = [root_path]
|
|
193
|
+
else:
|
|
194
|
+
ret = []
|
|
195
|
+
|
|
196
|
+
return [path for path in ret if path.suffix.lstrip(".").lower() in extensions]
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
def load_json(content: str):
|
|
200
|
+
import json
|
|
201
|
+
json.loads(content)
|
|
202
|
+
|
|
203
|
+
|
|
204
|
+
def load_json5(content: str):
|
|
205
|
+
import json5
|
|
206
|
+
json5.loads(content)
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
def load_pyjson5(content: str):
|
|
210
|
+
import pyjson5
|
|
211
|
+
pyjson5.loads(content)
|
|
212
|
+
|
|
213
|
+
|
|
214
|
+
def get_cpu_count():
|
|
215
|
+
return os.cpu_count() or 1
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
def main():
|
|
219
|
+
parser = argparse.ArgumentParser(formatter_class=argparse.ArgumentDefaultsHelpFormatter)
|
|
220
|
+
parser.add_argument("-p", "--path", type=Path, default=Path(".").resolve())
|
|
221
|
+
parser.add_argument(
|
|
222
|
+
"-e",
|
|
223
|
+
"--extensions",
|
|
224
|
+
type=lambda s: [ext.strip().lstrip('.').lower() for ext in re.split(r'\s*[,,]\s*', s) if ext],
|
|
225
|
+
required=True
|
|
226
|
+
)
|
|
227
|
+
parser.add_argument("-j", "--json-type", choices=list(JsonTypeEnum), default=JsonTypeEnum.JSON)
|
|
228
|
+
parser.add_argument("-n", "--worker-num", type=int, default=get_cpu_count() * 2)
|
|
229
|
+
args = parser.parse_args()
|
|
230
|
+
|
|
231
|
+
validator = JSONValidator()
|
|
232
|
+
validator.validate_files(
|
|
233
|
+
root_path=args.path,
|
|
234
|
+
extensions=args.extensions,
|
|
235
|
+
json_type=args.json_type,
|
|
236
|
+
max_workers=args.worker_num
|
|
237
|
+
)
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
if __name__ == "__main__":
|
|
241
|
+
main()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: openubmc-bingo
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.254
|
|
4
4
|
Summary: Tools provided by openubmc
|
|
5
5
|
Home-page: https://openubmc.cn
|
|
6
6
|
Classifier: Programming Language :: Python :: 3
|
|
@@ -13,6 +13,7 @@ Requires-Dist: dbus-python
|
|
|
13
13
|
Requires-Dist: ecdsa
|
|
14
14
|
Requires-Dist: gitpython
|
|
15
15
|
Requires-Dist: inflection
|
|
16
|
+
Requires-Dist: json5
|
|
16
17
|
Requires-Dist: jsonref
|
|
17
18
|
Requires-Dist: jsonschema
|
|
18
19
|
Requires-Dist: launchpadlib
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
bmcgo/__init__.py,sha256=
|
|
1
|
+
bmcgo/__init__.py,sha256=raLp35VhtW_V2qbfKmaKKWBtbrpksL9JqqOSEC_mO-A,563
|
|
2
2
|
bmcgo/bmcgo.py,sha256=uD4TsfjrFB5aQPIS6WRUVc9ShXX-dSImY9ezkB13g1w,685
|
|
3
|
-
bmcgo/bmcgo_config.py,sha256=
|
|
3
|
+
bmcgo/bmcgo_config.py,sha256=zPghH-W8vNK1bAc5PjfwnWzkHYT499PlGbhUWhPKT5U,10888
|
|
4
4
|
bmcgo/errors.py,sha256=QW1ndrJcJ2Ws7riOznPKVvZsNlrYk73eZol7w8gJTPU,3076
|
|
5
|
-
bmcgo/frame.py,sha256=
|
|
5
|
+
bmcgo/frame.py,sha256=iUZSd3Pj7T4yDZYX7A4DeaV9dnmJqOTjMIiJMmL9zfM,10427
|
|
6
6
|
bmcgo/logger.py,sha256=4TPOkBA80Z00rSCOdEv_WkwE5Kr3HCDt-HuVe9waXck,6645
|
|
7
|
-
bmcgo/misc.py,sha256=
|
|
7
|
+
bmcgo/misc.py,sha256=KNO1PX54UnxBpvT-4Y5BKHSSeJrmDJaWnUwVhfGquu0,4259
|
|
8
8
|
bmcgo/worker.py,sha256=-KxZIW4dziej5wCY-v5XEmtY-CDCL2-FO3VHFovlFbM,15228
|
|
9
9
|
bmcgo/cli/__init__.py,sha256=BDXz8BcSlCkfo5UYt6j2rm89-HiYA1ZzfpFhy99MH-0,538
|
|
10
10
|
bmcgo/cli/cli.py,sha256=pqAkvjrk4F7x58-fYeGn0TydT3szZ2pM7guYwDoU2Ew,21520
|
|
@@ -32,42 +32,44 @@ bmcgo/codegen/c/template/public.h.mako,sha256=TcEJb-BRP1xyMbLhY2mVJ9eF0MJXrezmYb
|
|
|
32
32
|
bmcgo/codegen/c/template/server.c.mako,sha256=0kR3T_b9UDgHVwo-W1lwUXK79beGpe6rGs85bSGA3BU,3621
|
|
33
33
|
bmcgo/codegen/c/template/server.h.mako,sha256=hZg1U64YKtlUm4wuKRobhjGW8e7rzFu9xgpc_0_OBFk,1340
|
|
34
34
|
bmcgo/codegen/lua/.lua-format,sha256=h6RLqe84SjDqKO1mqoCW7XVtrAwDMTRM1Rj8nwzPGwQ,188
|
|
35
|
-
bmcgo/codegen/lua/Makefile,sha256=
|
|
35
|
+
bmcgo/codegen/lua/Makefile,sha256=wliuAhxhChrpsTnWuOlje3gtW2KRqayIhGRYBkvFi-c,3304
|
|
36
36
|
bmcgo/codegen/lua/__init__.py,sha256=2yU9vzUVQmMJ0qBtNJ-AfKpnOzYZo4wAxlRnpFwgE7M,521
|
|
37
|
-
bmcgo/codegen/lua/codegen.py,sha256=
|
|
37
|
+
bmcgo/codegen/lua/codegen.py,sha256=NhWJs5nDyxEehS54HRkj3nE-9X1dq6OGHOwLVx1CVaY,7818
|
|
38
38
|
bmcgo/codegen/lua/proto/Makefile,sha256=rS4nEBwWJEDYAb5XN9S7SfII7RMFb071jh0eh_KJePo,3098
|
|
39
39
|
bmcgo/codegen/lua/proto/ipmi_types.proto,sha256=BX09mymhhPkWqZE1UCVJACpLBeQh1vQN31oBRVVieFY,377
|
|
40
40
|
bmcgo/codegen/lua/proto/types.proto,sha256=_X8JCKZCvO6PfWh6tuWcEqKHROrh46rCZab-OCkfirA,1162
|
|
41
|
+
bmcgo/codegen/lua/script/base.py,sha256=E1_V6lmE5CjY2pqSYOpyNVGRVneC4pSLnLoNntm1I6A,823
|
|
41
42
|
bmcgo/codegen/lua/script/check_intfs.py,sha256=6l9fgNJDGDVhVDajjPqsPInjmOYQcUSU5gfHblc4YSQ,5844
|
|
43
|
+
bmcgo/codegen/lua/script/factory.py,sha256=pCkzFNkRjKNsITETzbgn3cBLPzP1bMi3Y84pozEEGjk,1687
|
|
42
44
|
bmcgo/codegen/lua/script/gen_db_json.py,sha256=BxMak-YcmeI_QQLsBaMa9ilB54XvGI7t1EELP9uw3hI,16612
|
|
43
45
|
bmcgo/codegen/lua/script/gen_depends.py,sha256=9erHhPSa6s-Ucv2k1vCc4aR6rsO0WxkM0yfZZKXi-1w,2720
|
|
44
|
-
bmcgo/codegen/lua/script/gen_entry.py,sha256=
|
|
46
|
+
bmcgo/codegen/lua/script/gen_entry.py,sha256=k__I5VBts9RM0g_KzSGr2csc_tRjXAms_GSqx6DllHY,10368
|
|
45
47
|
bmcgo/codegen/lua/script/gen_feature_json.py,sha256=gMCAIF_ZMgFIP5wXV_Of51XG61zmsDxhCeqthnj_hHQ,4855
|
|
46
48
|
bmcgo/codegen/lua/script/gen_historical_local_db_json.py,sha256=EH-6RdENDR9iSyVEfSLldDpbEfDCk8vg-pjYRfRn1SM,2527
|
|
47
49
|
bmcgo/codegen/lua/script/gen_intf_json.py,sha256=J_yLbYzvTps1Teej-fecLRR2Vfqz6kWR89P0vYKbDkg,7295
|
|
48
|
-
bmcgo/codegen/lua/script/gen_intf_rpc_json.py,sha256=
|
|
50
|
+
bmcgo/codegen/lua/script/gen_intf_rpc_json.py,sha256=yJMgb4oUzSlk4s6ppriHOy_OWCwJJ8oYbI_KdA-U8Rg,19454
|
|
49
51
|
bmcgo/codegen/lua/script/gen_ipmi_json.py,sha256=wTktlR1YZO-5PdZid8zMR8JHojL4eAn7LpF76Z46lu4,17340
|
|
50
52
|
bmcgo/codegen/lua/script/gen_mdb_json.py,sha256=2w2fk6jIlMCr6WT5yzLOmWenk_9-lh3e19oV1lDghcY,3027
|
|
51
53
|
bmcgo/codegen/lua/script/gen_rpc_msg_json.py,sha256=6fVtZTHL-v6pdCjkgxFmqCjf511cc9iC9xPTspC4lDU,16407
|
|
52
|
-
bmcgo/codegen/lua/script/gen_schema.py,sha256=
|
|
54
|
+
bmcgo/codegen/lua/script/gen_schema.py,sha256=9sfqv7fHYoCiokotesBER2HglqHwrj08ftQDbrDjrlI,10600
|
|
53
55
|
bmcgo/codegen/lua/script/ipmi_types_pb2.py,sha256=CaCartJKCRgx5WLBg4mbzS8VXwSKy380o6BPYgouAJQ,6665
|
|
54
56
|
bmcgo/codegen/lua/script/lua_format.py,sha256=W3UO-II34qY0_st6QiHwSOrQZnqdz4mLWOIB3pfGe58,2003
|
|
55
57
|
bmcgo/codegen/lua/script/mds_util.py,sha256=CXcmVHimHMEhV7nds-Jxq29sSHJtuKjnoujgzF151JQ,11914
|
|
56
|
-
bmcgo/codegen/lua/script/merge_model.py,sha256=
|
|
58
|
+
bmcgo/codegen/lua/script/merge_model.py,sha256=VDe1b1zgbNEVeqpuzAyL7S8EAb1Hwy0N3Ayv4dT2_Hg,12923
|
|
57
59
|
bmcgo/codegen/lua/script/merge_proto_algo.py,sha256=IK7mjBYQWzwr5RtyeHp8CQFU_jIpuHkOxe6XSI_PcXU,3007
|
|
58
60
|
bmcgo/codegen/lua/script/proto_loader.py,sha256=w6TTyLvXrdXZKTKOGf87kSuSsbBviVeQJAhtjRc2K2Y,1913
|
|
59
61
|
bmcgo/codegen/lua/script/proto_plugin.py,sha256=hfFr7QXndA1dbFYmpUkemFxkdSchK8i8xml_3cMdBA4,5002
|
|
60
62
|
bmcgo/codegen/lua/script/redfish_source_tree.py,sha256=HzTGY4PViZXLQLOt_U7-YMqE5Ctf-Mxa1p5voOFJU4A,3905
|
|
61
63
|
bmcgo/codegen/lua/script/sep_ipmi_message_cmds.py,sha256=dQZog5e7Eo8Z7xSrp9sUri8vg-VtEj_Sll_E_OhnBw4,8209
|
|
62
|
-
bmcgo/codegen/lua/script/template.py,sha256=
|
|
64
|
+
bmcgo/codegen/lua/script/template.py,sha256=kJ5vQcHKY5OKUkYrSObFjx6WLVopveasjbr0HWgrMZM,6711
|
|
63
65
|
bmcgo/codegen/lua/script/types_pb2.py,sha256=uiRP_JPK9EF57RUZuomx1K1M9_jZFZgsHXcatFrhzow,23074
|
|
64
|
-
bmcgo/codegen/lua/script/utils.py,sha256=
|
|
66
|
+
bmcgo/codegen/lua/script/utils.py,sha256=8iM-PS0sckMuY81QT0Va_s76m7NkhK6MaY1ctLJXzUU,23894
|
|
65
67
|
bmcgo/codegen/lua/script/validate.py,sha256=_RHZBSDZklmcjETD8zRmnhz4DABzKoL-fNl1I9L4Ofs,2096
|
|
66
68
|
bmcgo/codegen/lua/script/yaml_to_json.py,sha256=31J1qJPIAJrx9Cq6bNZks3QCZ754spI5mjZNlshkcJ4,2291
|
|
67
69
|
bmcgo/codegen/lua/script/dto/__init__.py,sha256=nSBpsAbZ7UGd0a25ys_LLEpi3juPtUhVMy_tgGuZsNY,560
|
|
68
70
|
bmcgo/codegen/lua/script/dto/exception.py,sha256=PDuaO5-IoCq1bjPlUMLWc5MGC7LcerPD4EgX5Su6fa4,2026
|
|
69
71
|
bmcgo/codegen/lua/script/dto/kepler_abstract.py,sha256=0rfLwN2n-8-wp7C7isHuTMwDyKkYvwUKujqlmUvtaKA,1741
|
|
70
|
-
bmcgo/codegen/lua/script/dto/options.py,sha256=
|
|
72
|
+
bmcgo/codegen/lua/script/dto/options.py,sha256=ZGjU9b9hIqwGKQLfVwnDS6W9CTkhRuRM_B7x5wBizQ4,1421
|
|
71
73
|
bmcgo/codegen/lua/script/dto/print_simple.py,sha256=imrPW2zlmCIcM6Nfg4HSPE2Y14g2n8uSGj-JOjJ2ijY,723
|
|
72
74
|
bmcgo/codegen/lua/script/dto/redfish_api.py,sha256=iifn1jNHtIoal0-YA-4bvNm8wLOLqloA3S9p99bD8Qg,8411
|
|
73
75
|
bmcgo/codegen/lua/script/dto/url_route.py,sha256=DkgV0Ok5FBgkVqikPcFX_OJdLm0Sd7VL7NATS_aCBpg,7849
|
|
@@ -76,36 +78,34 @@ bmcgo/codegen/lua/script/loader/file_utils.py,sha256=wBWkW9o0-ij2vG1Vv7OA-EtmBm8
|
|
|
76
78
|
bmcgo/codegen/lua/script/loader/kepler_abstract_collect.py,sha256=5NIR71Bt5EPcUEubZfcoYf_o4YKg2yuvawOm-fWGbVA,3031
|
|
77
79
|
bmcgo/codegen/lua/script/loader/kepler_abstract_loader.py,sha256=wQBYQyKhBOeoUn0d1YnYFtOzWPLNZVf7QmUvjLwTMT4,1977
|
|
78
80
|
bmcgo/codegen/lua/script/loader/redfish_loader.py,sha256=k7SUKN0I4Fc6uTugeOsPP0ceRM_tVEBTbQdNl_kDav4,5944
|
|
79
|
-
bmcgo/codegen/lua/script/render_utils/__init__.py,sha256=
|
|
80
|
-
bmcgo/codegen/lua/script/render_utils/
|
|
81
|
-
bmcgo/codegen/lua/script/render_utils/
|
|
82
|
-
bmcgo/codegen/lua/script/render_utils/
|
|
83
|
-
bmcgo/codegen/lua/script/render_utils/
|
|
84
|
-
bmcgo/codegen/lua/script/render_utils/
|
|
85
|
-
bmcgo/codegen/lua/script/render_utils/
|
|
86
|
-
bmcgo/codegen/lua/script/render_utils/
|
|
87
|
-
bmcgo/codegen/lua/script/render_utils/ipmi_message_lua.py,sha256=bVlGt_aAqB52mGZCNCAKwGNk2U-TtduOW1KajeupePs,997
|
|
88
|
-
bmcgo/codegen/lua/script/render_utils/mdb_lua.py,sha256=faA5fCnVBnV1KAQFfiia4cpUHX9GvOyRVsChrv6Z2KE,6117
|
|
81
|
+
bmcgo/codegen/lua/script/render_utils/__init__.py,sha256=TQLS6LwBbDdGw_nKfdfWGAP6TbaXPJ4wr_kMV2JJCS8,2014
|
|
82
|
+
bmcgo/codegen/lua/script/render_utils/client_lua.py,sha256=rSNIjIgLjNRKNCMjbaNconBQ7Ysr1mkSLR-S3H6U3sw,3507
|
|
83
|
+
bmcgo/codegen/lua/script/render_utils/controller_lua.py,sha256=bgMXd6beOiL0Xm4rK3x09_GjaJJcDBMkt8ya0gHIqz0,2352
|
|
84
|
+
bmcgo/codegen/lua/script/render_utils/db_lua.py,sha256=SHhuoIMvN0dPplUODfvu3qCDBtgP9QmnUvjLPQEjoTk,7865
|
|
85
|
+
bmcgo/codegen/lua/script/render_utils/error_lua.py,sha256=CW9g-HPADf42zfzLSA6PW-0O_IchDKMyjztANGiIHC8,5928
|
|
86
|
+
bmcgo/codegen/lua/script/render_utils/ipmi_lua.py,sha256=jZ98qP_gJi6dAU40OmDr_J2c49MzTPCC68Bh1sg7OFo,4997
|
|
87
|
+
bmcgo/codegen/lua/script/render_utils/ipmi_message_lua.py,sha256=Y-5pXMfAPDZqqoA9spkk80UHr63S6Z35gDeyAcu1tnc,1021
|
|
88
|
+
bmcgo/codegen/lua/script/render_utils/mdb_lua.py,sha256=gKX_GUkIbYbbviBw9cEO3pfTwoLWurczYFmoOoWA1Us,6141
|
|
89
89
|
bmcgo/codegen/lua/script/render_utils/mdb_register.py,sha256=m4St_oPFnaHZG0PTg_D47_zcrqGexy70otVVuu99VM8,7578
|
|
90
|
-
bmcgo/codegen/lua/script/render_utils/message_lua.py,sha256=
|
|
91
|
-
bmcgo/codegen/lua/script/render_utils/messages_lua.py,sha256=
|
|
92
|
-
bmcgo/codegen/lua/script/render_utils/model_lua.py,sha256=
|
|
93
|
-
bmcgo/codegen/lua/script/render_utils/old_model_lua.py,sha256=
|
|
94
|
-
bmcgo/codegen/lua/script/render_utils/plugin_lua.py,sha256
|
|
95
|
-
bmcgo/codegen/lua/script/render_utils/redfish_proto.py,sha256=
|
|
96
|
-
bmcgo/codegen/lua/script/render_utils/request_lua.py,sha256=
|
|
97
|
-
bmcgo/codegen/lua/script/render_utils/service_lua.py,sha256=
|
|
90
|
+
bmcgo/codegen/lua/script/render_utils/message_lua.py,sha256=yeXui-QbIDrS4SyptW59WlI0e3KQ8Wgvxt8WUPFJbjU,1072
|
|
91
|
+
bmcgo/codegen/lua/script/render_utils/messages_lua.py,sha256=eAe46JU1AJxfpifQCnioD1jxfDhfc-DLGRy8CmwCfBg,4948
|
|
92
|
+
bmcgo/codegen/lua/script/render_utils/model_lua.py,sha256=DIBwEt7cQMxkePUjqBk0oks6HBy_jqB4K32J6K3UAZM,18040
|
|
93
|
+
bmcgo/codegen/lua/script/render_utils/old_model_lua.py,sha256=OFUPJOaiXDjXpknbh6Pw0TNC1dUVtjPbuIs-3fSN7p4,15611
|
|
94
|
+
bmcgo/codegen/lua/script/render_utils/plugin_lua.py,sha256=-_r-MqjDNnoYel6zdsNSkqYI3w1DKJPwJy5Vsevl33s,1481
|
|
95
|
+
bmcgo/codegen/lua/script/render_utils/redfish_proto.py,sha256=lAVo9pPxkc7Iv22enuqCOJVTFy8_63C57iADjzYWz5g,3130
|
|
96
|
+
bmcgo/codegen/lua/script/render_utils/request_lua.py,sha256=rXBk3h1uY9vlKgUs4SdGRmqNu3GyCQQMGfySqgF-lv8,3209
|
|
97
|
+
bmcgo/codegen/lua/script/render_utils/service_lua.py,sha256=5nfUdCAlvids5bxgJQD8M90OI4-RoUZhBh-e0i1TAoM,4390
|
|
98
98
|
bmcgo/codegen/lua/script/render_utils/utils_message_lua.py,sha256=MPAwH4lZUF1JqZMXmJV8sjBQFqcFKqBter_lpX38h-E,4940
|
|
99
99
|
bmcgo/codegen/lua/script/render_utils/validate_lua.py,sha256=NVjMWZwMxwUj9kdTaCRpyVZJkUQuR9kdzI7Y-MZDPaE,7079
|
|
100
|
-
bmcgo/codegen/lua/templates/Makefile,sha256
|
|
100
|
+
bmcgo/codegen/lua/templates/Makefile,sha256=-br3qnXM_73_nJhYVgF7TsNtVxt_p_h4l5TYPjWqQIs,4044
|
|
101
101
|
bmcgo/codegen/lua/templates/errors.lua.mako,sha256=T93tESJl0K3r5izufq6NsqqCptQbVslpsTEjkQdDq0U,1536
|
|
102
102
|
bmcgo/codegen/lua/templates/messages.lua.mako,sha256=GfWjgRy0is3d-U8-Wq-i_oWguFi5d1VHQKv0pJhV9cE,1074
|
|
103
|
-
bmcgo/codegen/lua/templates/apps/Makefile,sha256=
|
|
103
|
+
bmcgo/codegen/lua/templates/apps/Makefile,sha256=OFyiSw8HV9MrwZGuaMkx0yUyAeJ7GFNV7qIl83UsKko,15461
|
|
104
104
|
bmcgo/codegen/lua/templates/apps/Makefile.mdb.mk,sha256=Qmd-n_YsQbfnpED_6PIp_6pL13w6UCCGgBoBA4h6r_0,3296
|
|
105
105
|
bmcgo/codegen/lua/templates/apps/app.lua.mako,sha256=Y_aZCPyNgeqfa39_RWxV-_m3out1p4vTTWnzqXtPV7E,276
|
|
106
106
|
bmcgo/codegen/lua/templates/apps/class.lua.mako,sha256=FZsGAZeiytVwihxyyjhw6Hvv4V01Lhtz8Q9FPZYieZw,1208
|
|
107
107
|
bmcgo/codegen/lua/templates/apps/client.lua.mako,sha256=4TgJawCCQhn0yqY0YnL1i_GHhIKOAS0Z5-sBSnS_LLs,17976
|
|
108
|
-
bmcgo/codegen/lua/templates/apps/controller.lua.mako,sha256=
|
|
108
|
+
bmcgo/codegen/lua/templates/apps/controller.lua.mako,sha256=ET9dSNasgAw7HuhLxV4pwq2X-E44Zk1rKSQJPUj_ir0,11310
|
|
109
109
|
bmcgo/codegen/lua/templates/apps/datas.lua.mako,sha256=xAU1c9xe3-bcVfxA3vSbvrkCDcKqCv65gM92lcSPwvo,135
|
|
110
110
|
bmcgo/codegen/lua/templates/apps/db.lua.mako,sha256=wROjv7qofMaZhTrAywhIWhwuDL9Gs3UMHSQJ97tKZD0,2723
|
|
111
111
|
bmcgo/codegen/lua/templates/apps/entry.lua.mako,sha256=vedgTAr6Y9AIn69C_1qb5kzKf4N5w6ptrutanRMJTCA,4049
|
|
@@ -153,10 +153,14 @@ bmcgo/codegen/lua/templates/new_app/test/integration/test_${project_name}.lua.ma
|
|
|
153
153
|
bmcgo/codegen/lua/templates/new_app/test/unit/test.lua.mako,sha256=3UleW8XN8VEF7sxEzIjn_BtTOSIg_gW8dVZSBNIDMGA,575
|
|
154
154
|
bmcgo/codegen/lua/templates/new_app/user_conf/rootfs/etc/systemd/system/${project_name}.service.mako,sha256=b6wu4leCGtNlXJ_kmEjtJkQqIBSkYz6EfWViZGneCqY,400
|
|
155
155
|
bmcgo/codegen/lua/templates/new_app/user_conf/rootfs/etc/systemd/system/multi-user.target.wants/${project_name}.service.link,sha256=NJ6AGF9O0FGEM5dwb62LS2_KO7T3A2_lcHYFlY-KR0k,26
|
|
156
|
+
bmcgo/codegen/lua/v1/script/gen_schema.py,sha256=LtSswrIqjgk3PuGSlzKSB5Cw5OeSafYkm7PdLQ7Mrao,11717
|
|
157
|
+
bmcgo/codegen/lua/v1/script/render_utils/model_lua.py,sha256=zIcWxspjnfF-r9MZEXM9i5IUr0zNPEIOnMAk1DN5l7g,18059
|
|
158
|
+
bmcgo/codegen/lua/v1/templates/apps/model.lua.mako,sha256=ORS8i3cDaP7rqEa1W3yI7DmD1X3wUeIZKj42I70AmS8,1979
|
|
159
|
+
bmcgo/codegen/lua/v1/templates/apps/service.lua.mako,sha256=52zAvt7tqgeSsBleaiOtpbUoTv0WUJd0mqzRXc8iNO4,7477
|
|
156
160
|
bmcgo/component/__init__.py,sha256=BDXz8BcSlCkfo5UYt6j2rm89-HiYA1ZzfpFhy99MH-0,538
|
|
157
|
-
bmcgo/component/build.py,sha256=
|
|
161
|
+
bmcgo/component/build.py,sha256=S0borHjBQfb0EWQ6uqKWUJGImkzHpb2x5qqz-qnzsHI,8959
|
|
158
162
|
bmcgo/component/component_dt_version_parse.py,sha256=KyrfyjbrszU-hhG1Hr6TzKuSabmGIK51b_3KuVBv5-g,14139
|
|
159
|
-
bmcgo/component/component_helper.py,sha256=
|
|
163
|
+
bmcgo/component/component_helper.py,sha256=k-q2uT8XbZM6BgnQMFgqtyjwTtJxmsWCMMFc2_CIyJs,6319
|
|
160
164
|
bmcgo/component/deploy.py,sha256=EO0hSZzXYPG-1SQOhNMkqLQWSeqkU3RxKemsqfWrgBE,4569
|
|
161
165
|
bmcgo/component/gen.py,sha256=RVWfwiUWXyqbTW5Xj5rtVD7SA05D4sXf5Ea0T7gCfO0,7234
|
|
162
166
|
bmcgo/component/package_info.py,sha256=5xh3yCXXcuCpEY3j_81K3639IQLx8idnAoxLwtQ5npE,10479
|
|
@@ -173,25 +177,26 @@ bmcgo/component/analysis/smc_dfx_whitelist.json,sha256=dy_6-FddhG6UY7D1KUCW3Vme2
|
|
|
173
177
|
bmcgo/component/analysis/sr_validation.py,sha256=i1mlJb_D7RqE510LSAcCW81K1VUmZ7oSmLiMfUgdSJI,15598
|
|
174
178
|
bmcgo/component/coverage/__init__.py,sha256=ZgUEyI86FTlOdBzcuTzz7UqTtfWcz416Gx4BCqcQlhA,557
|
|
175
179
|
bmcgo/component/coverage/c_incremental_cov_report.template,sha256=FPhK1DZtmWsjDxa32R1ViH3IGCtNHcx0zFfgRo0s2nI,1576
|
|
176
|
-
bmcgo/component/coverage/incremental_cov.py,sha256=
|
|
180
|
+
bmcgo/component/coverage/incremental_cov.py,sha256=JFmlJONo0eVGu39Es5BmYyKVh-PuSOPqi4FqwqrcGfE,16823
|
|
177
181
|
bmcgo/component/template/conanbase.py.mako,sha256=MMZezCl5oFucRraOJt1WjmPL2S7wa4Hzfc7yDfTkW7Q,10949
|
|
178
182
|
bmcgo/component/template/conanfile.deploy.py.mako,sha256=zpxluBjUFmJHfFrnBknxZ3cv3cxcqzJuGh2eN0uMXZA,889
|
|
179
183
|
bmcgo/functional/__init__.py,sha256=BDXz8BcSlCkfo5UYt6j2rm89-HiYA1ZzfpFhy99MH-0,538
|
|
180
184
|
bmcgo/functional/analysis.py,sha256=qjJQqd895-QmRpvges6ynwgV4w4vUYUqrMrajNUWON0,3862
|
|
181
185
|
bmcgo/functional/bmc_studio_action.py,sha256=Gg96UB8QtnhsaqSdMhXuS9fddzAFPhR6UYCpto9UOYA,3605
|
|
182
186
|
bmcgo/functional/check.py,sha256=LWoDAtEB2p65FemLEoNGz33ldtkbcJlc-uz8hwJl89U,8183
|
|
183
|
-
bmcgo/functional/conan_index_build.py,sha256=
|
|
184
|
-
bmcgo/functional/config.py,sha256=
|
|
185
|
-
bmcgo/functional/csr_build.py,sha256=
|
|
187
|
+
bmcgo/functional/conan_index_build.py,sha256=cYpv83DFnsbUJri_dKyThLo7-SDRQ4253P4Nud-HYFY,9074
|
|
188
|
+
bmcgo/functional/config.py,sha256=ZQ-a9hegI0cV41iTo7t49ryBeUH4wPJ-qkVvWp8toV4,10824
|
|
189
|
+
bmcgo/functional/csr_build.py,sha256=_1ZGYxMNOmd_52upS1RdXf1uT8rjaW1bfIw7psfkDt0,40791
|
|
186
190
|
bmcgo/functional/deploy.py,sha256=2NsxCpoZjL4jTyRpbIp20-EKKbQkQe-Hsm20uxHK2Xc,10677
|
|
187
|
-
bmcgo/functional/diff.py,sha256=
|
|
191
|
+
bmcgo/functional/diff.py,sha256=WBH6aRVyVInzyvqQrmslqpItKncFbB2Z9WIBE1_O6bo,10558
|
|
188
192
|
bmcgo/functional/fetch.py,sha256=JE4iZt6a-vjuCrDg9RYDCTyLf5TvXZQvs0PgD3VBvtQ,10767
|
|
189
193
|
bmcgo/functional/full_component.py,sha256=AqVpWHtzdK-XwzE_l6vPcVNIVkAzyE2X5nqSkgsdvhA,16277
|
|
194
|
+
bmcgo/functional/json_check.py,sha256=ACoABAV1YfrrR98-G_0sX5i5lFHRjl00GspmKRdUFz8,3473
|
|
190
195
|
bmcgo/functional/maintain.py,sha256=8bUwaCsZAiBWDrf8NsdVoOvyMY2JOoXdzvahU9Hd8-0,17951
|
|
191
196
|
bmcgo/functional/new.py,sha256=A4--cy3R-moFD8KtrGGIzMiVVwnB2rL8qlrJz1dGGMg,6157
|
|
192
197
|
bmcgo/functional/schema_valid.py,sha256=jk4blLZgQCJv4eOY0YK2Fy0oRCdG1sfSssd2rGT-Eoc,3910
|
|
193
198
|
bmcgo/functional/simple_sign.py,sha256=AstEnGzcTIxAYs5U9G82JDXj7CnfhN9LyYcnkpGEH2Y,4086
|
|
194
|
-
bmcgo/functional/upgrade.py,sha256=
|
|
199
|
+
bmcgo/functional/upgrade.py,sha256=HgTtUYtntuRcsO9qb1ciBvZ2gwyHrd0snyH7gjPKA6o,3131
|
|
195
200
|
bmcgo/ipmigen/__init__.py,sha256=xrppKUuQkt1jTqnr6gHWiWeEyUMFJeiZxcA7Hx9XXUo,789
|
|
196
201
|
bmcgo/ipmigen/ctype_defination.py,sha256=PmkKRWTvmVQsZ-njio16ayXpsyFhC6le9Tu0baWU-xw,3179
|
|
197
202
|
bmcgo/ipmigen/ipmigen.py,sha256=SZWoylTM-Tp4KSOQyfHidMjhhIzp4WIa40oxcrFfKB8,14506
|
|
@@ -199,16 +204,16 @@ bmcgo/ipmigen/template/cmd.c.mako,sha256=5avKDLnEw0PscXZpj0Da0y7GcwQ2Q4lBy-yofw1
|
|
|
199
204
|
bmcgo/ipmigen/template/ipmi.c.mako,sha256=LNrJmXQut4923aQkkkuHFp9tTR9ExrBi0WYfxVLTykU,696
|
|
200
205
|
bmcgo/ipmigen/template/ipmi.h.mako,sha256=veZ42lJq4hljyNH5uL_yesHpoANF3pprTL1VwTlflqs,2006
|
|
201
206
|
bmcgo/target/app.yml,sha256=OaCk1YntS6h_cKUt8rvJ7fkqXMFjK5v4Iu2Nhx66ZFY,469
|
|
202
|
-
bmcgo/target/install_sdk.yml,sha256=
|
|
207
|
+
bmcgo/target/install_sdk.yml,sha256=PjSSFtDudnlA_N-__XHHuJmYTZT0ZcTKlyzOz9xIK3I,726
|
|
203
208
|
bmcgo/target/personal.yml,sha256=o2PEQIcHe7v8J5-WHiQlgTEgiisQx_vCkgLlKDLkzh4,1953
|
|
204
209
|
bmcgo/target/publish.yml,sha256=WvaJAUZ0_6CMV3O1p1t6dagHe-DdLcXqLxKP11_ki1E,1615
|
|
205
210
|
bmcgo/tasks/__init__.py,sha256=VapgzhPMmB7dzPIRohoVm1jjfVn_v97cYNCRmkxScaU,539
|
|
206
211
|
bmcgo/tasks/download_buildtools_hm.py,sha256=f4UxStARc8Z8DnT_5O6ONajQ7P0sKyJ8brixr43fHVQ,5988
|
|
207
212
|
bmcgo/tasks/misc.py,sha256=GK_bSDLGZW0FxywB2ICG1iIEz2y2QoCb1YQQk8SYOIA,711
|
|
208
|
-
bmcgo/tasks/task.py,sha256=
|
|
209
|
-
bmcgo/tasks/task_build_conan.py,sha256=
|
|
213
|
+
bmcgo/tasks/task.py,sha256=n7EhquD3FQeT8LHk0tREKOG9t1BcbMge_TY6ekGFydk,17064
|
|
214
|
+
bmcgo/tasks/task_build_conan.py,sha256=nQt4VyK4QHh2u4JbM8kfK9WBVIMGKI18S2NPg9orlvQ,32962
|
|
210
215
|
bmcgo/tasks/task_build_rootfs_img.py,sha256=uFrMfrpaAHB_2QQdEo46P8TgFrGMTG-xfZUlxzJLSQ0,30443
|
|
211
|
-
bmcgo/tasks/task_build_wbd_up.py,sha256=
|
|
216
|
+
bmcgo/tasks/task_build_wbd_up.py,sha256=X9-0Qqad-s3mGfJBMeBQvfZ99KlWcgaMluDr_zv6Z-o,3122
|
|
212
217
|
bmcgo/tasks/task_buildgppbin.py,sha256=Xjfw6j8OsyS_XRiOt4vqIK1rDQ4sNKG__eurDu-M9bo,6341
|
|
213
218
|
bmcgo/tasks/task_buildhpm_ext4.py,sha256=DBZnmU_eb14J0CW_wVoCc9VKnssFF1vXmRhLJQ6kR28,3482
|
|
214
219
|
bmcgo/tasks/task_create_interface_config.py,sha256=rkFRGLrUgYCics-n1CKwCoQscU2BaRQkH7KP3zwJ6FI,5393
|
|
@@ -219,27 +224,29 @@ bmcgo/tasks/task_packet_to_supporte.py,sha256=eaNtri3YQfXFBnceM1-2C_6AgMgrGxEj4x
|
|
|
219
224
|
bmcgo/tasks/task_prepare.py,sha256=vKHb5QPbIx0lHOGpcDjeAB7rMfERqMUCad2EzxLauBw,4534
|
|
220
225
|
bmcgo/tasks/task_sign_and_pack_hpm.py,sha256=X8m1WAj3c0bKi2JAaumR81Qxv1FnFi0SrRL-l6vDRAo,1965
|
|
221
226
|
bmcgo/utils/__init__.py,sha256=BDXz8BcSlCkfo5UYt6j2rm89-HiYA1ZzfpFhy99MH-0,538
|
|
227
|
+
bmcgo/utils/basic_enums.py,sha256=L5VtHtzSvs6duAnphgqDGXX80Wit3Y7DjMlpi9MCxyI,1348
|
|
222
228
|
bmcgo/utils/buffer.py,sha256=t1SkWntWksboNFMPsltslwRdXZi3FAe8eV0JAAE7Vto,4004
|
|
223
229
|
bmcgo/utils/combine_json_schemas.py,sha256=08JrAlLeo_JgUqzYcZNgSwJZPLfjbWVJ4esPPt9bPMY,7967
|
|
224
230
|
bmcgo/utils/component_post.py,sha256=b2sr2IVensmnvcB7VcbIHkzCtS-fbtjPb4k1LiNReQk,2296
|
|
225
231
|
bmcgo/utils/component_version_check.py,sha256=ZhY3LUgmvuoDTlSjyFeh2blmcYbFcwtijNaOM0ntRtE,3457
|
|
226
|
-
bmcgo/utils/config.py,sha256=
|
|
232
|
+
bmcgo/utils/config.py,sha256=P3cqV0wlMn5U8NApUD7JKIuMVKqARtNfxsKopDn-rv4,48484
|
|
227
233
|
bmcgo/utils/fetch_component_code.py,sha256=vH9rY2YcXK5tBUEK7fLmKVxK9cYDM39FHmManBQA2KQ,10011
|
|
228
|
-
bmcgo/utils/install_manager.py,sha256=
|
|
234
|
+
bmcgo/utils/install_manager.py,sha256=XMZUuIHm7_DWRdLV4dAevsyamQ6rt8lb_7OqGWzNBC8,4927
|
|
235
|
+
bmcgo/utils/json_validator.py,sha256=_k5wU78wfYGrzvSDaqOEtT4otgKUjquVhZNpVf2PW_c,7524
|
|
229
236
|
bmcgo/utils/mapping_config_patch.py,sha256=_gKfZnrvsLPgHn1yXhEJRVTAeuGpeGD9T-Pqyw5Ydys,16827
|
|
230
237
|
bmcgo/utils/perf_analysis.py,sha256=fh6lV9AAKVhpPkGPwAJ8EWfGfUoHjqGYQxrvc32Xiac,4767
|
|
231
238
|
bmcgo/utils/tools.py,sha256=fLKBz_FiNc0s8UBkXQ_TZrzldCYLGEH8ZuqLUgS9g30,28849
|
|
232
239
|
bmcgo/utils/installations/README.md,sha256=hKXnFYmeHEuROFMFE-vzlGLSHg71bei5ZYwyYZphWNk,2
|
|
233
240
|
bmcgo/utils/installations/__init__.py,sha256=BDXz8BcSlCkfo5UYt6j2rm89-HiYA1ZzfpFhy99MH-0,538
|
|
234
|
-
bmcgo/utils/installations/base_installer.py,sha256=
|
|
235
|
-
bmcgo/utils/installations/install_consts.py,sha256=
|
|
236
|
-
bmcgo/utils/installations/install_workflow.py,sha256=
|
|
237
|
-
bmcgo/utils/installations/version_util.py,sha256=
|
|
238
|
-
bmcgo/utils/installations/install_plans/bingo.yml,sha256=
|
|
239
|
-
bmcgo/utils/installations/installers/apt_installer.py,sha256=
|
|
240
|
-
bmcgo/utils/installations/installers/pip_installer.py,sha256=
|
|
241
|
-
openubmc_bingo-0.5.
|
|
242
|
-
openubmc_bingo-0.5.
|
|
243
|
-
openubmc_bingo-0.5.
|
|
244
|
-
openubmc_bingo-0.5.
|
|
245
|
-
openubmc_bingo-0.5.
|
|
241
|
+
bmcgo/utils/installations/base_installer.py,sha256=3UZiKWoa41ygRbLD3QsE2FTp-VFp79V0I53QLRIf4E8,5902
|
|
242
|
+
bmcgo/utils/installations/install_consts.py,sha256=QrRYfjw-rkwRllXDvC-pqoAH3Ii_tXsj590gzYxnAFA,1104
|
|
243
|
+
bmcgo/utils/installations/install_workflow.py,sha256=KS1rdIpeomDgf50K__5t-lAMzCGuerJfdQoiDSxmi3w,1857
|
|
244
|
+
bmcgo/utils/installations/version_util.py,sha256=dOwvLZ7iOmnzSeyD6_pRm7NS7I13Um5mSD_y0dVyO6M,3212
|
|
245
|
+
bmcgo/utils/installations/install_plans/bingo.yml,sha256=Zw1HnAyNJdEwkE3fnd-_GCe9bwv1m6bmMlaQTJXaFa8,210
|
|
246
|
+
bmcgo/utils/installations/installers/apt_installer.py,sha256=nPaCb4cobSi9InN_aHsEPtQ0k4FgsCUWE5_VgBPvcRE,3769
|
|
247
|
+
bmcgo/utils/installations/installers/pip_installer.py,sha256=dDdios1EQ7fzt90r02pZeoM3jCmjslLzkSvzd2hgRVM,3241
|
|
248
|
+
openubmc_bingo-0.5.254.dist-info/METADATA,sha256=8j5YISPGw7_HqnCHCbsotTo030S0JKPoYYE9dLw5-qU,925
|
|
249
|
+
openubmc_bingo-0.5.254.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
250
|
+
openubmc_bingo-0.5.254.dist-info/entry_points.txt,sha256=UUoUP-vAWTgg9vEYbRwYqOBHgpRtkngdzMPb-ocz90g,42
|
|
251
|
+
openubmc_bingo-0.5.254.dist-info/top_level.txt,sha256=9AcvCAt1nZcOgMsGt6T07mg2Bgtdet-3mHTwg91axgI,6
|
|
252
|
+
openubmc_bingo-0.5.254.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|