aboutsummaryrefslogtreecommitdiffstats
path: root/getstats.py
diff options
context:
space:
mode:
authorGraham Wilson <graham@mknod.org>2004-08-30 01:34:48 +0000
committerGraham Wilson <graham@mknod.org>2004-08-30 01:34:48 +0000
commitc3a80da98846c21a5d3f32a91669d78774a0aa6a (patch)
tree72bee6836c468c8527560821cd65618f2c7b115d /getstats.py
parentfd2543489b53fe34a18b7204d6803bf527c0d198 (diff)
downloadfetchmail-c3a80da98846c21a5d3f32a91669d78774a0aa6a.tar.gz
fetchmail-c3a80da98846c21a5d3f32a91669d78774a0aa6a.tar.bz2
fetchmail-c3a80da98846c21a5d3f32a91669d78774a0aa6a.zip
Move a handful of scripts (used for releases, testing, etc.) to dist-tools, so that they are not released in the tarball.
svn path=/trunk/; revision=3934
Diffstat (limited to 'getstats.py')
-rwxr-xr-xgetstats.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/getstats.py b/getstats.py
deleted file mode 100755
index f957c7d3..00000000
--- a/getstats.py
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/usr/bin/env python
-#
-# Collect statistics on current release.
-
-import commands, string, ftplib
-
-# Get version and date
-date = commands.getoutput("date")
-ln = commands.getoutput("co -p RCS/*.[chly],v 2>/dev/null | wc -l")
-vers = commands.getoutput("sed -n -e '/VERSION/s/VERSION *= *\\(.*\\)/\\1/p' <Makefile")
-print "fetchmail-" + vers + " (" + date + "), " + string.strip(ln) + " lines:"
-
-# Use local listsize command to grab list statistics
-friends = commands.getoutput("listsize friends").strip()
-announce = commands.getoutput("listsize announce").strip()
-print "There are %s people on fetchmail-friends and %s on fetchmail-announce."% (friends, announce)
-
-# getstats.py