Re: [Announcement] Subversion repository location changed

2007-05-10 Thread Martin Krischik
Am Donnerstag 10 Mai 2007 schrieb Gautam Iyer:

 I got the same error. My response was

     rm -rf vim7
     svn co https://svn.sourceforge.net/svnroot/vim/trunk vim7

You are using the old URL which may or may not work! The new url has the 
project name at both ends:

https://vim.svn.sourceforge.net/svnroot/vim

An existing copy can be converted with

svn switch --relocate https://svn.sourceforge.net/svnroot/vim 
https://vim.svn.sourceforge.net/svnroot/vim

Martin
-- 
Martin Krischik
mailto://[EMAIL PROTECTED]


signature.asc
Description: This is a digitally signed message part.


Re: [Announcement] Subversion repository location changed

2007-05-10 Thread Ilya Bobir

Edward L. Fox wrote:

On 5/10/07, Gautam Iyer [EMAIL PROTECTED] wrote:

[...]


 I've a question, though: isn't bleeding-edge development done in
 https://svn.sourceforge.net/svnroot/vim/trunk ? That /would/ be the
 appropriate line for the latest sources, right?


I don't know. I'm still asking Bram for the latest sources. Currently,
trunk and 7.1 branch will be the same.


As for me there is actually no 7.1 branch, as there is no separate 
development on the main branch and the 7.1 branch.
As Vim is developed linearly all the source should go into trunk 
directory and at the moment a new version is announced this version 
should be tagged.
Branch would need to be created if someone will be developing some big 
change that will require a stable base, like 7.0 release, and this 
change will be developed separately and in parallel with the main branch.


Re: [Announcement] Subversion repository location changed

2007-05-09 Thread Gregory Seidman
On Wed, May 09, 2007 at 10:27:24AM +0800, Edward L. Fox wrote:
 On 5/9/07, Suresh Govindachar [EMAIL PROTECTED] wrote:
 
Edward L. Fox announced:
 
Hi Vimmers,
   
The directories structure of the Subversion repository has been
changed. Please use this command to checkout the latest sources:
   
svn co https://vim.svn.sourceforge.net/svnroot/vim/branches/vim7.1 vim7
   
If you had checked out a copy of the sources before, please run
this command in your source root directory to switch into the
current branch:
   
svn switch https://vim.svn.sourceforge.net/svnroot/vim/branches/vim7.1
   
Hope this change won't bother you too much.
 
   Shouldn't there be vim7.1a (the a'th candidate for 7.1) today,
   and eventually, when Bram releases version 7.1, vim7.1?
 
   So is the last argument to svn co correct?  And isn't today's
   branch/trunk/whatever 7.1a rather than 7.1?
 
 7.1, not 7.1a.
 
 Because as the alphabetical version changes so fast, personally I
 don't want to create too many branches for that.
   --Suresh

That's what tags are for. Let's say you want to release 7.1b from the
current 7.1 branch:

svn copy -m Tagging 7.1b release 
https://vim.svn.sourceforge.net/svnroot/vim/branches/vim7.1 
https://vim.svn.sourceforge.net/svnroot/vim/tags/vim7.1b

Copies are very space-efficient in svn, which is why they are the mechanism
for both branching and tagging.

--Greg



Re: [Announcement] Subversion repository location changed

2007-05-09 Thread Yakov Lerner

On 5/9/07, Edward L. Fox [EMAIL PROTECTED] wrote:

If you had checked out a copy of the sources before, please run this
command in your source root directory to switch into the current
branch:

svn switch https://vim.svn.sourceforge.net/svnroot/vim/branches/vim7.1


This switch command gives me error:

$ cd vim7
$ svn info
Path: .
URL: https://svn.sourceforge.net/svnroot/vim/vim7
Repository Root: https://svn.sourceforge.net/svnroot/vim
Repository UUID: 2a77ed30-b011-0410-a7ad-c7884a0aa172
Revision: 263
Node Kind: directory
Schedule: normal
Last Changed Author: edyfox
Last Changed Rev: 263
Last Changed Date: 2007-05-06 23:13:56 -0400 (Sun, 06 May 2007)
$ svn switch https://vim.svn.sourceforge.net/svnroot/vim/branches/vim7.1
svn: 'https://vim.svn.sourceforge.net/svnroot/vim/branches/vim7.1'
is not the same repository as
'https://svn.sourceforge.net/svnroot/vim'

