Skip to content

Commit 3f323bd

Browse files
committed
updating output when collecting deps
1 parent f0b17ab commit 3f323bd

File tree

7 files changed

+17
-2
lines changed

7 files changed

+17
-2
lines changed

builder/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,7 @@ def get_lvgl():
199199
'--',
200200
f'lib/lvgl'
201201
]
202+
print()
202203
print('collecting LVGL')
203204
print('this might take a while...')
204205
result, _ = spawn(cmd_, spinner=True)
@@ -216,6 +217,7 @@ def get_micropython():
216217
'--',
217218
f'lib/micropython'
218219
]
220+
print()
219221
print('collecting MicroPython 1.23.0')
220222
result, _ = spawn(cmd_, spinner=True)
221223
if result != 0:
@@ -231,7 +233,7 @@ def get_pycparser():
231233
'--',
232234
f'lib/pycparser'
233235
]
234-
236+
print()
235237
print('collecting pycparser')
236238
result, _ = spawn(cmd_)
237239
if result != 0:

builder/esp32.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ def get_espidf():
133133
'--',
134134
'lib/esp-idf'
135135
]
136-
136+
print()
137137
print('collecting ESP-IDF v5.2.0')
138138
print('this might take a while...')
139139
result, _ = spawn(cmd, spinner=True)

builder/macOS.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,8 @@ def build_sdl():
160160

161161
def submodules():
162162
if not os.path.exists('lib/SDL/include'):
163+
print()
164+
print('collecting SDK2')
163165
cmd_ = [
164166
'git',
165167
'submodule',

builder/nrf.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,9 @@ def clean(clean_mpy_cross):
7777
def submodules():
7878
nrfx_path = f'lib/micropython/libs/nrfx'
7979
if not os.path.exists(os.path.join(nrfx_path, 'nrfx.h')):
80+
print()
81+
print('collecting NRFX')
82+
8083
ret_code, _ = spawn([
8184
'git',
8285
'submodule',

builder/rp2.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,9 @@ def submodules():
109109
if not os.path.exists(
110110
os.path.join(pico_dsk_path, 'pico_sdk_init.cmake')
111111
):
112+
print()
113+
print('collecting PICO-SDK')
114+
112115
ret_code, _ = spawn([
113116
['cd', pico_dsk_path],
114117
['git', 'submodule', 'update', '--init']

builder/stm32.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,9 @@ def clean(clean_mpy_cross):
8585
def submodules():
8686
stm32lib_path = 'lib/micropython/lib/stm32lib'
8787
if not os.path.exists(os.path.join(stm32lib_path, 'CMSIS')):
88+
print()
89+
print('collecting STM32 lib')
90+
8891
ret_code, _ = spawn(
8992
[
9093
['cd', stm32lib_path],

builder/unix.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,8 @@ def build_sdl():
162162

163163
def submodules():
164164
if not os.path.exists('lib/SDL/include'):
165+
print()
166+
print('collecting SDL2')
165167
cmd_ = [
166168
'git',
167169
'submodule',

0 commit comments

Comments
 (0)