{ "info": { "author": "Eric Casteleijn, Guido Wesdorp, Daniel Nouri, Sylvain Viollon and Reinout van Rees", "author_email": "info@infrae.com", "bugtrack_url": null, "classifiers": [ "Framework :: Buildout", "License :: OSI Approved :: Zope Public License", "Topic :: Software Development :: Version Control" ], "description": "infrae.subversion\n=================\n\nThis zc.buildout recipe will check out a *number* of URLs into its\nparts directory. It won't remove its parts directory if there are any\nchanges in the checkout, so it's safe to work with that checkout for\ndevelopment.\n\nThis is an example buildout part that uses this recipe::\n\n [development-products]\n recipe = infrae.subversion\n urls =\n https://svn.plone.org/svn/collective/PDBDebugMode/trunk PDBDebugMode\n\nThis will maintain a working copy of ``PDBDebugMode`` in the\n``parts/development-products/PDBDebugMode`` directory (*not* in the\nparts directory itself). Thus, the recipe handles multiple URLs fine.\n\nYou can select a different location with ``location``, for instance::\n\n location = src\n\nWill extract ``PDBDebugMode`` in ``src/PDBDebugMode`` instead of\n``parts``.\n\nIf you have ``pysvn`` installed on the computer, it will be used. This\nimplies better performances.\n\nUpdate\n------\n\nBy default, when buildout update the part, an ``svn up`` is done for\neach link. However, when a revision number is specified like this::\n\n https://svn.infrae.com/buildout/infrae.subversion/trunk@27829\n\nThe SVN link is skipped for update. If you want to prevent update for\nall SVN link of the part even if they do not contain revision number,\nyou can add the following option::\n\n ignore_updates = true\n\nExport\n------\n\nWith ``pysvn`` installed, you can specify::\n\n export = true\n\nin your buildout part to get an SVN export instead of an SVN checkout.\n\nVerification\n------------\n\nBy default, your checkout are checked against local modification\nbefore any uninstallation step. This can take time on large checkouts,\nand you may don't want it in some case (like when used on buildbot for\ninstance). To prevent this step, you can use this option::\n\n ignore_verification = true\n\nAs well, when the recipe update it can emit some warnings because a\ndirectory have been removed. You can suppress that warning with::\n\n no_warnings = true\n\nThe verification will still be done, and the directory will be checked\nout again to replace the missing one.\n\nEggs\n----\n\nIf you set the option ``as_eggs`` in your configuration file,\ncheckouted URLs will be registered as development eggs in your\nbuildout. This only work for non-recipe development eggs.\n\n.. warning:: If you add a new egg, this will trigger a new\n uninstall-reinstall cycle. You may want to use that option to setup\n eggs coming from SVN for production, but not for development.\n\nExported Variables\n------------------\n\nIf you set::\n\n export_info = true\n\nTwo variables will be exported by this recipe:\n\n- ``revisions`` which gives for each URL the corresponding revision\n number,\n\n- ``updated`` which gives a list of URLs which have been updated with\n new code.\n\nSince values to these variables changes each time you run buildout\n(revision number changes), this trigger an uninstall/reinstall of the\npart. We recommand to activate it only if you need it.\n\nIs always exported a variable ``location`` to say where are done the\ncheckouts, and a variable ``eggs`` which contains a list of\ncheckouted eggs.\n\nSample\n------\n\nFor an example buildout that uses this recipe, please see the `Silva\nbuildout `_.\n\nAs well, the `doctest file\n`_\ncan provide more sample.\n\nLatest version\n--------------\n\nThe latest version is available in a `Subversion repository\n`_.\n\n\nChanges\n-------\n\n1.4.5 (2009-01-29)\n~~~~~~~~~~~~~~~~~~\n\n- Fix an error when some path have been added to the checkout\n path. [eric]\n\n- Still eggify and export information on update when running as\n non-newest mode. [sylvain]\n\n1.4.4 (2009-01-28)\n~~~~~~~~~~~~~~~~~~\n\n- Add a ``no_warnings`` options which remove some warnings when\n updating a part. [sylvain]\n\n1.4.3 (2009-01-21)\n~~~~~~~~~~~~~~~~~~\n\n- Add a login callback for people using PySVN. This let users\n authenticate to an unauthorized svn. Thanks to Martin Stadler\n (martin at siarp.de) for this fix. [sylvain]\n\n1.4.2 (2009-01-05)\n~~~~~~~~~~~~~~~~~~\n\n- Automatically ignore ``.pyc`` and ``.pyo`` files while checking for\n modified/added/removed files. [sylvain]\n\n- Fix bug so ``.svn`` directory is really ignored when checking for\n added paths in the checkout directory. [sylvain]\n\n1.4.1 (2008-10-31)\n~~~~~~~~~~~~~~~~~~\n\nBug fix:\n\n- Correct typo in README.txt. [sylvain]\n\n- Ignore ``.svn`` directory when checking for added ones at\n uninstall. [sylvain]\n\n1.4 (2008-10-31)\n~~~~~~~~~~~~~~~~\n\nNew features:\n\n- Added ``location`` option that allows you to override the default\n /parts/partname location. [reinout]\n\n- Added ``as_eggs`` option that installs the checkouts as development\n eggs. [reinout]\n\nBug fix:\n\n- Don't export revisions information if you're offline with Py. Py\n tries to connect to the SVN repository to do a 'svn info'. [sylvain]\n\n1.3.1\n~~~~~\n\nBug fix:\n\n- don't try to collect export information if you have a svn\n export. [sylvain]\n\n- path were exported instead of URLs in the Native\n implementation. [sylvain]\n\n1.3\n~~~\n\n- Remove the restriction to py 0.9.0, now that py 0.9.2 is out and fix\n problems on svn status with strange userid. [sylvain]\n\n- Correct an error rendering. [sylvain]\n\n- Export information only for top level svn URLs in the native\n implementation, this used to inject information from svn:externals\n links included in URL list. [sylvain]\n\n- Add tests for export information feature. [tlotze]\n\n- Correct URL in setup.py [sylvain].\n\n1.2\n~~~\n\n- Refactor code, performances should be better at uninstall with Py\n implementation [sylvain].\n\n- Look for the environment variable ``INFRAE_SUBVERSION_IMPL`` to\n select which implementation to use. Possible values are ``PYSVN``\n (default) and ``PY`` [sylvain].\n\n- Uninstall only look at directory which have been created by the\n recipe in the part. Other are just reported [sylvain].\n\n- Export two new variables, if ``export_info`` is set to true:\n\n ``revisions``\n\n Which is lines formatted::\n\n link current_revision\n\n ``updated``\n\n Which is lines containing updated links.\n\n\n [sylvain].\n\n1.1\n~~~\n\n- Add the ``ignore_verification`` option [sylvain].\n\n1.0\n~~~\n\n- Base version of the recipe.", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://svn.infrae.com/buildout/infrae.subversion/trunk/", "keywords": "subversion buildout", "license": "ZPL 2.1", "maintainer": null, "maintainer_email": null, "name": "infrae.subversion", "package_url": "https://pypi.org/project/infrae.subversion/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/infrae.subversion/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://svn.infrae.com/buildout/infrae.subversion/trunk/" }, "release_url": "https://pypi.org/project/infrae.subversion/1.4.5/", "requires_dist": null, "requires_python": null, "summary": "Buildout recipe for checking out from subversion", "version": "1.4.5" }, "last_serial": 945368, "releases": { "1.0dev-r27844": [ { "comment_text": "", "digests": { "md5": "fb0b48de19d05d2cde5df7ac73281750", "sha256": "ae2a835af24d65836bac138c73760e577763745e421fcc0c05764b9da080725c" }, "downloads": -1, "filename": "infrae.subversion-1.0dev_r27844-py2.4.egg", "has_sig": false, "md5_digest": "fb0b48de19d05d2cde5df7ac73281750", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 18191, "upload_time": "2008-04-09T10:02:42", "url": "https://files.pythonhosted.org/packages/0e/8f/f92b8b9bf7c1650ed9b32ff8402b999054c432fe10ab55fb121bf66c104d/infrae.subversion-1.0dev_r27844-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "b56c174385921bbac4b5e701c77f0f02", "sha256": "3fae4092cb28cc154edc5d3c4be5e1a96513d573522c1a80ed9f6f403230be7f" }, "downloads": -1, "filename": "infrae.subversion-1.0dev-r27844.tar.gz", "has_sig": false, "md5_digest": "b56c174385921bbac4b5e701c77f0f02", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6098, "upload_time": "2008-04-09T10:02:50", "url": "https://files.pythonhosted.org/packages/88/73/2f9d9617c2d341ada554f0edf1b1fdfa0808036249d898cbd363dba4689b/infrae.subversion-1.0dev-r27844.tar.gz" } ], "1.0dev-r28201": [ { "comment_text": "", "digests": { "md5": "93d38add421fb2288d2072e488309412", "sha256": "5bcce331c9d89f4f08fab42ef686141edb7288b309e9031a1563e53204be528f" }, "downloads": -1, "filename": "infrae.subversion-1.0dev_r28201-py2.4.egg", "has_sig": false, "md5_digest": "93d38add421fb2288d2072e488309412", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 16607, "upload_time": "2008-04-03T10:13:10", "url": "https://files.pythonhosted.org/packages/91/74/3143ac44e1972f9e8e832538ab644ef39b67650921e02e7642cab815dfe6/infrae.subversion-1.0dev_r28201-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "9a211d543a4eadc8f05d1f888b465c88", "sha256": "25ada00dd3127e2bc72967a17d8b0b633c156917bf074b3bc6e75e1348657e3d" }, "downloads": -1, "filename": "infrae.subversion-1.0dev_r28201-py2.5.egg", "has_sig": false, "md5_digest": "9a211d543a4eadc8f05d1f888b465c88", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 16548, "upload_time": "2008-04-03T10:13:14", "url": "https://files.pythonhosted.org/packages/23/a5/b09e5116c6a5884a78cf9aaec74c6699c83986980bb734072ae49f719d4c/infrae.subversion-1.0dev_r28201-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "1184087bbcdc0db36c1dcf74a02c1722", "sha256": "c63edbce67b57022f57ab3ec3e39b2a984d582ed8eb7b8e73f8b5bbc13aa5a77" }, "downloads": -1, "filename": "infrae.subversion-1.0dev-r28201.tar.gz", "has_sig": false, "md5_digest": "1184087bbcdc0db36c1dcf74a02c1722", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7263, "upload_time": "2008-04-03T10:13:19", "url": "https://files.pythonhosted.org/packages/16/78/78f11bbac25e34ba4dce346c4d0e9358413900ac87589040047a119dcd09/infrae.subversion-1.0dev-r28201.tar.gz" } ], "1.1": [ { "comment_text": "", "digests": { "md5": "f7e424b5b6ff3c9de60595041556918f", "sha256": "8aceaf1fcadec095d00afaafc716b572057f4de253169ad1c1c3a55d79587d18" }, "downloads": -1, "filename": "infrae.subversion-1.1-py2.4.egg", "has_sig": false, "md5_digest": "f7e424b5b6ff3c9de60595041556918f", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 17158, "upload_time": "2008-06-19T15:33:56", "url": "https://files.pythonhosted.org/packages/b6/2f/b36ba2382e4d02b402170e6e3e3c2819dc0d219e07c762dce09c33706c28/infrae.subversion-1.1-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "fd7c790ae30c63d719282a71a60e4cb4", "sha256": "37faafa4006633acbd48fc4b63087b47afff97db8046e8efc13e4719b1856ebf" }, "downloads": -1, "filename": "infrae.subversion-1.1-py2.5.egg", "has_sig": false, "md5_digest": "fd7c790ae30c63d719282a71a60e4cb4", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 17094, "upload_time": "2008-06-19T15:34:01", "url": "https://files.pythonhosted.org/packages/7a/09/365216b1cd3692fb746e84ea8a59a416de587d8bc958440a77648f47819c/infrae.subversion-1.1-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "54cf8faa479de3ea464ddd4ef9437712", "sha256": "c3bbf8cda4d0d4f9596124679c7fb585e0db1b5b84a28e6c944d4badd72bf774" }, "downloads": -1, "filename": "infrae.subversion-1.1.tar.gz", "has_sig": false, "md5_digest": "54cf8faa479de3ea464ddd4ef9437712", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7831, "upload_time": "2008-06-19T15:34:08", "url": "https://files.pythonhosted.org/packages/b6/5d/b12d776b29ad02aeb3df867d90a07776ee95d57b6abdad44c42407869984/infrae.subversion-1.1.tar.gz" } ], "1.2": [ { "comment_text": "", "digests": { "md5": "01b722ea444020ea8f7808ad33e5d6e9", "sha256": "d310c6f1c3f8b0625695b92dc987f8f47095203bb186fcb0fcfb12ba0c4bdcb4" }, "downloads": -1, "filename": "infrae.subversion-1.2-py2.4.egg", "has_sig": false, "md5_digest": "01b722ea444020ea8f7808ad33e5d6e9", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 19861, "upload_time": "2008-08-01T13:00:03", "url": "https://files.pythonhosted.org/packages/9a/01/8c2b7ffc5c0d5cdc65034487231b329e0b9df17ea1d89453b02752249148/infrae.subversion-1.2-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "4689fb723cd01c1e851570bc2cacbf19", "sha256": "f7055b55f44257d15396569bbeaa8778d3a37d13880223ff5481d8b39b604fa4" }, "downloads": -1, "filename": "infrae.subversion-1.2-py2.5.egg", "has_sig": false, "md5_digest": "4689fb723cd01c1e851570bc2cacbf19", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 19737, "upload_time": "2008-08-01T13:00:08", "url": "https://files.pythonhosted.org/packages/55/99/f9922ddb4316529683f7fc3102c431c640285f3b6d26a40d629f0d563a3c/infrae.subversion-1.2-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "850653b44a27f8ab414e59e2df234a64", "sha256": "40b77b89b26023384cdc39e26ee6b15fa7928a14499c159be4eb12bd40c9267a" }, "downloads": -1, "filename": "infrae.subversion-1.2.tar.gz", "has_sig": false, "md5_digest": "850653b44a27f8ab414e59e2df234a64", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8842, "upload_time": "2008-08-01T13:00:16", "url": "https://files.pythonhosted.org/packages/53/bb/3fbd2dc5f12c4eb4bd1efea9174b1119255d6ecfbb38550ada0a606fc8f6/infrae.subversion-1.2.tar.gz" } ], "1.3": [ { "comment_text": "", "digests": { "md5": "5f79bb3988e0ded0820c16111cf842c7", "sha256": "3f614a7dce32ae50576f7464f017277a77e911583e280928c35162a140ff74d7" }, "downloads": -1, "filename": "infrae.subversion-1.3-py2.4.egg", "has_sig": false, "md5_digest": "5f79bb3988e0ded0820c16111cf842c7", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 20366, "upload_time": "2008-08-25T11:10:04", "url": "https://files.pythonhosted.org/packages/66/ae/d881cfb20d002c16a2c3f643bfb61b45331893497716d7f6d174db5b7f94/infrae.subversion-1.3-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "21af81bd60d631308177409b9f097e89", "sha256": "0658f428df1bf338c425e8cb390c1173ce017d776d935aaf92ee0df0ce4b9a9e" }, "downloads": -1, "filename": "infrae.subversion-1.3.tar.gz", "has_sig": false, "md5_digest": "21af81bd60d631308177409b9f097e89", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11352, "upload_time": "2008-08-25T11:09:17", "url": "https://files.pythonhosted.org/packages/3d/b7/36d3e370104a1110a5941a9b5aa233148c12425e7df1ec9ce59da0ecc3e2/infrae.subversion-1.3.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "97f84cd9f9a40587e1c64836c53b0c2f", "sha256": "414ba4eb7b81eaf8454797410ab9cfafbd07f43366b4498c1aed0d42bea3aef8" }, "downloads": -1, "filename": "infrae.subversion-1.3.1-py2.4.egg", "has_sig": false, "md5_digest": "97f84cd9f9a40587e1c64836c53b0c2f", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 20457, "upload_time": "2008-08-26T12:22:44", "url": "https://files.pythonhosted.org/packages/a1/a9/9244707eaa826c83697bee1005c2f64f1eb4f16d69228caba548be09d324/infrae.subversion-1.3.1-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "5dc9cb73347884dd94b9663d329f8bcf", "sha256": "74b10c19eb9089be1ac2c02ae8e9aa9b2f3e03652286ed2048c40056dfb0dbd3" }, "downloads": -1, "filename": "infrae.subversion-1.3.1-py2.5.egg", "has_sig": false, "md5_digest": "5dc9cb73347884dd94b9663d329f8bcf", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 20324, "upload_time": "2008-08-26T12:22:23", "url": "https://files.pythonhosted.org/packages/83/bc/cabf24e97d757af4eff38303374c06749d476de0aea06b4713f03e347bf8/infrae.subversion-1.3.1-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "d5cda7a0fc292577ea0b7d5d20bc36b2", "sha256": "0f8f22b0728cae7fc54f969d66695e52f691885e3341828f21e2d997a7618f09" }, "downloads": -1, "filename": "infrae.subversion-1.3.1.tar.gz", "has_sig": false, "md5_digest": "d5cda7a0fc292577ea0b7d5d20bc36b2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9850, "upload_time": "2008-08-26T12:22:29", "url": "https://files.pythonhosted.org/packages/c3/23/0b056468655bc9a80aca41c9f84f3423213a9f7b6099c9d09b4e28eb5533/infrae.subversion-1.3.1.tar.gz" } ], "1.4": [ { "comment_text": "", "digests": { "md5": "22a6064c39d9671c617d80fd16ecb425", "sha256": "5a6f78c9913cb5559bbc5f7fd2195872a84ea11175042cdc010505e0ce3d830a" }, "downloads": -1, "filename": "infrae.subversion-1.4-py2.4.egg", "has_sig": false, "md5_digest": "22a6064c39d9671c617d80fd16ecb425", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 22044, "upload_time": "2008-10-31T10:25:36", "url": "https://files.pythonhosted.org/packages/73/28/a6edd45ee6d51c2bcb34005cfdf3a627072b1b56a7a961cd6ed0b3143819/infrae.subversion-1.4-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "88331aebeba9c03a6c38924c1e4d7de3", "sha256": "57066ab567950151116672e521a617c031d9fd23246bdca84301cdbb4258b6d8" }, "downloads": -1, "filename": "infrae.subversion-1.4-py2.5.egg", "has_sig": false, "md5_digest": "88331aebeba9c03a6c38924c1e4d7de3", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 21884, "upload_time": "2008-10-31T10:25:40", "url": "https://files.pythonhosted.org/packages/83/84/0ce6a73011f3d1a71d1580e51992a66309514a4daa4cb76f2f4f955509a3/infrae.subversion-1.4-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "860e469dcead99396958d2a8eed74dc8", "sha256": "793758a36b1d29a4f4e339ca66927bdc4e130ce1f4c6380b482f6cd05414f087" }, "downloads": -1, "filename": "infrae.subversion-1.4.tar.gz", "has_sig": false, "md5_digest": "860e469dcead99396958d2a8eed74dc8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13521, "upload_time": "2008-10-31T10:24:33", "url": "https://files.pythonhosted.org/packages/3a/8c/9149f6382af0a8a67477fdb29b99d2b4f3c8a514c5c8934871a216056bf4/infrae.subversion-1.4.tar.gz" } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "cffd8080953cab17c15d8bfc249db28c", "sha256": "c007b7fc53ad6d1fd3ef972b1c2f7f827995c6ef73b36412069e7575b65fdc5c" }, "downloads": -1, "filename": "infrae.subversion-1.4.1-py2.4.egg", "has_sig": false, "md5_digest": "cffd8080953cab17c15d8bfc249db28c", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 22009, "upload_time": "2008-10-31T12:11:16", "url": "https://files.pythonhosted.org/packages/85/a8/0032849ff205da563950a7dcc1f666d9d5058a1f80399c20059f4dcb79c7/infrae.subversion-1.4.1-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "2a82ce44b0d71f2ee6b8b313785dffd9", "sha256": "37a673ef00b8bcc44149adac4e56ca95b5a3cb46b387a0b0ee9e7fe89f2bdbff" }, "downloads": -1, "filename": "infrae.subversion-1.4.1-py2.5.egg", "has_sig": false, "md5_digest": "2a82ce44b0d71f2ee6b8b313785dffd9", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 21837, "upload_time": "2008-10-31T12:11:20", "url": "https://files.pythonhosted.org/packages/2c/67/74fd6ce94cb0679fe0f78411e8261d5ed030f8dfa0f076df37c00581c824/infrae.subversion-1.4.1-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "72783fda003d426ce8e10dc8b2ef21f4", "sha256": "5e9fd836a36f740f9a3c53f5eb836000353b63172e4861786f27f979ae37d8bc" }, "downloads": -1, "filename": "infrae.subversion-1.4.1.tar.gz", "has_sig": false, "md5_digest": "72783fda003d426ce8e10dc8b2ef21f4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12140, "upload_time": "2008-10-31T12:10:43", "url": "https://files.pythonhosted.org/packages/9a/54/02f71183cd305159ecd02dd266b7941c4466f390f2e54333c60019e59d39/infrae.subversion-1.4.1.tar.gz" } ], "1.4.2": [ { "comment_text": "", "digests": { "md5": "e5aee2d2656e33fe88d7ec48a069c729", "sha256": "9dd38db4bee7e9f68458c08e0e158bc9c3a453c280e2f4fbd8c57344eefbaaeb" }, "downloads": -1, "filename": "infrae.subversion-1.4.2-py2.4.egg", "has_sig": false, "md5_digest": "e5aee2d2656e33fe88d7ec48a069c729", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 22112, "upload_time": "2009-01-05T11:07:23", "url": "https://files.pythonhosted.org/packages/f7/81/d1fca6110dd04db1bdcc55765b2f512dc11871c26766cf962c582d569503/infrae.subversion-1.4.2-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "15db4f5a7ced446ea2103d14df138fc4", "sha256": "cb65c7e75d45cacb1badaa464156401a405ff08a5c62af9ebdd0ca32b3db7cc9" }, "downloads": -1, "filename": "infrae.subversion-1.4.2-py2.5.egg", "has_sig": false, "md5_digest": "15db4f5a7ced446ea2103d14df138fc4", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 21916, "upload_time": "2009-01-05T11:07:36", "url": "https://files.pythonhosted.org/packages/6f/ee/f9213d5303089b8a4ee37aa13ce897c45c91ee05c569608e97516996bd56/infrae.subversion-1.4.2-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "4f03fb0b39caed68ac92445cdfef7eca", "sha256": "eb83f417824a208bb7db1084aedb2980e1f173e64a120c6daff947b934405f7a" }, "downloads": -1, "filename": "infrae.subversion-1.4.2.tar.gz", "has_sig": false, "md5_digest": "4f03fb0b39caed68ac92445cdfef7eca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11916, "upload_time": "2009-01-05T11:07:23", "url": "https://files.pythonhosted.org/packages/73/7d/44b1d3c2a63d7ef3537742e52326640dc495153cfc09e829b5c4e86967f3/infrae.subversion-1.4.2.tar.gz" } ], "1.4.3": [ { "comment_text": "", "digests": { "md5": "27ddc778803bf36ed912324aa703391a", "sha256": "6d21449b6b2371e1a9cd1edbd2608d1527756f725a2112ccaa28c5a39d0abc60" }, "downloads": -1, "filename": "infrae.subversion-1.4.3-py2.4.egg", "has_sig": false, "md5_digest": "27ddc778803bf36ed912324aa703391a", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 22502, "upload_time": "2009-01-21T16:07:46", "url": "https://files.pythonhosted.org/packages/07/f0/e6f22fb19be7950deda23a0272b513b651d8393398b0c6823891e2bbf138/infrae.subversion-1.4.3-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "ec58bf5b47ffa71dc0178a29238000bf", "sha256": "ed03391a01b63c1056f067474b7c8250ecf2d065abf343e7d0ce72f113555312" }, "downloads": -1, "filename": "infrae.subversion-1.4.3-py2.5.egg", "has_sig": false, "md5_digest": "ec58bf5b47ffa71dc0178a29238000bf", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 22302, "upload_time": "2009-01-21T16:08:27", "url": "https://files.pythonhosted.org/packages/7f/91/78e1dc131fc5295860630f894d06d327b4c11c94f839fd0bfbe8d95b9f51/infrae.subversion-1.4.3-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "41748ad2ee34d49a845239381ccd14c8", "sha256": "62c77d6f20ec7bd8444b0479c39b44de1cdd126f87ac33d7696306e5129dd00b" }, "downloads": -1, "filename": "infrae.subversion-1.4.3.tar.gz", "has_sig": false, "md5_digest": "41748ad2ee34d49a845239381ccd14c8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14467, "upload_time": "2009-01-21T16:07:46", "url": "https://files.pythonhosted.org/packages/02/93/9f5b42c8e1fceb4c61c409aeab59563c9405583e5ffa704e6b5adeb58586/infrae.subversion-1.4.3.tar.gz" } ], "1.4.4": [ { "comment_text": "", "digests": { "md5": "fdd9775244ce5c55137e4036a44a96a5", "sha256": "614f2cf90a4d61d9f722529de49aa844fd9b05d7b94ca65e913eb164daea0f89" }, "downloads": -1, "filename": "infrae.subversion-1.4.4.tar.gz", "has_sig": false, "md5_digest": "fdd9775244ce5c55137e4036a44a96a5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13227, "upload_time": "2009-01-28T14:19:27", "url": "https://files.pythonhosted.org/packages/87/13/8ada3ffea03d1a6812c23df2cd78134ecbfd3b086914de0166edeb4c3c1f/infrae.subversion-1.4.4.tar.gz" } ], "1.4.5": [ { "comment_text": "", "digests": { "md5": "c69d2d695e9ec94bcc87fa9e9cf35b2e", "sha256": "2bb8f5d0a29a62fa50f518cf73cd8e5b655795233702e4d36ed02e4c4a9a6a44" }, "downloads": -1, "filename": "infrae.subversion-1.4.5.tar.gz", "has_sig": false, "md5_digest": "c69d2d695e9ec94bcc87fa9e9cf35b2e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13502, "upload_time": "2009-01-29T11:03:27", "url": "https://files.pythonhosted.org/packages/f9/55/6fa6b2198c2f2bb624ec9474fa948f1b9ed188b71dcd2efb1f7088061049/infrae.subversion-1.4.5.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "c69d2d695e9ec94bcc87fa9e9cf35b2e", "sha256": "2bb8f5d0a29a62fa50f518cf73cd8e5b655795233702e4d36ed02e4c4a9a6a44" }, "downloads": -1, "filename": "infrae.subversion-1.4.5.tar.gz", "has_sig": false, "md5_digest": "c69d2d695e9ec94bcc87fa9e9cf35b2e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13502, "upload_time": "2009-01-29T11:03:27", "url": "https://files.pythonhosted.org/packages/f9/55/6fa6b2198c2f2bb624ec9474fa948f1b9ed188b71dcd2efb1f7088061049/infrae.subversion-1.4.5.tar.gz" } ] }