blob: c6278b2673f5ac0d8c96b2a3e469d0d3d8358d29 [file] [log] [blame]
Antoine Pitrou7f1e1742011-02-25 14:19:48 +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öwisecc58772012-05-14 13:52:03 +02007@rem if exist bzip2-1.0.6 rd /s/q bzip2-1.0.6
Antoine Pitrou7f1e1742011-02-25 14:19:48 +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
Georg Brandl84fc4ba2013-05-12 19:50:34 +020017@rem if exist openssl-1.0.1e rd /s/q openssl-1.0.1e
Martin v. Löwis29e861d2012-05-14 16:51:35 +020018@rem if exist sqlite-3.7.12 rd /s/q sqlite-3.7.12
Antoine Pitrou7f1e1742011-02-25 14:19:48 +000019
20@rem bzip
Martin v. Löwisecc58772012-05-14 13:52:03 +020021if not exist bzip2-1.0.6 (
22 rd /s/q bzip2-1.0.5
23 svn export http://svn.python.org/projects/external/bzip2-1.0.6
Antoine Pitrou7f1e1742011-02-25 14:19:48 +000024)
25
Antoine Pitrou7f1e1742011-02-25 14:19:48 +000026@rem OpenSSL
Georg Brandl84fc4ba2013-05-12 19:50:34 +020027if not exist openssl-1.0.1e (
28 rd /s/q openssl-1.0.1d
29 svn export http://svn.python.org/projects/external/openssl-1.0.1e
Martin v. Löwise01eb4c2012-05-18 16:29:33 +020030)
Antoine Pitrou7f1e1742011-02-25 14:19:48 +000031
32@rem tcl/tk
Brian Curtin401f9f32012-05-13 11:19:23 -050033if not exist tcl-8.5.11.0 (
Antoine Pitrou7f1e1742011-02-25 14:19:48 +000034 rd /s/q tcltk tcltk64
Brian Curtin401f9f32012-05-13 11:19:23 -050035 svn export http://svn.python.org/projects/external/tcl-8.5.11.0
Antoine Pitrou7f1e1742011-02-25 14:19:48 +000036)
Brian Curtin401f9f32012-05-13 11:19:23 -050037if not exist tk-8.5.11.0 svn export http://svn.python.org/projects/external/tk-8.5.11.0
Antoine Pitrou7f1e1742011-02-25 14:19:48 +000038
39@rem sqlite3
Martin v. Löwis29e861d2012-05-14 16:51:35 +020040if not exist sqlite-3.7.12 (
41 rd /s/q sqlite-source-3.7.4
42 svn export http://svn.python.org/projects/external/sqlite-3.7.12
Antoine Pitrou7f1e1742011-02-25 14:19:48 +000043)
Nadeem Vawda3ff069e2011-11-30 00:25:06 +020044
45@rem lzma
46if not exist xz-5.0.3 (
47 svn export http://svn.python.org/projects/external/xz-5.0.3
48)