aboutsummaryrefslogtreecommitdiffstats
path: root/dist-tools/getstats.py
blob: 17fcab501a21a01fcd7535445f28e2a51778326a (plain)
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
#!/usr/bin/env python
#
# Collect statistics on current release.

import commands, os, string, ftplib

# Get version and date
date = commands.getoutput("LC_TIME=C date -u")
pid = os.getpid()
if True:
    # this is a fast variant using the base of the current working directory
    # (ignores uncommitted modifications)
    cmd = "svn export -q -rBASE . /tmp/getstats.%d" % pid
else:
    #  this is a slower variant that may export the whole tree across
    #  the net
    cmd = "svn export -rCOMMITTED . /tmp/getstats.%d" % pid

if os.system(cmd):
    print "SVN FAILED"
    os.exit(1)

ln = commands.getoutput("cat /tmp/getstats.%d/*.[chly] 2>/dev/null | wc -l" % pid)
os.system("rm -rf /tmp/getstats.%d" % pid)
vers = commands.getoutput("sed -n -e '/AC_INIT/s/AC_INIT(\\[.\\+\\],\\[\\(.*\\)\\],.*)/\\1/p' <configure.ac")
print "fetchmail-" + vers + " (" + date + "), " + string.strip(ln) + " lines:"

# end of getstats.py