> Because of how little progress I've made with it, I decided to try to > resurrect Planet TurboGears. As it turns out, this is harder than it should > be, thanks to my lack of knowledge of Gentoo, the use of virtualenv, and > Gentoo not building the entire Python Standard Library by default. > PlanetPlanet ( http://www.planetplanet.org/ ) uss the Berkley DB (bsddb > module), and Gentoo doesn't build it by default. This means I'm now running > the risk of breaking virtualenv's by rebuilding Python itself, or trying to > get it to work somehow. Very seriously frustrating.
What about using a higer level interface?, planet seems to use dbhash module, you can use shelve as a replacement, it has the same interface but shelve can use different storage mechanisms, depending on python compiling options. Try changing the import in planet/__init__.py, delete dbhash and import shelve as dbhash, at least here it seems to work without hitch it may be worth the try as is just one line change. Regards, Carlos Ruvalcaba -- You received this message because you are subscribed to the Google Groups "TurboGears" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/turbogears?hl=en.

