{ "info": { "author": "Balazs Ree", "author_email": "ree@greenfinity.hu", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "Programming Language :: Python", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "==============================\ngf.recipe.bzr buildout recipee\n==============================\n\nThis recipe can be used to get development checkouts from Bazaar repositories\nfor zc.buildout.\n\n**IMPORTANT COMPATIBILITY CHANGE: SEE BELOW**\n\nDocumentation\n=============\n\nGoals\n-----\n\n- Allow fetching eggs directly from bzr repositories.\n\n- The specified repositories are branched locally on the first buildout run. It\n is possible to use these local branches for development and make local\n changes. The local changes can be committed locally, and can be pushed back\n to the remote repository or to any other location.\n\n- When buildout is run again, the branches are updated (pulled) automatically\n from the remote location. If pulling causes conflicts, buildout continues\n gracefully, but it gives an error message to notify the user about the problem.\n The parent branch (pull) location remembered by bazaar will be\n used for pulling, so it is possible to change this any time from bzr, and\n the recipe will use the new location from that point on.\n\n- Local changes can be pushed back manually to the remote branches. This is\n not enforced and is in the responsibility of the user. The recipe does not\n do any checks at uninstall time, neither does it remove the local branches.\n Please note however that your changes will not propagate upstream, unless\n you do the necessary push.\n\n- Parameters are similar to those used with \"infrae.subversion\" and also\n compatible with the \"bazaarrecipe\" package.\n\n- With bzr-svn, the remote branch can also be an svn branch. So it actually can\n be used to branch off native svn repository branches as well (although,\n performance of updates will depend on bzr-svn's performance,\n thus infrae.subversion may provide faster operation for svn.)\n\n\nCompatibility changes\n---------------------\n\nThe default recipe is now doing a relaxed repository checkup, compared\nto the recent versions. This is described in the goals. Important\nchanges from recent versions:\n\n- On update, if \"pull\" is unsuccesful, the recipe will give an error with the\n bzr command output, but it will not cause buildout to stop with an error.\n The developer needs to look at this output to realize that the update has\n not taken place.\n\n- There is no uninstall any more. The developer is no more enforced to commit\n and push her changes. Note that the branch will never be removed, thus\n the developer won't loose local changes in any way, unless she willingly\n deletes the branch.\n\n**The old behaviour is still available, in the \"strict\" recipe**::\n\n [bzr]\n recipe = gf.recipe.bzr:strict\n ...\n\nIf you find problems using the recipe after an upgrade, please try to use\nthe \"strict\" recipe.\n\n\nUsage\n-----\n\nUsage example::\n\n [bzr]\n recipe = gf.recipe.bzr\n urls =\n http://bazaar.launchpad.net/~kissbooth/kss.plugin.sdnd/trunk kss.plugin.sdnd\n http://bazaar.launchpad.net/~kissbooth/kss.plugin.livesearch/trunk kss.plugin.livesearch\n in_parts = False\n http_authentication = username:password\n\nThis will ``bzr get`` the branches to ``bzr/kss.plugin.sdnd`` and\n``bzr/kss.plugin.livesearch``. Branches are pulled if buildout is called.\n\nNo directories are really removed on uninstall, this has the consequence that\nif the buildout configuration is changed, the local repositories will not\nfollow the new pull location, but instead will continue using the pull location\nknown by bzr.\n\nThe ``in_parts`` option\n\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\n\n``in_parts`` is by default false, which means the directory that holds the branches\nis created in the buildout root. This is the default mode as it is handy for\ndevelopment. If ``in_parts = True`` is specified, then the directory will be\ncreated in the parts directory (compatible with infrae.subversion).\n\nThe ``http_authentication`` option\n\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\n\nIf ``http authentication`` is specified as ``username:password``, it will be used for\nauthenticating into http and https realms. This is rarely needed as ssh offers\na more comfortable repository access, but it allows password protected http\naccess that would not be easy (or possible at all) otherwise.\n\nThe option is inactive with ``bzr+ssh://`` repository urls.\n\nThe ``develop`` option\n\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\n\nThe branches fetched by the recipe are also installed as development eggs, by\ndefault. The ``develop = False`` option can be used to force the recipe not to\ndevelop the eggs. This can be useful, for example, to use buildout to update\nlocal read-only bazaar mirrors of an svn repository::\n\n [kukit.js]\n recipe = gf.recipe.bzr\n urls=\n https://codespeak.net/svn/kukit/kukit.js/trunk trunk\n https://codespeak.net/svn/kukit/kukit.js/branch/1.2 1.2\n https://codespeak.net/svn/kukit/kukit.js/branch/1.4 1.4\n develop = False\n\n [kss.demo]\n recipe = gf.recipe.bzr\n urls=\n https://codespeak.net/svn/kukit/kss.demo/trunk trunk\n https://codespeak.net/svn/kukit/kss.demo/branch/1.2 1.2\n https://codespeak.net/svn/kukit/kss.demo/branch/1.4 1.4\n develop = False\n\n\nOther configuration needed\n--------------------------\n\nIn addition you also need to include the eggs you configured with the recipe,\nin the buildout section::\n\n [buildout]\n ...\n eggs =\n ...\n kss.plugin.sdnd\n kss.plugin.livesearch\n\n\n\nRecent changes\n==========================\nChangelog for gf.recipe.bzr\n\n (name of developer listed in brackets)\n\ngf.recipe.bzr - 1.0rc8 Released 2009-07-31\n\n - Fix uninstall recipe by making it ignore '.bzr' and other\n directories starting with '.'.\n [sidnei]\n\ngf.recipe.bzr - 1.0rc7 Released 2009-07-31\n\n - Cleaned up options handling (true vs True, etc).\n [sidnei]\n\n - Cleaned up the 'strict' recipe to reuse most of the 'default'\n recipe where possible, avoiding duplication.\n [sidnei]\n\n - Only update checkouts if buildout is in 'newest' mode.\n [sidnei]\n\ngf.recipe.bzr - 1.0rc6 Released 2009-07-14\n\n - Fixed Python 2.4 compatibility\n [ree]\n\n - Add 'destination' option to use an arbitrary branch\n directory instead of the location relative to the\n buildout root (depending on the value of 'in_parts')\n [therve]\n\ngf.recipe.bzr - 1.0rc5 Released 2009-06-22\n\n - release candidate rc4 skipped\n [ree]\n\ngf.recipe.bzr - 1.0rc4 Unreleased\n\n - Add support for specifying 'shared-repo' and 'format', which is\n useful for branching inside a bzr branch and making it fast for\n subsequent large branches from the same repo, or 'rich-root'\n branches inside non-rich-root branches.\n [sidnei]\n\n - Use 'shell=true' to subprocess and then call just 'bzr' instead\n of 'bzr.bat'. The shell will figure out the extension for us.\n [sidnei]\n\n - Allow specifying a revisionspec for a branch in the url, using\n '@', just like in subversion.\n [sidnei]\n\ngf.recipe.bzr - 1.0rc3 Released 2009-04-21\n\n - Fix a missing call to BZR that caused a breakage\n on Windows\n [ree]\n\ngf.recipe.bzr - 1.0rc2 Released 2009-04-19\n\n - Change the working directory to the buildout root before\n get, to avoid possible errors when the current working \n directory is inside a bazaar working tree.\n [ree]\n\ngf.recipe.bzr - 1.0rc1 Released 2009-04-12\n\n - **COMPATIBILITY CHANGE**. The recipe is changed\n to do much more relaxed checking. The original recipe\n is available as #strict, in an unchanged form.\n [ree]\n\n - Handle offline mode more correctly.\n Offline mode is still not detected during uninstalls,\n but it's handled correctly on updates.\n [Vladimir Iliev , ree]\n\n - Fix it to run on Windows\n [Vladimir Iliev ]\n\n - Fix the url matching scheme for manually adding passwords\n via the http_authentication parameter\n [Vladimir Iliev ]\n\n - Add \"develop\" option\n [ree]\n\n - Fix usage of \"--remember\" for pull locations\n at initial checkout.\n [ree]\n\n - Properly fix updates, and uninstall checks.\n Uninstall forces to push all pending changes,\n but still does not physically delete directories.\n [ree]\n\n - Initial package structure.\n [ree]\n\n\nDownload\n==========================", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://launchpad.net/gf.recipe.bzr", "keywords": "", "license": "GPL", "maintainer": null, "maintainer_email": null, "name": "gf.recipe.bzr", "package_url": "https://pypi.org/project/gf.recipe.bzr/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/gf.recipe.bzr/", "project_urls": { "Download": "UNKNOWN", "Homepage": "http://launchpad.net/gf.recipe.bzr" }, "release_url": "https://pypi.org/project/gf.recipe.bzr/1.0rc8/", "requires_dist": null, "requires_python": null, "summary": "Buildout recipe to download bazaar branches", "version": "1.0rc8" }, "last_serial": 792394, "releases": { "1.0dev-20080117": [ { "comment_text": "", "digests": { "md5": "13dee6ce3dd21e7b895b123459c18b6a", "sha256": "0279d77ce58afbd91eeefe789f439126693946f2f34748b5ecce13ca5727aa9b" }, "downloads": -1, "filename": "gf.recipe.bzr-1.0dev_20080117-py2.4.egg", "has_sig": false, "md5_digest": "13dee6ce3dd21e7b895b123459c18b6a", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 11002, "upload_time": "2008-02-04T20:14:09", "url": "https://files.pythonhosted.org/packages/f6/dd/0282587efe76778c11650e2979e0824503d3ef48d2c66d8d0fda9fb47d64/gf.recipe.bzr-1.0dev_20080117-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "371b5734948d6f4f197115fa71bde23b", "sha256": "d759908c5bb9156a576561a51f7b620179375375be4ba79aea91fdaef6ded5ea" }, "downloads": -1, "filename": "gf.recipe.bzr-1.0dev-20080117.tar.gz", "has_sig": false, "md5_digest": "371b5734948d6f4f197115fa71bde23b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11583, "upload_time": "2008-02-04T20:14:08", "url": "https://files.pythonhosted.org/packages/06/09/d874ac2b1f7c76250466d884d2a51b728589afe3719b38583e785422ba64/gf.recipe.bzr-1.0dev-20080117.tar.gz" } ], "1.0dev-20080803": [ { "comment_text": "", "digests": { "md5": "6f6f700627359b48fc1f8d39baf7f218", "sha256": "3b1aec77acd6196df1b56affac64e3245513bf7b407e0968482584a274858e44" }, "downloads": -1, "filename": "gf.recipe.bzr-1.0dev_20080803-py2.4.egg", "has_sig": false, "md5_digest": "6f6f700627359b48fc1f8d39baf7f218", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 12396, "upload_time": "2008-08-03T14:29:42", "url": "https://files.pythonhosted.org/packages/1f/f2/e0e286c325cea896a5de1a477427c2dc06dc850554424904dc12f2928e2f/gf.recipe.bzr-1.0dev_20080803-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "2a8c55b39e6a9f30aa1786843ed0e1d4", "sha256": "b17c652e77d819b916d307852a23773b821bd93e08b2fad5931745fba90abcde" }, "downloads": -1, "filename": "gf.recipe.bzr-1.0dev-20080803.tar.gz", "has_sig": false, "md5_digest": "2a8c55b39e6a9f30aa1786843ed0e1d4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12716, "upload_time": "2008-08-03T14:29:42", "url": "https://files.pythonhosted.org/packages/6d/1f/0c357e0e3b0285d66c0f7cdd57e684bd94d596b66b48b55a6ae76111d093/gf.recipe.bzr-1.0dev-20080803.tar.gz" } ], "1.0dev-20081125": [ { "comment_text": "", "digests": { "md5": "c03e94f32f229824a0c961739980a5ad", "sha256": "5e94fc3b8fced889b785b4efc716f52825101f3bb0718c47b8189a047303bab2" }, "downloads": -1, "filename": "gf.recipe.bzr-1.0dev_20081125-py2.4.egg", "has_sig": false, "md5_digest": "c03e94f32f229824a0c961739980a5ad", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 12385, "upload_time": "2008-11-25T14:53:39", "url": "https://files.pythonhosted.org/packages/86/cb/5097ab1a34bbcbc524f39e73664ef8f2ee24589c553cb96190a14de7085d/gf.recipe.bzr-1.0dev_20081125-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "62ff64fdf6a8dd87b5bedb600b705fbb", "sha256": "93f69726f126839d8250390db6015be421f9a4bf7c27149d5f4fa70359a68d26" }, "downloads": -1, "filename": "gf.recipe.bzr-1.0dev-20081125.tar.gz", "has_sig": false, "md5_digest": "62ff64fdf6a8dd87b5bedb600b705fbb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12691, "upload_time": "2008-11-25T14:53:39", "url": "https://files.pythonhosted.org/packages/bd/3e/ce847b6ea2171ee95df665be0c6b4eaacf0424d1df0131d8c3a2e674cfd3/gf.recipe.bzr-1.0dev-20081125.tar.gz" } ], "1.0dev-20090103": [ { "comment_text": "", "digests": { "md5": "eff886ec440524e44d8a0918555a6d95", "sha256": "bd83cc4ec0860b2c965f7280d26869449ed0db42a42327da32725a7677742785" }, "downloads": -1, "filename": "gf.recipe.bzr-1.0dev_20090103-py2.4.egg", "has_sig": false, "md5_digest": "eff886ec440524e44d8a0918555a6d95", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 12480, "upload_time": "2009-01-03T15:49:50", "url": "https://files.pythonhosted.org/packages/46/2b/eac60be252d5a388f1401e5952e8186fbfeb6df7889460f0a1c15474ccf8/gf.recipe.bzr-1.0dev_20090103-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "f64756cb30e97d51f8a3397622dd061c", "sha256": "b88ecd173f9d8d770641326fc01aaf23c460fd302dd887592e29ad04886ab425" }, "downloads": -1, "filename": "gf.recipe.bzr-1.0dev_20090103-py2.5.egg", "has_sig": false, "md5_digest": "f64756cb30e97d51f8a3397622dd061c", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 12387, "upload_time": "2009-01-03T15:50:06", "url": "https://files.pythonhosted.org/packages/5e/b3/2dd4e09d282736ee062aa346072f40487042bfed2548a947419e00a571f5/gf.recipe.bzr-1.0dev_20090103-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "6d75c2337229e1f9171c3798fe0fcadd", "sha256": "928e831447c1e8531d912e8b9c546a6ce9e18e81eb375624df924e2e8ac7c227" }, "downloads": -1, "filename": "gf.recipe.bzr-1.0dev-20090103.tar.gz", "has_sig": false, "md5_digest": "6d75c2337229e1f9171c3798fe0fcadd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12773, "upload_time": "2009-01-03T15:49:50", "url": "https://files.pythonhosted.org/packages/91/fc/678dd4e7ed5628b64453797a69163227967d0751db51af188a8fa402655c/gf.recipe.bzr-1.0dev-20090103.tar.gz" } ], "1.0dev-20090411": [ { "comment_text": "", "digests": { "md5": "5cc4ce6ff67f6820bfd4d114dbccf142", "sha256": "b692c323c0d1bb8c7722022f17c22d50e6fe2ec4ff10a94a79d12551cad26fc8" }, "downloads": -1, "filename": "gf.recipe.bzr-1.0dev-20090411.tar.gz", "has_sig": false, "md5_digest": "5cc4ce6ff67f6820bfd4d114dbccf142", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13807, "upload_time": "2009-04-11T08:53:32", "url": "https://files.pythonhosted.org/packages/2e/fd/5345deb397eb98d1aa10cdaa3d80ae241433fa9a01f5437216e9140faa46/gf.recipe.bzr-1.0dev-20090411.tar.gz" } ], "1.0dev-20090411b": [ { "comment_text": "", "digests": { "md5": "b2827b91d90bbbbe5b7a25c66a17b11a", "sha256": "b413103ab8a5495b11af517bf5e2de9320229b4973b484c2652a16edb0d17c30" }, "downloads": -1, "filename": "gf.recipe.bzr-1.0dev-20090411b.tar.gz", "has_sig": false, "md5_digest": "b2827b91d90bbbbe5b7a25c66a17b11a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13796, "upload_time": "2009-04-11T16:54:55", "url": "https://files.pythonhosted.org/packages/1c/03/d0197ce257899904d0d9e976563150735d86cd2280d10d4051b508da2636/gf.recipe.bzr-1.0dev-20090411b.tar.gz" } ], "1.0rc1": [ { "comment_text": "", "digests": { "md5": "3d227cff57d362d83beaa322e6f04c5f", "sha256": "6266c11c66cbafc685e1fa2e9bbcb3c00c1761536643a5f27a0be20fe6263dcb" }, "downloads": -1, "filename": "gf.recipe.bzr-1.0rc1.tar.gz", "has_sig": false, "md5_digest": "3d227cff57d362d83beaa322e6f04c5f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13793, "upload_time": "2009-04-12T09:52:23", "url": "https://files.pythonhosted.org/packages/1c/1b/6bafe0248398d9e4d8ba31f3ca267d3242eb445c694ade54135b44e810cf/gf.recipe.bzr-1.0rc1.tar.gz" } ], "1.0rc2": [ { "comment_text": "", "digests": { "md5": "44b0c293b47773b8076979fa64d899da", "sha256": "e7f8f070f9bdcbe3e6253d0e3bb7ae745497001f6924abe5498ed69f064b2314" }, "downloads": -1, "filename": "gf.recipe.bzr-1.0rc2.tar.gz", "has_sig": false, "md5_digest": "44b0c293b47773b8076979fa64d899da", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14055, "upload_time": "2009-04-19T10:50:46", "url": "https://files.pythonhosted.org/packages/fb/16/27702eff6750f1a2ac56b7994c373faa4432f189771f178b12da96044e21/gf.recipe.bzr-1.0rc2.tar.gz" } ], "1.0rc3": [ { "comment_text": "", "digests": { "md5": "d21f7df9ddd677765e19930afbbc8e1f", "sha256": "fb5b65f2fc95eb69ef39003ebc22f8e5d967758ee47309a1310583c4d6cad7bc" }, "downloads": -1, "filename": "gf.recipe.bzr-1.0rc3.tar.gz", "has_sig": false, "md5_digest": "d21f7df9ddd677765e19930afbbc8e1f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14139, "upload_time": "2009-04-21T08:00:55", "url": "https://files.pythonhosted.org/packages/58/20/49b58145ad390efdc7af1a9d2de8b3d612ef8a56cb333336d26ab1ded908/gf.recipe.bzr-1.0rc3.tar.gz" } ], "1.0rc4": [ { "comment_text": "", "digests": { "md5": "c951f24abc252b9b2500a75dbe32299d", "sha256": "c84483be7e720abad5cad2cab76218a2a449799453d902b35b97a654c70e2729" }, "downloads": -1, "filename": "gf.recipe.bzr-1.0rc4.tar.gz", "has_sig": false, "md5_digest": "c951f24abc252b9b2500a75dbe32299d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14227, "upload_time": "2009-04-24T08:01:30", "url": "https://files.pythonhosted.org/packages/73/44/1c8139316f137f8ffcffcdabdff273a6f6ebc00d537469486995de5e5565/gf.recipe.bzr-1.0rc4.tar.gz" } ], "1.0rc5": [ { "comment_text": "", "digests": { "md5": "56f29890981b54a7ded24174480751c5", "sha256": "7f5a61fa590aedd3a19207239553589ec692b6e0fd5e05ea613966cbeb47f1ce" }, "downloads": -1, "filename": "gf.recipe.bzr-1.0rc5.tar.gz", "has_sig": false, "md5_digest": "56f29890981b54a7ded24174480751c5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15042, "upload_time": "2009-06-22T19:43:32", "url": "https://files.pythonhosted.org/packages/8d/10/3c16dcbff6ae2f205023a42bdde309a0a6c26f10ac470a14ded1b6850d00/gf.recipe.bzr-1.0rc5.tar.gz" } ], "1.0rc6": [ { "comment_text": "", "digests": { "md5": "659ad28d8bdea25087d18c007c221de1", "sha256": "816a13186d14df418610cf633e91f348b1a5379bf918e14b24e7d0056a8415e3" }, "downloads": -1, "filename": "gf.recipe.bzr-1.0rc6.tar.gz", "has_sig": false, "md5_digest": "659ad28d8bdea25087d18c007c221de1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15381, "upload_time": "2009-07-14T10:50:55", "url": "https://files.pythonhosted.org/packages/d5/04/134e3a8266b099b9c9e9ddbf3e9a55d232695d844a872ce864f94a0d083e/gf.recipe.bzr-1.0rc6.tar.gz" } ], "1.0rc7": [ { "comment_text": "", "digests": { "md5": "694c4c87f9252797fff57489f199d59d", "sha256": "025c5c1baed7fa0baac68fc278824c2697d35f31e0713e7b915877744f9254ce" }, "downloads": -1, "filename": "gf.recipe.bzr-1.0rc7.tar.gz", "has_sig": false, "md5_digest": "694c4c87f9252797fff57489f199d59d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16022, "upload_time": "2009-07-31T23:28:52", "url": "https://files.pythonhosted.org/packages/82/0a/bc015db892bbfe2d3062234f866a18ebc568a135c81f666dca6f7eb3f9c3/gf.recipe.bzr-1.0rc7.tar.gz" } ], "1.0rc8": [ { "comment_text": "", "digests": { "md5": "90434b679585d568f7dd78d51c512a6c", "sha256": "0e2df1a21e50c1914fd7e7135c3bb0aa29476123ce2054be4da9c9410b62be5f" }, "downloads": -1, "filename": "gf.recipe.bzr-1.0rc8.tar.gz", "has_sig": false, "md5_digest": "90434b679585d568f7dd78d51c512a6c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16243, "upload_time": "2009-08-01T00:32:19", "url": "https://files.pythonhosted.org/packages/4f/ae/51155c0d365f62e069964096268048b5ec0899d8e3fca59ae5bcff5d9bbc/gf.recipe.bzr-1.0rc8.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "90434b679585d568f7dd78d51c512a6c", "sha256": "0e2df1a21e50c1914fd7e7135c3bb0aa29476123ce2054be4da9c9410b62be5f" }, "downloads": -1, "filename": "gf.recipe.bzr-1.0rc8.tar.gz", "has_sig": false, "md5_digest": "90434b679585d568f7dd78d51c512a6c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16243, "upload_time": "2009-08-01T00:32:19", "url": "https://files.pythonhosted.org/packages/4f/ae/51155c0d365f62e069964096268048b5ec0899d8e3fca59ae5bcff5d9bbc/gf.recipe.bzr-1.0rc8.tar.gz" } ] }