1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
#!/usr/bin/env python
# date ruby.eclass ruby-ng.eclass ruby18 ruby19 jruby
# 2010-01-20 181 143 141 68 51
# 2010-01-21 180 144 142 68 52
date_fmt = "%Y-%m-%d"
bins = ('ruby', 'ruby-ng', 'ruby_targets_ruby18', 'ruby_targets_ruby19',
'ruby_targets_ruby20', 'ruby_targets_jruby', 'ruby_targets_ree18',
'ruby_targets_rbx', 'ruby_targets_ruby21', 'ruby_targets_ruby22',
'ruby_targets_ruby23', 'ruby_targets_ruby24', 'ruby_targets_ruby25',
'ruby_targets_ruby26', 'ruby_targets_ruby27', 'ruby_targets_ruby30',
'ruby_targets_ruby31', 'ruby_targets_ruby32', 'ruby_targets_ruby33')
import sys
import time
import os
import portage
def main():
stats = {}
for k in bins:
stats[k] = set()
portdb = portage.portdb
portdb.porttrees = [portdb.porttree_root] # exclude overlays
for cp in portdb.cp_all():
slot_dict = {}
for cpv in portdb.cp_list(cp):
slot, iuse, inherited = portdb.aux_get(cpv, ['SLOT', 'IUSE', 'INHERITED'])
slot_dict.setdefault(slot, {})[cpv] = (iuse, inherited)
for slot, cpv_dict in slot_dict.items():
cpv = portage.best(list(cpv_dict))
if cpv:
iuse, inherited = cpv_dict[cpv]
iuse = set(iuse.split())
inherited = set(inherited.split())
if 'ruby' in inherited:
stats['ruby'].add(cpv)
if 'ruby-ng' in inherited:
stats['ruby-ng'].add(cpv)
if 'ruby_targets_ruby18' in iuse:
stats['ruby_targets_ruby18'].add(cpv)
if 'ruby_targets_ruby19' in iuse:
stats['ruby_targets_ruby19'].add(cpv)
if 'ruby_targets_ruby20' in iuse:
stats['ruby_targets_ruby20'].add(cpv)
if 'ruby_targets_ruby21' in iuse:
stats['ruby_targets_ruby21'].add(cpv)
if 'ruby_targets_ruby22' in iuse:
stats['ruby_targets_ruby22'].add(cpv)
if 'ruby_targets_ruby23' in iuse:
stats['ruby_targets_ruby23'].add(cpv)
if 'ruby_targets_ruby24' in iuse:
stats['ruby_targets_ruby24'].add(cpv)
if 'ruby_targets_ruby25' in iuse:
stats['ruby_targets_ruby25'].add(cpv)
if 'ruby_targets_ruby26' in iuse:
stats['ruby_targets_ruby26'].add(cpv)
if 'ruby_targets_ruby27' in iuse:
stats['ruby_targets_ruby27'].add(cpv)
if 'ruby_targets_ruby30' in iuse:
stats['ruby_targets_ruby30'].add(cpv)
if 'ruby_targets_ruby31' in iuse:
stats['ruby_targets_ruby31'].add(cpv)
if 'ruby_targets_ruby32' in iuse:
stats['ruby_targets_ruby32'].add(cpv)
if 'ruby_targets_ruby33' in iuse:
stats['ruby_targets_ruby33'].add(cpv)
if 'ruby_targets_jruby' in iuse:
stats['ruby_targets_jruby'].add(cpv)
if 'ruby_targets_ree18' in iuse:
stats['ruby_targets_ree18'].add(cpv)
if 'ruby_targets_rbx' in iuse:
stats['ruby_targets_rbx'].add(cpv)
date_stamp = time.strftime(date_fmt, time.gmtime())
counts = [str(len(stats[x])) for x in bins]
sys.stdout.write("%s\t%s\n" % (date_stamp, "\t".join(counts)))
if __name__ == '__main__':
main()
|