[Erp5-report] r38911 luke - in /erp5/trunk/buildout: profiles/ software-profiles/

nobody at svn.erp5.org nobody at svn.erp5.org
Wed Oct 6 10:35:48 CEST 2010


Author: luke
Date: Wed Oct  6 10:35:47 2010
New Revision: 38911

URL: http://svn.erp5.org?rev=38911&view=rev
Log:
 - factorise bootstraper in common profile and reuse

Added:
    erp5/trunk/buildout/profiles/bootstrap.cfg
Modified:
    erp5/trunk/buildout/software-profiles/python-2.4.cfg
    erp5/trunk/buildout/software-profiles/python-2.6.cfg
    erp5/trunk/buildout/software-profiles/python-2.7.cfg

Added: erp5/trunk/buildout/profiles/bootstrap.cfg
URL: http://svn.erp5.org/erp5/trunk/buildout/profiles/bootstrap.cfg?rev=38911&view=auto
==============================================================================
--- erp5/trunk/buildout/profiles/bootstrap.cfg (added)
+++ erp5/trunk/buildout/profiles/bootstrap.cfg [utf8] Wed Oct  6 10:35:47 2010
@@ -0,0 +1,11 @@
+[buildout]
+parts =
+  bootstrap
+
+[bootstrap]
+recipe = zc.recipe.egg
+eggs = zc.buildout
+suffix =
+scripts =
+    buildout=bootstrap${:suffix}
+arguments = sys.argv[1:] + ["bootstrap"]

Modified: erp5/trunk/buildout/software-profiles/python-2.4.cfg
URL: http://svn.erp5.org/erp5/trunk/buildout/software-profiles/python-2.4.cfg?rev=38911&r1=38910&r2=38911&view=diff
==============================================================================
--- erp5/trunk/buildout/software-profiles/python-2.4.cfg [utf8] (original)
+++ erp5/trunk/buildout/software-profiles/python-2.4.cfg [utf8] Wed Oct  6 10:35:47 2010
@@ -1,5 +1,7 @@
 [buildout]
-extends = ../software-profiles/python-common.cfg
+extends =
+  ../software-profiles/python-common.cfg
+  ../profiles/bootstrap.cfg
 parts =
     pythonbin2.4
 
@@ -31,12 +33,9 @@ scripts =
   ipython=ipython${python2.4:python_version_major}
 
 [bootstrap2.4]
-recipe = zc.recipe.egg
-eggs = zc.buildout
+<= bootstrap
+suffix = 2.4
 python = python2.4
-scripts =
-    buildout=bootstrap2.4
-arguments = sys.argv[1:] + ["bootstrap"]
 
 [rebootstrap2.4]
 recipe = zc.recipe.egg

Modified: erp5/trunk/buildout/software-profiles/python-2.6.cfg
URL: http://svn.erp5.org/erp5/trunk/buildout/software-profiles/python-2.6.cfg?rev=38911&r1=38910&r2=38911&view=diff
==============================================================================
--- erp5/trunk/buildout/software-profiles/python-2.6.cfg [utf8] (original)
+++ erp5/trunk/buildout/software-profiles/python-2.6.cfg [utf8] Wed Oct  6 10:35:47 2010
@@ -1,5 +1,7 @@
 [buildout]
-extends = ../software-profiles/python-common.cfg
+extends =
+  ../software-profiles/python-common.cfg
+  ../profiles/bootstrap.cfg
 
 parts =
     python2.6
@@ -10,12 +12,9 @@ python_version_major = 2.6
 python_version_minor = 6
 
 [bootstrap2.6]
-recipe = zc.recipe.egg
-eggs = zc.buildout
+<= bootstrap
+suffix = 2.6
 python = python2.6
-scripts =
-    buildout=bootstrap2.6
-arguments = sys.argv[1:] + ["bootstrap"]
 
 [rebootstrap2.6]
 recipe = zc.recipe.egg

Modified: erp5/trunk/buildout/software-profiles/python-2.7.cfg
URL: http://svn.erp5.org/erp5/trunk/buildout/software-profiles/python-2.7.cfg?rev=38911&r1=38910&r2=38911&view=diff
==============================================================================
--- erp5/trunk/buildout/software-profiles/python-2.7.cfg [utf8] (original)
+++ erp5/trunk/buildout/software-profiles/python-2.7.cfg [utf8] Wed Oct  6 10:35:47 2010
@@ -1,4 +1,7 @@
 [buildout]
+extends =
+  ../profiles/bootstrap.cfg
+
 parts =
     python2.7
 
@@ -21,12 +24,9 @@ configure-options =
 python_version_major = 2.7
 
 [bootstrap2.7]
-recipe = zc.recipe.egg
-eggs = zc.buildout
+<= bootstrap
+suffix = 2.7
 python = python2.7
-scripts =
-    buildout=bootstrap2.7
-arguments = sys.argv[1:] + ["bootstrap"]
 
 [rebootstrap2.7]
 recipe = zc.recipe.egg




More information about the Erp5-report mailing list