blob: fd0dce8e2bcf676d4a63a494f7df541ebb446479 [file] [log] [blame]
Trent Nelson97797a92008-03-20 01:20:22 +00001@rem Common file shared between external.bat and external-amd64.bat. Responsible for
2@rem fetching external components into the root\.. buildbot directories.
3
4cd ..
Hirokazu Yamamotobb14d4b2010-09-20 09:59:55 +00005
6@rem XXX: This will be gone soon after Windows7(py3k) buildbot will run.
7
8@rem Print nasmw version
9for %%i in (nasmw.exe) do (
10 if not "%%=$PATH" == "" (
11 %%~$PATH:i -v
12 )
13)
14
15@rem Compare asm files
16for %%i in (openssl-1.0.0a\asm32\*.asm) do (
17 fc %%~fi openssl-1.0.0a\tmp32\%%~nxi
18)
19
Trent Nelson97797a92008-03-20 01:20:22 +000020@rem XXX: If you need to force the buildbots to start from a fresh environment, uncomment
21@rem the following, check it in, then check it out, comment it out, then check it back in.
Martin v. Löwis70ce8aa2008-06-13 17:28:35 +000022@rem if exist bzip2-1.0.5 rd /s/q bzip2-1.0.5
Trent Nelson97797a92008-03-20 01:20:22 +000023@rem if exist tcltk rd /s/q tcltk
24@rem if exist tcltk64 rd /s/q tcltk64
25@rem if exist tcl8.4.12 rd /s/q tcl8.4.12
26@rem if exist tcl8.4.16 rd /s/q tcl8.4.16
27@rem if exist tcl-8.4.18.1 rd /s/q tcl-8.4.18.1
28@rem if exist tk8.4.12 rd /s/q tk8.4.12
29@rem if exist tk8.4.16 rd /s/q tk8.4.16
30@rem if exist tk-8.4.18.1 rd /s/q tk-8.4.18.1
31@rem if exist db-4.4.20 rd /s/q db-4.4.20
Hirokazu Yamamotobb14d4b2010-09-20 09:59:55 +000032if exist openssl-1.0.0a rd /s/q openssl-1.0.0a
Martin v. Löwis7df3b9e2010-01-02 10:06:19 +000033@rem if exist sqlite-3.6.21 rd /s/q sqlite-3.6.21
Trent Nelson97797a92008-03-20 01:20:22 +000034
35@rem bzip
Martin v. Löwis70ce8aa2008-06-13 17:28:35 +000036if not exist bzip2-1.0.5 (
37 rd /s/q bzip2-1.0.3
38 svn export http://svn.python.org/projects/external/bzip2-1.0.5
39)
Trent Nelson97797a92008-03-20 01:20:22 +000040
41@rem Sleepycat db
42if not exist db-4.4.20 svn export http://svn.python.org/projects/external/db-4.4.20-vs9 db-4.4.20
43
44@rem OpenSSL
Martin v. Löwisf71ed9b2010-07-31 09:21:51 +000045if not exist openssl-1.0.0a svn export http://svn.python.org/projects/external/openssl-1.0.0a
Trent Nelson97797a92008-03-20 01:20:22 +000046
47@rem tcl/tk
Martin v. Löwisf38e0d02008-06-13 14:11:59 +000048if not exist tcl-8.5.2.1 (
49 rd /s/q tcltk tcltk64
50 svn export http://svn.python.org/projects/external/tcl-8.5.2.1
51)
52if not exist tk-8.5.2.0 svn export http://svn.python.org/projects/external/tk-8.5.2.0
Trent Nelson97797a92008-03-20 01:20:22 +000053
54@rem sqlite3
Martin v. Löwis7df3b9e2010-01-02 10:06:19 +000055if not exist sqlite-3.6.21 (
Martin v. Löwis20611552008-06-13 18:21:45 +000056 rd /s/q sqlite-source-3.3.4
Martin v. Löwis7df3b9e2010-01-02 10:06:19 +000057 svn export http://svn.python.org/projects/external/sqlite-3.6.21
Martin v. Löwis20611552008-06-13 18:21:45 +000058)