openubmc-bingo 0.5.243__py3-none-any.whl → 0.5.253__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.

Files changed (63) hide show
  1. bmcgo/__init__.py +1 -1
  2. bmcgo/bmcgo_config.py +81 -1
  3. bmcgo/codegen/lua/Makefile +13 -0
  4. bmcgo/codegen/lua/codegen.py +6 -3
  5. bmcgo/codegen/lua/script/dto/options.py +1 -0
  6. bmcgo/codegen/lua/script/{render_utils/factory.py → factory.py} +1 -1
  7. bmcgo/codegen/lua/script/gen_entry.py +6 -3
  8. bmcgo/codegen/lua/script/gen_intf_rpc_json.py +12 -0
  9. bmcgo/codegen/lua/script/gen_schema.py +2 -0
  10. bmcgo/codegen/lua/script/merge_model.py +10 -3
  11. bmcgo/codegen/lua/script/render_utils/__init__.py +5 -4
  12. bmcgo/codegen/lua/script/render_utils/client_lua.py +2 -2
  13. bmcgo/codegen/lua/script/render_utils/controller_lua.py +2 -2
  14. bmcgo/codegen/lua/script/render_utils/db_lua.py +2 -2
  15. bmcgo/codegen/lua/script/render_utils/error_lua.py +2 -2
  16. bmcgo/codegen/lua/script/render_utils/ipmi_lua.py +2 -2
  17. bmcgo/codegen/lua/script/render_utils/ipmi_message_lua.py +2 -2
  18. bmcgo/codegen/lua/script/render_utils/mdb_lua.py +2 -2
  19. bmcgo/codegen/lua/script/render_utils/message_lua.py +2 -2
  20. bmcgo/codegen/lua/script/render_utils/messages_lua.py +2 -2
  21. bmcgo/codegen/lua/script/render_utils/model_lua.py +2 -2
  22. bmcgo/codegen/lua/script/render_utils/old_model_lua.py +2 -2
  23. bmcgo/codegen/lua/script/render_utils/plugin_lua.py +2 -2
  24. bmcgo/codegen/lua/script/render_utils/redfish_proto.py +2 -2
  25. bmcgo/codegen/lua/script/render_utils/request_lua.py +2 -2
  26. bmcgo/codegen/lua/script/render_utils/service_lua.py +3 -2
  27. bmcgo/codegen/lua/script/template.py +5 -1
  28. bmcgo/codegen/lua/script/utils.py +9 -2
  29. bmcgo/codegen/lua/templates/Makefile +8 -0
  30. bmcgo/codegen/lua/templates/apps/Makefile +27 -1
  31. bmcgo/codegen/lua/templates/apps/controller.lua.mako +20 -4
  32. bmcgo/codegen/lua/v1/script/gen_schema.py +328 -0
  33. bmcgo/codegen/lua/v1/script/render_utils/model_lua.py +458 -0
  34. bmcgo/codegen/lua/v1/templates/apps/model.lua.mako +62 -0
  35. bmcgo/codegen/lua/v1/templates/apps/service.lua.mako +193 -0
  36. bmcgo/component/build.py +16 -42
  37. bmcgo/component/component_helper.py +54 -0
  38. bmcgo/component/coverage/incremental_cov.py +25 -33
  39. bmcgo/frame.py +9 -6
  40. bmcgo/functional/conan_index_build.py +16 -41
  41. bmcgo/functional/csr_build.py +313 -88
  42. bmcgo/functional/diff.py +3 -3
  43. bmcgo/functional/upgrade.py +31 -1
  44. bmcgo/misc.py +31 -2
  45. bmcgo/target/install_sdk.yml +6 -0
  46. bmcgo/tasks/task.py +69 -43
  47. bmcgo/tasks/task_build_conan.py +6 -2
  48. bmcgo/tasks/task_build_wbd_up.py +4 -4
  49. bmcgo/utils/config.py +20 -8
  50. bmcgo/utils/install_manager.py +75 -20
  51. bmcgo/utils/installations/base_installer.py +114 -7
  52. bmcgo/utils/installations/install_consts.py +3 -1
  53. bmcgo/utils/installations/install_plans/bingo.yml +2 -4
  54. bmcgo/utils/installations/install_workflow.py +6 -2
  55. bmcgo/utils/installations/installers/apt_installer.py +58 -136
  56. bmcgo/utils/installations/installers/pip_installer.py +52 -18
  57. bmcgo/utils/installations/version_util.py +1 -1
  58. {openubmc_bingo-0.5.243.dist-info → openubmc_bingo-0.5.253.dist-info}/METADATA +2 -1
  59. {openubmc_bingo-0.5.243.dist-info → openubmc_bingo-0.5.253.dist-info}/RECORD +63 -59
  60. /bmcgo/codegen/lua/script/{render_utils/base.py → base.py} +0 -0
  61. {openubmc_bingo-0.5.243.dist-info → openubmc_bingo-0.5.253.dist-info}/WHEEL +0 -0
  62. {openubmc_bingo-0.5.243.dist-info → openubmc_bingo-0.5.253.dist-info}/entry_points.txt +0 -0
  63. {openubmc_bingo-0.5.243.dist-info → openubmc_bingo-0.5.253.dist-info}/top_level.txt +0 -0
