You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by anatoly techtonik <te...@gmail.com> on 2010/09/20 10:16:18 UTC

State of Python Bindings for Windows

Hello,

I can't find any binaries for Python bindings for Windows. Previously
they were available from tigris.org site, but now there aren't any
updates. It will greatly reduce frustration for users of hgsubversion
and other Windows tools if up to date official bindings could be
available from PyPI.

Why Apache Foundation can't provide the binaries like it does for
Apache, for instance?


1.6 release notes contained information about new ctypes bindings
http://subversion.apache.org/docs/release-notes/1.6.html#ctypes-python-bindings
But where are they? How to use them or install them? Are they stable?
Do any projects use them?
I couldn't find any official information on subversion.apache.org

If there are no people interested in Subversion bindings development
in ASF team, I'd advise to move development to the old
http://code.google.com/p/csvn/ project and somehow sync with ASF tree
('somehow' here means - 'take a look at this use case') - this way
people at least will be able to send patches, monitor progress and
comment on arising issues, as well as explain what do they want.


Please, CC.
Thanks.
--
anatoly t.

Re: State of Python Bindings for Windows

Posted by anatoly techtonik <te...@gmail.com>.
On Tue, Sep 21, 2010 at 6:23 PM,  <km...@rockwellcollins.com> wrote:
>
> You can find un-tested/un-official versions here: http://alagazam.net/
>
> I didn't create them, just *really* happy they are there...
> (And the python and perl bindings do appear to work, just
>  haven't had any official testing according to the author.)

Thanks! That's just what I was looking for.

To get them work with hgsubversion I had to do this with libsvn module:
- rename _client.dll to _client.pyd
- do the same with _core.dll, _delta.dll, _ra.dll
- copy intl3_svn.dll from an old SVN 1.6.6. installation (I couldn't
find the file in recent collabnet dist)
(I also had to patch hgsubversion to display relevant import errors,
but that's another story)

--
anatoly t.

Re: State of Python Bindings for Windows

Posted by km...@rockwellcollins.com.
anatoly techtonik <te...@gmail.com> wrote on 09/20/2010 05:16:18 AM:

> I can't find any binaries for Python bindings for Windows. Previously
> they were available from tigris.org site, but now there aren't any
> updates. It will greatly reduce frustration for users of hgsubversion
> and other Windows tools if up to date official bindings could be
> available from PyPI.

You can find un-tested/un-official versions here: http://alagazam.net/

I didn't create them, just *really* happy they are there...
(And the python and perl bindings do appear to work, just
 haven't had any official testing according to the author.)

Kevin R.