So what I was trying to do was use mercurial with svn, and the hgsubversion plugin seemed like the best way to do this. Now following the instructions, I see I just need to clone the plugin to my local machine, using:
hg clone -u 1.2.1 http://bitbucket.org/durin42/hgsubversion/ ~/hgsubversion
I then added the plugin to my .hg file in my home directory
[extensions] hgsubversion = ~/hgsubversion/hgsubversion
abort: no compatible bindings available:
Subversion 1.5.0 or later required, but no bindings were found
Subvertpy 0.7.4 or later required, but 0.7.3 found
Please install either Subvertpy or the Subversion Python SWIG bindings!
Googling the phrases in the above message, didn't really give me too much info on how to get this working on my Debian machine. I won't bore you with the details, here is what I had to do to get the bindings installed:
#:apt-get install python-subversion
Duh. Hope this helps someone.
2 comments:
Very helpful. The HgSubversion wiki says to add python-svn, so this tip got it working for me.
Thank you! Worked for me on debian squeeze.
Post a Comment