@@ -14,11 +14,15 @@
14
14
  from typing import Dict, List
15
15
  from pathlib import Path
16
16
  import yaml
17
+ from bmcgo.utils.tools import Tools
17
18
  from bmcgo.utils.installations import install_consts
18
19
 
19
20
 
21
+ tools = Tools("install")
22
+
23
+
20
24
  class InstallWorkflow:
21
- logger = None
25
+ logger = tools.log
22
26
  _workflows: Dict[str, List[str]] = {}
23
27
  search_paths: List[Path] = [Path(__file__).resolve().parent / install_consts.PLUGIN_INSTALL_PLAN_PATH]
24
28
 
@@ -26,7 +30,7 @@ class InstallWorkflow:
26
30
  def discover_workflows(cls):
27
31
  for path in cls.search_paths:
28
32
  if not path.exists():
29
- cls.logger and cls.logger.warning(f"未找到安装配置路径:w{str(path)}")
33
+ cls.logger and cls.logger.warning(f"未找到安装配置路径:{str(path)}, 跳过")
30
34
  continue
31
35
 
32
36
  for yml_file in path.glob("*.yml"):
@@ -11,167 +11,89 @@
11
11
  # MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
12
12
  # See the Mulan PSL v2 for more details.
13
13
  import os
14
- import base64
15
- import tempfile
16
- import requests
14
+ import shutil
17
15
  from typing import Dict, List
18
- from pathlib import Path
19
- from bmcgo.utils.tools import Tools
20
16
  from bmcgo.utils.installations import install_consts
21
17
  from bmcgo.utils.installations.version_util import PkgVersion
22
18
  from bmcgo.utils.installations.base_installer import BaseInstaller
23
19
 
24
20
 
25
- tool = Tools("apt_install")
21
+ class AptInstaller(BaseInstaller):
22
+ type_name = "apt"
26
23
 
27
-
28
- class AptInstaller(BaseInstaller, installer_type="apt"):
29
24
  def __init__(self):
30
- self._repo_url = None
31
- self._gpg_file = None
32
- self._config_file = None
33
- self._repo_public_key = None
34
- self._pkg_name = None
35
- self._pkg_version = None
36
-
37
- def install(self, plan: Dict[str, List[str]], operator: str, version: str):
38
- self._parse_plan(plan)
39
- self._install_key()
40
-
41
- if not self._check_repo():
42
- self.logger and self.logger.info("未检测到仓库配置,开始配置")
43
- self._config_repo()
44
-
25
+ super().__init__()
26
+ self._apt_cmd = None
27
+ self._doc = None
28
+
29
+ def pre_install(self):
30
+ self._apt_cmd = shutil.which("apt-get")
31
+ if not self._apt_cmd:
32
+ raise RuntimeError("未找到 apt-get 指令")
33
+
45
34
  self._update_cache()
46
-
47
- target = [self._pkg_name]
48
- if operator and version:
49
- ver = self._resolve_constraint(operator, version)
50
- if ver:
51
- target.append(ver)
52
- pkg = "=".join(target)
53
- self._install_package(pkg)
54
- self.logger and self.logger.info(f"安装{pkg}完成!")
55
-
56
- def _get_versions(self) -> List[PkgVersion]:
57
- result = tool.run_command(["apt-cache", "madison", self._pkg_name], capture_output=True)
58
- if not result.stdout:
59
- return []
60
- return [PkgVersion(line.split("|")[1].strip()) for line in result.stdout.splitlines()]
61
-
62
- def _resolve_constraint(self, opt: str, ver: str) -> str:
63
- versions = self._get_versions()
64
- if not versions:
65
- self.logger and self.logger.warning("当前没有可下载版本!")
66
- return None
67
-
68
- if ver == install_consts.INSTALL_LATEST or not opt:
69
- return versions[0].origin
70
-
71
- pkg_ver = PkgVersion(ver)
72
- for v in versions:
73
- if opt == ">=" and v >= pkg_ver:
74
- return v.origin
75
- elif opt == "<=" and v <= pkg_ver:
76
- return v.origin
77
- elif opt == "!=" and v != pkg_ver:
78
- return v.origin
79
- elif opt == "<" and v < pkg_ver:
80
- return v.origin
81
- elif opt == ">" and v > pkg_ver:
82
- return v.origin
83
- elif opt == "=" and v == pkg_ver:
84
- return v.origin
85
-
86
- raise ValueError(f"没有找到匹配的版本:{opt}{ver}")
87
-
88
- def _parse_plan(self, plan: Dict[str, List[str]]):
89
- repo_url = plan.get(install_consts.PLAN_REPO_URL)
90
- repo_public_key = plan.get(install_consts.PLAN_PUBLIC_KEY)
91
- gpg_file = plan.get(install_consts.PLAN_GPG)
92
- config_file = plan.get(install_consts.PLAN_CONFIG_FILE)
93
- pkg_name = plan.get(install_consts.PLAN_PACKAGE_NAME)
94
-
95
- if not all(val for key, val in locals().items() if key not in ["self", "plan"]):
96
- values = [
97
- f"{install_consts.PLAN_REPO_URL}: {repo_url}",
98
- f"{install_consts.PLAN_PUBLIC_KEY}: {repo_public_key}",
99
- f"{install_consts.PLAN_GPG}: {gpg_file}",
100
- f"{install_consts.PLAN_CONFIG_FILE}: {config_file}",
101
- f"{install_consts.PLAN_PACKAGE_NAME}: {pkg_name}"
102
- ]
103
- raise ValueError(f"请检查安装配置文件:\n{"\n\t".join(values)}\n")
104
-
105
- self._repo_url = repo_url
106
- self._repo_public_key = f"{self._repo_url}{repo_public_key}"
107
- self._gpg_file = Path("/usr/share/keyrings") / gpg_file
108
- self._config_file = Path("/etc/apt/sources.list.d/") / config_file
109
- self._pkg_name = pkg_name
110
-
111
- def _install_key(self):
112
- self.logger and self.logger.info("下载公钥")
113
35
  try:
