Lines Matching +full:fetch +full:- +full:depth
3 rem Simple script to fetch source for external libraries
12 if "%~1"=="--no-tkinter" (set IncludeTkinter=false) & shift & goto CheckOpts
13 if "%~1"=="--no-openssl" (set IncludeSSL=false) & shift & goto CheckOpts
14 if "%~1"=="--python" (set PYTHON_FOR_BUILD=%2) & shift & shift & goto CheckOpts
15 if "%~1"=="--organization" (set ORG=%2) & shift & shift & goto CheckOpts
16 if "%~1"=="-c" (set DO_CLEAN=true) & shift & goto CheckOpts
17 if "%~1"=="--clean" (set DO_CLEAN=true) & shift & goto CheckOpts
18 if "%~1"=="--clean-only" (set DO_FETCH=false) & goto clean
21 if "%DO_CLEAN%"=="false" goto fetch
30 :fetch label
48 set libraries=%libraries% bzip2-1.0.6
49 if NOT "%IncludeBsddb%"=="false" set libraries=%libraries% bsddb-4.7.25.0
50 if NOT "%IncludeSSL%"=="false" set libraries=%libraries% openssl-1.0.2p
51 set libraries=%libraries% sqlite-3.14.2.0
52 if NOT "%IncludeTkinter%"=="false" set libraries=%libraries% tcl-8.5.19.0
53 if NOT "%IncludeTkinter%"=="false" set libraries=%libraries% tk-8.5.19.0
54 if NOT "%IncludeTkinter%"=="false" set libraries=%libraries% tix-8.4.3.5
61 …git clone --depth 1 https://github.com/%ORG%/cpython-source-deps --branch %%e "%EXTERNALS_DIR%\%%e"
64 %PYTHON% "%PCBUILD%\get_external.py" -O %ORG% %%e
72 if NOT "%IncludeSSL%"=="false" set binaries=%binaries% nasm-2.11.06
79 … git clone --depth 1 https://github.com/%ORG%/cpython-bin-deps --branch %%b "%EXTERNALS_DIR%\%%b"
82 %PYTHON% "%PCBUILD%\get_external.py" -b -O %ORG% %%b
90 echo.Valid options: -c, --clean, --clean-only, --organization, --python,
91 echo.--no-tkinter, --no-openssl
96 echo.The --organization option determines which github organization to download
97 echo.from, the --python option determines which Python 3.6+ interpreter to use
100 echo.Use the -c or --clean option to remove the entire externals directory.
102 echo.Use the --clean-only option to do the same cleaning, without pulling in
105 exit /b -1