What am I doign wrong ?

Yakov


Re: [Announcement] Subversion repository location changed

2007-05-09 Thread Micah Cowan
Yakov Lerner wrote:
 On 5/9/07, Edward L. Fox [EMAIL PROTECTED] wrote:
 If you had checked out a copy of the sources before, please run this
 command in your source root directory to switch into the current
 branch:

 svn switch https://vim.svn.sourceforge.net/svnroot/vim/branches/vim7.1
 
 This switch command gives me error:
 
 $ cd vim7
 $ svn info
 Path: .
 URL: https://svn.sourceforge.net/svnroot/vim/vim7
 Repository Root: https://svn.sourceforge.net/svnroot/vim
 Repository UUID: 2a77ed30-b011-0410-a7ad-c7884a0aa172
 Revision: 263
 Node Kind: directory
 Schedule: normal
 Last Changed Author: edyfox
 Last Changed Rev: 263
 Last Changed Date: 2007-05-06 23:13:56 -0400 (Sun, 06 May 2007)
 $ svn switch https://vim.svn.sourceforge.net/svnroot/vim/branches/vim7.1
 svn: 'https://vim.svn.sourceforge.net/svnroot/vim/branches/vim7.1'
 is not the same repository as
 'https://svn.sourceforge.net/svnroot/vim'
 
 What am I doign wrong ?
 
 Yakov

The vim.svn vs svn... .

https://svn.sourceforge.net/svnroot/vim/branches/vim7.1 (no vim)
works for me.

I've a question, though: isn't bleeding-edge development done in
https://svn.sourceforge.net/svnroot/vim/trunk ? That /would/ be the
appropriate line for the latest sources, right?

-- 
Micah J. Cowan
Programmer, musician, typesetting enthusiast, gamer...
http://micah.cowan.name/




signature.asc
Description: OpenPGP digital signature


Re: [Announcement] Subversion repository location changed

2007-05-09 Thread Gautam Iyer
On Wed, May 09, 2007 at 02:20:52PM -0700, Micah Cowan wrote:

   If you had checked out a copy of the sources before, please run this
   command in your source root directory to switch into the current
   branch:
   
   svn switch https://vim.svn.sourceforge.net/svnroot/vim/branches/vim7.1
  
  This switch command gives me error:
  
  $ cd vim7
  $ svn info
  Path: .
  URL: https://svn.sourceforge.net/svnroot/vim/vim7
  Repository Root: https://svn.sourceforge.net/svnroot/vim
  Repository UUID: 2a77ed30-b011-0410-a7ad-c7884a0aa172
  Revision: 263
  Node Kind: directory
  Schedule: normal
  Last Changed Author: edyfox
  Last Changed Rev: 263
  Last Changed Date: 2007-05-06 23:13:56 -0400 (Sun, 06 May 2007)
  $ svn switch https://vim.svn.sourceforge.net/svnroot/vim/branches/vim7.1
  svn: 'https://vim.svn.sourceforge.net/svnroot/vim/branches/vim7.1'
  is not the same repository as
  'https://svn.sourceforge.net/svnroot/vim'
  
  What am I doign wrong ?

I got the same error. My response was

rm -rf vim7
svn co https://svn.sourceforge.net/svnroot/vim/trunk vim7

 I've a question, though: isn't bleeding-edge development done in
 https://svn.sourceforge.net/svnroot/vim/trunk ? That /would/ be the
 appropriate line for the latest sources, right?

I hope so :)

GI

-- 
Top Ten New Intel Slogans For The Pentium:
6.831538 You Don't Need to Know What's Inside


Re: [Announcement] Subversion repository location changed

2007-05-09 Thread Edward L. Fox

On 5/10/07, Gautam Iyer [EMAIL PROTECTED] wrote:

