Ignore:
Timestamp:
Mar 19, 2014, 11:11:30 AM (11 years ago)
Author:
dmik
Message:

python: Update vendor to 2.7.6.

Location:
python/vendor/current/Tools/buildbot
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • python/vendor/current/Tools/buildbot/build-amd64.bat

    r2 r388  
    11@rem Used by the buildbot "compile" step.
     2set HOST_PYTHON="%CD%\PCbuild\amd64\python_d.exe"
    23cmd /c Tools\buildbot\external-amd64.bat
    34call "%VS90COMNTOOLS%\..\..\VC\vcvarsall.bat" x86_amd64
  • python/vendor/current/Tools/buildbot/buildmsi.bat

    r2 r388  
    1212"%ProgramFiles%\HTML Help Workshop\hhc.exe" Doc\build\htmlhelp\python26a3.hhp
    1313
    14 @rem buold the MSI file
     14@rem build the MSI file
    1515cd PC
    1616nmake /f icons.mak
  • python/vendor/current/Tools/buildbot/clean-amd64.bat

    r2 r388  
    11@rem Used by the buildbot "clean" step.
    22call "%VS90COMNTOOLS%\..\..\VC\vcvarsall.bat" x86_amd64
    3 cd PCbuild
    43@echo Deleting .pyc/.pyo files ...
    54del /s Lib\*.pyc Lib\*.pyo
     5@echo Deleting test leftovers ...
     6rmdir /s /q build
     7cd PCbuild
    68vcbuild /clean pcbuild.sln "Release|x64"
    79vcbuild /clean pcbuild.sln "Debug|x64"
     10cd ..
  • python/vendor/current/Tools/buildbot/clean.bat

    r2 r388  
    33@echo Deleting .pyc/.pyo files ...
    44del /s Lib\*.pyc Lib\*.pyo
     5@echo Deleting test leftovers ...
     6rmdir /s /q build
    57cd PCbuild
    68vcbuild /clean pcbuild.sln "Release|Win32"
    79vcbuild /clean pcbuild.sln "Debug|Win32"
     10cd ..
  • python/vendor/current/Tools/buildbot/external-common.bat

    r2 r388  
    55@rem XXX: If you need to force the buildbots to start from a fresh environment, uncomment
    66@rem the following, check it in, then check it out, comment it out, then check it back in.
    7 @rem if exist bzip2-1.0.5 rd /s/q bzip2-1.0.5
     7@rem if exist bzip2-1.0.6 rd /s/q bzip2-1.0.6
    88@rem if exist tcltk rd /s/q tcltk
    99@rem if exist tcltk64 rd /s/q tcltk64
     
    1616@rem if exist db-4.4.20 rd /s/q db-4.4.20
    1717@rem if exist db-4.7.25.0 rd /s/q db-4.7.25.0
    18 @rem if exist openssl-0.9.8l rd /s/q openssl-0.9.8l
    19 @rem if exist sqlite-3.5.9 rd /s/q sqlite-3.5.9   
     18@rem if exist openssl-0.9.8y rd /s/q openssl-0.9.8y
     19@rem if exist sqlite-3.6.21 rd /s/q sqlite-3.6.21   
    2020
    2121@rem bzip
    22 if 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
     22if not exist bzip2-1.0.6 (
     23   rd /s/q bzip2-1.0.5
     24  svn export http://svn.python.org/projects/external/bzip2-1.0.6
    2525)
    2626
     
    3030
    3131@rem OpenSSL
    32 if not exist openssl-0.9.8l svn export http://svn.python.org/projects/external/openssl-0.9.8l
     32if not exist openssl-0.9.8y svn export http://svn.python.org/projects/external/openssl-0.9.8y
    3333
    3434@rem tcl/tk
     
    4040
    4141@rem sqlite3
    42 if not exist sqlite-3.5.9 (
     42if not exist sqlite-3.6.21 (
    4343  rd /s/q sqlite-source-3.3.4
    44   svn export http://svn.python.org/projects/external/sqlite-3.5.9
     44  svn export http://svn.python.org/projects/external/sqlite-3.6.21
    4545)
  • python/vendor/current/Tools/buildbot/test-amd64.bat

    r2 r388  
    11@rem Used by the buildbot "test" step.
    22cd PCbuild
    3 call rt.bat -q -d -x64 -uall -rw
     3call rt.bat -d -q -x64 -uall -rwW %1 %2 %3 %4 %5 %6 %7 %8 %9
  • python/vendor/current/Tools/buildbot/test.bat

    r2 r388  
    11@rem Used by the buildbot "test" step.
    22cd PCbuild
    3 call rt.bat -d -q -uall -rw
     3call rt.bat -d -q -uall -rwW %1 %2 %3 %4 %5 %6 %7 %8 %9
Note: See TracChangeset for help on using the changeset viewer.