114
- key_data = requests.get(self._repo_public_key).content
36
+ self.tools.run_command(["apt", "policy", self._pkg_name], capture_output=True)
115
37
  except Exception as e:
116
- raise RuntimeError("下载公钥失败")
117
-
118
- lines = key_data.splitlines()
119
- in_block = False
120
- b64data = []
38
+ self.info(f"本地源未正确配置,请参考社区文档进行配置:{self._doc}")
121
39
 
122
- for line in lines:
123
- if line.startswith(b"-----BEGIN PGP"):
124
- in_block = True
125
- continue
126
- if line.startswith(b"-----END PGP"):
127
- in_block = False
128
- continue
129
- if in_block and line.strip() and not line.startswith(b"="):
130
- b64data.append(line.strip())
131
40
 
132
- if not b64data:
133
- raise ValueError("公钥出错")
41
+ def install(self, force: bool):
42
+ if self.current_version == self.target_version and not force:
43
+ yes = input(f"[apt]当前版本已满足(=={self.target_version}), 是否覆盖安装?[Y/n]")
44
+ if yes == "n":
45
+ self.info(f"用户跳过覆盖安装{self._pkg_name}={self.target_version}")
46
+ return
134
47
 
135
- dearmor = base64.b64decode(b"".join(b64data))
136
-
137
- with open(self._gpg_file, "wb") as f:
138
- f.write(dearmor)
139
- os.chmod(self._gpg_file, 0o644)
140
-
141
- def _check_repo(self):
142
- if not self._config_file.exists():
143
- return False
144
-
145
- expect_line = f"deb [signed-by={self._gpg_file}] {self._repo_url} stable main\n"
146
- with open(self._config_file) as f:
147
- return any(line.strip() == expect_line.strip() for line in f)
48
+ pkg = f"{self._pkg_name}={self.target_version}"
49
+ self.info(f"开始安装{pkg}")
50
+ self._install_package(pkg, force)
51
+ self.info(f"安装{pkg}完成!")
148
52
 
149
- def _config_repo(self):
150
- repo_line = f"deb [signed-by={self._gpg_file}] {self._repo_url} stable main\n"
151
-
152
- self.logger and self.logger.info("配置仓资源")
153
- with tempfile.NamedTemporaryFile("w", delete=False) as tmp:
154
- tmp.write(repo_line)
155
- tmp_path = tmp.name
53
+ def show_versions(self):
54
+ versions = self.get_versions()
55
+ if not versions:
56
+ self.error("未找到可用的版本")
57
+ return
58
+ self.info(f"可用版本: {", ".join(versions)}")
156
59
 
60
+ def get_versions(self) -> List[PkgVersion]:
61
+ result = self.tools.run_command(["apt-cache", "madison", self._pkg_name], capture_output=True)
62
+ if not result or not result.stdout:
63
+ return []
64
+ versions = [line.split("|")[1].strip() for line in result.stdout.splitlines()]
65
+ versions.sort(key=PkgVersion, reverse=True)
66
+ return versions
67
+
68
+ def get_current_version(self):
157
69
  try:
158
- tool.run_command(["mv", tmp_path, str(self._config_file)], sudo=True)
159
- tool.run_command(["chmod", "644", str(self._config_file)], sudo=True)
70
+ result = self.tools.run_command(["dpkg-query", "-W", "-f=${Version}", self._pkg_name], capture_output=True)
71
+ if not result or not result.stdout:
72
+ return
73
+ self._cur_ver = result.stdout
160
74
  except Exception as e:
161
- os.remove(tmp_path)
162
- raise RuntimeError(f"写入仓库配置失败: {str(e)}")
75
+ return
76
+
77
+ def parse_custom_plan(self, plan: Dict[str, List[str]]):
78
+ self._doc = plan.get(install_consts.PLAN_DOC)
79
+ if not self._doc:
80
+ self.warning(f"未配置 {install_consts.PLAN_DOC}")
163
81
 
164
82
  def _update_cache(self):
165
- self.logger and self.logger.info("更新 apt 缓存")
83
+ self.info("更新 apt 缓存")
166
84
  try:
