{ "info": { "author": "Hanno Schlichting", "author_email": "hannosch@plone.org", "bugtrack_url": null, "classifiers": [ "Framework :: Buildout", "Framework :: Plone", "Framework :: Zope2", "License :: OSI Approved :: Zope Public License", "Programming Language :: Python" ], "description": "plone.recipe.zope2install\n=========================\n\nOptions\n-------\n\nTo specify which Zope 2 to use, use one of the following options:\n\n`url`\n The URL to a tarball to use for the Zope 2 installation.\n\n`svn`\n The URL for an subversion checkout to use for the Zope 2 installation.\n\n`location`\n The path to a local, existing Zope 2 installation. Note: For this to work\n Zope must have been built with the same Python used to run buildout.\n\n`fake-zope-eggs`\n If set to true, add fake egg links to Zope 3 libraries, so that setuptools\n can see and use them for dependencies lookup. Enabled by default since\n version 3.0 of this recipe.\n\n`additional-fake-eggs`\n Specify an optional list of additional fake eggs. Only include packages\n which are available on the Python path.\n\n You can also specify an explicit version to fake for an egg. For example::\n\n additional-fake-eggs =\n ZODB3 = 3.7.1\n zope.annotation = 3.3.2\n\n Otherwise the faked eggs will always have version 0.0.\n \n The default value includes Acquisition, ClientForm, DateTime, docutils,\n ExtensionClass, mechanize, Persistence, pytz, RestrictedPython,\n tempstorage, ZConfig, zLOG, zodbcode, ZODB3, zdaemon and Zope2.\n\n`skip-fake-eggs`\n Specify an optional list of packages, for whom no fake egg is created.\n This allows to pull in new versions of some of the Zope packages via\n normal version requirements.\n\n`smart-recompile`\n Will not recompile Zope if it finds .so or .pyd files. This means\n you can move your buildout around and speed up builds.\n\n`python`\n Specify a section that configures another executable than the one used by \n ``bin/buildout``. For example::\n\n [zope2]\n recipe = plone.recipe.zope2install\n ...\n python = python2.4\n \n [python2.4]\n executable = ${buildout:directory}/parts/python/bin/python\n\nIf you use many buildouts with the same Zope 2 version, then you can add\n\"zope-directory\" in the \"buildout\" section in your ~/.buildout/default.cfg\nfile like this::\n\n [buildout]\n zope-directory = /home/me/buildout/zope\n\nFor installations from a tarball that directory will be used instead of the\nparts directory in your buildout. Each version of Zope will get it's own\ndirectory but if it's already installed the existing one will be reused.\n\nExported variables\n------------------\n\nThe following variables are set by this recipe and can be used in other parts.\n\n`location`\n The path to the Zope installation root.\n\nReporting bugs or asking questions\n----------------------------------\n\nWe have a shared bug tracker and help desk on Launchpad:\nhttps://bugs.launchpad.net/collective.buildout/\n\nChange History\n==============\n\n3.3 (2010-09-01)\n----------------\n\n- Add ``python`` option to be able to specify other python than\n ``buildout:executable``\n [gotcha]\n\n\n3.2 (2009-08-07)\n----------------\n\n- Refactor egg faking; fix skipped eggs to avoid to remove skipped\n develop eggs\n [gotcha]\n\n\n3.1 (2009-06-23)\n----------------\n\n- Create download-cache directory when not provided by buildout\n [gotcha, jfroche]\n\n- Change interpreter name in buildout to avoid name clash with an existing interpreter\n [gotcha, jfroche]\n\n3.0 (2009-02-26)\n----------------\n\n- Changed the default for fake eggs creation to true and added a number of\n additional fake eggs to the default.\n [hannosch]\n\n2.6 (2008-12-12)\n----------------\n\n- Change the fake eggs creation, to fix bug related to egg dependencies\n in develop-eggs.\n [jfroche]\n\n- Added the smart-recompile option.\n [tarek]\n\n- Ignore exit status of compilezpy.py since it returns an\n exit status > 0 for even a single compile failure.\n [smcmahon]\n\n2.5 (2008-11-15)\n----------------\n\n- Add compilation of .py files into .pyc using Zope's compilezpy.py.\n [smcmahon]\n\n\n2.4 (2008-11-04)\n----------------\n\n- Allow to use an existing Zope installation by specifying its `location`.\n [stefan]\n\n- Prevent update from ever messing with a shared Zope installation.\n [fschulze]\n\n\n2.3 (2008-08-27)\n----------------\n\n- stderr in svn update is no longer filtered but printed on console.\n [icemac]\n\n\n2.2 (2008-06-07)\n----------------\n\n- Updated `fake-zope-eggs` handling, to be called when updating, so changes\n to `skip-fake-eggs` and add `additional-fake-eggs` are respected.\n [hannosch]\n\n- Added new `skip-fake-eggs` option, that allows to skip the creation of\n fake eggs for a list of packages, so you can for example require a newer\n `zope.tal` version.\n [hannosch]\n\n- Include the Python version Zope is compiled with into the shared-zope name.\n This allows you to have the same Zope version compiled with for example\n Python 2.3 and 2.4 but still share it. The change means, you will have to\n recompile all Zope versions.\n [hannosch, fschulze]\n\n- Added error message for 0-byte sized Zope tarball downloads.\n [hannosch, sidnei]\n\n\n2.1 (2008-06-05)\n----------------\n\n- Fixed error in retracted 2.0 release.\n [hannosch]\n\n- Explicitly set zip-safe flag.\n [hannosch]\n\n\n2.0 (2008-06-05)\n----------------\n\n- Merged all the options from the affinitic.recipe.fakezope2eggs recipe into\n this recipe.\n [jfroche, hannosch]\n\n\n1.2 (2008-01-05)\n----------------\n\n- Renamed download-directory to download-cache, which is the name that is used\n by zc.buildout itself.\n [hannosch]\n\n\n1.1 (2007-12-21)\n----------------\n\n- Small documentation update. Added link to the bugtracker.\n [hannosch]\n\n\n1.0 (2007-11-29)\n----------------\n\n- Added changes file and small doc layout fix.\n [fschulze, hannosch]\n\n\n0.3 (2007-09-05)\n----------------\n\n- Fixed an error where the \"shared-zope\" option was accessed but not yet set.\n [fschulze]\n\n\n0.2 (2007-09-05)\n----------------\n\n- Added option to share Zope installations.\n [fschulze]\n\n\n0.1 (2007-02-26)\n----------------\n\n- Initial implementation.\n [hannosch]", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://svn.plone.org/svn/collective/buildout/plone.recipe.zope2install", "keywords": "zope2 buildout", "license": "ZPL 2.1", "maintainer": null, "maintainer_email": null, "name": "plone.recipe.zope2install", "package_url": "https://pypi.org/project/plone.recipe.zope2install/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/plone.recipe.zope2install/", "project_urls": { "Download": "UNKNOWN", "Homepage": "http://svn.plone.org/svn/collective/buildout/plone.recipe.zope2install" }, "release_url": "https://pypi.org/project/plone.recipe.zope2install/3.3/", "requires_dist": null, "requires_python": null, "summary": "ZC Buildout recipe for installing Zope 2.", "version": "3.3" }, "last_serial": 661168, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "b04a2d4bd3b1910c2e5cee7c17b7bec1", "sha256": "d9afbc1fa00c7fd14fb18aa06564d478fe5f5b4ba4f3b49938db330c8bb1837a" }, "downloads": -1, "filename": "plone.recipe.zope2install-0.1-py2.4.egg", "has_sig": true, "md5_digest": "b04a2d4bd3b1910c2e5cee7c17b7bec1", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 6271, "upload_time": "2007-02-26T21:24:15", "url": "https://files.pythonhosted.org/packages/1f/55/9c022ccf8c373d390298cf2669fa15da1e50bee3ccc58154ed3637896834/plone.recipe.zope2install-0.1-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "b9275337b1c21c2ec71b4941b40b3b38", "sha256": "7271e40d6618a49dc2501f143e3404725260c14047224e927b7bfa1a809559bd" }, "downloads": -1, "filename": "plone.recipe.zope2install-0.1.tar.gz", "has_sig": true, "md5_digest": "b9275337b1c21c2ec71b4941b40b3b38", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3066, "upload_time": "2007-02-26T21:24:07", "url": "https://files.pythonhosted.org/packages/64/ef/958d30790138de8ed4a7a2026790ab853e7890e6413a7424ef392a3ba910/plone.recipe.zope2install-0.1.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "c09d59384fb69b0324cdbd1d65d8d9ca", "sha256": "c95039da0697e98890ebaaedaa577291306c2b2f0de28ef30022096ab0fcad50" }, "downloads": -1, "filename": "plone.recipe.zope2install-0.2-py2.4.egg", "has_sig": false, "md5_digest": "c09d59384fb69b0324cdbd1d65d8d9ca", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 7217, "upload_time": "2007-09-04T22:08:10", "url": "https://files.pythonhosted.org/packages/bd/bf/37898aafab0f7dc417121d74dd730c0e457bfe1f2b102dee0881b8d9b588/plone.recipe.zope2install-0.2-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "f12e78fbaf4f91907642f3aca2c49fb1", "sha256": "c190ea9bcb231d8d2fb62da257bfce9091e2320ce410cba370c31305eb252b26" }, "downloads": -1, "filename": "plone.recipe.zope2install-0.2.tar.gz", "has_sig": false, "md5_digest": "f12e78fbaf4f91907642f3aca2c49fb1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3745, "upload_time": "2007-09-04T22:08:08", "url": "https://files.pythonhosted.org/packages/0a/72/09d2cc9484c562207484ff3b6abf308736001d60bbc9925706bd6a6886b2/plone.recipe.zope2install-0.2.tar.gz" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "78f7e2edcf0b8bd950762f40518cd0e2", "sha256": "3fed039f01c5809a7226f1b8a853512d81cd866eff202581346912ec3e550dbd" }, "downloads": -1, "filename": "plone.recipe.zope2install-0.3-py2.4.egg", "has_sig": false, "md5_digest": "78f7e2edcf0b8bd950762f40518cd0e2", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 7240, "upload_time": "2007-09-04T22:44:09", "url": "https://files.pythonhosted.org/packages/f6/10/62510e59ec4917c511180f1d46d7cdbdc5beac1eb9069c6317105ca81d2e/plone.recipe.zope2install-0.3-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "19b6ebfd17d7d86ecb58c24d3e2a965b", "sha256": "bbdf19a1d89b3936fee813f4e7bc1c3cbf9c244f88eb7fc685bb1360d05199c7" }, "downloads": -1, "filename": "plone.recipe.zope2install-0.3.tar.gz", "has_sig": false, "md5_digest": "19b6ebfd17d7d86ecb58c24d3e2a965b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3756, "upload_time": "2007-09-04T22:44:07", "url": "https://files.pythonhosted.org/packages/ce/00/effe48606583f07d73199fc04b63fb972073ae38d01f62ffb1a7da976ed2/plone.recipe.zope2install-0.3.tar.gz" } ], "1.0": [ { "comment_text": "", "digests": { "md5": "561be044f15d9641dd7dfe31f7b58f7b", "sha256": "45fe47cf39a02318e5013823e250ed3b0a936e7d05eb5d9e711246fc1f13d87c" }, "downloads": -1, "filename": "plone.recipe.zope2install-1.0-py2.4.egg", "has_sig": true, "md5_digest": "561be044f15d9641dd7dfe31f7b58f7b", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 7330, "upload_time": "2007-11-29T22:04:59", "url": "https://files.pythonhosted.org/packages/f0/4b/294c76aff2b0522fdad878441fa42fbe514fc4f20e95a718f595e2ac358b/plone.recipe.zope2install-1.0-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "2670667f82a79f6c0a804fa1c4721dba", "sha256": "07c0cdac58bfcd1b8ea6c681566d298baa9f80ea8fd9f10d4dfce12687208147" }, "downloads": -1, "filename": "plone.recipe.zope2install-1.0.tar.gz", "has_sig": true, "md5_digest": "2670667f82a79f6c0a804fa1c4721dba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3965, "upload_time": "2007-11-29T22:04:52", "url": "https://files.pythonhosted.org/packages/66/0f/6071b8ebd43015145c690f2cbe1d6849e695e994149da5de6fcd24510915/plone.recipe.zope2install-1.0.tar.gz" } ], "1.1": [ { "comment_text": "", "digests": { "md5": "82a5221f665784f92cdef3acc997ca7a", "sha256": "aa5f6eae4816a862ef95ef0e954fd8ab573c5e67e179027f4cf9313d0356bc86" }, "downloads": -1, "filename": "plone.recipe.zope2install-1.1-py2.4.egg", "has_sig": true, "md5_digest": "82a5221f665784f92cdef3acc997ca7a", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 7461, "upload_time": "2007-12-21T00:15:57", "url": "https://files.pythonhosted.org/packages/00/29/cabd68b39963242bcff27cbb255040c1baa2d3b0a8c67ca08aadf5e6b204/plone.recipe.zope2install-1.1-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "8fe1e0dcf912121003f5e4a3da860706", "sha256": "bef99712a9562f94dbf7483ac9ccdd255438b4c68831c7b29af3b23a9e6fdc8c" }, "downloads": -1, "filename": "plone.recipe.zope2install-1.1.tar.gz", "has_sig": true, "md5_digest": "8fe1e0dcf912121003f5e4a3da860706", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4183, "upload_time": "2007-12-21T00:15:51", "url": "https://files.pythonhosted.org/packages/80/6e/7661c21029dc69917df6ba94ba345eb9a62bd60ef76129ee3a1b16088f8e/plone.recipe.zope2install-1.1.tar.gz" } ], "1.2": [ { "comment_text": "", "digests": { "md5": "a082ff215015b709cd5708ecbab0891e", "sha256": "8a2c508bc647724ac6f6cf344f3aec7ece7e2087590f567194aeec0f31ab3d93" }, "downloads": -1, "filename": "plone.recipe.zope2install-1.2-py2.4.egg", "has_sig": true, "md5_digest": "a082ff215015b709cd5708ecbab0891e", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 7522, "upload_time": "2008-01-05T15:20:17", "url": "https://files.pythonhosted.org/packages/11/ab/5182b586bcdfe9cfcffa6aff5a1dcc4903f3d1d52358b0446891adab99ea/plone.recipe.zope2install-1.2-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "8a836f730a9808c625a24b03f9bfcd05", "sha256": "51196b0305bfd427a8efaed7f5676f186f2c02555559588a8b59aa3396c70e0a" }, "downloads": -1, "filename": "plone.recipe.zope2install-1.2.tar.gz", "has_sig": true, "md5_digest": "8a836f730a9808c625a24b03f9bfcd05", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4249, "upload_time": "2008-01-05T15:20:11", "url": "https://files.pythonhosted.org/packages/92/d3/d94b46297ff5d38729bf4b3a9081de16b8400e5ee34447754085f430bbc5/plone.recipe.zope2install-1.2.tar.gz" } ], "2.1": [ { "comment_text": "", "digests": { "md5": "3cf23cd0ccfd2c68db61f93918362a99", "sha256": "424fab5b22bfec7a2e7dbf3856b19f525fdb776ae5bc2e1592e32f56c75790af" }, "downloads": -1, "filename": "plone.recipe.zope2install-2.1.tar.gz", "has_sig": true, "md5_digest": "3cf23cd0ccfd2c68db61f93918362a99", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8791, "upload_time": "2008-06-05T15:09:02", "url": "https://files.pythonhosted.org/packages/8d/7b/6a106799404957cd54dff8687476d93d8ffc65216aa5d5002a49c51287b3/plone.recipe.zope2install-2.1.tar.gz" } ], "2.2": [ { "comment_text": "", "digests": { "md5": "c69f1f5af741e66a2ed8cb587dd9644c", "sha256": "3cc9197f3a06911f216a54c04fe7da181256631fad23c926b1e95530b317418f" }, "downloads": -1, "filename": "plone.recipe.zope2install-2.2.tar.gz", "has_sig": true, "md5_digest": "c69f1f5af741e66a2ed8cb587dd9644c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9979, "upload_time": "2008-06-07T13:07:26", "url": "https://files.pythonhosted.org/packages/cb/b3/b57d0991e9b93e2f140ed89945fe13259c544c7435960aaa39262144c4d2/plone.recipe.zope2install-2.2.tar.gz" } ], "2.3": [ { "comment_text": "", "digests": { "md5": "23248ea19eba9f8eab978f559049688a", "sha256": "fe1461f49d33f9ca6849bd57af7676eae36a111c28344de3abe3d79831a92206" }, "downloads": -1, "filename": "plone.recipe.zope2install-2.3.tar.gz", "has_sig": true, "md5_digest": "23248ea19eba9f8eab978f559049688a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10144, "upload_time": "2008-08-27T09:15:29", "url": "https://files.pythonhosted.org/packages/1d/1f/f25513612299d07d3bc3e3125e5c4fff000155d6cb38870bbda4ba82a846/plone.recipe.zope2install-2.3.tar.gz" } ], "2.4": [ { "comment_text": "", "digests": { "md5": "bebdaaf13e5bc38fa4289621c785489e", "sha256": "e9918d2454730eda8733bef00576cbe69f205bb54b15d905d1579e06daa0a7af" }, "downloads": -1, "filename": "plone.recipe.zope2install-2.4.zip", "has_sig": true, "md5_digest": "bebdaaf13e5bc38fa4289621c785489e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17301, "upload_time": "2008-11-04T14:18:39", "url": "https://files.pythonhosted.org/packages/cf/e3/9e441db05a3348a467d10dab718939257c53e1e9701bd7ebc99ff11f7e64/plone.recipe.zope2install-2.4.zip" } ], "2.5": [ { "comment_text": "", "digests": { "md5": "0109261b62eaaa92115afa6437a2fa38", "sha256": "2eeed28ad1f0c975d1414986a974e108f6abe0ae8e193f2ed90cd8d09f26af34" }, "downloads": -1, "filename": "plone.recipe.zope2install-2.5.zip", "has_sig": false, "md5_digest": "0109261b62eaaa92115afa6437a2fa38", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17482, "upload_time": "2008-11-15T23:29:47", "url": "https://files.pythonhosted.org/packages/db/06/6c503842ae9207619ce8428d0a9a9fd15c24efcfb6e2c492e664ab0d3034/plone.recipe.zope2install-2.5.zip" } ], "2.6": [ { "comment_text": "", "digests": { "md5": "3205df049b6699d7ae58b7d0b8ab4e8e", "sha256": "fd276c3d60f9d345084c83ecdc90511f6473278ddbb62f51a481eb9126418331" }, "downloads": -1, "filename": "plone.recipe.zope2install-2.6.zip", "has_sig": false, "md5_digest": "3205df049b6699d7ae58b7d0b8ab4e8e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18885, "upload_time": "2008-12-12T11:48:42", "url": "https://files.pythonhosted.org/packages/8f/ad/618d61182010d55ca857981e30c6dda9873ac5d8d2b8e8ccb12e2d636571/plone.recipe.zope2install-2.6.zip" } ], "3.0": [ { "comment_text": "", "digests": { "md5": "83b825a40d2beecea6927e4ee5546306", "sha256": "299314b20a3033766a2b7bbe7c8486c9c2cbaeeb1325f5fbcbc3c543273680b9" }, "downloads": -1, "filename": "plone.recipe.zope2install-3.0.zip", "has_sig": true, "md5_digest": "83b825a40d2beecea6927e4ee5546306", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20015, "upload_time": "2009-02-26T19:55:15", "url": "https://files.pythonhosted.org/packages/3e/14/cada428ce49e330ede5cd7365fd5e2ec37442b2b0b4961fb4906fadbe35d/plone.recipe.zope2install-3.0.zip" } ], "3.1": [ { "comment_text": "", "digests": { "md5": "4edbc214010a4ef928dedd4f1a30160e", "sha256": "a8c11fe9c142bf49c24cf775c8463ca07258a77e9aa98afb238a2bd1313c0b65" }, "downloads": -1, "filename": "plone.recipe.zope2install-3.1-py2.4.egg", "has_sig": false, "md5_digest": "4edbc214010a4ef928dedd4f1a30160e", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 18025, "upload_time": "2009-06-23T13:30:05", "url": "https://files.pythonhosted.org/packages/dd/88/c2b4d4324af23e373cf53577d177b3e3d8b90990c798629af956495aadba/plone.recipe.zope2install-3.1-py2.4.egg" } ], "3.2": [ { "comment_text": "", "digests": { "md5": "49dac0d607522694d03b04636f809e8f", "sha256": "85f75d950ed7cba9beab9a2d618fbbb4cefcf1a25edcaeba002339087de2eb67" }, "downloads": -1, "filename": "plone.recipe.zope2install-3.2.tar.gz", "has_sig": false, "md5_digest": "49dac0d607522694d03b04636f809e8f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13373, "upload_time": "2009-08-07T22:25:25", "url": "https://files.pythonhosted.org/packages/32/6f/0c1b7f322c031a9d56212f7d3a0a123ac283558c441ad3ada3298b12baf0/plone.recipe.zope2install-3.2.tar.gz" } ], "3.3": [ { "comment_text": "", "digests": { "md5": "e15de2984688a899c9395c3fce58287e", "sha256": "a7ed2d6b55d50cd461cbbe901086f152624b5c86c0815e67367f6eff7577d4b4" }, "downloads": -1, "filename": "plone.recipe.zope2install-3.3.tar.gz", "has_sig": false, "md5_digest": "e15de2984688a899c9395c3fce58287e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12031, "upload_time": "2010-09-01T14:39:47", "url": "https://files.pythonhosted.org/packages/5c/a0/a9cfa5c1c467fa2317c3633d382f7429b4a7c1a876f6a4339a8db7cd9eec/plone.recipe.zope2install-3.3.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "e15de2984688a899c9395c3fce58287e", "sha256": "a7ed2d6b55d50cd461cbbe901086f152624b5c86c0815e67367f6eff7577d4b4" }, "downloads": -1, "filename": "plone.recipe.zope2install-3.3.tar.gz", "has_sig": false, "md5_digest": "e15de2984688a899c9395c3fce58287e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12031, "upload_time": "2010-09-01T14:39:47", "url": "https://files.pythonhosted.org/packages/5c/a0/a9cfa5c1c467fa2317c3633d382f7429b4a7c1a876f6a4339a8db7cd9eec/plone.recipe.zope2install-3.3.tar.gz" } ] }