Everytime I run buildout to add a product egg, it deletes all the stuff under parts.
How do people deal with this?
|
|
"Why does buildout delete my instance/etc and Extensions folder each time it is run?" -> Because that's what's buildout is made for: to build automatically the parts, the way it is defined in the buildout-configuration-file. Not deleting former dirs and files would easily result in conflicts and errors, I guess. Can anynone confirm? "How do people deal with this?" -> By not putting anything in the parts directory at all ;) No seriously, it is not recommended to do it. However, if there really is no other solution, you might try using iw.recipe.cmd, as Tom Gross is describing it in this article: http://blog.toms-projekte.de/?p=19 What's your specific use-case? |
|||||||||||
|
|
you can put your customization of zope.conf directly in the buildout. Also, in Plone 4 Extensions is not created anymore, you can put it somewhere else. For example, this: http://plone.org/products/products.migrateexternalmethods will move your existing external methods to an egg, so you can put them in svn and manage them as you do for your code. |
|||
|
|
As has been pointed out already, you should not put any customizations in the "parts" directory directly. You need to put it elsewhere. Extension methods are generally not needed these days but if you wish to use them, you have a couple of options: Option 1 Create an Extensions folder in your own product. Put your module at "my.product/my/product/Extensions/mymodule.py" and reference it in the ZMI as "my.product.mymodule" Option 2 Use the "zope-conf-additional" parameter in plone.recipe.zope2instance to add another location for the Extensions folder like so:
|
|||
|
|