is subversion up?

Discuss the development of software, tools, libraries and anything else that helps make ps2dev happen.

Moderators: cheriff, Herben

Post Reply
ttguy
Posts: 8
Joined: Sun Mar 30, 2008 8:02 pm
Location: Australia
Contact:

is subversion up?

Post by ttguy »

I was going to have go at doing some PS2 programing - just for the sheer fun of it. I was trying to follow your tutorial on building the toolchain for PS2 dev using MinGW http://lukasz.dk/playstation-2-programm ... -tutorial/.


I get up to the step where I am to extract stuff from Subversion
Code:
svn export svn://svn.ps2dev.org/ps2/trunk/ps2toolchain


And when I execute it complains "Can't connect to host "svn.ps2.dev.org": A system call that should never fail has failed"

So I am just wondering if all this PS2 dev stuff is still up in Subversion. Or has the existance of the PS3 killed PS2 dev?
cosmito
Posts: 307
Joined: Sun Mar 04, 2007 4:26 am
Location: Portugal
Contact:

Post by cosmito »

Relax, sometimes it's offline, as I heard. I tried now and it's working.
ttguy
Posts: 8
Joined: Sun Mar 30, 2008 8:02 pm
Location: Australia
Contact:

Post by ttguy »

ptek wrote:Relax, sometimes it's offline, as I heard. I tried now and it's working.
Hmmm. When it is offline what sort of error do you get? Because I am still getting the same error I reported before. Maybe it is an issue with my setup.

I can ping svn.ps2dev.org - sometimes. I had a 580ms ping time and one out of 4 lost packets. And then I pinged again and had 100% lost packets. So something is a bit flakey here.

Is there any authentication I need to do? Do I need a password?
J.F.
Posts: 2906
Joined: Sun Feb 22, 2004 11:41 am

Post by J.F. »

I haven't had any trouble reaching the svn repo over the last two days. I've rerun the toolchain script and gotten the stuff for the sdk and everything else three times (completely) in the last 24 hours.
deba5er
Posts: 166
Joined: Mon Feb 04, 2008 2:01 pm

Post by deba5er »

Have you tried the mirror?
http://psp.jim.sh/svn/

For your example it would be:
svn export svn://psp.jim.sh/svn/ps2/trunk/ps2toolchain
ttguy
Posts: 8
Joined: Sun Mar 30, 2008 8:02 pm
Location: Australia
Contact:

Post by ttguy »

deba5er wrote:Have you tried the mirror?
http://psp.jim.sh/svn/

For your example it would be:
svn export svn://psp.jim.sh/svn/ps2/trunk/ps2toolchain

So I rejigged my internet filter to allow svn.exe TCP on port 3690 (I forgot I have both a firewall and now an internet filter) and I have converted my error from

Code: Select all

svn: Can't connect to host 'psp.jim.sh': A system call that should never fail has failed.
to

Code: Select all

svn: Can't connect to host 'psp.jim.sh': No connection could be made because the target machine actively refused it.
But now on the main URL I have sucess.

Code: Select all

"Exported revision 1461."
Thanks for the input guys.
jimparis
Posts: 1145
Joined: Fri Jun 10, 2005 4:21 am
Location: Boston

Post by jimparis »

deba5er wrote:For your example it would be:
svn export svn://psp.jim.sh/svn/ps2/trunk/ps2toolchain
No, it would be
svn export http://psp.jim.sh/svn/ps2/trunk/ps2toolchain
deba5er
Posts: 166
Joined: Mon Feb 04, 2008 2:01 pm

Post by deba5er »

jimparis - Thanks for the correction!
Post Reply