On Wed, May 09, 2007 at 02:20:52PM -0700, Micah Cowan wrote:

   If you had checked out a copy of the sources before, please run this
   command in your source root directory to switch into the current
   branch:
  
   svn switch https://vim.svn.sourceforge.net/svnroot/vim/branches/vim7.1
 
  This switch command gives me error:
 
  $ cd vim7
  $ svn info
  Path: .
  URL: https://svn.sourceforge.net/svnroot/vim/vim7
  Repository Root: https://svn.sourceforge.net/svnroot/vim
  Repository UUID: 2a77ed30-b011-0410-a7ad-c7884a0aa172
  Revision: 263
  Node Kind: directory
  Schedule: normal
  Last Changed Author: edyfox
  Last Changed Rev: 263
  Last Changed Date: 2007-05-06 23:13:56 -0400 (Sun, 06 May 2007)
  $ svn switch https://vim.svn.sourceforge.net/svnroot/vim/branches/vim7.1
  svn: 'https://vim.svn.sourceforge.net/svnroot/vim/branches/vim7.1'
  is not the same repository as
  'https://svn.sourceforge.net/svnroot/vim'
 
  What am I doign wrong ?

I got the same error. My response was

rm -rf vim7
svn co https://svn.sourceforge.net/svnroot/vim/trunk vim7


svn switch can only switch from a directory into another directory
inside the same repository. It doesn't allow the user to switch from
one server to another server. So you will not be able to switch from
svn.sourceforge.net to vim.svn.sourceforge.net. So you can try to
switch to https://svn.sourceforge.net/svnroot/vim/branches/vim7.1

svn.sourceforge.net sometimes gives out 403 forbidden errors when
doing some maintaining work. The sf.net staff recommended to use
vim.svn.sourceforge.net instead of svn.sourceforge.net. However, if
you don't want to do any maintaining work, I think both URL will be
OK.



 I've a question, though: isn't bleeding-edge development done in
 https://svn.sourceforge.net/svnroot/vim/trunk ? That /would/ be the
 appropriate line for the latest sources, right?


I don't know. I'm still asking Bram for the latest sources. Currently,
trunk and 7.1 branch will be the same.



I hope so :)

GI

--
Top Ten New Intel Slogans For The Pentium:
6.831538 You Don't Need to Know What's Inside



Re: [Announcement] Subversion repository location changed

2007-05-09 Thread A.J.Mechelynck

Micah Cowan wrote:

Edward L. Fox wrote:

On 5/10/07, Gautam Iyer [EMAIL PROTECTED] wrote:

I got the same error. My response was

rm -rf vim7
svn co https://svn.sourceforge.net/svnroot/vim/trunk vim7

svn switch can only switch from a directory into another directory
inside the same repository. It doesn't allow the user to switch from
one server to another server. So you will not be able to switch from
svn.sourceforge.net to vim.svn.sourceforge.net. So you can try to
switch to https://svn.sourceforge.net/svnroot/vim/branches/vim7.1


Well, except that in this case, the --relocate option would probably be
appropriate, which is used to support switches between different
repositories.


I don't know. I'm still asking Bram for the latest sources. Currently,
trunk and 7.1 branch will be the same.


My understanding of what Bram said is that trunk/ already has the latest
sources. I'm not entirely sure what was meant by runtime files, but I
suspect he /may/ have meant: files that are generated automatically, and
are therefore potentially inappropriate to a repository.



No, the runtime files are those which go into runtime/ not src/ and are not 
compiled into the binaries but copied to $VIMRUNTIME and below. Their updates 
are usually not mentioned in the official patches, but their latest versions 
can be had (now) by rsync. Here's the script I use (the last line is for 
cleaning up the log by removing temporary lines which were erased as the 
download progressed):


#!/bin/bash
rsync -avzcP --delete --exclude=/dos/ ftp.nluug.nl::Vim/runtime/ ./runtime/ 
21 | tee rsync.log

vim -es -u NONE -c '%s/^.*\r//' -cx rsync.log

Beware of beautifying mailers! There are three lines, starting respectively 
#!/, rsync and vim.



