idf-build-apps 1.0.0.dev1__py2.py3-none-any.whl → 1.0.1__py2.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.
- idf_build_apps/__init__.py +1 -1
- idf_build_apps/finder.py +7 -3
- idf_build_apps/main.py +37 -72
- idf_build_apps/manifest/if_parser.py +5 -0
- idf_build_apps/utils.py +13 -4
- {idf_build_apps-1.0.0.dev1.dist-info → idf_build_apps-1.0.1.dist-info}/METADATA +2 -1
- idf_build_apps-1.0.1.dist-info/RECORD +18 -0
- idf_build_apps-1.0.0.dev1.dist-info/RECORD +0 -18
- {idf_build_apps-1.0.0.dev1.dist-info → idf_build_apps-1.0.1.dist-info}/LICENSE +0 -0
- {idf_build_apps-1.0.0.dev1.dist-info → idf_build_apps-1.0.1.dist-info}/WHEEL +0 -0
- {idf_build_apps-1.0.0.dev1.dist-info → idf_build_apps-1.0.1.dist-info}/entry_points.txt +0 -0
idf_build_apps/__init__.py
CHANGED
idf_build_apps/finder.py
CHANGED
|
@@ -17,6 +17,7 @@ from .app import (
|
|
|
17
17
|
)
|
|
18
18
|
from .utils import (
|
|
19
19
|
config_rules_from_str,
|
|
20
|
+
to_absolute_path,
|
|
20
21
|
to_list,
|
|
21
22
|
)
|
|
22
23
|
|
|
@@ -165,15 +166,18 @@ def _find_apps(
|
|
|
165
166
|
|
|
166
167
|
# The remaining part is for recursive == True
|
|
167
168
|
apps = []
|
|
169
|
+
# handle the exclude list, since the config file might use linux style, but run in windows
|
|
170
|
+
exclude_list = [to_absolute_path(p) for p in exclude_list]
|
|
168
171
|
for root, dirs, _ in os.walk(path):
|
|
169
172
|
LOGGER.debug('Entering %s', root)
|
|
170
|
-
|
|
173
|
+
root_path = to_absolute_path(root)
|
|
174
|
+
if root_path in exclude_list:
|
|
171
175
|
LOGGER.debug('=> Skipping %s (excluded)', root)
|
|
172
176
|
del dirs[:]
|
|
173
177
|
continue
|
|
174
178
|
|
|
175
|
-
if
|
|
176
|
-
LOGGER.debug('=> Skipping %s (managed components)',
|
|
179
|
+
if root_path.parts[-1] == 'managed_components': # idf-component-manager
|
|
180
|
+
LOGGER.debug('=> Skipping %s (managed components)', root_path)
|
|
177
181
|
del dirs[:]
|
|
178
182
|
continue
|
|
179
183
|
|
idf_build_apps/main.py
CHANGED
|
@@ -2,14 +2,12 @@
|
|
|
2
2
|
# SPDX-License-Identifier: Apache-2.0
|
|
3
3
|
|
|
4
4
|
import argparse
|
|
5
|
-
import io
|
|
6
5
|
import json
|
|
7
6
|
import os
|
|
8
7
|
import re
|
|
9
8
|
import shutil
|
|
10
9
|
import sys
|
|
11
10
|
import textwrap
|
|
12
|
-
import warnings
|
|
13
11
|
from pathlib import (
|
|
14
12
|
Path,
|
|
15
13
|
)
|
|
@@ -55,22 +53,22 @@ def _check_app_dependency(
|
|
|
55
53
|
manifest_rootpath, # type: str
|
|
56
54
|
modified_components, # type: list[str] | None
|
|
57
55
|
modified_files, # type: list[str] | None
|
|
58
|
-
|
|
56
|
+
ignore_app_dependencies_filepatterns, # type: list[str] | None
|
|
59
57
|
): # type: (...) -> bool
|
|
60
58
|
# not check since modified_components and modified_files are not passed
|
|
61
59
|
if modified_components is None and modified_files is None:
|
|
62
60
|
return False
|
|
63
61
|
|
|
64
|
-
# not check since
|
|
62
|
+
# not check since ignore_app_dependencies_filepatterns is passed and matched
|
|
65
63
|
if (
|
|
66
|
-
|
|
64
|
+
ignore_app_dependencies_filepatterns
|
|
67
65
|
and modified_files is not None
|
|
68
|
-
and files_matches_patterns(modified_files,
|
|
66
|
+
and files_matches_patterns(modified_files, ignore_app_dependencies_filepatterns, manifest_rootpath)
|
|
69
67
|
):
|
|
70
68
|
LOGGER.debug(
|
|
71
69
|
'Skipping check component dependencies for apps since files %s matches patterns: %s',
|
|
72
70
|
', '.join(modified_files),
|
|
73
|
-
', '.join(
|
|
71
|
+
', '.join(ignore_app_dependencies_filepatterns),
|
|
74
72
|
)
|
|
75
73
|
return False
|
|
76
74
|
|
|
@@ -95,7 +93,7 @@ def find_apps(
|
|
|
95
93
|
default_build_targets=None, # type: list[str] | str | None
|
|
96
94
|
modified_components=None, # type: list[str] | str | None
|
|
97
95
|
modified_files=None, # type: list[str] | str | None
|
|
98
|
-
|
|
96
|
+
ignore_app_dependencies_filepatterns=None, # type: list[str] | str | None
|
|
99
97
|
sdkconfig_defaults=None, # type: str | None
|
|
100
98
|
): # type: (...) -> list[App]
|
|
101
99
|
"""
|
|
@@ -139,9 +137,9 @@ def find_apps(
|
|
|
139
137
|
:type modified_components: list[str] | str | None
|
|
140
138
|
:param modified_files: modified files
|
|
141
139
|
:type modified_files: list[str] | str | None
|
|
142
|
-
:param
|
|
140
|
+
:param ignore_app_dependencies_filepatterns: file patterns that used for ignoring checking the component
|
|
143
141
|
dependencies
|
|
144
|
-
:type
|
|
142
|
+
:type ignore_app_dependencies_filepatterns: list[str] | str | None
|
|
145
143
|
:param sdkconfig_defaults: semicolon-separated string, pass to idf.py -DSDKCONFIG_DEFAULTS if specified,
|
|
146
144
|
also could be set via environment variables "SDKCONFIG_DEFAULTS"
|
|
147
145
|
:type sdkconfig_defaults: str | None
|
|
@@ -166,7 +164,7 @@ def find_apps(
|
|
|
166
164
|
|
|
167
165
|
modified_components = to_list(modified_components)
|
|
168
166
|
modified_files = to_list(modified_files)
|
|
169
|
-
|
|
167
|
+
ignore_app_dependencies_filepatterns = to_list(ignore_app_dependencies_filepatterns)
|
|
170
168
|
|
|
171
169
|
apps = []
|
|
172
170
|
if target == 'all':
|
|
@@ -195,7 +193,7 @@ def find_apps(
|
|
|
195
193
|
manifest_rootpath=manifest_rootpath,
|
|
196
194
|
modified_components=modified_components,
|
|
197
195
|
modified_files=modified_files,
|
|
198
|
-
|
|
196
|
+
ignore_app_dependencies_filepatterns=ignore_app_dependencies_filepatterns,
|
|
199
197
|
),
|
|
200
198
|
modified_components=modified_components,
|
|
201
199
|
modified_files=modified_files,
|
|
@@ -223,7 +221,7 @@ def build_apps(
|
|
|
223
221
|
manifest_rootpath=None, # type: str | None
|
|
224
222
|
modified_components=None, # type: list[str] | str | None
|
|
225
223
|
modified_files=None, # type: list[str] | str | None
|
|
226
|
-
|
|
224
|
+
ignore_app_dependencies_filepatterns=None, # type: list[str] | str | None
|
|
227
225
|
): # type: (...) -> (int, list[App]) | int
|
|
228
226
|
"""
|
|
229
227
|
Build all the specified apps
|
|
@@ -258,9 +256,9 @@ def build_apps(
|
|
|
258
256
|
:type modified_components: list[str] | str | None
|
|
259
257
|
:param modified_files: modified files
|
|
260
258
|
:type modified_files: list[str] | str | None
|
|
261
|
-
:param
|
|
259
|
+
:param ignore_app_dependencies_filepatterns: file patterns that used for ignoring checking the component
|
|
262
260
|
dependencies
|
|
263
|
-
:type
|
|
261
|
+
:type ignore_app_dependencies_filepatterns: list[str] | str | None
|
|
264
262
|
:return: (exit_code, built_apps) if specified ``modified_components``
|
|
265
263
|
:rtype: int, list[App]
|
|
266
264
|
:return: exit_code if not specified ``modified_components``
|
|
@@ -269,7 +267,7 @@ def build_apps(
|
|
|
269
267
|
apps = to_list(apps) # type: list[App]
|
|
270
268
|
modified_components = to_list(modified_components)
|
|
271
269
|
modified_files = to_list(modified_files)
|
|
272
|
-
|
|
270
|
+
ignore_app_dependencies_filepatterns = to_list(ignore_app_dependencies_filepatterns)
|
|
273
271
|
|
|
274
272
|
ignore_warnings_regexes = []
|
|
275
273
|
if ignore_warning_strs:
|
|
@@ -300,27 +298,13 @@ def build_apps(
|
|
|
300
298
|
app.parallel_count = parallel_count
|
|
301
299
|
|
|
302
300
|
if collect_app_info:
|
|
303
|
-
|
|
304
|
-
warnings.warn(
|
|
305
|
-
'"collect_app_info" does not support file stream in idf-build-apps 1.0.0, Please use str instead',
|
|
306
|
-
DeprecationWarning,
|
|
307
|
-
)
|
|
308
|
-
app._collect_app_info = collect_app_info.name
|
|
309
|
-
else:
|
|
310
|
-
app._collect_app_info = collect_app_info
|
|
301
|
+
app._collect_app_info = collect_app_info
|
|
311
302
|
|
|
312
303
|
if app.collect_app_info not in collect_files:
|
|
313
304
|
collect_files.append(app.collect_app_info)
|
|
314
305
|
|
|
315
306
|
if collect_size_info:
|
|
316
|
-
|
|
317
|
-
warnings.warn(
|
|
318
|
-
'"collect_size_info" does not support file stream in idf-build-apps 1.0.0, Please use str instead',
|
|
319
|
-
DeprecationWarning,
|
|
320
|
-
)
|
|
321
|
-
app._collect_size_info = collect_size_info.name
|
|
322
|
-
else:
|
|
323
|
-
app._collect_size_info = collect_size_info
|
|
307
|
+
app._collect_size_info = collect_size_info
|
|
324
308
|
|
|
325
309
|
if app.collect_size_info not in collect_files:
|
|
326
310
|
collect_files.append(app.collect_size_info)
|
|
@@ -352,7 +336,7 @@ def build_apps(
|
|
|
352
336
|
modified_components=modified_components,
|
|
353
337
|
modified_files=modified_files,
|
|
354
338
|
check_app_dependencies=_check_app_dependency(
|
|
355
|
-
manifest_rootpath, modified_components, modified_files,
|
|
339
|
+
manifest_rootpath, modified_components, modified_files, ignore_app_dependencies_filepatterns
|
|
356
340
|
),
|
|
357
341
|
)
|
|
358
342
|
except BuildError as e:
|
|
@@ -468,15 +452,7 @@ class IdfBuildAppsCliFormatter(argparse.HelpFormatter):
|
|
|
468
452
|
else:
|
|
469
453
|
default_type = type(action.default)
|
|
470
454
|
|
|
471
|
-
if
|
|
472
|
-
_help += (
|
|
473
|
-
'. Could be specified for multiple times'
|
|
474
|
-
'{} ! DeprecationWarning: will change to space-separated list in idf-build-apps 1.0.0 version'.format(
|
|
475
|
-
self.LINE_SEP
|
|
476
|
-
)
|
|
477
|
-
)
|
|
478
|
-
_type = 'list[{}]'.format(default_type.__name__)
|
|
479
|
-
elif action.nargs in [argparse.ZERO_OR_MORE, argparse.ONE_OR_MORE]:
|
|
455
|
+
if action.nargs in [argparse.ZERO_OR_MORE, argparse.ONE_OR_MORE]:
|
|
480
456
|
_type = 'list[{}]'.format(default_type.__name__)
|
|
481
457
|
else:
|
|
482
458
|
_type = default_type.__name__
|
|
@@ -522,11 +498,7 @@ def get_parser(): # type: () -> argparse.ArgumentParser
|
|
|
522
498
|
action='store_true',
|
|
523
499
|
help='Look for apps in the specified paths recursively',
|
|
524
500
|
)
|
|
525
|
-
common_args.add_argument(
|
|
526
|
-
'--exclude',
|
|
527
|
-
action='append',
|
|
528
|
-
help='Ignore specified directory (if --recursive is given)',
|
|
529
|
-
)
|
|
501
|
+
common_args.add_argument('--exclude', nargs='+', help='Ignore specified path (if --recursive is given)')
|
|
530
502
|
common_args.add_argument(
|
|
531
503
|
'--work-dir',
|
|
532
504
|
help='If set, the app is first copied into the specified directory, and then built. '
|
|
@@ -548,7 +520,7 @@ def get_parser(): # type: () -> argparse.ArgumentParser
|
|
|
548
520
|
)
|
|
549
521
|
common_args.add_argument(
|
|
550
522
|
'--config',
|
|
551
|
-
|
|
523
|
+
nargs='+',
|
|
552
524
|
help='Adds configurations (sdkconfig file names) to build. '
|
|
553
525
|
'This can either be FILENAME[=NAME] or FILEPATTERN. FILENAME is the name of the sdkconfig file, '
|
|
554
526
|
'relative to the project directory, to be used. Optional NAME can be specified, '
|
|
@@ -578,7 +550,7 @@ def get_parser(): # type: () -> argparse.ArgumentParser
|
|
|
578
550
|
)
|
|
579
551
|
common_args.add_argument(
|
|
580
552
|
'--manifest-file',
|
|
581
|
-
|
|
553
|
+
nargs='+',
|
|
582
554
|
help='Manifest files which specify the build test rules of the apps',
|
|
583
555
|
)
|
|
584
556
|
common_args.add_argument(
|
|
@@ -590,10 +562,7 @@ def get_parser(): # type: () -> argparse.ArgumentParser
|
|
|
590
562
|
'--default-build-targets',
|
|
591
563
|
nargs='+',
|
|
592
564
|
help='space-separated list of supported targets. Targets supported in current ESP-IDF branch '
|
|
593
|
-
'(except preview ones) would be used if this option is not set.'
|
|
594
|
-
'{} ! DeprecationWarning: comma-separated list support will be removed in idf-build-apps 1.0.0 version'.format(
|
|
595
|
-
IdfBuildAppsCliFormatter.LINE_SEP
|
|
596
|
-
),
|
|
565
|
+
'(except preview ones) would be used if this option is not set.',
|
|
597
566
|
)
|
|
598
567
|
common_args.add_argument(
|
|
599
568
|
'--modified-components',
|
|
@@ -612,13 +581,12 @@ def get_parser(): # type: () -> argparse.ArgumentParser
|
|
|
612
581
|
)
|
|
613
582
|
common_args.add_argument(
|
|
614
583
|
'-if',
|
|
615
|
-
'--ignore-
|
|
584
|
+
'--ignore-app-dependencies-filepatterns',
|
|
616
585
|
nargs='*',
|
|
617
586
|
default=None,
|
|
618
|
-
help='space-separated list which specifies the file patterns used for ignoring the
|
|
619
|
-
'The `depends_components` and `depends_filepatterns` set in the manifest files will be ignored when any of '
|
|
620
|
-
'
|
|
621
|
-
'--modified-files',
|
|
587
|
+
help='space-separated list which specifies the file patterns used for ignoring checking the app dependencies. '
|
|
588
|
+
'The `depends_components` and `depends_filepatterns` set in the manifest files will be ignored when any of the '
|
|
589
|
+
'specified file patterns matches any of the modified files. Must be used together with --modified-files',
|
|
622
590
|
)
|
|
623
591
|
|
|
624
592
|
common_args.add_argument(
|
|
@@ -675,7 +643,7 @@ def get_parser(): # type: () -> argparse.ArgumentParser
|
|
|
675
643
|
)
|
|
676
644
|
build_parser.add_argument(
|
|
677
645
|
'--ignore-warning-str',
|
|
678
|
-
|
|
646
|
+
nargs='+',
|
|
679
647
|
help='Ignore the warning string that match the specified regex in the build output',
|
|
680
648
|
)
|
|
681
649
|
build_parser.add_argument(
|
|
@@ -712,20 +680,17 @@ def validate_args(parser, args): # type: (argparse.ArgumentParser, argparse.Nam
|
|
|
712
680
|
default_build_targets = []
|
|
713
681
|
if args.default_build_targets:
|
|
714
682
|
for target in args.default_build_targets:
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
'Current ESP-IDF available targets: {}'.format(_t, ALL_TARGETS)
|
|
721
|
-
)
|
|
722
|
-
|
|
723
|
-
if _t not in default_build_targets:
|
|
724
|
-
default_build_targets.append(_t)
|
|
683
|
+
if target not in ALL_TARGETS:
|
|
684
|
+
raise InvalidCommand(
|
|
685
|
+
'Unrecognizable target {} specified with "--default-build-targets". '
|
|
686
|
+
'Current ESP-IDF available targets: {}'.format(target, ALL_TARGETS)
|
|
687
|
+
)
|
|
725
688
|
|
|
689
|
+
if target not in default_build_targets:
|
|
690
|
+
default_build_targets.append(target)
|
|
726
691
|
args.default_build_targets = default_build_targets
|
|
727
692
|
|
|
728
|
-
if args.
|
|
693
|
+
if args.ignore_app_dependencies_filepatterns:
|
|
729
694
|
if args.modified_files is None:
|
|
730
695
|
raise InvalidCommand(
|
|
731
696
|
'Must specify "--ignore-component-dependencies-file-patterns" with "--modified-files", '
|
|
@@ -767,7 +732,7 @@ def main():
|
|
|
767
732
|
default_build_targets=args.default_build_targets,
|
|
768
733
|
modified_components=args.modified_components,
|
|
769
734
|
modified_files=args.modified_files,
|
|
770
|
-
|
|
735
|
+
ignore_app_dependencies_filepatterns=args.ignore_app_dependencies_filepatterns,
|
|
771
736
|
sdkconfig_defaults=args.sdkconfig_defaults,
|
|
772
737
|
)
|
|
773
738
|
|
|
@@ -801,7 +766,7 @@ def main():
|
|
|
801
766
|
manifest_rootpath=args.manifest_rootpath,
|
|
802
767
|
modified_components=args.modified_components,
|
|
803
768
|
modified_files=args.modified_files,
|
|
804
|
-
|
|
769
|
+
ignore_app_dependencies_filepatterns=args.ignore_app_dependencies_filepatterns,
|
|
805
770
|
)
|
|
806
771
|
|
|
807
772
|
if args.modified_components is not None:
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD
|
|
2
2
|
# SPDX-License-Identifier: Apache-2.0
|
|
3
3
|
|
|
4
|
+
import os
|
|
4
5
|
from ast import (
|
|
5
6
|
literal_eval,
|
|
6
7
|
)
|
|
@@ -86,6 +87,10 @@ class ChipAttr(Stmt):
|
|
|
86
87
|
if self.attr in SOC_HEADERS[target]:
|
|
87
88
|
return SOC_HEADERS[target][self.attr]
|
|
88
89
|
|
|
90
|
+
# for non-keyword cap words, check if it is defined in the environment variables
|
|
91
|
+
if self.attr in os.environ:
|
|
92
|
+
return os.environ[self.attr]
|
|
93
|
+
|
|
89
94
|
return 0 # default return 0 as false
|
|
90
95
|
|
|
91
96
|
|
idf_build_apps/utils.py
CHANGED
|
@@ -23,6 +23,12 @@ except ImportError:
|
|
|
23
23
|
pass
|
|
24
24
|
|
|
25
25
|
|
|
26
|
+
if sys.version_info < (3, 5):
|
|
27
|
+
import glob2 as glob
|
|
28
|
+
else:
|
|
29
|
+
import glob
|
|
30
|
+
|
|
31
|
+
|
|
26
32
|
class ConfigRule:
|
|
27
33
|
def __init__(self, file_name, config_name): # type: (str, str) -> None
|
|
28
34
|
"""
|
|
@@ -213,14 +219,17 @@ def files_matches_patterns(
|
|
|
213
219
|
patterns, # type: list[str] | str
|
|
214
220
|
rootpath=None, # type: str
|
|
215
221
|
): # type: (...) -> bool
|
|
216
|
-
# can't match
|
|
222
|
+
# can't match an absolute pattern with a relative path
|
|
217
223
|
# change all to absolute paths
|
|
218
224
|
files = [to_absolute_path(f, rootpath) for f in to_list(files)]
|
|
219
225
|
patterns = [to_absolute_path(p, rootpath) for p in to_list(patterns)]
|
|
220
226
|
|
|
227
|
+
matched_paths = set()
|
|
228
|
+
for pat in patterns:
|
|
229
|
+
matched_paths.update(glob.glob(str(pat), recursive=True))
|
|
230
|
+
|
|
221
231
|
for f in files:
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
return True
|
|
232
|
+
if str(f) in matched_paths:
|
|
233
|
+
return True
|
|
225
234
|
|
|
226
235
|
return False
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: idf-build-apps
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.1
|
|
4
4
|
Summary: Tools for building ESP-IDF related apps.
|
|
5
5
|
Author-email: Fu Hanxi <fuhanxi@espressif.com>
|
|
6
6
|
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
|
|
@@ -17,6 +17,7 @@ Classifier: Programming Language :: Python :: 3.9
|
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.10
|
|
18
18
|
Classifier: Programming Language :: Python :: 3.11
|
|
19
19
|
Requires-Dist: pathlib; python_version < '3.4'
|
|
20
|
+
Requires-Dist: glob2; python_version < '3.5'
|
|
20
21
|
Requires-Dist: pyparsing
|
|
21
22
|
Requires-Dist: pyyaml
|
|
22
23
|
Requires-Dist: packaging
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
idf_build_apps/__init__.py,sha256=lb-890PZ2eRFvHtV8eCV3AmAl3oE7nrDN7kDsu9SaVw,481
|
|
2
|
+
idf_build_apps/__main__.py,sha256=8E-5xHm2MlRun0L88XJleNh5U50dpE0Q1nK5KqomA7I,182
|
|
3
|
+
idf_build_apps/app.py,sha256=sNUWNJs9JrBjzzIDajpR7W0oEu6oc1oQls-jTxK9_ag,26619
|
|
4
|
+
idf_build_apps/config.py,sha256=FCr1oqk8OJLNXUKxuIi4aJRWaRYalubOzQEQ0YCY2kk,2794
|
|
5
|
+
idf_build_apps/constants.py,sha256=E3YHqfvR1gb1ppWQ17QSrHQOJjclBVxd-xjTCXJdz9Q,2187
|
|
6
|
+
idf_build_apps/finder.py,sha256=Z0UBMAoJrInQofx3BgVJ9g1QDqzidnz0VI9Qevq2B5g,6328
|
|
7
|
+
idf_build_apps/log.py,sha256=cmofQmHralhTeaM7d3aOScgYm8Swt-pveZ_h1P_PVcs,2220
|
|
8
|
+
idf_build_apps/main.py,sha256=DYE8Ihc8ZbH88ev4XqzY0z9xFJOrkehY33-UyYAEIZs,30607
|
|
9
|
+
idf_build_apps/utils.py,sha256=ZXv8mtRpLwZCoLWeP-vjGs7xyfX4m6PnRShRm36G0-w,6748
|
|
10
|
+
idf_build_apps/manifest/__init__.py,sha256=Q2-cb3ngNjnl6_zWhUfzZZB10f_-Rv2JYNck3Lk7UkQ,133
|
|
11
|
+
idf_build_apps/manifest/if_parser.py,sha256=nFaaTGeEpM5ZrCZlASOAeYe_IpOwJ8zfZmvnEWNYFAE,6321
|
|
12
|
+
idf_build_apps/manifest/manifest.py,sha256=K8T3vcPeD08DScDTpPahfcpjZgm2zIEcnx7b_k0djb8,5956
|
|
13
|
+
idf_build_apps/manifest/soc_header.py,sha256=EMre7yIzWyfriW6Lwx8Cho4zikXrbY-wluCDoVAGcAk,3423
|
|
14
|
+
idf_build_apps-1.0.1.dist-info/entry_points.txt,sha256=3pVUirUEsb6jsDRikkQWNUt4hqLK2ci1HvW_Vf8b6uE,59
|
|
15
|
+
idf_build_apps-1.0.1.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
|
16
|
+
idf_build_apps-1.0.1.dist-info/WHEEL,sha256=Sgu64hAMa6g5FdzHxXv9Xdse9yxpGGMeagVtPMWpJQY,99
|
|
17
|
+
idf_build_apps-1.0.1.dist-info/METADATA,sha256=DENYCuua0nEi80QNynIjnyjxqQTnxXBe_w_XVh9Q4Q0,5540
|
|
18
|
+
idf_build_apps-1.0.1.dist-info/RECORD,,
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
idf_build_apps/__init__.py,sha256=ZZ98MI-DlRc9JokdxfUoJ6krJT18EM3SqddTY3KWI-U,486
|
|
2
|
-
idf_build_apps/__main__.py,sha256=8E-5xHm2MlRun0L88XJleNh5U50dpE0Q1nK5KqomA7I,182
|
|
3
|
-
idf_build_apps/app.py,sha256=sNUWNJs9JrBjzzIDajpR7W0oEu6oc1oQls-jTxK9_ag,26619
|
|
4
|
-
idf_build_apps/config.py,sha256=FCr1oqk8OJLNXUKxuIi4aJRWaRYalubOzQEQ0YCY2kk,2794
|
|
5
|
-
idf_build_apps/constants.py,sha256=E3YHqfvR1gb1ppWQ17QSrHQOJjclBVxd-xjTCXJdz9Q,2187
|
|
6
|
-
idf_build_apps/finder.py,sha256=P-97-wKfcSnSy3Mb5VYhNiihJ1noMqE_T8s7I2lnkew,6087
|
|
7
|
-
idf_build_apps/log.py,sha256=cmofQmHralhTeaM7d3aOScgYm8Swt-pveZ_h1P_PVcs,2220
|
|
8
|
-
idf_build_apps/main.py,sha256=VO77rj2zKC93COscBnQdSZSB-PD0xibJmOYGEuF0PsE,32327
|
|
9
|
-
idf_build_apps/utils.py,sha256=5pAbbMOY6g5lKKryyBRfI3xwiepKsw7tG-zkCva-r4Q,6577
|
|
10
|
-
idf_build_apps/manifest/__init__.py,sha256=Q2-cb3ngNjnl6_zWhUfzZZB10f_-Rv2JYNck3Lk7UkQ,133
|
|
11
|
-
idf_build_apps/manifest/if_parser.py,sha256=FKNQv9lrBa6mgN2mC3bQ_foOVPT76g4tHPYck-PQom8,6144
|
|
12
|
-
idf_build_apps/manifest/manifest.py,sha256=K8T3vcPeD08DScDTpPahfcpjZgm2zIEcnx7b_k0djb8,5956
|
|
13
|
-
idf_build_apps/manifest/soc_header.py,sha256=EMre7yIzWyfriW6Lwx8Cho4zikXrbY-wluCDoVAGcAk,3423
|
|
14
|
-
idf_build_apps-1.0.0.dev1.dist-info/entry_points.txt,sha256=3pVUirUEsb6jsDRikkQWNUt4hqLK2ci1HvW_Vf8b6uE,59
|
|
15
|
-
idf_build_apps-1.0.0.dev1.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
|
16
|
-
idf_build_apps-1.0.0.dev1.dist-info/WHEEL,sha256=Sgu64hAMa6g5FdzHxXv9Xdse9yxpGGMeagVtPMWpJQY,99
|
|
17
|
-
idf_build_apps-1.0.0.dev1.dist-info/METADATA,sha256=lHobcAW3DqXnks5vHCZYyzN26_-QdxHAXVzuT67vkJk,5500
|
|
18
|
-
idf_build_apps-1.0.0.dev1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|