[Erp5-report] r40871 luke - /erp5/trunk/buildout/software-profiles/erp5.cfg

nobody at svn.erp5.org nobody at svn.erp5.org
Mon Nov 29 13:13:07 CET 2010


Author: luke
Date: Mon Nov 29 13:13:07 2010
New Revision: 40871

URL: http://svn.erp5.org?rev=40871&view=rev
Log:
 - drop usage of infrae.subversion, use local command

Modified:
    erp5/trunk/buildout/software-profiles/erp5.cfg

Modified: erp5/trunk/buildout/software-profiles/erp5.cfg
URL: http://svn.erp5.org/erp5/trunk/buildout/software-profiles/erp5.cfg?rev=40871&r1=40870&r2=40871&view=diff
==============================================================================
--- erp5/trunk/buildout/software-profiles/erp5.cfg [utf8] (original)
+++ erp5/trunk/buildout/software-profiles/erp5.cfg [utf8] Mon Nov 29 13:13:07 2010
@@ -51,17 +51,23 @@ urls =
   http://www.dataflake.org/software/ldapuserfolder/ldapuserfolder_2.6/LDAPUserFolder-2_6.tgz
 
 [products-other]
-recipe = infrae.subversion
+# Recipe infrae.subversion is using svn command under the hood, but there is
+# no way to pass --trust-server-cert --non-interactive, so in 2.12 falvour
+# it is better to evaluate usage of provided subversion command
+recipe = plone.recipe.command
+svn_param =--trust-server-cert --non-interactive --quiet
 # dircty hack to support PluginRegistry/utils.py:17 assumption that products
 # are in Products folder
 # XXX: Zelenium was eggfied for recent zope versions (2.12) and are available at Bazaar.
 #      some better alternative should be used in future.
-location = parts/products-other/Products
-urls =
-    http://svn.plone.org/svn/collective/DCWorkflowGraph/tags/release-0_3/ DCWorkflowGraph
-    svn://svn.zope.org/repos/main/Zelenium/trunk/@110603 Zelenium
-    svn://svn.zope.org/repos/main/PluginRegistry/tags/1.0 PluginRegistry
-    http://svn.plone.org/svn/archetypes/MimetypesRegistry/tags/Archetypes-1.4.0-final MimetypesRegistry
+location = ${buildout:parts-directory}/${:_buildout_section_name_}
+destination = ${:location}/Products
+stop-on-error = true
+update-command = ${:command}
+command = svn checkout ${:svn_param} http://svn.plone.org/svn/collective/DCWorkflowGraph/tags/release-0_3/ ${:destination}/DCWorkflowGraph &&
+  svn checkout ${:svn_param} svn://svn.zope.org/repos/main/Zelenium/trunk/@110603 ${:destination}/Zelenium &&
+  svn checkout ${:svn_param} svn://svn.zope.org/repos/main/PluginRegistry/tags/1.0 ${:destination}/PluginRegistry &&
+  svn checkout ${:svn_param} http://svn.plone.org/svn/archetypes/MimetypesRegistry/tags/Archetypes-1.4.0-final ${:destination}/MimetypesRegistry
 
 [eggs]
 recipe = zc.recipe.egg




More information about the Erp5-report mailing list