[CMF-checkins] SVN: CMF/trunk/ - added alternative buildout cfg (as a replacement for CMF.buildout/branches/zope212-cmf23)
Yvo Schubbe
y.2010 at wcm-solutions.de
Mon Sep 20 08:53:35 EDT 2010
Log message for revision 116667:
- added alternative buildout cfg (as a replacement for CMF.buildout/branches/zope212-cmf23)
Changed:
U CMF/trunk/README.txt
A CMF/trunk/buildout-zope212.cfg
-=-
Modified: CMF/trunk/README.txt
===================================================================
--- CMF/trunk/README.txt 2010-09-20 11:13:01 UTC (rev 116666)
+++ CMF/trunk/README.txt 2010-09-20 12:53:34 UTC (rev 116667)
@@ -1,14 +1,41 @@
+=================
+CMF dev buildouts
+=================
+--------------------------
+Build CMF 2.3 + Zope trunk
+--------------------------
+
+Introduction
============
-CMF.buildout
+
+Builds CMF 2.3 from develop eggs located in ``src``. This buildout is usually
+used for developing CMF 2.3 on its primary target platform: Zope trunk and
+five.localsitemanager trunk.
+
+Dependencies
============
--------------------------
-Build CMF 2.3 + Zope 2.13
--------------------------
+Requires Python 2.6
+
+Usage
+=====
+::
+
+ $ python2.6 bootstrap/bootstrap.py
+ $ ./bin/buildout
+ $ ./bin/test
+ $ ./bin/instance
+
+---------------------------------
+Build CMF 2.3 + Zope 2.12 release
+---------------------------------
+
Introduction
============
-Builds CMF 2.3 with Zope 2.13 from develop eggs located in ``src``.
+Builds CMF 2.3 from develop eggs located in ``src``. This buildout is usually
+used for testing CMF 2.3 on a different platform: The latest Zope 2.12 and
+five.localsitemanager 2.0 releases.
Dependencies
============
@@ -20,6 +47,5 @@
::
$ python2.6 bootstrap/bootstrap.py
- $ ./bin/buildout
+ $ ./bin/buildout -c buildout-zope212.cfg
$ ./bin/test
- $ ./bin/instance
Added: CMF/trunk/buildout-zope212.cfg
===================================================================
--- CMF/trunk/buildout-zope212.cfg (rev 0)
+++ CMF/trunk/buildout-zope212.cfg 2010-09-20 12:53:34 UTC (rev 116667)
@@ -0,0 +1,56 @@
+# CMF trunk + Zope 2.12 release
+
+[buildout]
+extends = http://download.zope.org/Zope2/index/2.12.11/versions.cfg
+allow-picked-versions = false
+parts =
+ test
+ scripts
+ zopepy
+eggs =
+ Products.CMFCalendar
+ Products.CMFCore
+ Products.CMFDefault
+ Products.CMFTopic
+ Products.CMFUid
+ Products.DCWorkflow
+ Products.GenericSetup
+develop =
+ src/Products.CMFCalendar
+ src/Products.CMFCore
+ src/Products.CMFDefault
+ src/Products.CMFTopic
+ src/Products.CMFUid
+ src/Products.DCWorkflow
+ src/Products.GenericSetup
+
+
+[versions]
+five.localsitemanager = 2.0.4
+zc.buildout = 1.4.4
+
+
+[test]
+recipe = zc.recipe.testrunner
+eggs =
+ Products.CMFCalendar [test]
+ Products.CMFCore
+ Products.CMFDefault [test]
+ Products.CMFTopic [test]
+ Products.CMFUid
+ Products.DCWorkflow
+ Products.GenericSetup
+
+
+[scripts]
+recipe = zc.recipe.egg
+eggs =
+ ${buildout:eggs}
+ Zope2
+
+
+[zopepy]
+recipe = zc.recipe.egg
+eggs = ${buildout:eggs}
+interpreter = zopepy
+scripts = zopepy
Property changes on: CMF/trunk/buildout-zope212.cfg
___________________________________________________________________
Added: svn:eol-style
+ native
More information about the CMF-checkins
mailing list