blob: f365ef346841a5edb2b3d17e5707cc192419e5d9 [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 ..
5@rem XXX: If you need to force the buildbots to start from a fresh environment, uncomment
6@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 +00007@rem if exist bzip2-1.0.5 rd /s/q bzip2-1.0.5
Trent Nelson97797a92008-03-20 01:20:22 +00008@rem if exist tcltk rd /s/q tcltk
9@rem if exist tcltk64 rd /s/q tcltk64
10@rem if exist tcl8.4.12 rd /s/q tcl8.4.12
11@rem if exist tcl8.4.16 rd /s/q tcl8.4.16
12@rem if exist tcl-8.4.18.1 rd /s/q tcl-8.4.18.1
13@rem if exist tk8.4.12 rd /s/q tk8.4.12
14@rem if exist tk8.4.16 rd /s/q tk8.4.16
15@rem if exist tk-8.4.18.1 rd /s/q tk-8.4.18.1
16@rem if exist db-4.4.20 rd /s/q db-4.4.20
Martin v. Löwis71ba07c2010-07-31 10:56:53 +000017if exist openssl-0.9.8l rd /s/q openssl-0.9.8l
18if exist openssl-1.0.0a rd /s/q openssl-1.0.0a
Martin v. Löwis7df3b9e2010-01-02 10:06:19 +000019@rem if exist sqlite-3.6.21 rd /s/q sqlite-3.6.21
Trent Nelson97797a92008-03-20 01:20:22 +000020
21@rem bzip
Martin v. Löwis70ce8aa2008-06-13 17:28:35 +000022if not exist bzip2-1.0.5 (
23 rd /s/q bzip2-1.0.3
24 svn export http://svn.python.org/projects/external/bzip2-1.0.5
25)
Trent Nelson97797a92008-03-20 01:20:22 +000026
27@rem Sleepycat db
28if not exist db-4.4.20 svn export http://svn.python.org/projects/external/db-4.4.20-vs9 db-4.4.20
29
30@rem OpenSSL
Martin v. Löwisf71ed9b2010-07-31 09:21:51 +000031if 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 +000032
33@rem tcl/tk
Martin v. Löwisf38e0d02008-06-13 14:11:59 +000034if not exist tcl-8.5.2.1 (
35 rd /s/q tcltk tcltk64
36 svn export http://svn.python.org/projects/external/tcl-8.5.2.1
37)
38if 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 +000039
40@rem sqlite3
Martin v. Löwis7df3b9e2010-01-02 10:06:19 +000041if not exist sqlite-3.6.21 (
Martin v. Löwis20611552008-06-13 18:21:45 +000042 rd /s/q sqlite-source-3.3.4
Martin v. Löwis7df3b9e2010-01-02 10:06:19 +000043 svn export http://svn.python.org/projects/external/sqlite-3.6.21
Martin v. Löwis20611552008-06-13 18:21:45 +000044)