Metadata-Version: 1.0
Name: rod.recipe.mongodb
Version: 1.1.2
Summary: ZC Buildout recipe for setting up mongoDB.
Home-page: http://pypi.python.org/pypi/rod.recipe.mongodb
Author: Tobias Rodaebel
Author-email: tobias (dot) rodaebel (at) googlemail (dot) com
License: LGPL 3
Description: ====================
        rod.recipe.mongodb
        ====================
        
        Buildout recipe for downloading and installing a mongodb binary package.
        
        A brief documentation
        =====================
        
        This recipe takes a number of options:
        
        darwin-32bit-url
        The URL to download the 32 bit binary package for the darwin platform.
        
        darwin-64bit-url
        The URL to download the 64 bit binary package for the darwin platform.
        
        linux2-32bit-url
        The URL to download the 32 bit binary package for the linux platform.
        
        linux2-64bit-url
        The URL to download the 64 bit binary package for the linux platform.
        
        
        Tests
        =====
        
        We will define a buildout template used by the recipe:
        
        >>> buildout_cfg = """
        ... [buildout]
        ... parts = mongodb
        ...
        ... [mongodb]
        ... recipe = rod.recipe.mongodb
        ... darwin-32bit-url = http://downloads.mongodb.org/osx/mongodb-osx-i386-0.9.7.tgz
        ... """
        
        We'll start by creating a buildout:
        
        >>> import os.path
        >>> write('buildout.cfg', buildout_cfg)
        
        Running the buildout gives us:
        
        >>> output = system(buildout)
        >>> if output.endswith("downloading mongoDB distribution...\n"): True
        ... else: print output
        True
        
        Changes
        =======
        
        1.1.0 2010-04-15
        ----------------
        - copying all MongoDB binaries into the 'bin' folder of the
        buildout environment (ajung)
        
        1.0.1 2009-08-21
        ----------------
        
        - Removing part before updating.
        
        
        1.0.0 2009-08-14
        ----------------
        
        - Initial release.
        
Keywords: mongodb zc.buildout recipe
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Framework :: Buildout
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Software Development :: Libraries :: Python Modules
