Metadata-Version: 1.0
Name: yaco.recipe.patch
Version: 0.3.2.1
Summary: Yet, another buildout recipe for patching
Home-page: http://github.com/ant30/yaco-recipe-patch
Author: Antonio Pérez-Aranda Alcaide
Author-email: ant30tx at gmail.com
License: LGPL
Description: yaco.recipe.patch
        =================
        
        .. contents::
        
        
        - Code repository: git://github.com/ant30/yaco-recipe-patch.git
        - Report bugs at http://github.com/ant30/yaco.recipe.patch/issues
        
        
        Detailed Documentation
        **********************
        
        Supported options
        =================
        
        The recipe supports the following options:
        
        patch
            Path to patch
        
        patchlocation
            Location to apply patch
        
        binary-patch
            Location of patch binary. Use patch in $PATH by default if any is specified.
        
        
        Example usage
        =============
        
        We'll start by creating a buildout that uses the recipe::
        
            >>> write('buildout.cfg',
            ... """
            ... [buildout]
            ... parts = testpatch
            ...
            ... [testpatch]
            ... recipe = yaco.recipe.patch
            ... patch = %(patch)s
            ... patchlocation = %(patchlocation)s
            ... """ % { 'patch' : 'patch/example-test.patch', 'example/' : 'value2'})
        
        Running the buildout gives us::
        
            >>> print 'start', system(buildout) 
            Installing testpatch.
        
        
        
        Contributors
        ************
        
        "Antonio Pérez-Aranda Alcaide", ant30
        
        
        Change history
        **************
        
        0.3.2.1 (2011-01-09)
        ------------------
        
        - Upload package as sdist
        
        0.3.2 (2010-11-12)
        ------------------
        
        - Remove update functionality, it isn't trivial if path has changed or disappeared
        
        0.3.1 (2010-11-12)
        ------------------
        
        - Try to fix pypi published link
        
        0.3 (2010-07-23)
        ----------------
        
        - Fix rst doc
        
        
        0.2 (2010-07-23)
        ----------------
        
        - Patch and reverse patch on uninstall, fix doc
        
        0.1 (2010-07-23)
        ----------------
        
        - Created recipe with ZopeSkel
        
        Download
        ********
        
Keywords: buildout patch
Platform: UNKNOWN
Classifier: Framework :: Buildout
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
Classifier: Programming Language :: Python