Best regards,
Tony.
--
hundred-and-one symptoms of being an internet addict:
226. You sit down at the computer right after dinner and your spouse
 says See you in the morning.


Re: [Announcement] Subversion repository location changed

2007-05-09 Thread Yakov Lerner

On 5/9/07, Edward L. Fox [EMAIL PROTECTED] wrote:

If you had checked out a copy of the sources before, please run this
command in your source root directory to switch into the current
branch:

svn switch https://vim.svn.sourceforge.net/svnroot/vim/branches/vim7.1


This switch command gives me error:

$ cd vim7
$ svn info
Path: .
URL: https://svn.sourceforge.net/svnroot/vim/vim7
Repository Root: https://svn.sourceforge.net/svnroot/vim
Repository UUID: 2a77ed30-b011-0410-a7ad-c7884a0aa172
Revision: 263
Node Kind: directory
Schedule: normal
Last Changed Author: edyfox
Last Changed Rev: 263
Last Changed Date: 2007-05-06 23:13:56 -0400 (Sun, 06 May 2007)
$ svn switch https://vim.svn.sourceforge.net/svnroot/vim/branches/vim7.1
svn: 'https://vim.svn.sourceforge.net/svnroot/vim/branches/vim7.1'
is not the same repository as
'https://svn.sourceforge.net/svnroot/vim'

What am I doign wrong ?

Yakov


Re: [Announcement] Subversion repository location changed

2007-05-09 Thread Micah Cowan
Yakov Lerner wrote:
 On 5/9/07, Edward L. Fox [EMAIL PROTECTED] wrote:
 If you had checked out a copy of the sources before, please run this
 command in your source root directory to switch into the current
 branch:

 svn switch https://vim.svn.sourceforge.net/svnroot/vim/branches/vim7.1
 
 This switch command gives me error:
 
 $ cd vim7
 $ svn info
 Path: .
 URL: https://svn.sourceforge.net/svnroot/vim/vim7
 Repository Root: https://svn.sourceforge.net/svnroot/vim
 Repository UUID: 2a77ed30-b011-0410-a7ad-c7884a0aa172
 Revision: 263
 Node Kind: directory
 Schedule: normal
 Last Changed Author: edyfox
 Last Changed Rev: 263
 Last Changed Date: 2007-05-06 23:13:56 -0400 (Sun, 06 May 2007)
 $ svn switch https://vim.svn.sourceforge.net/svnroot/vim/branches/vim7.1
 svn: 'https://vim.svn.sourceforge.net/svnroot/vim/branches/vim7.1'
 is not the same repository as
 'https://svn.sourceforge.net/svnroot/vim'
 
 What am I doign wrong ?
 
 Yakov

The vim.svn vs svn... .

https://svn.sourceforge.net/svnroot/vim/branches/vim7.1 (no vim)
works for me.

I've a question, though: isn't bleeding-edge development done in
https://svn.sourceforge.net/svnroot/vim/trunk ? That /would/ be the
appropriate line for the latest sources, right?

-- 
Micah J. Cowan
Programmer, musician, typesetting enthusiast, gamer...
http://micah.cowan.name/




signature.asc
Description: OpenPGP digital signature


[Announcement] Subversion repository location changed

2007-05-08 Thread Edward L. Fox

Hi Vimmers,

The directories structure of the Subversion repository has been
changed. Please use this command to checkout the latest sources:

svn co https://vim.svn.sourceforge.net/svnroot/vim/branches/vim7.1 vim7

If you had checked out a copy of the sources before, please run this
command in your source root directory to switch into the current
branch:

svn switch https://vim.svn.sourceforge.net/svnroot/vim/branches/vim7.1

Hope this change won't bother you too much.


Regards,

Edward L. Fox


RE: [Announcement] Subversion repository location changed

