[Checkins] SVN: zopetoolkit/trunk/ Add depgraph support. It is now possible to generate graphs for the

Martijn Faassen faassen at startifact.com
Fri Sep 18 18:27:17 EDT 2009


Log message for revision 104365:
  Add depgraph support. It is now possible to generate graphs for the
  toolkit's dependencies by running bin/graph-depgraph
  

Changed:
  U   zopetoolkit/trunk/README.txt
  U   zopetoolkit/trunk/buildout.cfg

-=-
Modified: zopetoolkit/trunk/README.txt
===================================================================
--- zopetoolkit/trunk/README.txt	2009-09-18 20:58:31 UTC (rev 104364)
+++ zopetoolkit/trunk/README.txt	2009-09-18 22:27:17 UTC (rev 104365)
@@ -13,4 +13,9 @@
 dependencies) and can directly be used with a buildout by specifying this file
 via the `extends` mechanism.
 
+To test the ZTK, run ``bin/test-ztk``. 
+
+To generate dependency graphs for the ZTK, run ``bin/depgraph``. The
+resulting SVN graphs will be in ``parts/depgraph``.
+
 For details about the ZTK, please see http://docs.zope.org/zopetoolkit.

Modified: zopetoolkit/trunk/buildout.cfg
===================================================================
--- zopetoolkit/trunk/buildout.cfg	2009-09-18 20:58:31 UTC (rev 104364)
+++ zopetoolkit/trunk/buildout.cfg	2009-09-18 22:27:17 UTC (rev 104365)
@@ -1,11 +1,19 @@
 [buildout]
-parts = test-ztk
+parts = test-ztk depgraph
 extends = ztk.cfg
 versions = versions
 
 [versions]
 z3c.recipe.compattest = 0.9
+tl.eggdeps = 0.4
+z3c.recipe.depgraph = 0.3
 
 [test-ztk]
 recipe = z3c.recipe.compattest
 include = ${ztk:packages}
+
+[depgraph]
+recipe = z3c.recipe.depgraph
+eggs = ${ztk:packages}
+variants = base 
+           scc



More information about the checkins mailing list