[Checkins] SVN: z3c.recipe.depgraph/trunk/src/z3c/recipe/depgraph/runner.py Generate sccmap too.

Martijn Faassen faassen at infrae.com
Wed Apr 1 13:02:06 EDT 2009


Log message for revision 98764:
  Generate sccmap too.
  

Changed:
  U   z3c.recipe.depgraph/trunk/src/z3c/recipe/depgraph/runner.py

-=-
Modified: z3c.recipe.depgraph/trunk/src/z3c/recipe/depgraph/runner.py
===================================================================
--- z3c.recipe.depgraph/trunk/src/z3c/recipe/depgraph/runner.py	2009-04-01 16:51:29 UTC (rev 98763)
+++ z3c.recipe.depgraph/trunk/src/z3c/recipe/depgraph/runner.py	2009-04-01 17:02:05 UTC (rev 98764)
@@ -3,6 +3,8 @@
 GENERATE = "./bin/%(scriptname)s -x -d %(package)s -i setuptools > %(output)s"
 TRED = "tred %(input)s > %(output)s"
 GRAPH = "dot -Tsvg %(input)s > %(output)s"
+SCCMAP = "sccmap -d %(input)s > %(output)s"
+SCCGRAPH = "dot -Tsvg %(input)s -O"
 
 PACKAGE_EXCEPTIONS = {
     'Plone' : 'Products.CMFPlone',
@@ -42,3 +44,10 @@
         execute(GRAPH,
             input=specfile + '-tred.dot',
             output=specfile + '-tred.svg')
+
+        execute(SCCMAP,
+            input=specfile + '.dot',
+            output=specfile + '-sccmap')
+
+        execute(SCCGRAPH,
+            input=specfile + '-sccmap')



More information about the Checkins mailing list