167
- tool.run_command(["apt-get", "update"], sudo=True)
85
+ self.tools.run_command(["apt-get", "update"], sudo=(os.getuid() != 0))
168
86
  except Exception as e:
169
87
  raise RuntimeError(f"安装失败: {str(e)}")
170
88
 
171
- def _install_package(self, pkg: str):
172
- self.logger and self.logger.info(f"安装: {pkg}")
89
+ def _install_package(self, pkg: str, force: bool):
90
+ self.info(f"安装: {pkg}")
173
91
  try:
174
- tool.run_command(["apt-get", "install", "-y", "--allow-downgrades", pkg], sudo=True)
92
+ cmd = ["apt-get", "install", "--allow-downgrades", pkg]
93
+ if force:
94
+ cmd.append("-y")
95
+ self.tools.run_command(cmd, sudo=(os.getuid() != 0))
96
+
175
97
  except Exception as e:
176
98
  raise RuntimeError(f"安装失败: {str(e)}")
177
99
 
@@ -11,28 +11,28 @@
11
11
  # MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
12
12
  # See the Mulan PSL v2 for more details.
13
13
  import sys
14
- import shutil
14
+ from importlib.metadata import distributions
15
15
  from typing import Dict, List
16
- from bmcgo.utils.tools import Tools
17
16
  from bmcgo.utils.installations import install_consts
17
+ from bmcgo.utils.installations import version_util
18
18
  from bmcgo.utils.installations.base_installer import BaseInstaller
19
19
 
20
20
 
21
- tool = Tools("pip_install")
21
+ class PipInstaller(BaseInstaller):
22
+ type_name = "pip"
22
23
 
24
+ def __init__(self):
25
+ super().__init__()
26
+ self._app_name = None
23
27
 
24
- class PipInstaller(BaseInstaller, installer_type="pip"):
25
- def install(self, plan: Dict[str, List[str]], operator: str, version: str):
26
- if operator == "=":
27
- operator = "=="
28
+ def install(self, force):
29
+ if self.current_version == self.target_version and not force:
30
+ yes = input(f"[pip]: 当前版本已满足(=={self.target_version}), 是否覆盖安装?[Y/n]")
31
+ if yes == "n":
32
+ self.info(f"用户跳过覆盖安装{self._pkg_name}={self.target_version}")
33
+ return
28
34
 
29
- pkg_name = plan.get(install_consts.PLAN_PACKAGE_NAME)
30
- app_name = plan.get(install_consts.PLAN_MODULE_NAME)
31
-
32
- if version == install_consts.INSTALL_LATEST or not operator:
33
- pkg_info = pkg_name
34
- else:
35
- pkg_info = "".join([pkg_name, operator, version])
35
+ pkg_info = f"{self._pkg_name}=={self.target_version}"
36
36
  cmds = [sys.executable, "-m", "pip", "install", "--upgrade", pkg_info]
37
37
 
38
38
  with open("/etc/issue", "r") as fp:
@@ -40,7 +40,41 @@ class PipInstaller(BaseInstaller, installer_type="pip"):
40
40
  if issue.startswith("Ubuntu 24.04"):
41
41
  cmds.append("--break-system-packages")
42
42
 
43
- self.logger and self.logger.info(f"pip 开始安装{pkg_info}")
44
- need_sudo = shutil.which(app_name).startswith("/home")
45
- tool.run_command(cmds, sudo=need_sudo, show_log=True)
46
- self.logger and self.logger.info(f"pip 安装{pkg_info}完成!")
43
+ self.info(f"pip 开始安装{pkg_info}")
44
+ self.tools.run_command(cmds, show_log=True)
45
+ self.info(f"pip 安装{pkg_info}完成!")
46
+
47
+ def parse_custom_plan(self, plan: Dict[str, List[str]]):
48
+ self._app_name = plan.get(install_consts.PLAN_MODULE_NAME)
49
+
50
+ def show_versions(self):
51
+ versions_mirror = self.get_versions()
52
+ if not versions_mirror:
53
+ self.error(f"未找到可用的版本")
54
+ self.info(f"可用版本: {", ".join(versions_mirror)}")
55
+
56
+ def get_versions(self, index_url=None):
57
+ cmd = [sys.executable, "-m", "pip", "index", "versions", self._pkg_name]
58
+ if index_url is not None:
59
+ cmd.extend(["-i", index_url])
60
+ ret = self.tools.run_command(cmd, capture_output=True)
61
+ for l in ret.stdout.splitlines():
62
+ if l.strip().startswith("Available versions: "):
63
+ # 跳过 Available, versions:
64
+ versions = [v.strip() for v in l.replace("Available versions:", "").split(",")]
65
+ versions.sort(key=version_util.PkgVersion, reverse=True)
66
+ return versions
67
+ else:
68
+ if index_url:
69
+ self.error(f"从 {index_url} 获取版本号失败!")
70
+ else:
71
+ self.error("获取版本号失败!")
72
+ return []
73
+
74
+ def get_current_version(self):
75
+ for dist in distributions():
76
+ metadata = dist.metadata
77
+ if self._pkg_name == metadata["Name"]:
78
+ self._cur_ver = metadata["Version"]
79
+ break
80
+
@@ -89,7 +89,7 @@ class PkgVersion:
89
89
  return self._digit.match(s).group()
