Re: [Python-Dev] Fixing buildbot/external(-amd64).bat files on Windows

2008-02-29 Thread Martin v. Löwis
> I don't know how the existing vcbuild line ever worked, given the following > output from vcbuild /?: > > Usage: vcbuild [options] [project|solution] [config|$ALL] It didn't. All the existing slaves already had a checkout when we switched to VS 2008, so a fresh checkout was never tested. Tha

Re: [Python-Dev] Fixing buildbot/external(-amd64).bat files on Windows

2008-02-29 Thread Martin v. Löwis
>> - vcbuild db-4.4.20\build_win32\Berkeley_DB.sln /build Debug /project >> db_static >> + devenv /upgrade db-4.4.20\build_win32\Berkeley_DB.sln >> + devenv db-4.4.20\build_win32\Berkeley_DB.sln /build Debug /project >> db_static > > The upgrade is requires only once. It probably belongs n

Re: [Python-Dev] Fixing buildbot/external(-amd64).bat files on Windows

2008-02-29 Thread Martin v. Löwis
> I'm going through the motions of getting my newly added build slave > in a half decent state. The external.bat and external-amd64.bat > files needed the following in order to build db-4.4.20: I've fixed that in a different way. devenv.exe should not be used, as it is unavailable in VS Express.

Re: [Python-Dev] Fixing buildbot/external(-amd64).bat files on Windows

2008-02-29 Thread Martin v. Löwis
>>> I'm going through the motions of getting my newly added build >>> slave >> in a half decent state. >> >> I think the buildbot should have a name different from 'x86 XP'. >> (Martin, Neal?) >> > Yeah, I've dropped Martin a note regarding this. The community bots > refer to Windows Server 200

Re: [Python-Dev] Fixing buildbot/external(-amd64).bat files on Windows

2008-02-29 Thread Christian Heimes
Trent Nelson wrote: > S:\buildbots\python\trunk.nelson-windows\db-4.4.20\build_win32>devenv > Berkeley_DB.sln /build Debug /project db_static > Microsoft (R) Visual Studio Version 9.0.21022.8. > Copyright (C) Microsoft Corp. All rights reserved. > == Build: 0 succeeded, 0 failed, 1 up-to-d

Re: [Python-Dev] Fixing buildbot/external(-amd64).bat files on Windows

2008-02-29 Thread Trent Nelson
Christian Heimes: > Thomas Heller wrote: > > What's the difference between these two? > > > > vcbuild db-4.4.20\build_win32\Berkeley_DB.sln /build Debug > > > > devenv db-4.4.20\build_win32\Berkeley_DB.sln /build Debug > > Devenv is the name of the VS GUI executable but it can *also* be used as

Re: [Python-Dev] Fixing buildbot/external(-amd64).bat files on Windows

2008-02-29 Thread Christian Heimes
Thomas Heller wrote: > What's the difference between these two? > > vcbuild db-4.4.20\build_win32\Berkeley_DB.sln /build Debug > > devenv db-4.4.20\build_win32\Berkeley_DB.sln /build Debug Devenv is the name of the VS GUI executable but it can *also* be used as a CLI to build stuff. devenv d

Re: [Python-Dev] Fixing buildbot/external(-amd64).bat files on Windows

2008-02-29 Thread Thomas Heller
Trent Nelson schrieb: > Christian Heimes: >> Trent Nelson wrote: >> > - vcbuild db-4.4.20\build_win32\Berkeley_DB.sln /build Debug >> /project db_static >> > + devenv /upgrade db-4.4.20\build_win32\Berkeley_DB.sln >> > + devenv db-4.4.20\build_win32\Berkeley_DB.sln /build Debug >> /project db

Re: [Python-Dev] Fixing buildbot/external(-amd64).bat files on Windows

2008-02-29 Thread Trent Nelson
Christian Heimes: > Trent Nelson wrote: > > - vcbuild db-4.4.20\build_win32\Berkeley_DB.sln /build Debug > /project db_static > > + devenv /upgrade db-4.4.20\build_win32\Berkeley_DB.sln > > + devenv db-4.4.20\build_win32\Berkeley_DB.sln /build Debug > /project db_static > > The upgrade is req

Re: [Python-Dev] Fixing buildbot/external(-amd64).bat files on Windows

2008-02-29 Thread Christian Heimes
Trent Nelson wrote: > - vcbuild db-4.4.20\build_win32\Berkeley_DB.sln /build Debug /project > db_static > + devenv /upgrade db-4.4.20\build_win32\Berkeley_DB.sln > + devenv db-4.4.20\build_win32\Berkeley_DB.sln /build Debug /project > db_static The upgrade is requires only once. It probabl

Re: [Python-Dev] Fixing buildbot/external(-amd64).bat files on Windows

2008-02-29 Thread Trent Nelson
> > I'm going through the motions of getting my newly added build slave > in a half decent state. > > I think the buildbot should have a name different from 'x86 XP'. > (Martin, Neal?) > > Thomas Yeah, I've dropped Martin a note regarding this. The community bots refer to Windows Server 2003 box

Re: [Python-Dev] Fixing buildbot/external(-amd64).bat files on Windows

2008-02-29 Thread Christian Heimes
Thomas Heller wrote: > I guess it will be merged automatically by Christian. I won't have time today. Sorry Christian ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.

Re: [Python-Dev] Fixing buildbot/external(-amd64).bat files on Windows

2008-02-29 Thread Thomas Heller
Trent Nelson schrieb: > Howdy, > > I'm going through the motions of getting my newly added build slave in a half > decent state. I think the buildbot should have a name different from 'x86 XP'. (Martin, Neal?) Thomas ___ Python-Dev mailing list Pytho

Re: [Python-Dev] Fixing buildbot/external(-amd64).bat files on Windows

2008-02-29 Thread Thomas Heller
Trent Nelson schrieb: > Howdy, > > I'm going through the motions of getting my newly added build slave in a half > decent state. The external.bat and external-amd64.bat files needed the > following in order to build db-4.4.20: > > Index: external.bat > =

[Python-Dev] Fixing buildbot/external(-amd64).bat files on Windows

2008-02-28 Thread Trent Nelson
Howdy, I'm going through the motions of getting my newly added build slave in a half decent state. The external.bat and external-amd64.bat files needed the following in order to build db-4.4.20: Index: external.bat === --- externa