Re: [Python-Dev] Is some magic required to check out new files from svn?

2005-11-16 Thread Armin Rigo
Hi, On Sun, Nov 13, 2005 at 07:08:15AM -0600, [EMAIL PROTECTED] wrote: The full svn status output is % svn status ! . ! Python The ! definitely mean that these items are missing, or for directories, incomplete in some way. You need to play around until the ! goes

Re: [Python-Dev] Is some magic required to check out new files from svn?

2005-11-13 Thread Fredrik Lundh
[EMAIL PROTECTED] wrote: I read the developer's FAQ and the output of svn up --help. Executing svn up or svn info tells me I'm already at rev 41430, which is the latest rev, right? Creating a fresh build subdirectory followed by configure and make gives me this error:

Re: [Python-Dev] Is some magic required to check out new files from svn?

2005-11-13 Thread Martin v. Löwis
[EMAIL PROTECTED] wrote: Is there some magic required to check out new files from the repository? I'm trying to build on the trunk and am getting compilation errors about code.h not being found. If I remember correctly, this is a new file brought over from the ast branch. Using cvs I would

Re: [Python-Dev] Is some magic required to check out new files from svn?

2005-11-13 Thread skip
../Objects/frameobject.c:6:18: code.h: No such file or directory Sure enough, I have no code.h in my Include directory. Fredrik what does Fredrik svn status Include/code.h Fredrik say? if it says It reports nothing. Fredrik doing a full Fredrik

Re: [Python-Dev] Is some magic required to check out new files from svn?

2005-11-13 Thread John J Lee
On Sat, 12 Nov 2005 [EMAIL PROTECTED] wrote: [...] Before I wipe out Include and svn up again is there any debugging I can do for someone smarter in the ways of Subversion than me? Regarding my [...] Output of the svnversion command? That shows switched and locally modified files, etc. I'm

Re: [Python-Dev] Is some magic required to check out new files from svn?

2005-11-13 Thread skip
Martin code.h should live in Include. It was originally committed to Martin CVS, so it is in the subversion repository from day one; it Martin should always have been there since you started using Martin subversion. Sorry, I had some strange idea it was new with the ast branch.

Re: [Python-Dev] Is some magic required to check out new files from svn?

2005-11-13 Thread skip
John Output of the svnversion command? That shows switched and locally John modified files, etc. John I'm not an svn guru, but I find that command useful, especially to John point out when I switched some deep directory then forgot about John it. Thanks, I'll remember it

Re: [Python-Dev] Is some magic required to check out new files from svn?

2005-11-13 Thread Martin v. Löwis
[EMAIL PROTECTED] wrote: Martin code.h should live in Include. It was originally committed to Martin CVS, so it is in the subversion repository from day one; it Martin should always have been there since you started using Martin subversion. Sorry, I had some strange idea it

Re: [Python-Dev] Is some magic required to check out new files from svn?

2005-11-13 Thread Nick Coghlan
Martin v. Löwis wrote: [EMAIL PROTECTED] wrote: Martin I would also recommend to throw away the sandbox completely and Martin check it out from scratch. Please report whether this gives you Martin code.h. Yes, it does (still with my built-from-source 1.2.3). Ok. I am now

[Python-Dev] Is some magic required to check out new files from svn?

2005-11-12 Thread skip
Is there some magic required to check out new files from the repository? I'm trying to build on the trunk and am getting compilation errors about code.h not being found. If I remember correctly, this is a new file brought over from the ast branch. Using cvs I would have executed something like