forked from winpython/winpython
-
Notifications
You must be signed in to change notification settings - Fork 0
/
generate_a_winpython_distro.bat
339 lines (241 loc) · 14.5 KB
/
generate_a_winpython_distro.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
rem to launch from a winpython package directory, where 'make.py' is
@echo on
rem *****************************
rem 2020-07-05: install msvc_runtime before packages that may want to compile
rem 2020-12-05 : add a constraints.txt file from a recent pip list
rem 2021-03-20 : track successes packages combination are archived for future contraint update
rem 2021-04-22 : path PyPy3 (as we don't try to copy PyPy3.exe to Python.exe)
rem 2023-08-21a: add a pre_step with my_requirements_pre.txt + my_find_links_pre
rem 2024-05-12a: use python -m pip instead of pip , and remove --upgrade %new_resolver%
rem 2024-09-15a: compactify for lisiblity
rem *****************************
rem algorithm:
rem 0.0 Initialize variables
rem 1.0 Do 2021-04-22 : patch PyPy3 (as we don't try to copy PyPy3.exe to Python.exe)
rem 2 a Pre-clear of previous build infrastructure
rem 2.0 Create a new build
rem 2.1 Create basic build infrastructure
rem 2.2 check infrastructure is in place
rem 2.3 add mandatory packages for build
rem 2.4 add packages pre_requirements (if any)
rem 2.5 add requirement packages
rem 2.8 post-build (if specific workarounds)
rem 2.9 archive success
rem 3.0 Generate Changelog and binaries
rem "my_release_level" is optionaly set per the calling program
rem set my_release_level=
if "%my_release_level%"=="" set my_release_level=
rem "my_create_installer" is optionaly set per the calling program
if "%my_create_installer%"=="" set my_create_installer=True
rem this is pre-initialised per the program calling this .bat
rem set my_original_path=%path%
rem set my_root_dir_for_builds=D:\WinP
rem set my_python_target=34
rem set my_pyver=3.4
rem set my_flavor=slim
rem set my_release=84
rem set my_find_link=C:\WinP\packages.srcreq
rem set my_arch=64
rem set my_preclear_build_directory=Yes
rem set my_requirements_pre=C:\WinP\bd311\requirements_mkl_pre.txt
rem set my_find_links_pre=C:\WinP\packages_mkl.srcreq
rem set my_requirements=C:\Winpents=d:\my_req1.txt
rem set my_source_dirs=D:\WinPython\bd34\packages.src D:\WinPython\bd34\packages.win32.Slim
rem set my_toolsdirs=D:\WinPython\bd34\Tools.Slim
rem set my_docsdirs=D:\WinPython\bd34\docs.Slim
echo ----------------------------------------
echo 0.0 (%date% %time%) Initialize variables
echo ----------------------------------------
set my_basedir=%my_root_dir_for_builds%\bd%my_python_target%
rem a building env need is a Python with packages: WinPython + build + flit + packaging + mkshim400.py
set my_buildenv=C:\WinPdev\WPy64-310111
if "%my_constraints%"=="" set my_constraints=C:\WinP\constraints.txt
rem 2021-04-22 : path PyPy3 (as we don't try to copy PyPy3.exe to Python.exe)
if "%target_python_exe%"=="" set target_python_exe=python.exe
if %my_python_target%==310 (
set my_python_target_release=31011
set my_release=2
)
if %my_python_target%==311 (
set my_python_target_release=3119
set my_release=1
)
if %my_python_target%==312 (
set my_python_target_release=3126
set my_release=1
)
if %my_python_target%==313 (
set my_python_target_release=3130
set my_release=2
)
rem set my_install_options=--no-index --pre
set my_day=%date:/=-%
set my_time=%time:~0,5%
set my_time=%my_time::=_%
set my_time=%my_time: =0%
set my_archive_dir=%~dp0WinPython_build_logs
if not exist %my_archive_dir% mkdir %my_archive_dir%
set my_archive_log=%my_archive_dir%\build_%my_pyver%._.%my_release%%my_flavor%_%my_release_level%_of_%my_day%_at_%my_time%.txt
echo ----------------------------------------
echo preparing winPython for %my_pyver% (%my_python_target%)release %my_release%%my_flavor% (%my_release_level%) *** %my_arch% bit ***
echo ----------------------------------------
echo ---------------------------------------- >>%my_archive_log%
echo (%date% %time%) preparing winPython for %my_pyver% (%my_python_target%)release %my_release%%my_flavor% (%my_release_level%) *** %my_arch% bit ***>>%my_archive_log%
echo ---------------------------------------- >>%my_archive_log%
if not "%my_preclear_build_directory%"=="Yes" goto no_preclear
echo ----------------------------------------
echo 1.0 (%date% %time%) Do a Pre-clear of previous build infrastructure
echo ----------------------------------------
echo ---------------------------------------- >>%my_archive_log%
echo 1.0 (%date% %time%) Do a Pre-clear of previous build infrastructure>>%my_archive_log%
echo ---------------------------------------- >>%my_archive_log%
rem 2019-05-10 PATCH for build problem (asking permission to overwrite the file)
del -y %userprofile%\.jupyter\jupyter_notebook_config.py
cd /D %my_root_dir_for_builds%\bd%my_python_target%
set build_det=\%my_flavor%
if "%my_flavor%"=="" set build_det=
dir %build_det%
rem 2021-02-13 workaround to hard to remove json files
echo ren bu%my_flavor% bu%my_flavor%_old
ren bu%my_flavor% bu%my_flavor%_old
rem pause
start rmdir /S /Q bu%my_flavor%_old
echo rmdir /S /Q bu%my_flavor%
rem pause
rmdir /S /Q bu%my_flavor%
rmdir /S /Q bu%my_flavor%
rmdir /S /Q bu%my_flavor%
rmdir /S /Q bu%my_flavor%
rmdir /S /Q bu%my_flavor%
rmdir /S /Q dist
echo %date% %time%
echo %date% %time%>>%my_archive_log%
:no_preclear
echo ----------------------------------------
echo 2.0 (%date% %time%) Create a new build
echo ---------------------------------------- >>%my_archive_log%
echo 2.0 (%date% %time%) Create a new build>>%my_archive_log%
echo ---------------------------------------- >>%my_archive_log%
echo cd /D %~dp0>>%my_archive_log%
cd /D %~dp0
echo set path=%my_original_path%>>%my_archive_log%
set path=%my_original_path%
echo call %my_buildenv%\scripts\env.bat>>%my_archive_log%
call %my_buildenv%\scripts\env.bat
echo ----------------------------------------
echo 2.1 (%date% %time%) Create basic build infrastructure
echo ----------------------------------------
echo ---------------------------------------- >>%my_archive_log%
echo 2.1 (%date% %time%) Create basic build infrastructure>>%my_archive_log%
echo ---------------------------------------- >>%my_archive_log%
rem at First step 2.1
rem we don't use any %my_requirements%
rem we don't create installer
rem we use legacy python build cd /D %~dp0
set my_buildenv_path=%path%
echo python.exe -c "from make import *;make_all(%my_release%, '%my_release_level%', pyver='%my_pyver%', basedir=r'%my_basedir%', verbose=True, architecture=%my_arch%, flavor='%my_flavor%', install_options=r'%my_install_options%', find_links=r'%my_find_links%', source_dirs=r'%my_source_dirs%', toolsdirs=r'%my_toolsdirs%', docsdirs=r'%my_docsdirs%', create_installer='False', python_target_release='%my_python_target_release%')">>%my_archive_log%
echo python.exe -c "from make import *;make_all(%my_release%, '%my_release_level%', pyver='%my_pyver%', basedir=r'%my_basedir%', verbose=True, architecture=%my_arch%, flavor='%my_flavor%', install_options=r'%my_install_options%', find_links=r'%my_find_links%', source_dirs=r'%my_source_dirs%', toolsdirs=r'%my_toolsdirs%', docsdirs=r'%my_docsdirs%', create_installer='False', python_target_release='%my_python_target_release%')"
rem pause
python.exe -c "from make import *;make_all(%my_release%, '%my_release_level%', pyver='%my_pyver%', basedir=r'%my_basedir%', verbose=True, architecture=%my_arch%, flavor='%my_flavor%', install_options=r'%my_install_options%', find_links=r'%my_find_links%', source_dirs=r'%my_source_dirs%', toolsdirs=r'%my_toolsdirs%', docsdirs=r'%my_docsdirs%', create_installer='False', python_target_release='%my_python_target_release%')">>%my_archive_log%
echo ----------------------------------------
echo 2.2 (%date% %time%) check infrastructure is in place
echo ----------------------------------------
echo ---------------------------------------- >>%my_archive_log%
echo 2.2 (%date% %time%) check infrastructure is in place>>%my_archive_log%
echo ---------------------------------------- >>%my_archive_log%
@echo on
set my_WINPYDIRBASE=%my_root_dir_for_builds%\bd%my_python_target%\bu%my_flavor%\Wpy%my_arch%-%my_python_target_release%%my_release%%my_release_level%
set WINPYDIRBASE=%my_WINPYDIRBASE%
if not exist %my_WINPYDIRBASE%\scripts\env.bat (
echo please check and correct my_python_target_release=%my_python_target_release%
echo my_arch=%my_arch%
echo my_python_target_release=%my_python_target_release%
echo my_release=%my_release%
echo my_release_level=%my_release_level%
echo in generate_a_winpython_distro.bat
echo as %my_WINPYDIRBASE%\scripts\env.bat doesnt exist
pause
exit
)
rem we use final environment to install requirements
set path=%my_original_path%
call %my_WINPYDIRBASE%\scripts\env.bat
set
echo ----------------------------------------
echo 2.3 (%date% %time%) add mandatory packages for build 'msvc_runtime'.. still necessary ?
echo ----------------------------------------
echo ---------------------------------------- >>%my_archive_log%
echo 2.3 (%date% %time%) add mandatory packages for build 'msvc_runtime'.. still necessary ?>>%my_archive_log%
echo ---------------------------------------- >>%my_archive_log%
echo python -m pip install msvc_runtime --pre --no-index --trusted-host=None --find-links=%my_find_links% --upgrade
echo python -m pip install msvc_runtime --pre --no-index --trusted-host=None --find-links=%my_find_links% --upgrade>>%my_archive_log%
python -m pip install msvc_runtime --pre --no-index --trusted-host=None --find-links=%my_find_links% --upgrade
echo ----------------------------------------
echo 2.4 (%date% %time%) add packages pre_requirements (if any)
echo ----------------------------------------
echo ---------------------------------------- >>%my_archive_log%
echo 2.4 (%date% %time%) add packages pre_requirements (if any)
echo ---------------------------------------- >>%my_archive_log%
if not "Z%my_requirements_pre%Z"=="ZZ" (
if "%my_find_links_pre%"=="" set my_find_links_pre=%my_find_links%
echo python -m pip install -r %my_requirements_pre% -c %my_constraints% --pre --no-index --trusted-host=None --find-links=%my_find_links_pre%
echo python -m pip install -r %my_requirements_pre% -c %my_constraints% --pre --no-index --trusted-host=None --find-links=%my_find_links_pre% >>%my_archive_log%
echo if pip doesn't work, check the path of %my_WINPYDIRBASE%
python -m pip install -r %my_requirements_pre% -c %my_constraints% --pre --no-index --trusted-host=None --find-links=%my_find_links_pre% >>%my_archive_log%
) else (
echo no packages pre_requirements
echo no packages pre_requirements>>%my_archive_log%
)
echo ----------------------------------------
echo 2.5 (%date% %time%) add requirement packages
echo ----------------------------------------
echo ---------------------------------------- >>%my_archive_log%
echo 2.5 (%date% %time%) add requirement packages_versions>>%my_archive_log%
echo ---------------------------------------- >>%my_archive_log%
echo python -m pip install -r %my_requirements% -c %my_constraints% --pre --no-index --trusted-host=None --find-links=%my_find_links%
echo python -m pip install -r %my_requirements% -c %my_constraints% --pre --no-index --trusted-host=None --find-links=%my_find_links% >>%my_archive_log%
echo if pip doesn't work, check the path of %my_WINPYDIRBASE%
python -m pip install -r %my_requirements% -c %my_constraints% --pre --no-index --trusted-host=None --find-links=%my_find_links% >>%my_archive_log%
echo ----------------------------------------
echo 2.8 (%date% %time%) post-build (if specific workarounds)
echo ----------------------------------------
echo ---------------------------------------- >>%my_archive_log%
echo 2.8 (%date% %time%) post-build (if specific workarounds)>>%my_archive_log%
echo ---------------------------------------- >>%my_archive_log%
@echo on
call %my_basedir%\run_complement_newbuild.bat %my_WINPYDIRBASE%
echo ----------------------------------------
echo 2.9 (%date% %time%) archive success
echo ----------------------------------------
echo ---------------------------------------- >>%my_archive_log%
echo 2.9 (%date% %time%) archive success >>%my_archive_log%
echo ---------------------------------------- >>%my_archive_log%
echo %target_python_exe% -m pip freeze>%my_archive_log%.packages_versions.txt>>%my_archive_log%
%target_python_exe% -m pip freeze>%my_archive_log%.packages_versions.txt
echo ----------------------------------------
echo 3.0 (%date% %time%) Generate Changelog and binaries
echo ----------------------------------------
echo ---------------------------------------- >>%my_archive_log%
echo 3.0 (%date% %time%) Generate Changelog and binaries >>%my_archive_log%
echo ---------------------------------------- >>%my_archive_log%
rem build final changelog and binaries, using create_installer='%my_create_installer%', remove_existing=False , remove : requirements, toolsdirs and docdirs
set path=%my_original_path%
echo cd /D %~dp0>>%my_archive_log%
cd /D %~dp0
echo call %my_buildenv%\scripts\env.bat>>%my_archive_log%
call %my_buildenv%\scripts\env.bat
set
echo python.exe -c "from make import *;make_all(%my_release%, '%my_release_level%', pyver='%my_pyver%', basedir=r'%my_basedir%', verbose=True, architecture=%my_arch%, flavor='%my_flavor%', install_options=r'%my_install_options%', find_links=r'%my_find_links%', source_dirs=r'%my_source_dirs%', create_installer='%my_create_installer%', remove_existing=False, python_target_release='%my_python_target_release%')">>%my_archive_log%
echo python.exe -c "from make import *;make_all(%my_release%, '%my_release_level%', pyver='%my_pyver%', basedir=r'%my_basedir%', verbose=True, architecture=%my_arch%, flavor='%my_flavor%', install_options=r'%my_install_options%', find_links=r'%my_find_links%', source_dirs=r'%my_source_dirs%', create_installer='%my_create_installer%', remove_existing=False, python_target_release='%my_python_target_release%')"
python.exe -c "from make import *;make_all(%my_release%, '%my_release_level%', pyver='%my_pyver%', basedir=r'%my_basedir%', verbose=True, architecture=%my_arch%, flavor='%my_flavor%', install_options=r'%my_install_options%', find_links=r'%my_find_links%', source_dirs=r'%my_source_dirs%', create_installer='%my_create_installer%', remove_existing=False, python_target_release='%my_python_target_release%')">>%my_archive_log%
echo ----------------------------------------
echo (%date% %time%) END OF creation
echo ----------------------------------------
echo ---------------------------------------- >>%my_archive_log%
echo (%date% %time%) END OF creation>>%my_archive_log%
echo ---------------------------------------- >>%my_archive_log%
rem show logs
start notepad.exe %my_archive_log%
start notepad.exe %my_archive_log%.packages_versions.txt
set path=%my_original_path%
rem pause