You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

75 lines
3.0 KiB

  1. @rem
  2. @rem Searches for python.exe and may download a private copy from nuget.
  3. @rem
  4. @rem This file is supposed to modify the state of the caller (specifically
  5. @rem the MSBUILD variable), so we do not use setlocal or echo, and avoid
  6. @rem changing any other persistent state.
  7. @rem
  8. @rem No arguments provided means do full search
  9. @if '%1' EQU '' goto :begin_search
  10. @rem One argument may be the full path. Use a goto so we don't try to
  11. @rem parse the next if statement - incorrect quoting in the multi-arg
  12. @rem case can cause us to break immediately.
  13. @if '%2' EQU '' goto :one_arg
  14. @rem Entire command line may represent the full path if quoting failed.
  15. @if exist "%*" (set PYTHON="%*") & (set _Py_Python_Source=from environment) & goto :found
  16. @goto :begin_search
  17. :one_arg
  18. @if exist "%~1" (set PYTHON="%~1") & (set _Py_Python_Source=from environment) & goto :found
  19. :begin_search
  20. @set PYTHON=
  21. @set _Py_EXTERNALS_DIR=%EXTERNALS_DIR%
  22. @if "%_Py_EXTERNALS_DIR%"=="" (set _Py_EXTERNALS_DIR=%~dp0\..\externals)
  23. @rem If we have Python in externals, use that one
  24. @if exist "%_Py_EXTERNALS_DIR%\pythonx86\tools\python.exe" (set PYTHON="%_Py_EXTERNALS_DIR%\pythonx86\tools\python.exe") & (set _Py_Python_Source=found in externals directory) & goto :found
  25. @rem If HOST_PYTHON is recent enough, use that
  26. @if NOT "%HOST_PYTHON%"=="" @%HOST_PYTHON% -Ec "import sys; assert sys.version_info[:2] >= (3, 6)" >nul 2>nul && (set PYTHON="%HOST_PYTHON%") && (set _Py_Python_Source=found as HOST_PYTHON) && goto :found
  27. @rem If py.exe finds a recent enough version, use that one
  28. @for %%p in (3.7 3.6) do @py -%%p -EV >nul 2>&1 && (set PYTHON=py -%%p) && (set _Py_Python_Source=found %%p with py.exe) && goto :found
  29. @if NOT exist "%_Py_EXTERNALS_DIR%" mkdir "%_Py_EXTERNALS_DIR%"
  30. @set _Py_NUGET=%NUGET%
  31. @set _Py_NUGET_URL=%NUGET_URL%
  32. @set _Py_HOST_PYTHON=%HOST_PYTHON%
  33. @if "%_Py_HOST_PYTHON%"=="" set _Py_HOST_PYTHON=py
  34. @if "%_Py_NUGET%"=="" (set _Py_NUGET=%_Py_EXTERNALS_DIR%\nuget.exe)
  35. @if "%_Py_NUGET_URL%"=="" (set _Py_NUGET_URL=https://aka.ms/nugetclidl)
  36. @if NOT exist "%_Py_NUGET%" (
  37. @echo Downloading nuget...
  38. @rem NB: Must use single quotes around NUGET here, NOT double!
  39. @rem Otherwise, a space in the path would break things
  40. @rem If it fails, retry with any available copy of Python
  41. @powershell.exe -Command Invoke-WebRequest %_Py_NUGET_URL% -OutFile '%_Py_NUGET%'
  42. @if errorlevel 1 (
  43. @%_Py_HOST_PYTHON% -E "%~dp0\urlretrieve.py" "%_Py_NUGET_URL%" "%_Py_NUGET%"
  44. )
  45. )
  46. @echo Installing Python via nuget...
  47. @"%_Py_NUGET%" install pythonx86 -ExcludeVersion -OutputDirectory "%_Py_EXTERNALS_DIR%"
  48. @rem Quote it here; it's not quoted later because "py -x.y" wouldn't work
  49. @if not errorlevel 1 (set PYTHON="%_Py_EXTERNALS_DIR%\pythonx86\tools\python.exe") & (set _Py_Python_Source=found on nuget.org) & goto :found
  50. @set _Py_Python_Source=
  51. @set _Py_EXTERNALS_DIR=
  52. @set _Py_NUGET=
  53. @set _Py_NUGET_URL=
  54. @set _Py_HOST_PYTHON=
  55. @exit /b 1
  56. :found
  57. @echo Using %PYTHON% (%_Py_Python_Source%)
  58. @set _Py_Python_Source=
  59. @set _Py_EXTERNALS_DIR=
  60. @set _Py_NUGET=
  61. @set _Py_NUGET_URL=
  62. @set _Py_HOST_PYTHON=