blob: 7395db5b502bf1faf831f951f46a2bf8b91ea433 [file] [log] [blame]
Trent Nelson4f4738f2008-03-19 09:23:08 +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 ..
Trent Nelson611c86b2008-03-19 21:11:55 +00005@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öwisa4514c32008-06-13 17:22:39 +00007@rem if exist bzip2-1.0.5 rd /s/q bzip2-1.0.5
Trent Nelson27f60a62008-03-19 22:41:10 +00008@rem if exist tcltk rd /s/q tcltk
9@rem if exist tcltk64 rd /s/q tcltk64
Trent Nelson611c86b2008-03-19 21:11:55 +000010@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
Trent Nelson6e7e1372008-06-27 02:30:34 +000017@rem if exist db-4.7.25.0 rd /s/q db-4.7.25.0
Martin v. Löwis55e1a692009-12-21 19:27:15 +000018@rem if exist openssl-0.9.8l rd /s/q openssl-0.9.8l
Martin v. Löwisf477b932010-01-02 09:25:21 +000019@rem if exist sqlite-3.6.21 rd /s/q sqlite-3.6.21
Trent Nelson4f4738f2008-03-19 09:23:08 +000020
21@rem bzip
Martin v. Löwisa4514c32008-06-13 17:22:39 +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 Nelson4f4738f2008-03-19 09:23:08 +000026
Trent Nelson6e7e1372008-06-27 02:30:34 +000027@rem Berkeley DB
28if exist db-4.4.20 rd /s/q db-4.4.20
29if not exist db-4.7.25.0 svn export http://svn.python.org/projects/external/db-4.7.25.0
Trent Nelson4f4738f2008-03-19 09:23:08 +000030
31@rem OpenSSL
Martin v. Löwis55e1a692009-12-21 19:27:15 +000032if not exist openssl-0.9.8l svn export http://svn.python.org/projects/external/openssl-0.9.8l
Trent Nelson4f4738f2008-03-19 09:23:08 +000033
34@rem tcl/tk
Martin v. Löwis76307312008-06-12 18:52:00 +000035if not exist tcl-8.5.2.1 (
36 rd /s/q tcltk tcltk64
37 svn export http://svn.python.org/projects/external/tcl-8.5.2.1
38)
39if not exist tk-8.5.2.0 svn export http://svn.python.org/projects/external/tk-8.5.2.0
Trent Nelson4f4738f2008-03-19 09:23:08 +000040
Thomas Heller12b580b2008-03-19 16:10:57 +000041@rem sqlite3
Martin v. Löwisf477b932010-01-02 09:25:21 +000042if not exist sqlite-3.6.21 (
Martin v. Löwiscc0f2b22008-06-13 18:12:51 +000043 rd /s/q sqlite-source-3.3.4
Martin v. Löwisf477b932010-01-02 09:25:21 +000044 svn export http://svn.python.org/projects/external/sqlite-3.6.21
Martin v. Löwiscc0f2b22008-06-13 18:12:51 +000045)