90
90
  return self._non_digit.match(s).group()
91
91
 
92
- def __compare(self, other: type["PkgVersion"]):
92
+ def __compare(self, other):
93
93
  if self.epoch != other.epoch:
94
94
  return -1 if self.epoch < other.epoch else 1
95
95
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: openubmc-bingo
3
- Version: 0.5.243
3
+ Version: 0.5.253
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=j61yD8530dkhtOSYxj6bRJgrYaVdQ8HGZyRhYPdFVf0,562
1
+ bmcgo/__init__.py,sha256=S5aQuHuyE8IThwYjSSDAFtoQVWSeUAXXOiFlmcla0ss,563
2
2
  bmcgo/bmcgo.py,sha256=uD4TsfjrFB5aQPIS6WRUVc9ShXX-dSImY9ezkB13g1w,685
3
- bmcgo/bmcgo_config.py,sha256=DoFzuYJjqYLJ7rVmAq3kNjj5ZQZ931oLQTry8uovF3E,7385
3
+ bmcgo/bmcgo_config.py,sha256=zPghH-W8vNK1bAc5PjfwnWzkHYT499PlGbhUWhPKT5U,10888
4
4
  bmcgo/errors.py,sha256=QW1ndrJcJ2Ws7riOznPKVvZsNlrYk73eZol7w8gJTPU,3076
5
- bmcgo/frame.py,sha256=OUIlplOGD9NXHdubhXSfmR4s5e29AsMyLUkkiWrdRsg,10378
5
+ bmcgo/frame.py,sha256=iUZSd3Pj7T4yDZYX7A4DeaV9dnmJqOTjMIiJMmL9zfM,10427
6
6
  bmcgo/logger.py,sha256=4TPOkBA80Z00rSCOdEv_WkwE5Kr3HCDt-HuVe9waXck,6645
7
- bmcgo/misc.py,sha256=VukODl7BdMZz8sZyQ5o0wHj9ixJfPZmmeLuDHoCiSBg,3430
7
+ bmcgo/misc.py,sha256=Xf-oAA94L2Ul-IL6BhKC4LZReqGUe99sLvQdH7hQtnc,4229
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=xhd8OKEqITVMPbf_2L4j5mnLppk9J4rYpV8YoHxdggc,2799
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=U-SEOsapPNTaHmVJ1ZAeEzkvN4uUfLeS6i0TBXHCUTQ,7605
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=kGrf9vn6tcUuwcMgA5hAfHSq6sq81jb9mbFf8mQq7kk,10195
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=ySqApgmPXuwoFUsP5c7tUFtPQzFZiHfF4XaJJtveIL0,18827
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=6dm40vvdEqPrt917bSH2DWAaQj5C3hjtqS5dDud6GlM,10501
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=oZ7w_qz1xvv7qWE1jlLaVrSsWRL98tud7OqoKNTyqmY,12378
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=eCrS-VJ77vWkVdZwFuqf0CzWFdcxWiRKiX43Js7jGM4,6488
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=5_7Eikw6YLGT7etawAyS7Gh0C3k4abl8FaB_no-Jt6A,23610
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=hthI9v6Pj7VaswtmVt7JP5wydiCfnMmEt8avcPmIolo,1370
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=GFEgwf02ddfSUFJLQl9VJYdFGezQJ3KONay6ERm3mPc,1874
80
- bmcgo/codegen/lua/script/render_utils/base.py,sha256=E1_V6lmE5CjY2pqSYOpyNVGRVneC4pSLnLoNntm1I6A,823
81
- bmcgo/codegen/lua/script/render_utils/client_lua.py,sha256=zmFqjlwXGDsPpfptxx4nNqdRw88Q9vNttSMtLARbyV8,3483
82
- bmcgo/codegen/lua/script/render_utils/controller_lua.py,sha256=_zC7R967a8o3KUzu5GR8HSHG1wP1n6-PLKDz4kdxG7s,2328
83
- bmcgo/codegen/lua/script/render_utils/db_lua.py,sha256=UtbM4muVI-vl0VzunaT125oNEeLr5max-TtjxRSW2KM,7841
84
- bmcgo/codegen/lua/script/render_utils/error_lua.py,sha256=wvmdcR0RCgz6ndM-S8AS9hSMr5XhtYocqY0CUawSuY8,5904
85
- bmcgo/codegen/lua/script/render_utils/factory.py,sha256=TBeUlpYBkybFt53qnts981AZ_2LC2qfRAZP3fSgJxIk,1700
86
- bmcgo/codegen/lua/script/render_utils/ipmi_lua.py,sha256=ff15kg3yMLVSPGCYi5B6OuJPzTxnuBK5PLKxIFoDp7s,4973
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=JPTvMvUl9yGQcTG-VWlD3UvlLAHFP1vxc7fie2JoRV4,1048
91
- bmcgo/codegen/lua/script/render_utils/messages_lua.py,sha256=Zn6aKpQb5uYYuP51LReEf9Jue3rLXoNiF6LO8zsL5A8,4924
92
- bmcgo/codegen/lua/script/render_utils/model_lua.py,sha256=CodrrIH3h93sdgShlqfB68Lfe-iNcd-XoDESq0CtCb8,18016
93
- bmcgo/codegen/lua/script/render_utils/old_model_lua.py,sha256=wNvtGc3DsuMcHMoy8EJ4ACg1n9m9LtPk6sYGPyYGNLA,15587
94
- bmcgo/codegen/lua/script/render_utils/plugin_lua.py,sha256=l6agVwBpTeECMhyX_yG1QiXsZmd0HdgxJJh1PtpeR5A,1457
95
- bmcgo/codegen/lua/script/render_utils/redfish_proto.py,sha256=FOc86XEIzHfPr3o28D3PX4cn723F6PX0pJtGSM1s9xk,3106
96
- bmcgo/codegen/lua/script/render_utils/request_lua.py,sha256=__gD-ZCxe030kW2oqm4vTlnCUu3JsTGl_mcbnzsvblM,3185
97
- bmcgo/codegen/lua/script/render_utils/service_lua.py,sha256=TLfeNWF4sDJIYjFapClveAlN8hnbtVWZ8dqo1mbFdqc,4294
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=eVtX7wdtSKkjsox5pjtRPzXdrvl_qYT-cMgDVZF2P7U,3732
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=enAm7p9Tk5Wd9OH-SkJu3T4B-9gjqYaG3gsCZW7C8Xg,14126
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=QjBCqvabUY0I09edYFX26sq62TO3fR2mcdiX25O2ygM,10476
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=LG7NwlEctiKaMhbluUV-8vMx4efFFkbwTPuAYxeNWkw,9621
161
+ bmcgo/component/build.py,sha256=0URX4vVwazTICtSLdY9x0f_dl3JhgCfHew4mqczGFHQ,8483
158
162
  bmcgo/component/component_dt_version_parse.py,sha256=KyrfyjbrszU-hhG1Hr6TzKuSabmGIK51b_3KuVBv5-g,14139
