|
1 | 1 | @rem Common file shared between external.bat and external-amd64.bat. Responsible for |
2 | 2 | @rem fetching external components into the root\externals directory. |
3 | 3 |
|
| 4 | +if "%SVNROOT%"=="" set SVNROOT=http://svn.python.org/projects/external/ |
| 5 | + |
4 | 6 | if not exist externals mkdir externals |
5 | 7 | cd externals |
6 | 8 | @rem XXX: If you need to force the buildbots to start from a fresh environment, uncomment |
@@ -31,31 +33,31 @@ cd externals |
31 | 33 | @rem bzip |
32 | 34 | if not exist bzip2-1.0.6 ( |
33 | 35 | rd /s/q bzip2-1.0.5 |
34 | | - svn export http://svn.python.org/projects/external/bzip2-1.0.6 |
| 36 | + svn export %SVNROOT%bzip2-1.0.6 |
35 | 37 | ) |
36 | 38 |
|
37 | 39 | @rem Berkeley DB |
38 | 40 | if exist db-4.4.20 rd /s/q db-4.4.20 |
39 | | -if not exist db-4.7.25.0 svn export http://svn.python.org/projects/external/db-4.7.25.0 |
| 41 | +if not exist db-4.7.25.0 svn export %SVNROOT%db-4.7.25.0 |
40 | 42 |
|
41 | 43 | @rem NASM, for OpenSSL build |
42 | 44 | @rem if exist nasm-2.11.06 rd /s/q nasm-2.11.06 |
43 | | -if not exist nasm-2.11.06 svn export http://svn.python.org/projects/external/nasm-2.11.06 |
| 45 | +if not exist nasm-2.11.06 svn export %SVNROOT%nasm-2.11.06 |
44 | 46 |
|
45 | 47 | @rem OpenSSL |
46 | 48 | if exist openssl-1.0.1i rd /s/q openssl-1.0.1i |
47 | | -if not exist openssl-1.0.1j svn export http://svn.python.org/projects/external/openssl-1.0.1j |
| 49 | +if not exist openssl-1.0.1j svn export %SVNROOT%openssl-1.0.1j |
48 | 50 |
|
49 | 51 | @rem tcl/tk |
50 | 52 | if not exist tcl-8.5.15.0 ( |
51 | 53 | rd /s/q tcltk tcltk64 tcl-8.5.2.1 tk-8.5.2.0 |
52 | | - svn export http://svn.python.org/projects/external/tcl-8.5.15.0 |
| 54 | + svn export %SVNROOT%tcl-8.5.15.0 |
53 | 55 | ) |
54 | | -if not exist tk-8.5.15.0 svn export http://svn.python.org/projects/external/tk-8.5.15.0 |
55 | | -if not exist tix-8.4.3.5 svn export http://svn.python.org/projects/external/tix-8.4.3.5 |
| 56 | +if not exist tk-8.5.15.0 svn export %SVNROOT%tk-8.5.15.0 |
| 57 | +if not exist tix-8.4.3.5 svn export %SVNROOT%tix-8.4.3.5 |
56 | 58 |
|
57 | 59 | @rem sqlite3 |
58 | 60 | if not exist sqlite-3.6.21 ( |
59 | 61 | rd /s/q sqlite-source-3.3.4 |
60 | | - svn export http://svn.python.org/projects/external/sqlite-3.6.21 |
| 62 | + svn export %SVNROOT%sqlite-3.6.21 |
61 | 63 | ) |
0 commit comments