[Checkins] SVN: zc.buildout/trunk/zc.recipe.egg_/src/zc/recipe/egg/api.txt Added missing dependency in sample.

Jim Fulton jim at zope.com
Sun Aug 27 14:13:39 EDT 2006


Log message for revision 69805:
  Added missing dependency in sample.
  

Changed:
  U   zc.buildout/trunk/zc.recipe.egg_/src/zc/recipe/egg/api.txt

-=-
Modified: zc.buildout/trunk/zc.recipe.egg_/src/zc/recipe/egg/api.txt
===================================================================
--- zc.buildout/trunk/zc.recipe.egg_/src/zc/recipe/egg/api.txt	2006-08-27 17:53:37 UTC (rev 69804)
+++ zc.buildout/trunk/zc.recipe.egg_/src/zc/recipe/egg/api.txt	2006-08-27 18:13:38 UTC (rev 69805)
@@ -6,10 +6,10 @@
 recipe provides an API that other recipes can use.
 
 A recipe can reuse the egg recipe, supporting the eggs, find-links,
-index, and pythonoptions.  This is done by creating an egg
-recipe instance in a recipes's contructor.  In the recipe's install
-script, the egg-recipe instance's working_set method to collect the
-requested eggs and working set. 
+index, and python options.  This is done by creating an egg recipe
+instance in a recipes's contructor.  In the recipe's install script,
+the egg-recipe instance's working_set method is used to collect the
+requested eggs and working set.
 
 To illustrate, we create a sample recipe that is a very thin layer
 around the egg recipe:
@@ -53,6 +53,7 @@
     ... setup(
     ...     name = "sample",
     ...     entry_points = {'zc.buildout': ['default = sample:Sample']},
+    ...     install_requires = 'zc.recipe.egg',
     ...     )
     ... """)
 
@@ -95,6 +96,9 @@
     [sample-part]
     __buildout_installed__ = 
     __buildout_signature__ = sample-6aWMvV2EJ9Ijq+bR8ugArQ==
+            zc.recipe.egg-cAsnudgkduAa/Fd+WJIM6Q==
+            setuptools-0.6-py2.4.egg
+            zc.buildout-+rYeCcmFuD1K/aB77XTj5A==
     _b = /tmp/tmpb7kP9bsample-buildout/bin
     _d = /tmp/tmpb7kP9bsample-buildout/develop-eggs
     _e = /tmp/tmpb7kP9bsample-buildout/eggs



More information about the Checkins mailing list