aclark wrote:
> 
> On 2010-04-29, Laurence Rowe <[email protected]> wrote:
>>
>> Sounds like he needs a newer version of plone.recipe.zope2instance which
>> defines some more fake eggs.
> 
> Good call, the following usually helps:
> 
> [versions]
> plone.recipe.zope2install = 3.2
> plone.recipe.zope2instance = 3.6
> 
> IIRC
> 
>>
>> Laurence
> 
> 

Hi,  just added this to my buildout.cfg:


[buildout]


############################################
# Plone Component Versions
# ------------------------
# This version of the Unified Installer has the components
# of Plone 3.2.1 preloaded so that it can install without
# an Internet connection.
# If you want to update, uncomment the "extends = http://..."; below,
# edit it to point to the current version URL,
# comment out the "extends = versions.cfg" line
# and run bin/buildout -n
# while attached to the Internet.
#
# extends = http://dist.plone.org/release/3.2.1/versions.cfg
extends =
    versions.cfg
    http://good-py.appspot.com/release/collective.xdv/1.0rc5
versions = versions


############################################
# Ports
# -----
# Specify the ports on which your Zope installation
# will listen.
# ZEO Server
zeo-address = 127.0.0.1:8100
# Zope client 1
client1-address = 8080
# Zope client 2
client2-address = 8081


############################################
# Eggs
# ----
# Add an indented line to the eggs section for any Python
# eggs or packages you wish to include.
#
eggs =
    Plone
    Products.NuPlone
    Products.CacheSetup
    Products.PloneFormGen
    Products.LDAPUserFolder
    Products.LDAPMultiPlugins
    Products.PloneLDAP
    collective.xdv [Zope2.10]


#
# Optional Functionality
# ----------------------
# Uncomment the indented lines to include these products.
# Documentation on all of them, along with many more products,
# is available at
# http://plone.org/products/
#
# Commonly used products:
# * LinguaPlone provides tools for building multi-lingual sites
# * Products.CacheSetup adds the "CacheFu" Plone speedup kit
# * PloneHelpCenter is a simple knowledge base
# * PloneFormGen provides through-the-web form building
#
#    Products.LinguaPlone
#    Products.CacheSetup
#    Products.PloneHelpCenter
#    Products.PloneFormGen
#
# Commonly used development tools:
# * Clouseau uses AJAX to provide a Python prompt inside Plone
# * DocFinderTab puts an object documentation inspector in the Zope
Management Interface
# * Gloworm is a Firebug-like viewlet inspector and customizer
# * plone.reload allows you to refresh Python code and ZCML configuration
#   without restarting Zope. Note that to use plone.reload, you'll also
#   need to uncomment the "zcml" entry for it below.
#
#    Products.Clouseau
#    Products.DocFinderTab
#    Products.Gloworm
#    plone.reload


############################################
# ZCML Slugs
# ----------
# Some eggs need ZCML slugs to tell Zope to
# use them. Eggs with names beginning with "Products."
# usually don't need this.
zcml =
#    plone.reload


############################################
# Development Eggs
# ----------------
# You can use paster to create "development eggs" to
# develop new products/themes. Put these in the src/
# directory.
# You will also need to add the egg names in the
# eggs section above, and may also need to add them
# to the zcml section.
#
# Provide the *paths* to the eggs you are developing here:
develop =
#    src/my.package


############################################
# Debug Mode
# ----------
# Change debug-mode to "on" to run in development mode.
#
debug-mode = off
# Add-on developers should turn deprecation warnings on
deprecation-warnings = off
# change verbose-security to "on" for useful security errors while
developing
verbose-security = off


############################################
############################################
# Buildout instructions beyond this point are
# usually only changed by experienced developers.
#
# Beyond here there be dragons!


eggs-directory=/usr/local/Plone/buildout-cache/eggs
download-cache=/usr/local/Plone/buildout-cache/downloads
zeo-filestorage=/usr/local/Plone/zeocluster/var/filestorage
newest = false
parts =
    zope2
    productdistros
    zeoserver
    client1
    client2
    zopepy
    zopeskel
    precompile
    varnish-build
    varnish-instance
    chown
    unifiedinstaller

# Add additional egg download sources here. dist.plone.org contains archives
# of Plone packages.
find-links =
    http://dist.plone.org
    http://download.zope.org/ppix/
    http://download.zope.org/distribution/
    http://effbot.org/downloads


# unzip all eggs for easier debugging
unzip = true

# let's share our Zope install
zope-directory = /usr/local/Plone


[versions]
plone.recipe.zope2install = 3.2
plone.recipe.zope2instance = 3.6


# This section installs the components of Zope 2.
# Zope operating instances are created elsewhere.
# For options see http://pypi.python.org/pypi/plone.recipe.zope2install
[zope2]
recipe = plone.recipe.zope2install
# update zope by updating this URL:
url = http://www.zope.org/Products/Zope/2.10.7/Zope-2.10.7-final.tgz
# fake eggs are required to satisfy Zope dependencies while
# zope is not yet eggified.
fake-zope-eggs = true
additional-fake-eggs =
    ZConfig
    pytz


The result is:

[r...@webplone zeocluster]# ./bin/buildout 
Getting distribution for 'plone.recipe.zope2install==3.2'.
Got plone.recipe.zope2install 3.2.
Getting distribution for 'plone.recipe.zope2instance==3.6'.
Got plone.recipe.zope2instance 3.6.
Uninstalling zope2.
Installing zope2.
Creating fake eggs
Updating productdistros.
Updating zeoserver.
Installing client1.
Getting distribution for 'plone.z3cform==0.6.0'.
Got plone.z3cform 0.6.0.
Getting distribution for 'collective.z3cform.datetimewidget==1.0'.
warning: no previously-included files matching '*pyc' found anywhere in
distribution
Got collective.z3cform.datetimewidget 1.0.
Getting distribution for 'z3c.formwidget.query==0.5'.
Got z3c.formwidget.query 0.5.
Getting distribution for 'collective.monkeypatcher'.
Got collective.monkeypatcher 1.0b2.
While:
  Installing client1.
Error: There is a version conflict.
We already have: zope.i18n 0.0
but plone.z3cform 0.6.0 requires 'zope.i18n>=3.4'.

-- 
View this message in context: 
http://plone.293351.n2.nabble.com/Problems-installing-collective-xdv-tp4979214p4984677.html
Sent from the Installation, Setup, Upgrades mailing list archive at Nabble.com.
_______________________________________________
Setup mailing list
[email protected]
http://lists.plone.org/mailman/listinfo/setup

Reply via email to