Metadata-Version: 1.0
Name: ore.recipe.svnlib
Version: 0.1.2
Summary: Buildout recipe for compiling python subversion bindings
Home-page: http://www.python.org/pypi/ore.recipe.svnlib
Author: Kapil Thangavelu
Author-email: kapil.foss@gmail.com
License: ZPL 2.1
Description: ore.recipe.svnlib
        -----------------
        
        A Recipe for downloading and compiling the python subversion
        libraries, this is recipe is based on the zc.recipe.cmmi, and accepts
        all the same recipe options. it downloads and compiles a subversion
        release, additionally it executes the commands to compile and install
        the python subversion bindings. This recipe assumes the usage of a
        python with developer headers, and a swig installation, both can be
        passed in via the extra_options section, if you have installed them in
        custom locations or via buildout.
        
        a note of caution regarding python subversion bindings, releases prior
        to 1.5.0 have memory leaks in the bindings api.
        
        
        an example buildout part, and another part which uses it to construct
        a python interpreter with the svn python bindings::
        
        [subversion]
        recipe=ore.recipe.svnlib
        url=http://subversion.tigris.org/downloads/subversion-1.5.0-rc4.tar.bz2
        extra_options=--without-apxs
        
        [python]
        recipe=zc.recipe.egg
        eggs =
        interpreter = python
        extra-paths =
        $[subversion:location}/lib/svn-python
        
        
        Changes
        -------
        
        - 0.1.2 ( 2008.5.7 )
        
        work around subverion's broken install when passing in the
        documented swig_pydir options, use DESTDIR option instead
        
        - 0.1.1 ( 2008.5.5 )
        
        - 0.1.0 ( 2008.5.5 )
        
        First Release
        
Keywords: zope3 subversion svn
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Framework :: Buildout
Classifier: Intended Audience :: Developers
Classifier: Operating System :: Unix
Classifier: Topic :: Software Development :: Version Control
Classifier: Topic :: System :: Software Distribution
Classifier: License :: OSI Approved :: Zope Public License
