Я перевожу старый продукт Plone 4.2.4 на новый сервер, так как мы постепенно его устареваем. До сих пор мы копировали весь каталог, а также каталог Python2.7 с одного сервера на другой. Мне удалось получить жалобу SSL , загрузив bootstrap с github и запустив загрузчик.
Мы должны иметь все яйца в кеше сборок, и я вижу в файле eggs, так что collect.recipe.filestorage-0.6-py2.7.egg не понимаю, почему buildoutжалуется, но спотыкается о второе яйцо:
$ ./bin/buildout -oNv -c zeo-production.cfg
Installing 'buildout.dumppickedversions', 'mr.developer'.
We have the distribution that satisfies 'buildout.dumppickedversions==0.5'.
We have the distribution that satisfies 'mr.developer==1.21'.
...
Installing 'zc.recipe.egg'.
We have the distribution that satisfies 'zc.recipe.egg==1.2.2'.
Installing 'collective.recipe.filestorage'.
We have the distribution that satisfies 'collective.recipe.filestorage==0.6'.
While:
Installing.
Getting section filestorage.
Initializing section filestorage.
Installing recipe collective.recipe.filestorage.
An internal error occured due to a bug in either zc.buildout or in a
recipe being used:
Traceback (most recent call last):
File "/opt/python-2.7.8/lib/python2.7/site-packages/zc/buildout/buildout.py", line 1660, in main
getattr(buildout, command)(args)
File "/opt/python-2.7.8/lib/python2.7/site-packages/zc/buildout/buildout.py", line 416, in install
[self[part]['recipe'] for part in install_parts]
File "/opt/python-2.7.8/lib/python2.7/site-packages/zc/buildout/buildout.py", line 964, in __getitem__
options._initialize()
File "/opt/python-2.7.8/lib/python2.7/site-packages/zc/buildout/buildout.py", line 1048, in _initialize
recipe_class = _install_and_load(reqs, 'zc.buildout', entry, buildout)
File "/opt/python-2.7.8/lib/python2.7/site-packages/zc/buildout/buildout.py", line 1004, in _install_and_load
allow_hosts=buildout._allow_hosts
File "/opt/python-2.7.8/lib/python2.7/site-packages/zc/buildout/easy_install.py", line 800, in install
return installer.install(specs, working_set)
File "/opt/python-2.7.8/lib/python2.7/site-packages/zc/buildout/easy_install.py", line 662, in install
[requirement] = err
ValueError: too many values to unpack
*************** PICKED VERSIONS ****************
[versions]
*************** /PICKED VERSIONS ***************
Есть идеи?