159
- bmcgo/component/component_helper.py,sha256=VmLsmvWTJT5861ec70VC0lEIPZI9njMtn3Zo3L6hamM,4146
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,25 @@ 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=jbcTC83xw_egnXW-6PigtwPAWbNX7x5i7NcuEafIyrU,17315
180
+ bmcgo/component/coverage/incremental_cov.py,sha256=4lkdufAxbmsrozKtlUwvT9KipNH3KZ3W_0n6ZUvfuJw,16795
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=UUpsDcCb1tfZlPONWvfXqzvaOkCUPJ4Z-2S0bNy5BrM,10176
187
+ bmcgo/functional/conan_index_build.py,sha256=cYpv83DFnsbUJri_dKyThLo7-SDRQ4253P4Nud-HYFY,9074
184
188
  bmcgo/functional/config.py,sha256=Yctxlxz9ywEacTbVAvJZOH0pjsxMnQ6te6kjMM2g3d0,10552
185
- bmcgo/functional/csr_build.py,sha256=l2ELOvnT43ZzsUt_9xx-aJhi3jBYe2S6Mo-ULjmcl2s,30632
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=L-FFytMtxWtcdJCRPG68yapXgju_qDVOHR3f7NQzqEY,10558
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
190
194
  bmcgo/functional/maintain.py,sha256=8bUwaCsZAiBWDrf8NsdVoOvyMY2JOoXdzvahU9Hd8-0,17951
191
195
  bmcgo/functional/new.py,sha256=A4--cy3R-moFD8KtrGGIzMiVVwnB2rL8qlrJz1dGGMg,6157
192
196
  bmcgo/functional/schema_valid.py,sha256=jk4blLZgQCJv4eOY0YK2Fy0oRCdG1sfSssd2rGT-Eoc,3910
193
197
  bmcgo/functional/simple_sign.py,sha256=AstEnGzcTIxAYs5U9G82JDXj7CnfhN9LyYcnkpGEH2Y,4086
194
- bmcgo/functional/upgrade.py,sha256=pdV-KHHBArE7HcvlbWN7TPwR3JbohWMO7XJV0zxnZRc,2384
198
+ bmcgo/functional/upgrade.py,sha256=HgTtUYtntuRcsO9qb1ciBvZ2gwyHrd0snyH7gjPKA6o,3131
195
199
  bmcgo/ipmigen/__init__.py,sha256=xrppKUuQkt1jTqnr6gHWiWeEyUMFJeiZxcA7Hx9XXUo,789
196
200
  bmcgo/ipmigen/ctype_defination.py,sha256=PmkKRWTvmVQsZ-njio16ayXpsyFhC6le9Tu0baWU-xw,3179
197
201
  bmcgo/ipmigen/ipmigen.py,sha256=SZWoylTM-Tp4KSOQyfHidMjhhIzp4WIa40oxcrFfKB8,14506
