{ "info": { "author": "Andre Anjos", "author_email": "andre.anjos@idiap.ch", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Plugins", "Framework :: Bob", "Framework :: Buildout :: Recipe", "Intended Audience :: Developers", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "Natural Language :: English", "Programming Language :: Python", "Programming Language :: Python :: 3", "Topic :: Software Development :: Build Tools", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": ".. vim: set fileencoding=utf-8 :\n.. Andre Anjos \n.. Thu 30 Jan 08:46:53 2014 CET\n\n.. image:: http://img.shields.io/badge/docs-stable-yellow.png\n :target: http://pythonhosted.org/xbob.buildout/index.html\n.. image:: http://img.shields.io/badge/docs-latest-orange.png\n :target: https://www.idiap.ch/software/bob/docs/latest/bioidiap/xbob.buildout/master/index.html\n.. image:: https://travis-ci.org/bioidiap/bob.buildout.svg?branch=v1.0.4\n :target: https://travis-ci.org/bioidiap/bob.buildout\n.. image:: https://coveralls.io/repos/bioidiap/bob.buildout/badge.png\n :target: https://coveralls.io/r/bioidiap/bob.buildout\n.. image:: https://img.shields.io/badge/github-1.0-0000c0.png\n :target: https://github.com/bioidiap/bob.buildout/tree/1.0\n.. image:: http://img.shields.io/pypi/v/xbob.buildout.png\n :target: https://pypi.python.org/pypi/xbob.buildout\n.. image:: http://img.shields.io/pypi/dm/xbob.buildout.png\n :target: https://pypi.python.org/pypi/xbob.buildout\n\n===================================\n Buildout Recipes for Bob Packages\n===================================\n\nThis package contains a number of recipes to be used to build `Satellite\nPackages `_ for `Bob `_,\na signal-processing and machine learning toolbox originally developed by the\nBiometrics Group at Idiap, in Switzerland.\n\n.. note::\n\n You normally don't need to download this package directly. It will be done by\n ``zc.buildout`` automatically, if you followed our recipe to build `Satellite\n Packages`_.\n\nC++/Python Extension\n--------------------\n\nThis extension allows you to compile C/C++ extensions that depend on each other\nusing a buildout. It assures that eggs living in both ``develop-eggs`` and\n``eggs`` are on your path before building the packages in the ``develop``\nsection. By using this extension you can drop the use of the local recipe\n``xbob.buildout:develop``, which should be considered deprecated.\n\nSupported Options\n=================\n\nverbose\n\n If set, buildout it will output the compilation commands while compiling the\n module.\n\nprefixes\n\n A list of directories where this recipe will look for installed software,\n such as compiled libraries and header files. It is the same as setting the\n environment variable ``BOB_PREFIX_PATH`` to a list of paths containing\n externally installed software. As a side-effect, setting ``BOB_PREFIX_PATH``\n also sets, internally, ``PKG_CONFIG_PATH`` to a list of directories following\n where to search for pkg-config files.\n\ndebug\n\n If set, the module will be compiled with debugging symbols and with\n optimization turned off. If ``debug`` is set to ``true``, this is equivalent\n to appending the environment variables ``CFLAGS`` and ``CXXFLAGS`` with ``-O0\n -g``. If it is set to ``false``, it is the same as appending ``-O3 -g0``\n instead.\n\nenviron\n\n The name of a section on your configuration file that contains the names and\n values of environment variables that should be used through the build. This\n section is named, by default, ``environ``.\n\n If a section named ``environ`` exists, it is read and the environment\n variables are set **before** the specified eggs are developed. You can use\n variable substitution on this section. Here is an an example::\n\n [environ]\n CFLAGS = '-O0 -g -DNDEBUG'\n CXXFLAGS = ${CFLAGS}\n\n Notice there is some functionality overlap between the previous flags and the\n use of section ``environ``. While it is more flexible, you must understand\n the consequences of setting both ``prefixes`` and ``debug``, together with\n ``environ``. The rule is simple: values set on the ``environ`` section have\n **precedence** to ``debug`` and ``prefixes``. If you set ``debug`` and\n ``CFLAGS`` (or ``CXXFLAGS``) in the ``environ`` section, for example, then\n the values on the final ``CFLAGS`` variable would be ``-O0 -g`` followed by\n ``environ``'s ``CFLAGS`` settings. Analogously, the paths defined by\n ``environ``'s ``BOB_PREFIX_PATH`` and ``PKG_CONFIG_PATH`` are **prepended**\n to those listed in ``prefixes``, if that is also set.\n\nMulti-Script Installer\n----------------------\n\nThis recipe installs **all** most used scripts and interpreter proxies for your\npackage. It will look at the ``buildout`` section entry called ``prefixes``,\nthat potentially lists prefixes that should be **prepended** to the default\npython environment. In these prefixes, it will look for standard python\ndirectories. If one or more are found, these paths are **prepended** into\nthe resulting scripts generated by this recipe and eggs will be searched on\nthose locations prioritarily.\n\nBy default, this recipe will use the eggs defined at the ``buildout`` section\ncalled ``eggs``, but that can be overriden locally. It generates these scripts:\n\npython\n A pre-configured python interpreter\n\ngdb-python\n A pre-configured python interpreter, prefixed with ``gdb`` to make debugging\n easier. Use it like you use ``python``.\n\nnosetests\n A test runner called ``nosetests`` will be created on the bin directory of\n buildout.\n\ncoverage\n A test coverage application called ``coverage`` will be created on the bin\n directory of buildout.\n\nsphinx\n Several sphinx utilities will be created on the bin directory of buildout.\n\npackage scripts\n Package scripts will be created taking into account the ``prefixes``\n established for this section or globally (as a second priority).\n\nTo use this recipe, you just have to simply do::\n\n [scripts]\n recipe = xbob.buildout:scripts\n\nCommon Supported Options\n========================\n\nThe recipe supports the following options:\n\nprefixes\n A list of directories where this recipe will look for subdirectories with\n the stem ``lib/python*/site-packages``. All directories matching this\n condition are appended to the search paths. If not given, the value of this\n property defaults to ``buildout.prefixes``. Both can be empty, which makes\n this recipe default to using standard available paths.\n\neggs\n The eggs option specifies a list of eggs to use for **building** this\n package. Each string must be given on a separate line. If not given, the\n value of this property defaults to ``buildout.eggs``.\n\ndependent-scripts\n If set to the string ``true``, scripts will be generated for all required\n eggs in addition to the eggs specifically named.\n\ninterpreter\n The name of a script to generate that allows access to a Python interpreter\n that has the path set based on the eggs installed. If you don't specify\n anything, the default value ``python`` will be used.\n\nextra-paths\n Extra paths to be appended in a generated script. To prepend, using the\n ``prefixes`` entry.\n\nnose-flags\n These are extra flags that are **appended** to the given ``nosetests``\n command line, automatically. Use this to preset arguments you like running\n all the time like ``-v``, for example.\n\nOther Recipes\n-------------\n\nThis package also provides recipes that allow for the discrete installation of\ninterpreters and support programs, lumped together with the ``scripts`` recipe\ndescribed above. You can use some of the options described above with these\nrecipes. For example, the ``prefixes``, ``eggs`` and ``extra-paths`` are\nconsidered by all these recipes.\n\n.. note::\n\n Use of these individual recipes should be done with care. The ``scripts``\n recipe should be used by default, unless you have a special requirement that\n is not covered by that recipe.\n\npython\n This recipe generates **just** a python interpreter on the binary directory.\n Extra options considered: ``interpreter``.\n\nipython\n This recipe generates an IPython interpreter on the binary directory.\n Extra options considered: ``interpreter``.\n\ngdb-python\n This recipe generates a gdb launcher using the python interpreter so you can\n start your scripts directly typing ``gdb-python myscript.py``.\n\npylint\n No extra options for this recipe.\n\nnose\n This recipe generates only the ``nosetests`` program. Extra options\n considered are:``nose-flags``.\n\ncoverage\n This recipe generates only the ``coverage`` program. Extra options\n considered are:``coverage-flags``.\n\nsphinx\n This recipe generates only the Sphinx documentation generator applications.\n Extra options considered: none.\n\negg.scripts\n This recipe generates only the scripts (and dependent scripts) for the\n package. Extra options considered: ``dependent-scripts``.", "description_content_type": null, "docs_url": "https://pythonhosted.org/xbob.buildout/", "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://github.com/bioidiap/bob.buildout", "keywords": "buildout,sphinx,nose,recipe,eggs,bob", "license": "GPLv3", "maintainer": null, "maintainer_email": null, "name": "xbob.buildout", "package_url": "https://pypi.org/project/xbob.buildout/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/xbob.buildout/", "project_urls": { "Download": "UNKNOWN", "Homepage": "http://github.com/bioidiap/bob.buildout" }, "release_url": "https://pypi.org/project/xbob.buildout/1.0.4/", "requires_dist": null, "requires_python": null, "summary": "zc.buildout recipes to perform a variety of tasks required by Bob satellite packages", "version": "1.0.4" }, "last_serial": 1736094, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "4a024a371a819070ad9fd79e85b4dd09", "sha256": "c72a1acb0fd21858f2c15df476c9f3368d42e46d21b91892102265f47d225455" }, "downloads": -1, "filename": "xbob.buildout-0.1.0.tar.gz", "has_sig": false, "md5_digest": "4a024a371a819070ad9fd79e85b4dd09", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7783, "upload_time": "2012-08-22T14:35:14", "url": "https://files.pythonhosted.org/packages/26/4d/2dedee1d83bf27e39eb770278f1c1ead231d194697965f7eccbab176b917/xbob.buildout-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "c602a06fb5a7abc670043980e2d4ac70", "sha256": "82930788d4d8daf30bc0ccb398c6f781542e36015e9ade1d8ba466eb63e23911" }, "downloads": -1, "filename": "xbob.buildout-0.1.1.tar.gz", "has_sig": false, "md5_digest": "c602a06fb5a7abc670043980e2d4ac70", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8009, "upload_time": "2012-08-24T13:50:40", "url": "https://files.pythonhosted.org/packages/30/dc/34c3aa501edef7f9d8f93f250ad61baf69754bbd362dffaa0e2fb970d207/xbob.buildout-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "0f6a3d15826f727d32225b7051d9a5db", "sha256": "531a490a901d3e87847226139eac5d6d26b60016309a7ff7ba2a8e74f183c0b7" }, "downloads": -1, "filename": "xbob.buildout-0.1.2.zip", "has_sig": false, "md5_digest": "0f6a3d15826f727d32225b7051d9a5db", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16280, "upload_time": "2012-08-28T07:41:17", "url": "https://files.pythonhosted.org/packages/f3/91/da33473918bb99ef1ea7025d66e742583643285b3f48594ebc9371788cb5/xbob.buildout-0.1.2.zip" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "c6997c966951c5179e9506214b4c8d69", "sha256": "a881fe593d1028a0f644ae3fdac47031ca45a82ab44b91c180b8650c0f957c13" }, "downloads": -1, "filename": "xbob.buildout-0.1.3.zip", "has_sig": false, "md5_digest": "c6997c966951c5179e9506214b4c8d69", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16254, "upload_time": "2012-08-29T18:17:48", "url": "https://files.pythonhosted.org/packages/87/21/8c39ed7057ea94965ba4ad11d55ad55ba006ff90b201c05ec4a1fdfd054e/xbob.buildout-0.1.3.zip" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "8de7a5018ac158e93c0dab35b6312d81", "sha256": "85a2692008a4598c7527cf01ca2bf9b1f931037411a5d4142a75b68823238219" }, "downloads": -1, "filename": "xbob.buildout-0.1.4.zip", "has_sig": false, "md5_digest": "8de7a5018ac158e93c0dab35b6312d81", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16253, "upload_time": "2012-08-29T18:26:29", "url": "https://files.pythonhosted.org/packages/43/d9/3c7f61696e79426bace2418b7e0156ec3236310871ed6d7dc8c6ae73ee73/xbob.buildout-0.1.4.zip" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "e20f65016c447ba3520061aaf459a3c6", "sha256": "f4ba8987f6a5d9d88b3cbb75bc4e4014382a7a6808c724c3d33566a1410ea087" }, "downloads": -1, "filename": "xbob.buildout-0.2.0.zip", "has_sig": false, "md5_digest": "e20f65016c447ba3520061aaf459a3c6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25339, "upload_time": "2013-02-10T10:11:49", "url": "https://files.pythonhosted.org/packages/27/7b/197586a2a7454cce3a761e5d7e76760ab4a5f17dada316645b60538d06b7/xbob.buildout-0.2.0.zip" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "6ccf1b8bc7ee01f5eb3a4f61bd465e06", "sha256": "2efe3d789b89f6c65d324fea4802a5e183e1d8290d495af713b668d974987d37" }, "downloads": -1, "filename": "xbob.buildout-0.2.1.zip", "has_sig": false, "md5_digest": "6ccf1b8bc7ee01f5eb3a4f61bd465e06", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25557, "upload_time": "2013-02-11T09:32:56", "url": "https://files.pythonhosted.org/packages/39/9c/72f4bb26b916c919826a2cb3ce6c07333a36696c3f5d0c39705d5f795ed5/xbob.buildout-0.2.1.zip" } ], "0.2.10": [ { "comment_text": "", "digests": { "md5": "6db29b376816106a9aacda8beafd62a0", "sha256": "afcb89a4619e6d42fc21f62957f54ee4cda0d4a05a2e2701c99131a2a101e627" }, "downloads": -1, "filename": "xbob.buildout-0.2.10.zip", "has_sig": false, "md5_digest": "6db29b376816106a9aacda8beafd62a0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21537, "upload_time": "2013-02-22T11:21:05", "url": "https://files.pythonhosted.org/packages/88/33/c3e9af9794fb2de828fdd471973ed32a8ca85ffa01764bd13510f553b457/xbob.buildout-0.2.10.zip" } ], "0.2.11": [ { "comment_text": "", "digests": { "md5": "04d9be5705c5bb1b21b43968c60bc23f", "sha256": "a8f999998b2437ab509d25a25de9fb914fa73d982e4e849172427a3f5864467f" }, "downloads": -1, "filename": "xbob.buildout-0.2.11.zip", "has_sig": false, "md5_digest": "04d9be5705c5bb1b21b43968c60bc23f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21533, "upload_time": "2013-03-07T11:42:04", "url": "https://files.pythonhosted.org/packages/6e/8b/eec402b94746391afa39af27f6287109a1967e50b42a20dc53406b11b4a3/xbob.buildout-0.2.11.zip" } ], "0.2.12": [ { "comment_text": "", "digests": { "md5": "557d9417ff0b41e5887b4093ad2502de", "sha256": "1b5f1b2e41c1b45efc6ae1d3c719a28c6c9ce12ce9d10ea2a45b036196c8f866" }, "downloads": -1, "filename": "xbob.buildout-0.2.12.zip", "has_sig": false, "md5_digest": "557d9417ff0b41e5887b4093ad2502de", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21674, "upload_time": "2013-03-08T14:43:22", "url": "https://files.pythonhosted.org/packages/8a/28/c178fedae13d0504e561e273a8956c7ddda2ff2dcda68553b9ccbb7cf9ff/xbob.buildout-0.2.12.zip" } ], "0.2.13": [ { "comment_text": "", "digests": { "md5": "7ffe7c955622a3f3f283dad099be1c4b", "sha256": "c61117f09bec54c8af61a2ea0d9da19e260edfeea3db315fe31b96e68d86133e" }, "downloads": -1, "filename": "xbob.buildout-0.2.13.zip", "has_sig": false, "md5_digest": "7ffe7c955622a3f3f283dad099be1c4b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21799, "upload_time": "2013-03-21T12:16:13", "url": "https://files.pythonhosted.org/packages/76/72/d2255639f4d492906b14e49e11e2964fdb2807ab7c90a28ec56df02bec7f/xbob.buildout-0.2.13.zip" } ], "0.2.14": [ { "comment_text": "", "digests": { "md5": "3f7962b266a446f70fc353b7e6fe0bf3", "sha256": "19deb2371a0bbfdbe5a120d4b4df87809d9434b50706f27783f9e60410b67a77" }, "downloads": -1, "filename": "xbob.buildout-0.2.14.zip", "has_sig": false, "md5_digest": "3f7962b266a446f70fc353b7e6fe0bf3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21879, "upload_time": "2013-06-22T10:17:41", "url": "https://files.pythonhosted.org/packages/78/4e/8a43856a0b3acb9cffc9dfc548706ee4b392d9c912f8e711042f2b5a142c/xbob.buildout-0.2.14.zip" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "d1f8d9e6ca4b05f53eac08f7ee6e5d95", "sha256": "64bf8d768a508495d34bf565e2969f7fd7f42508bc54b9ae380b53c320fc3926" }, "downloads": -1, "filename": "xbob.buildout-0.2.2.zip", "has_sig": false, "md5_digest": "d1f8d9e6ca4b05f53eac08f7ee6e5d95", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25598, "upload_time": "2013-02-11T12:57:25", "url": "https://files.pythonhosted.org/packages/ef/fd/6a819fe76945172006118b4b33ca677f5df8785b576754ee1d9288bfe96b/xbob.buildout-0.2.2.zip" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "4dd5d58cd93599af4a9d68d3136e95ba", "sha256": "78c832ef1b6060624dcbf9606bc0474455ebdc72d4fe22d2c65f7a87440b64e7" }, "downloads": -1, "filename": "xbob.buildout-0.2.3.zip", "has_sig": false, "md5_digest": "4dd5d58cd93599af4a9d68d3136e95ba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25896, "upload_time": "2013-02-11T16:36:25", "url": "https://files.pythonhosted.org/packages/0d/e0/18e1a749c9581866409f973736c1a6a62d477c136c9374132e151d3f89e9/xbob.buildout-0.2.3.zip" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "3a637d086bd51a9bcab635bcc6f1fd54", "sha256": "9b029173bcbb0d8d62706b6e1defe90848af15d4573b2cc39343a002c30e40a9" }, "downloads": -1, "filename": "xbob.buildout-0.2.4.zip", "has_sig": false, "md5_digest": "3a637d086bd51a9bcab635bcc6f1fd54", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25922, "upload_time": "2013-02-11T20:50:15", "url": "https://files.pythonhosted.org/packages/18/35/a90b044088a012e515d69bc819e85e267d81975fccddc269085dc1bf69c8/xbob.buildout-0.2.4.zip" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "12d6b54be17684438c3be47b9f8fc266", "sha256": "7d206481b2af9db3a76b4aa95724075bfa40572aa9746cc0d18baa0299a4e390" }, "downloads": -1, "filename": "xbob.buildout-0.2.5.zip", "has_sig": false, "md5_digest": "12d6b54be17684438c3be47b9f8fc266", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25997, "upload_time": "2013-02-12T10:33:06", "url": "https://files.pythonhosted.org/packages/92/49/0753eb202969e275826324fad849d28924f7c3f6a535154e3100e75098fa/xbob.buildout-0.2.5.zip" } ], "0.2.6": [ { "comment_text": "", "digests": { "md5": "c208fb588852343d30f0de3bdaa25f31", "sha256": "0a467ad5c387c8d4f8ee1f0ac358a60f70bb3d540486a57a1bdd0df5d081c52e" }, "downloads": -1, "filename": "xbob.buildout-0.2.6.zip", "has_sig": false, "md5_digest": "c208fb588852343d30f0de3bdaa25f31", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25976, "upload_time": "2013-02-13T07:09:52", "url": "https://files.pythonhosted.org/packages/a6/9f/d5b41c0e67ac50097a8cd6aaf1abb8703c4ac79784aca5b26008ab74b308/xbob.buildout-0.2.6.zip" } ], "0.2.7": [ { "comment_text": "", "digests": { "md5": "ef25cf8fc26e2905439fb7b1a69f191a", "sha256": "73fc7ebbec846a42ed10206cbb5237eee5a96bb198970813c598f76ad96e8708" }, "downloads": -1, "filename": "xbob.buildout-0.2.7.zip", "has_sig": false, "md5_digest": "ef25cf8fc26e2905439fb7b1a69f191a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25291, "upload_time": "2013-02-14T14:44:54", "url": "https://files.pythonhosted.org/packages/19/f0/a4b0f34381648de0b97df228ab48096395977f27e96c585a338dc5d522a2/xbob.buildout-0.2.7.zip" } ], "0.2.8": [ { "comment_text": "", "digests": { "md5": "8d01879fffab6cffbac389254eb82974", "sha256": "5b53a0cbba8b56219197f81ce3c13004335e17a5fcefcbcdc93888f2f1e5dddf" }, "downloads": -1, "filename": "xbob.buildout-0.2.8.zip", "has_sig": false, "md5_digest": "8d01879fffab6cffbac389254eb82974", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25453, "upload_time": "2013-02-15T10:00:29", "url": "https://files.pythonhosted.org/packages/03/7c/955e3cba7035d17a1c6f6387ca95ac6f6b9e856a9d5adb53d8ba12cb953f/xbob.buildout-0.2.8.zip" } ], "0.2.9": [ { "comment_text": "", "digests": { "md5": "5d3e2ea5c56fc1399cc0dea6c22a09eb", "sha256": "a84a6774830a5d6819907f1a1ea646890c2bfef624375ae9b1e3ee409f7d0bc7" }, "downloads": -1, "filename": "xbob.buildout-0.2.9.zip", "has_sig": false, "md5_digest": "5d3e2ea5c56fc1399cc0dea6c22a09eb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16799, "upload_time": "2013-02-19T16:03:39", "url": "https://files.pythonhosted.org/packages/2c/e8/0aa349818b36bb01d8885840c9111f10a8a8aba3b4f103636f31238055b4/xbob.buildout-0.2.9.zip" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "e4bf7dd8464853c4ecd1db317b9ba256", "sha256": "7f605e7d92147a048ab08aa933a1b2f049d7423d7a0043d790ee2a0245ca6b38" }, "downloads": -1, "filename": "xbob.buildout-0.3.0.zip", "has_sig": false, "md5_digest": "e4bf7dd8464853c4ecd1db317b9ba256", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21830, "upload_time": "2013-08-11T18:05:54", "url": "https://files.pythonhosted.org/packages/3a/bd/e6d726e0a7d3dca8c2dfb062879908794ce21aed1cbd109987a37f62e3b8/xbob.buildout-0.3.0.zip" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "6db7b640b7003a1f18727b831e04262a", "sha256": "3e7efa66bcb4165e6dcce862b95db327907fb7e2a66ed9da4bdec2513f780ae8" }, "downloads": -1, "filename": "xbob.buildout-0.3.1.zip", "has_sig": false, "md5_digest": "6db7b640b7003a1f18727b831e04262a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24646, "upload_time": "2013-10-02T09:52:38", "url": "https://files.pythonhosted.org/packages/17/59/5f3efc90ad64d975c141c6163e79e3d9e2308d054b26e75edf6c5948e575/xbob.buildout-0.3.1.zip" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "3d4347ca672eb7cf5ccac5d162f2ecb1", "sha256": "4edeebea89c8afa059ba075a2e6cfa55f3dbce01bbb07ff0049fa202fa72cbf6" }, "downloads": -1, "filename": "xbob.buildout-0.3.2.zip", "has_sig": false, "md5_digest": "3d4347ca672eb7cf5ccac5d162f2ecb1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24835, "upload_time": "2013-11-06T13:34:00", "url": "https://files.pythonhosted.org/packages/10/a4/2714e8d48334218b5ea5d4f064d57127db782b1721ac8d6447aa37b70882/xbob.buildout-0.3.2.zip" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "27177fc11d2c677137f9df5b79cb9f89", "sha256": "ba0f6880e3e4d5607f79b323bfe157375057deeb7224af877d4995e4edb399ea" }, "downloads": -1, "filename": "xbob.buildout-0.3.3.zip", "has_sig": false, "md5_digest": "27177fc11d2c677137f9df5b79cb9f89", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24830, "upload_time": "2013-11-06T13:47:12", "url": "https://files.pythonhosted.org/packages/ba/a8/19f2c154f5268610390a329bddd8868bbc5cabdca027a213811e1e6effb1/xbob.buildout-0.3.3.zip" } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "dcf41ad09e4c375bb09d64ec63491fae", "sha256": "03bf6440a0c7cac7d4683e5da0989b8227e08f76fb71047c4c4a507bfa400898" }, "downloads": -1, "filename": "xbob.buildout-0.3.4.zip", "has_sig": false, "md5_digest": "dcf41ad09e4c375bb09d64ec63491fae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24831, "upload_time": "2013-11-08T14:32:42", "url": "https://files.pythonhosted.org/packages/f4/fb/dd984556176870340beafaf68359c9fbefee90cf71dc15cc19d21a065159/xbob.buildout-0.3.4.zip" } ], "0.3.5": [ { "comment_text": "", "digests": { "md5": "07111473261eff7014c60f6587acc809", "sha256": "616f90792db412d6c91570de727b6599a7bf266cd27afd898e478d07b877aee3" }, "downloads": -1, "filename": "xbob.buildout-0.3.5.zip", "has_sig": false, "md5_digest": "07111473261eff7014c60f6587acc809", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24871, "upload_time": "2013-12-13T08:47:12", "url": "https://files.pythonhosted.org/packages/a5/1b/187ac443aa6f398729463f9fcf48f5bd56db20194398de7eeaf7bd211223/xbob.buildout-0.3.5.zip" } ], "0.3.6": [ { "comment_text": "", "digests": { "md5": "fa3cb8c891ce63b2361d1f46a4387900", "sha256": "ef0124b127282c524d648116b36e9348ecfe02c858c8fc3eddd165489706f06c" }, "downloads": -1, "filename": "xbob.buildout-0.3.6.zip", "has_sig": false, "md5_digest": "fa3cb8c891ce63b2361d1f46a4387900", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24940, "upload_time": "2014-02-20T11:35:07", "url": "https://files.pythonhosted.org/packages/0c/9c/c11d74f29c21bfc90cc05a1a91ecff6ad9244ddca9414fb820b8dc42cbe6/xbob.buildout-0.3.6.zip" } ], "0.3.7": [ { "comment_text": "", "digests": { "md5": "3ff629bfd8c37ba7af9cdb2a832def2a", "sha256": "cd758a86bb4306cb488970cdf951e922a259416ce249b6c1f4c7659283edc3e2" }, "downloads": -1, "filename": "xbob.buildout-0.3.7.zip", "has_sig": false, "md5_digest": "3ff629bfd8c37ba7af9cdb2a832def2a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25032, "upload_time": "2014-02-21T11:53:24", "url": "https://files.pythonhosted.org/packages/f6/52/92eef382919eb0229b1e4041b1906f4cbc35647ffec22e30854c4c2c5671/xbob.buildout-0.3.7.zip" } ], "0.3.8": [ { "comment_text": "", "digests": { "md5": "4fa1977d652691c68512869eb2264283", "sha256": "477a03c866eb4d88b262a05c40660e616418217c15385ebcdfcfe54c3e2cbf08" }, "downloads": -1, "filename": "xbob.buildout-0.3.8.zip", "has_sig": false, "md5_digest": "4fa1977d652691c68512869eb2264283", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25293, "upload_time": "2014-02-24T12:30:12", "url": "https://files.pythonhosted.org/packages/38/70/fe701014ded808f6028c018613765ac10658066e0b60b0146ba895eba2fd/xbob.buildout-0.3.8.zip" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "11f9154032e85eebf1e3147fd7d6a2a3", "sha256": "193f2d893716c4fbd62c2708b7115282b6fbdfd67bd29f7f29fdd7c7dfb02397" }, "downloads": -1, "filename": "xbob.buildout-0.4.0.zip", "has_sig": false, "md5_digest": "11f9154032e85eebf1e3147fd7d6a2a3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26564, "upload_time": "2014-03-13T20:04:00", "url": "https://files.pythonhosted.org/packages/29/00/372d6f83e827cfb57a70fcbff4fd1ccf8d09678eb714014a5d030a573c0c/xbob.buildout-0.4.0.zip" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "7e9a8661883fc8b83472fe81627886d7", "sha256": "fc48f456f8e0cf6a370e452045a1f57fbbcbb5add00db5af0526adfddf3c1c82" }, "downloads": -1, "filename": "xbob.buildout-0.4.1.zip", "has_sig": false, "md5_digest": "7e9a8661883fc8b83472fe81627886d7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26594, "upload_time": "2014-03-14T08:12:06", "url": "https://files.pythonhosted.org/packages/06/59/3c0a746ad279f53acc5617e28bf52e1e5d63160b8f53b328d30ceebcb05e/xbob.buildout-0.4.1.zip" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "c520d8c7edeef9b5dbbfddac2d6a4af0", "sha256": "5b68296478dd0270432bce6405845401a0b67ed6bc50f31d1f4880cfebc5774a" }, "downloads": -1, "filename": "xbob.buildout-0.4.2.zip", "has_sig": false, "md5_digest": "c520d8c7edeef9b5dbbfddac2d6a4af0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26913, "upload_time": "2014-03-14T16:08:37", "url": "https://files.pythonhosted.org/packages/0e/2d/9f4572b20ed29632ac0661dd7d73b002f8ff82bb61f59beab1fec598775c/xbob.buildout-0.4.2.zip" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "e8235d5a0ac7288b08091b789c8ed97b", "sha256": "dd7f2d505ac65a868b5bdd4581805dfc5387d25d19facefd61db9035d7ec24db" }, "downloads": -1, "filename": "xbob.buildout-0.4.3.zip", "has_sig": false, "md5_digest": "e8235d5a0ac7288b08091b789c8ed97b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31885, "upload_time": "2014-03-21T13:06:03", "url": "https://files.pythonhosted.org/packages/2b/3f/58f6de9fb664f8364caed9e0df8ca180b4148909b8b68e31a8a2704b5c01/xbob.buildout-0.4.3.zip" } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "4e00d2604b1b30e93dec7e309f5eaacd", "sha256": "83a46feda0b7c9ac83a546351d5e770b388ee6bf4b4e4883a35e0d411041a387" }, "downloads": -1, "filename": "xbob.buildout-0.4.4.zip", "has_sig": false, "md5_digest": "4e00d2604b1b30e93dec7e309f5eaacd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32031, "upload_time": "2014-03-21T14:13:29", "url": "https://files.pythonhosted.org/packages/ce/6c/4524f8f8554edf150a6b0c1fb79ffc217dc40dfc3e76ac6a179a898d8e21/xbob.buildout-0.4.4.zip" } ], "0.4.5": [ { "comment_text": "", "digests": { "md5": "a6bf0482cd478cee74391a270685f156", "sha256": "53eaa88b35f10e9c10f8873b99e25eec415e9c65d2d544219383219284b453f3" }, "downloads": -1, "filename": "xbob.buildout-0.4.5.zip", "has_sig": false, "md5_digest": "a6bf0482cd478cee74391a270685f156", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32116, "upload_time": "2014-03-24T16:14:42", "url": "https://files.pythonhosted.org/packages/71/35/3c9b8ae4b59fb4e57d8402a3e309f451afaebf98fd090a6f9c5fd301d20d/xbob.buildout-0.4.5.zip" } ], "0.4.6": [ { "comment_text": "", "digests": { "md5": "8f22f7928c41e59804bf71d8b79f4c3b", "sha256": "1ed5bb14911bc52eff1fe6a7b49bad9155e76e3f53d94a44e6e0f29d2ce77a7c" }, "downloads": -1, "filename": "xbob.buildout-0.4.6.zip", "has_sig": false, "md5_digest": "8f22f7928c41e59804bf71d8b79f4c3b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32692, "upload_time": "2014-03-24T17:57:42", "url": "https://files.pythonhosted.org/packages/ff/20/93a455a795acb54c6f0e67e639cba16c2a0ec8625c3c3cda6e154e917253/xbob.buildout-0.4.6.zip" } ], "0.4.7": [ { "comment_text": "", "digests": { "md5": "18d8518041a0d5e62674d5a81fa7bb6d", "sha256": "c7c54378a5486eb63ecfe6b0ecce397ca62e01bd42eef16d2715e19d5321b946" }, "downloads": -1, "filename": "xbob.buildout-0.4.7.zip", "has_sig": false, "md5_digest": "18d8518041a0d5e62674d5a81fa7bb6d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32752, "upload_time": "2014-04-02T14:22:22", "url": "https://files.pythonhosted.org/packages/a0/c4/caceb1df667b94d5fe7bcba6cce9d058fc47ac6adead83da280e4a7e182b/xbob.buildout-0.4.7.zip" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "9da617326ab8aa5e4da4c2ed7ec91df4", "sha256": "e3c6574e80cafded4b3eac30aaa692077d1f59f633ee1bfe370a5ddde4695dc8" }, "downloads": -1, "filename": "xbob.buildout-1.0.0.zip", "has_sig": false, "md5_digest": "9da617326ab8aa5e4da4c2ed7ec91df4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33476, "upload_time": "2015-01-30T13:43:47", "url": "https://files.pythonhosted.org/packages/6d/a4/fb7cbd9e51862364fb3ec1c6bfd630d65d7eeb26b7cf7015a0fdc75d29d8/xbob.buildout-1.0.0.zip" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "fd21ec2e5726a9f32c2c177712a72c45", "sha256": "c60bd7c2979a05cc4f22531f411023430846326dd3f8598342c70f56d6452514" }, "downloads": -1, "filename": "xbob.buildout-1.0.1.zip", "has_sig": false, "md5_digest": "fd21ec2e5726a9f32c2c177712a72c45", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33501, "upload_time": "2015-02-05T10:39:37", "url": "https://files.pythonhosted.org/packages/99/34/55ad2ad6eade75955311f1f54750df8019875f6ba574d6245bc71a5663d7/xbob.buildout-1.0.1.zip" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "2ec6e85b37c9ad50d89d27dc3368c705", "sha256": "5719846768ace26441091c6097872e12d6464962e7f66ce2e073bc68f37f0f73" }, "downloads": -1, "filename": "xbob.buildout-1.0.2.zip", "has_sig": false, "md5_digest": "2ec6e85b37c9ad50d89d27dc3368c705", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33533, "upload_time": "2015-02-06T18:20:17", "url": "https://files.pythonhosted.org/packages/86/b4/bb530a00c21f9f4005eb41a8a08861cc10b2c603471da5abe4a231cfb9f4/xbob.buildout-1.0.2.zip" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "4efa00d20c26fc6a94dc951b526b3f51", "sha256": "26a3e9e198a73cb78d5e1f65afb7ff8cfdb828be63bfb84b3142854bedf57ca4" }, "downloads": -1, "filename": "xbob.buildout-1.0.3.zip", "has_sig": false, "md5_digest": "4efa00d20c26fc6a94dc951b526b3f51", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33532, "upload_time": "2015-02-25T08:35:01", "url": "https://files.pythonhosted.org/packages/a3/5e/01c0312fb148f9539f0a0e725fccd3d3e0c8e5e24ebe4b4c81f696157352/xbob.buildout-1.0.3.zip" } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "9ac00367caea7ee9aaade36414c6dc20", "sha256": "5dc478fe86b33e35a6ddbef586c05bc837cc48bf9b3d383f869d7a7833f7d0a6" }, "downloads": -1, "filename": "xbob.buildout-1.0.4.zip", "has_sig": false, "md5_digest": "9ac00367caea7ee9aaade36414c6dc20", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33540, "upload_time": "2015-09-24T10:12:18", "url": "https://files.pythonhosted.org/packages/b0/c7/f38f276d0e6b55802b6a280c83c6543969f543f9f93c7aa6224885d4d446/xbob.buildout-1.0.4.zip" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "9ac00367caea7ee9aaade36414c6dc20", "sha256": "5dc478fe86b33e35a6ddbef586c05bc837cc48bf9b3d383f869d7a7833f7d0a6" }, "downloads": -1, "filename": "xbob.buildout-1.0.4.zip", "has_sig": false, "md5_digest": "9ac00367caea7ee9aaade36414c6dc20", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33540, "upload_time": "2015-09-24T10:12:18", "url": "https://files.pythonhosted.org/packages/b0/c7/f38f276d0e6b55802b6a280c83c6543969f543f9f93c7aa6224885d4d446/xbob.buildout-1.0.4.zip" } ] }