Metadata-Version: 1.0
Name: collective.recipe.bootstrap
Version: 0.1
Summary: Avoid having to do 'svn cat svn://svn.zope.org/repos/main/zc.buildout/trunk/bootstrap/bootstrap.py > bootstrap.py
Home-page: http://svn.plone.org/svn/collective/buildout/collective.recipe.bootstrap
Author: Alex Clark
Author-email: aclark@aclark.net
License: ZPL
Description: Introduction
        ============
        
        This recipe satisfies the (perhaps) not-so-common use case of "I want to keep
        my buildout bootstrap.py file up to date without having to manually download
        it from svn.zope.org."
        
        It also makes it possible to add a bootstrap.py file to a buildout created
        via 'buildout init', for subsequent checking-in to the repo of your choice.
        
        In other words, this recipe makes it possible to avoid typing:
        % svn cat svn://svn.zope.org/repos/main/zc.buildout/trunk/bootstrap/bootstrap.py > bootstrap.py
        
        Just add a part and define this recipe. E.g.
        
        [buildout]
        parts += bootstrap
        
        [bootstrap]
        recipe = collective.recipe.bootstrap
        
        and when you run buildout, this recipe will do the rest.
        
        .. contents::
        
        - Code repository: http://svn.plone.org/svn/collective/buildout/collective.recipe.bootstrap/
        - Questions and comments to aclark@aclark.net
        - Report bugs at aclark@aclark.net
        
        Detailed Documentation
        **********************
        
        Supported options
        =================
        
        N/A
        
        
        Example usage
        =============
        
        We'll start by creating a buildout that uses the recipe::
        
        >>> write('buildout.cfg',
        ... """
        ... [buildout]
        ... parts = test1
        ...
        ... [test1]
        ... recipe = collective.recipe.bootstrap
        ... """
        
        Running the buildout gives us::
        
        >>> print 'start', system(buildout)
        start...
        Installing test1.
        <BLANKLINE>
        
        Contributors
        ************
        
        Alex Clark, Author
        
        
        Change history
        **************
        
        0.1 (2009-08-07)
        ================
        
        - Add initial functionality
        [Alex Clark]
        
        - Created recipe with ZopeSkel
        [Alex Clark]
        
        
        Download
        ********
        
Keywords: buildout
Platform: UNKNOWN
Classifier: Framework :: Buildout
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: Zope Public License
