Re: ro svn checkout of svn.debian.org/svn/pkg-kde/

2004-03-01 Thread Jeremy Shaw
[snip]

 http is disabled as mentioned on the svn.debian.org main page. If I
 remember correctly to check out anonymously you need to do something
 like:
 
 svn co svn://svn.debian.org/pkg-kde/trunk

I just tried to do a check out for the first time, but I got this error:

 $ svn co svn://svn.debian.org/pkg-kde/trunk
svn: Can't connect to host 'svn.debian.org': Connection refused

Am I doing things wrong, or is this a server side issue? 

I can reach http://svn.debian.org/ fine.

http://svn.debian.org/viewcvs/pkg-kde/ seems to cause a Python
traceback...

All I am looking for is read-only access to the latest debian
directories. Thanks!

Jeremy Shaw.



Re: ro svn checkout of svn.debian.org/svn/pkg-kde/

2004-02-12 Thread Achim Bohnet
On Thursday 12 February 2004 04:59, Chris Cheney wrote:
 On Wed, Feb 11, 2004 at 11:42:13PM +0100, Achim Bohnet wrote:
  Hi,
  
  what's the method to check out a ro copy of svn pkg-kde repository
  at svn.debian.org/svn/pkg-kde/
  o http: and https: always return 405 Method Not Allowed
(okay webdav disabled as mention on the home page ;)
  o svn claims no repository found
  o svn+ssh://[EMAIL PROTECTED]  does not accept my alioth account
  o svn manual does not help any more :(
  What do I wrong?
 
 http is disabled as mentioned on the svn.debian.org main page. If I
 remember correctly to check out anonymously you need to do something
 like:
 
 svn co svn://svn.debian.org/pkg-kde/trunk

Ahhh,  http: URL on svn.debian.org had an additonal /svn in the path
that has to be removed in the svn: URL.  Thx!! 
 
 to do a regular checkout you need to do:
 
 svn co svn+ssh://svn.debian.org/svn/pkg-kde/trunk
 
 you can't put your username in the URL, you can either setup the special
 svn way (I forgot what its called) or you add something like the
 following to your .ssh/config file:
 
 Host svn.debian.org
   User ccheney
 
 The other svn way is explained in the svnbook.

Neither the .ssh/config,  user@ nor --username does work
with svn+ssh:  (always the same error msg).  So I assume that
svn+ssh:  mean rw access and that's of course denied (no problem
for me).
 
  Btw. what's the status/usage of debian/ in KDE's cvs and pkg-kde
  at alioth?
  
  Chris pkgs:
  KDE 3.2 for woody in kde cvs
  KDE 3.2 for sid in pkg-kde
 
 I will probably remove the debian dirs from my packages at kde.org soon
 unless there is a pressing reason for it to be there.

Ralf?

Achim
 
  Ben
  everything in kde-cvs
  Right?
 
 Yes at this time.
 
 
 Chris
 

-- 
  To me vi is Zen.  To use vi is to practice zen. Every command is
  a koan. Profound to the user, unintelligible to the uninitiated.
  You discover truth everytime you use it.
  -- [EMAIL PROTECTED]



Re: ro svn checkout of svn.debian.org/svn/pkg-kde/

2004-02-12 Thread David Pashley
On Feb 12, 2004 at 10:44, Achim Bohnet praised the llamas by saying:
  to do a regular checkout you need to do:
  
  svn co svn+ssh://svn.debian.org/svn/pkg-kde/trunk
  
  you can't put your username in the URL, you can either setup the special
  svn way (I forgot what its called) or you add something like the
  following to your .ssh/config file:
  
I am pretty sure you can use the username in the url. That is how I did
it.
 
 Neither the .ssh/config,  user@ nor --username does work
 with svn+ssh:  (always the same error msg).  So I assume that
 svn+ssh:  mean rw access and that's of course denied (no problem
 for me).
  
You need to be able ot log into svn.debian.org using ssh. You can sort
out any password issues using alioth.debian.org.

Currently no-one except Chris can write to most of the repo. I have
added a directory under people which I have access to. 


-- 
David Pashley
[EMAIL PROTECTED]
Nihil curo de ista tua stulta superstitione.


pgpRiBosBBb4K.pgp
Description: PGP signature


ro svn checkout of svn.debian.org/svn/pkg-kde/

2004-02-11 Thread Achim Bohnet
Hi,

what's the method to check out a ro copy of svn pkg-kde repository
at svn.debian.org/svn/pkg-kde/
o http: and https: always return 405 Method Not Allowed
  (okay webdav disabled as mention on the home page ;)
o svn claims no repository found
o svn+ssh://[EMAIL PROTECTED]  does not accept my alioth account
o svn manual does not help any more :(
What do I wrong?

Btw. what's the status/usage of debian/ in KDE's cvs and pkg-kde
at alioth?

Chris pkgs:
KDE 3.2 for woody in kde cvs
KDE 3.2 for sid in pkg-kde
Ben
everything in kde-cvs
Right?

Achim

-- 
  To me vi is Zen.  To use vi is to practice zen. Every command is
  a koan. Profound to the user, unintelligible to the uninitiated.
  You discover truth everytime you use it.
  -- [EMAIL PROTECTED]



Re: ro svn checkout of svn.debian.org/svn/pkg-kde/

2004-02-11 Thread Ben Burton

 Ben
   everything in kde-cvs

Correct.  Btw, if I do end up moving it to alioth sometime, I'd like to
delete it from KDE CVS completely - having two copies in two different
repositories using two different systems is just asking for one of them
to go stale.

Ben.



Re: ro svn checkout of svn.debian.org/svn/pkg-kde/

2004-02-11 Thread Chris Cheney
On Wed, Feb 11, 2004 at 11:42:13PM +0100, Achim Bohnet wrote:
 Hi,
 
 what's the method to check out a ro copy of svn pkg-kde repository
 at svn.debian.org/svn/pkg-kde/
   o http: and https: always return 405 Method Not Allowed
 (okay webdav disabled as mention on the home page ;)
   o svn claims no repository found
   o svn+ssh://[EMAIL PROTECTED]  does not accept my alioth account
   o svn manual does not help any more :(
 What do I wrong?

http is disabled as mentioned on the svn.debian.org main page. If I
remember correctly to check out anonymously you need to do something
like:

svn co svn://svn.debian.org/pkg-kde/trunk

to do a regular checkout you need to do:

svn co svn+ssh://svn.debian.org/svn/pkg-kde/trunk

you can't put your username in the URL, you can either setup the special
svn way (I forgot what its called) or you add something like the
following to your .ssh/config file:

Host svn.debian.org
User ccheney

The other svn way is explained in the svnbook.

 Btw. what's the status/usage of debian/ in KDE's cvs and pkg-kde
 at alioth?
 
 Chris pkgs:
   KDE 3.2 for woody in kde cvs
   KDE 3.2 for sid in pkg-kde

I will probably remove the debian dirs from my packages at kde.org soon
unless there is a pressing reason for it to be there.

 Ben
   everything in kde-cvs
 Right?

Yes at this time.


Chris


signature.asc
Description: Digital signature