Downloading source code from sourceforge, svn repository empty

2k Views Asked by At

There's a 32bit VST on sourceforge unfortunately I need to recompile it in 64bit for it to work with my DAW. The SVN repository is not available anymore but the source code is visible from sourceforge, is there any way to download all the files ?

Here is the link: https://sourceforge.net/p/ms812proxy/code/HEAD/tree/

1

There are 1 best solutions below

4
Álvaro González On

The SVN repository is not available anymore but the source code is visible from sourceforge

This statement looks incorrect. The link you've shared belongs to an online SVN viewer so data is definitively there and there doesn't seem to be any problem with remote access, as you can verify with any client software:

PS C:\tmp\foo\> svn log https://svn.code.sf.net/p/ms812proxy/code/
------------------------------------------------------------------------
r2 | copperphil | 2012-01-16 05:28:31 +0100 (lu., 16 ene. 2012) | 1 line


------------------------------------------------------------------------
r1 | allura | 2012-01-16 04:54:30 +0100 (lu., 16 ene. 2012) | 1 line

Initial commit
------------------------------------------------------------------------
PS C:\tmp\foo> svn checkout https://svn.code.sf.net/p/ms812proxy/code/trunk ms812proxy-code
Checked out revision 2.

Repository Browser

It any case, it's clear that they are either hosting the project development elsewhere or not using version control at all because:

  • They created the standard trunk/branches/tags structure and then ignored it.
  • There's only one actual commit ever.