@@ -199,16 +203,16 @@ bmcgo/ipmigen/template/cmd.c.mako,sha256=5avKDLnEw0PscXZpj0Da0y7GcwQ2Q4lBy-yofw1
199
203
  bmcgo/ipmigen/template/ipmi.c.mako,sha256=LNrJmXQut4923aQkkkuHFp9tTR9ExrBi0WYfxVLTykU,696
200
204
  bmcgo/ipmigen/template/ipmi.h.mako,sha256=veZ42lJq4hljyNH5uL_yesHpoANF3pprTL1VwTlflqs,2006
201
205
  bmcgo/target/app.yml,sha256=OaCk1YntS6h_cKUt8rvJ7fkqXMFjK5v4Iu2Nhx66ZFY,469
202
- bmcgo/target/install_sdk.yml,sha256=jgE_pkkIfiSIoDI91qxoHHjXFx9zcBUDQD-FfDaxcZg,540
206
+ bmcgo/target/install_sdk.yml,sha256=PjSSFtDudnlA_N-__XHHuJmYTZT0ZcTKlyzOz9xIK3I,726
203
207
  bmcgo/target/personal.yml,sha256=o2PEQIcHe7v8J5-WHiQlgTEgiisQx_vCkgLlKDLkzh4,1953
204
208
  bmcgo/target/publish.yml,sha256=WvaJAUZ0_6CMV3O1p1t6dagHe-DdLcXqLxKP11_ki1E,1615
205
209
  bmcgo/tasks/__init__.py,sha256=VapgzhPMmB7dzPIRohoVm1jjfVn_v97cYNCRmkxScaU,539
206
210
  bmcgo/tasks/download_buildtools_hm.py,sha256=f4UxStARc8Z8DnT_5O6ONajQ7P0sKyJ8brixr43fHVQ,5988
207
211
  bmcgo/tasks/misc.py,sha256=GK_bSDLGZW0FxywB2ICG1iIEz2y2QoCb1YQQk8SYOIA,711
208
- bmcgo/tasks/task.py,sha256=e7GL0fh4vXwhwq5Hv-SixCw-lbNPJtdivhUmvHrfWI8,15788
209
- bmcgo/tasks/task_build_conan.py,sha256=3BtapZXt09cKWcR_Wa8fXhrQDCvKWQtYjxG5RSC8F-U,32823
212
+ bmcgo/tasks/task.py,sha256=n7EhquD3FQeT8LHk0tREKOG9t1BcbMge_TY6ekGFydk,17064
213
+ bmcgo/tasks/task_build_conan.py,sha256=nQt4VyK4QHh2u4JbM8kfK9WBVIMGKI18S2NPg9orlvQ,32962
210
214
  bmcgo/tasks/task_build_rootfs_img.py,sha256=uFrMfrpaAHB_2QQdEo46P8TgFrGMTG-xfZUlxzJLSQ0,30443
211
- bmcgo/tasks/task_build_wbd_up.py,sha256=VlmjKX17L6fSoFRAL4LppzufXFWlMXYh1y_iGeTazo8,3122
215
+ bmcgo/tasks/task_build_wbd_up.py,sha256=X9-0Qqad-s3mGfJBMeBQvfZ99KlWcgaMluDr_zv6Z-o,3122
212
216
  bmcgo/tasks/task_buildgppbin.py,sha256=Xjfw6j8OsyS_XRiOt4vqIK1rDQ4sNKG__eurDu-M9bo,6341
213
217
  bmcgo/tasks/task_buildhpm_ext4.py,sha256=DBZnmU_eb14J0CW_wVoCc9VKnssFF1vXmRhLJQ6kR28,3482
214
218
  bmcgo/tasks/task_create_interface_config.py,sha256=rkFRGLrUgYCics-n1CKwCoQscU2BaRQkH7KP3zwJ6FI,5393
@@ -223,23 +227,23 @@ bmcgo/utils/buffer.py,sha256=t1SkWntWksboNFMPsltslwRdXZi3FAe8eV0JAAE7Vto,4004
223
227
  bmcgo/utils/combine_json_schemas.py,sha256=08JrAlLeo_JgUqzYcZNgSwJZPLfjbWVJ4esPPt9bPMY,7967
224
228
  bmcgo/utils/component_post.py,sha256=b2sr2IVensmnvcB7VcbIHkzCtS-fbtjPb4k1LiNReQk,2296
225
229
  bmcgo/utils/component_version_check.py,sha256=ZhY3LUgmvuoDTlSjyFeh2blmcYbFcwtijNaOM0ntRtE,3457
226
- bmcgo/utils/config.py,sha256=eNfGctRdrCbV3rbmPWCGmSGy0vBZz4HY5hsfqKH9hSw,47930
230
+ bmcgo/utils/config.py,sha256=P3cqV0wlMn5U8NApUD7JKIuMVKqARtNfxsKopDn-rv4,48484
227
231
  bmcgo/utils/fetch_component_code.py,sha256=vH9rY2YcXK5tBUEK7fLmKVxK9cYDM39FHmManBQA2KQ,10011