2007-05-08 Thread Suresh Govindachar

   Edward L. Fox announced: 

   Hi Vimmers,
   
   The directories structure of the Subversion repository has been
   changed. Please use this command to checkout the latest sources:
   
   svn co https://vim.svn.sourceforge.net/svnroot/vim/branches/vim7.1 vim7
   
   If you had checked out a copy of the sources before, please run
   this command in your source root directory to switch into the
   current branch:
   
   svn switch https://vim.svn.sourceforge.net/svnroot/vim/branches/vim7.1
   
   Hope this change won't bother you too much.

  Shouldn't there be vim7.1a (the a'th candidate for 7.1) today, 
  and eventually, when Bram releases version 7.1, vim7.1?

  So is the last argument to svn co correct?  And isn't today's
  branch/trunk/whatever 7.1a rather than 7.1?

  --Suresh



Re: [Announcement] Subversion repository location changed

2007-05-08 Thread Edward L. Fox

On 5/9/07, Suresh Govindachar [EMAIL PROTECTED] wrote:


   Edward L. Fox announced:

   Hi Vimmers,
  
   The directories structure of the Subversion repository has been
   changed. Please use this command to checkout the latest sources:
  
   svn co https://vim.svn.sourceforge.net/svnroot/vim/branches/vim7.1 vim7
  
   If you had checked out a copy of the sources before, please run
   this command in your source root directory to switch into the
   current branch:
  
   svn switch https://vim.svn.sourceforge.net/svnroot/vim/branches/vim7.1
  
   Hope this change won't bother you too much.

  Shouldn't there be vim7.1a (the a'th candidate for 7.1) today,
  and eventually, when Bram releases version 7.1, vim7.1?

  So is the last argument to svn co correct?  And isn't today's
  branch/trunk/whatever 7.1a rather than 7.1?


7.1, not 7.1a.

Because as the alphabetical version changes so fast, personally I
don't want to create too many branches for that.



  --Suresh




[Announcement] Subversion repository location changed

2007-05-08 Thread Edward L. Fox

Hi Vimmers,

The directories structure of the Subversion repository has been
changed. Please use this command to checkout the latest sources:

svn co https://vim.svn.sourceforge.net/svnroot/vim/branches/vim7.1 vim7

If you had checked out a copy of the sources before, please run this
command in your source root directory to switch into the current
branch:

svn switch https://vim.svn.sourceforge.net/svnroot/vim/branches/vim7.1

Hope this change won't bother you too much.


Regards,

Edward L. Fox


RE: [Announcement] Subversion repository location changed

2007-05-08 Thread Suresh Govindachar

   Edward L. Fox announced: 

   Hi Vimmers,
   
   The directories structure of the Subversion repository has been
   changed. Please use this command to checkout the latest sources:
   
   svn co https://vim.svn.sourceforge.net/svnroot/vim/branches/vim7.1 vim7
   
   If you had checked out a copy of the sources before, please run
   this command in your source root directory to switch into the
   current branch:
   
   svn switch https://vim.svn.sourceforge.net/svnroot/vim/branches/vim7.1
   
   Hope this change won't bother you too much.

  Shouldn't there be vim7.1a (the a'th candidate for 7.1) today, 
  and eventually, when Bram releases version 7.1, vim7.1?

  So is the last argument to svn co correct?  And isn't today's
  branch/trunk/whatever 7.1a rather than 7.1?

  --Suresh



Re: [Announcement] Subversion repository location changed

2007-05-08 Thread Edward L. Fox

On 5/9/07, Suresh Govindachar [EMAIL PROTECTED] wrote:


   Edward L. Fox announced:

   Hi Vimmers,
  
   The directories structure of the Subversion repository has been
   changed. Please use this command to checkout the latest sources:
  
   svn co https://vim.svn.sourceforge.net/svnroot/vim/branches/vim7.1 vim7
  
   If you had checked out a copy of the sources before, please run
   this command in your source root directory to switch into the
   current branch:
  
   svn switch https://vim.svn.sourceforge.net/svnroot/vim/branches/vim7.1
  
   Hope this change won't bother you too much.

  Shouldn't there be vim7.1a (the a'th candidate for 7.1) today,
  and eventually, when Bram releases version 7.1, vim7.1?

  So is the last argument to svn co correct?  And isn't today's
  branch/trunk/whatever 7.1a rather than 7.1?


7.1, not 7.1a.

Because as the alphabetical version changes so fast, personally I
don't want to create too many branches for that.



  --Suresh