[Checkins] SVN: zc.buildout/trunk/ simplified stefan's example to avoid an external dependency for the test

Tarek Ziade ziade.tarek at gmail.com
Fri Jun 13 17:03:00 EDT 2008


Log message for revision 87374:
  simplified stefan's example to avoid an external dependency for the test

Changed:
  U   zc.buildout/trunk/buildout.cfg
  U   zc.buildout/trunk/src/zc/buildout/allowhosts.txt

-=-
Modified: zc.buildout/trunk/buildout.cfg
===================================================================
--- zc.buildout/trunk/buildout.cfg	2008-06-13 20:02:43 UTC (rev 87373)
+++ zc.buildout/trunk/buildout.cfg	2008-06-13 21:02:59 UTC (rev 87374)
@@ -1,10 +1,20 @@
 [buildout]
 develop = zc.recipe.egg_ .
 parts = 
-      test2.3 py2.3 oltest2.3
       test2.4 py2.4 oltest2.4
       test2.5 py2.5 oltest2.5
 
+#test2.3 py2.3 oltest2.3
+
+[python2.4]
+executable = /usr/bin/python2.4z 
+
+[python2.5]
+executable = /usr/bin/python2.5
+
+[python2.3]
+
+
 [py2.3]
 recipe = zc.recipe.egg
 eggs = zc.buildout

Modified: zc.buildout/trunk/src/zc/buildout/allowhosts.txt
===================================================================
--- zc.buildout/trunk/src/zc/buildout/allowhosts.txt	2008-06-13 20:02:43 UTC (rev 87373)
+++ zc.buildout/trunk/src/zc/buildout/allowhosts.txt	2008-06-13 21:02:59 UTC (rev 87374)
@@ -114,26 +114,22 @@
     >>> write(sample_buildout, 'buildout.cfg',
     ... '''
     ... [buildout]
-    ... parts=
-    ...     python
-    ...      
+    ... parts=python     
     ... foo = ${python:interpreter}
     ...      
     ... [python]
     ... recipe=zc.recipe.egg
-    ... eggs=ipython
+    ... eggs=zc.buildout
     ... interpreter=python
     ... ''')
     >>> print system(buildout)
     Unused options for buildout: 'foo'.
     Installing python.
-    Getting distribution for 'ipython'.
-    Got ipython 0.8.3.
-    Generated script 'bin/ipython'.
-    Generated script 'bin/pycolor'.
+    Generated script 'bin/buildout'.
     Generated interpreter 'bin/python'.
     <BLANKLINE>
 
-The bug 239212 above would have got us an *AttrubuteError* on *buildout._allow_hosts*.
-This was fixed in thhis changeset:
+The bug 239212 above would have got us an *AttributeError* on *buildout._allow_hosts*.
+This was fixed in this changeset:
 http://svn.zope.org/zc.buildout/trunk/src/zc/buildout/buildout.py?rev=87309&r1=87277&r2=87309
+



More information about the Checkins mailing list