Reposting as suggested in SO: https://stackoverflow.com/questions/58634022/rebuilding-a-plone-4-2-site-and-getting-valueerror-too-many-values-to-unpack
I am moving an old Plone 4.2.4 product to a new server as we slowly deprecate it. So far we have copied the entire directory as well as the Python2.7 directory from one server to another. I was able to get through the SSL complaint by downloading bootstrap from github and running bootstrap.
We should have all the eggs in a buildout cache and I see collective.recipe.filestorage-0.6-py2.7.egg in the eggs folder, so I do not understand why buildout is complaining, but it trips on the second egg:
$ ./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 ***************
Any ideas?