[Python-checkins] r55929 - python/trunk/Tools/buildbot/build-amd64.bat python/trunk/Tools/buildbot/external-amd64.bat

thomas.heller python-checkins at python.org
Tue Jun 12 17:36:26 CEST 2007


Author: thomas.heller
Date: Tue Jun 12 17:36:22 2007
New Revision: 55929

Added:
   python/trunk/Tools/buildbot/external-amd64.bat   (contents, props changed)
Modified:
   python/trunk/Tools/buildbot/build-amd64.bat
Log:
Checkout, but do not yet try to build, exernal sources.

Modified: python/trunk/Tools/buildbot/build-amd64.bat
==============================================================================
--- python/trunk/Tools/buildbot/build-amd64.bat	(original)
+++ python/trunk/Tools/buildbot/build-amd64.bat	Tue Jun 12 17:36:22 2007
@@ -1,5 +1,6 @@
 @rem Used by the buildbot "compile" step.
-REM cmd /c Tools\buildbot\external.bat
+setlocal
+cmd /c Tools\buildbot\external-amd64.bat
 call "%VS71COMNTOOLS%vsvars32.bat"
 REM cmd /q/c Tools\buildbot\kill_python.bat
 devenv.com /build ReleaseAMD64 PCbuild\pcbuild.sln

Added: python/trunk/Tools/buildbot/external-amd64.bat
==============================================================================
--- (empty file)
+++ python/trunk/Tools/buildbot/external-amd64.bat	Tue Jun 12 17:36:22 2007
@@ -0,0 +1,29 @@
+ at rem Fetches (and builds if necessary) external dependencies
+setlocal
+
+ at rem Assume we start inside the Python source directory
+cd ..
+
+ at rem sqlite
+if not exist sqlite-source-3.3.4 (
+   svn export http://svn.python.org/projects/external/sqlite-source-3.3.4
+   if exist trunk\PCbuild\sqlite3.dll del trunk\PCbuild\sqlite3.dll
+)
+
+ at rem bzip
+if not exist bzip2-1.0.3 svn export http://svn.python.org/projects/external/bzip2-1.0.3
+
+ at rem Sleepycat db
+call "%MSSdk%\SetEnv" /XP64 /RETAIL
+if not exist db-4.4.20 svn export http://svn.python.org/projects/external/db-4.4.20
+
+ at rem OpenSSL
+if not exist openssl-0.9.8a svn export http://svn.python.org/projects/external/openssl-0.9.8a
+
+ at rem tcltk
+if not exist tcl8.4.12 (
+   if exist tcltk rd /s/q tcltk
+   svn export http://svn.python.org/projects/external/tcl8.4.12
+   svn export http://svn.python.org/projects/external/tk8.4.12
+)
+


More information about the Python-checkins mailing list