win-standalone-build.bat 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. @echo off
  2. SET PATH=%PATH%;C:\WINDOWS;C:\WINDOWS\SYSTEM32;C:\PYTHON34;%ProgramFiles%\7-Zip
  3. py -c "from partmgr.core.version import VERSION_STRING; print(VERSION_STRING)" > version.txt
  4. set /p version= < version.txt
  5. del version.txt
  6. set distdir=partmgr-win-standalone-%version%
  7. set sfxfile=partmgr-win-%version%.package.exe
  8. set bindir=%distdir%\partmgr-bin
  9. rd /S /Q build 2>NUL
  10. rd /S /Q %distdir% 2>NUL
  11. del %sfxfile% 2>NUL
  12. echo Building standalone Windows executable for partmgr v%version%...
  13. echo.
  14. echo Please select GUI framework:
  15. echo 1) Build with PyQt5 (default)
  16. echo 2) Build with PySide4
  17. set /p framework=Selection:
  18. if "%framework%" == "" goto framework_pyqt5
  19. if "%framework%" == "1" goto framework_pyqt5
  20. if "%framework%" == "2" goto framework_pyside4
  21. echo "Error: Invalid selection"
  22. pause
  23. exit
  24. :framework_pyqt5
  25. echo Using PyQt5
  26. set excludes=PySide
  27. goto select_freezer
  28. :framework_pyside4
  29. echo Using PySide4
  30. set excludes=PyQt5
  31. goto select_freezer
  32. :select_freezer
  33. echo.
  34. echo Please select freezer:
  35. echo 1) Build 'cx_Freeze' based distribution (default)
  36. echo 2) Build 'py2exe' based distribution
  37. set /p buildtype=Selection:
  38. if "%buildtype%" == "" goto build_cxfreeze
  39. if "%buildtype%" == "1" goto build_cxfreeze
  40. if "%buildtype%" == "2" goto build_py2exe
  41. echo "Error: Invalid selection"
  42. pause
  43. exit
  44. :build_cxfreeze
  45. set buildtype=1
  46. echo === Creating the cx_Freeze distribution
  47. timeout /T 2 /NOBREAK >NUL
  48. mkdir %distdir%
  49. if ERRORLEVEL 1 goto error_prep
  50. mkdir %bindir%
  51. if ERRORLEVEL 1 goto error_prep
  52. py setup.py build_exe ^
  53. --build-exe=%bindir% ^
  54. --optimize=2 ^
  55. --excludes=%excludes% ^
  56. --silent
  57. if ERRORLEVEL 1 goto error_exe
  58. goto copy_files
  59. :build_py2exe
  60. set buildtype=2
  61. echo === Creating the py2exe distribution
  62. timeout /T 2 /NOBREAK >NUL
  63. mkdir %distdir%
  64. if ERRORLEVEL 1 goto error_prep
  65. mkdir %bindir%
  66. if ERRORLEVEL 1 goto error_prep
  67. py setup.py py2exe ^
  68. --dist-dir=%bindir% ^
  69. --optimize=2 ^
  70. --bundle-files=3 ^
  71. --ignores=win32api,win32con,readline ^
  72. --excludes=%excludes% ^
  73. --quiet
  74. if ERRORLEVEL 1 goto error_exe
  75. goto copy_files
  76. :copy_files
  77. echo === Copying additional files
  78. copy example.pmg %distdir%\
  79. if ERRORLEVEL 1 goto error_copy
  80. copy COPYING %distdir%\LICENSE.txt
  81. if ERRORLEVEL 1 goto error_copy
  82. echo === Generating startup wrapper
  83. set wrapper=%distdir%\partmgr.bat
  84. echo @echo off> %wrapper%
  85. if ERRORLEVEL 1 goto error_wrapper
  86. echo start /Dpartmgr-bin partmgr-gui.exe %%1>> %wrapper%
  87. if ERRORLEVEL 1 goto error_wrapper
  88. echo === Creating the distribution archive
  89. 7z a -mx=9 -sfx7z.sfx %sfxfile% %distdir%
  90. if ERRORLEVEL 1 goto error_7z
  91. echo ---
  92. echo finished
  93. pause
  94. exit
  95. :error_prep
  96. echo FAILED to prepare environment
  97. goto error
  98. :error_exe
  99. echo FAILED to build exe
  100. goto error
  101. :error_copy
  102. echo FAILED to copy files
  103. goto error
  104. :error_wrapper
  105. echo FAILED to create wrapper
  106. goto error
  107. :error_7z
  108. echo FAILED to create archive
  109. goto error
  110. :error
  111. pause
  112. exit