vote up 2 vote down star

This is a but of a part 2 in trying to convert an SVN repository to a Mercurial one

command is:

hg convert file://c:/svnrepository

but, the output I get is:

assuming destination svnrepository-hg
initializing destination svnrepository-hg repository
file://c:/svnrepository does not look like a CVS checkout
file://c:/svnrepository does not look like a Git repo
Subversion python bindings could not be loaded
file://c:/svnrepository is not a local Mercurial repo
file://c:/svnrepository does not look like a darcs repo
file://c:/svnrepository does not look like a monotone repo
file://c:/svnrepository does not look like a GNU Arch repo
file://c:/svnrepository does not look like a Bazaar repo
file://c:/svnrepository does not look like a P4 repo
abort: file://c:/svnrepository: missing or unsupported repository

The line I'm interested in is:

Subversion python bindings could not be loaded

I have installed python 2.5, and I have installed the python subversion bindings from the subversion website. But still getting this error

flag

1  
You could do a import svn from a Python console, to check if that part already works. Make sure you have installed the bindings that correspond to both versions of SVN and Python (I know that sounds obvious). – RedGlyph Nov 1 at 19:02

1 Answer

vote up 4 vote down check

The problem's explained here at heading "Converting from Subversion":

Subversion's Python bindings are a prerequisite. The bindings (generated with SWIG) are installed separately on Windows, and can be found on http://subversion.tigris.org/ . Note that you can't do this with the Win32 Mercurial binaries -- there's no way to install the Subversion bindings into its built-in Python library. So you'll need to use a Mercurial installed on top of a stand-alone Python, and you may also need to do something like "set HG=python c:\Python25\Scripts\hg" to override the default Win32 binaries if you have those installed also. For Mac OS X, the easiest way is to install the CollabNet Subversion build, and then copy the content of /opt/subversion/lib/svn-python to the site-package directory of the python installation.

Unfortunately hg + svn + win doesn't apparently get any easier with hgsubversion, at least judging from this post and this discussion thereof (I have no Windows installed to try and help out, sigh).

link|flag
Oh man that's complicated. They don't make this easy do they! I don't even know what "build Mercurial on top of Python" means - I installed them both. – IP Nov 1 at 20:25
1  
According to: selenic.com/pipermail/mercurial/… the subversion bindings are included in tortoisehg. So you just need to enable the convert extension in tortoisehg. – tonfa Nov 1 at 20:32
Ah ha! Another step forward. I changed my path to point at hg in TortoiseHG instead of Mercurial and this got over that hurdle. Now it just doesn't think the repository is an SVN one, ahh! – IP Nov 1 at 21:47
2  
Woo! We have lift off. Would you believe, this doesn't work: "hg convert file://c:/svnrepository" but this does "hg convert file://C:/svnrepository" – IP Nov 1 at 21:53
@IP, thanks for the updates -- it's truly amazing that the case (upper vs lower) of the path would make such a difference, but the great thing is that you managed to find that out!!! – Alex Martelli Nov 1 at 22:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.