[Blends-commit] r3607 - /blends/trunk/team_analysis_tools/count-dependencies.py
tille at users.alioth.debian.org
tille at users.alioth.debian.org
Thu Oct 25 06:41:26 UTC 2012
Author: tille
Date: Thu Oct 25 06:41:26 2012
New Revision: 3607
URL: http://svn.debian.org/wsvn/blends/?sc=1&rev=3607
Log:
Ignore BLEND-config metapackage in statistics
Modified:
blends/trunk/team_analysis_tools/count-dependencies.py
Modified: blends/trunk/team_analysis_tools/count-dependencies.py
URL: http://svn.debian.org/wsvn/blends/blends/trunk/team_analysis_tools/count-dependencies.py?rev=3607&op=diff
==============================================================================
--- blends/trunk/team_analysis_tools/count-dependencies.py (original)
+++ blends/trunk/team_analysis_tools/count-dependencies.py Thu Oct 25 06:41:26 2012
@@ -92,7 +92,7 @@
while pkg:
if pkg.has_key('package'):
package = pkg['package']
- if package != BLEND+'-common' and package != BLEND+'-tasks':
+ if package != BLEND+'-common' and package != BLEND+'-tasks' and package != BLEND+'-config':
if pkg.has_key('recommends'):
recommends = pkg['recommends']
task.add_recommends(package,recommends)
More information about the Blends-commit
mailing list