228
- bmcgo/utils/install_manager.py,sha256=UswQ_q5Dd1dUlzfdvtDtQRbeQNL7lh2Gs-Ha6lYgD7k,2460
232
+ bmcgo/utils/install_manager.py,sha256=XMZUuIHm7_DWRdLV4dAevsyamQ6rt8lb_7OqGWzNBC8,4927
229
233
  bmcgo/utils/mapping_config_patch.py,sha256=_gKfZnrvsLPgHn1yXhEJRVTAeuGpeGD9T-Pqyw5Ydys,16827
230
234
  bmcgo/utils/perf_analysis.py,sha256=fh6lV9AAKVhpPkGPwAJ8EWfGfUoHjqGYQxrvc32Xiac,4767
231
235
  bmcgo/utils/tools.py,sha256=fLKBz_FiNc0s8UBkXQ_TZrzldCYLGEH8ZuqLUgS9g30,28849
232
236
  bmcgo/utils/installations/README.md,sha256=hKXnFYmeHEuROFMFE-vzlGLSHg71bei5ZYwyYZphWNk,2
233
237
  bmcgo/utils/installations/__init__.py,sha256=BDXz8BcSlCkfo5UYt6j2rm89-HiYA1ZzfpFhy99MH-0,538
234
- bmcgo/utils/installations/base_installer.py,sha256=QvAtfPgdwLSV5w3w1iVrpuWBAZUgNHp5C93gKtDjR0E,2827
235
- bmcgo/utils/installations/install_consts.py,sha256=qIktIJiX-TqdLMAuIx5htM5L_NPmcNksZ-S1gbPyt3U,1038
236
- bmcgo/utils/installations/install_workflow.py,sha256=VQRE697kflBtBXbRLtMMB1Z1HzAARsaVbIeyiQkTxII,1782
237
- bmcgo/utils/installations/version_util.py,sha256=xyubh5rwD8_xqLgL8mL5ecz83T98M94gPaBTVlZpCXQ,3232
238
- bmcgo/utils/installations/install_plans/bingo.yml,sha256=S7h9dDNQYGkmC0h3tVJIR53iLB99oV1v6FUeFnXqDks,286
239
- bmcgo/utils/installations/installers/apt_installer.py,sha256=vvKEN6R7GWd8N5axsm0FFDMMzR7UhtOu_N_Tk3HcLmA,6741
240
- bmcgo/utils/installations/installers/pip_installer.py,sha256=hZtTB5KyhNp3pquBl0k5Xjp5_0RvrG_0jwnG9yGDXmk,1869
241
- openubmc_bingo-0.5.243.dist-info/METADATA,sha256=tQwFvGnRA9J7suBvS521fEC8vowrq6C6fS6t6fH_31c,904
242
- openubmc_bingo-0.5.243.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
243
- openubmc_bingo-0.5.243.dist-info/entry_points.txt,sha256=UUoUP-vAWTgg9vEYbRwYqOBHgpRtkngdzMPb-ocz90g,42
244
- openubmc_bingo-0.5.243.dist-info/top_level.txt,sha256=9AcvCAt1nZcOgMsGt6T07mg2Bgtdet-3mHTwg91axgI,6
245
- openubmc_bingo-0.5.243.dist-info/RECORD,,
238
+ bmcgo/utils/installations/base_installer.py,sha256=3UZiKWoa41ygRbLD3QsE2FTp-VFp79V0I53QLRIf4E8,5902
239
+ bmcgo/utils/installations/install_consts.py,sha256=QrRYfjw-rkwRllXDvC-pqoAH3Ii_tXsj590gzYxnAFA,1104
240
+ bmcgo/utils/installations/install_workflow.py,sha256=KS1rdIpeomDgf50K__5t-lAMzCGuerJfdQoiDSxmi3w,1857
241
+ bmcgo/utils/installations/version_util.py,sha256=dOwvLZ7iOmnzSeyD6_pRm7NS7I13Um5mSD_y0dVyO6M,3212
242
+ bmcgo/utils/installations/install_plans/bingo.yml,sha256=Zw1HnAyNJdEwkE3fnd-_GCe9bwv1m6bmMlaQTJXaFa8,210
243
+ bmcgo/utils/installations/installers/apt_installer.py,sha256=nPaCb4cobSi9InN_aHsEPtQ0k4FgsCUWE5_VgBPvcRE,3769
244
+ bmcgo/utils/installations/installers/pip_installer.py,sha256=dDdios1EQ7fzt90r02pZeoM3jCmjslLzkSvzd2hgRVM,3241
245
+ openubmc_bingo-0.5.253.dist-info/METADATA,sha256=aa4XMf5zyUyvayW5dj_7mmuwUjdRD-IMpyDDuq7hDmo,925
246
+ openubmc_bingo-0.5.253.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
247
+ openubmc_bingo-0.5.253.dist-info/entry_points.txt,sha256=UUoUP-vAWTgg9vEYbRwYqOBHgpRtkngdzMPb-ocz90g,42
248
+ openubmc_bingo-0.5.253.dist-info/top_level.txt,sha256=9AcvCAt1nZcOgMsGt6T07mg2Bgtdet-3mHTwg91axgI,6
249
+ openubmc_bingo-0.5.253.dist-info/RECORD,,