aboutsummaryrefslogtreecommitdiffstats
path: root/timeplot
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 /timeplot
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 'timeplot')
-rwxr-xr-xtimeplot40
1 files changed, 0 insertions, 40 deletions
diff --git a/timeplot b/timeplot
deleted file mode 100755
index c8240d05..00000000
--- a/timeplot
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/bin/sh
-#
-# timeplot -- plot data on fetchmail release intervals
-#
-#
-
-# Get data from the NEWS file
-timeseries | awk >/tmp/timeplot$$ '
-START {maxdiff = 0;}
-/^[#%]/ {next;}
- {days[count++] = $6;}
-END {
- for (i = 0; i < count-1; i++)
- {
- diffs[i] = days[i] - days[i + 1];
- if (maxdiff < diffs[i])
- maxdiff = diffs[i];
- }
- for (i = 0; i <= maxdiff; i++)
- freq[i] = 0;
- for (i = 0; i < count - 1; i++)
- {
- freq[diffs[i]]++;
- }
- for (i = 0; i <= maxdiff; i++)
- printf("%d %d\n", i, freq[i]);
- }
-'
-
-gnuplot >time.png - <<EOF
-set xlabel "Release interval (days)"
-set ylabel "Interval frequency"
-plot '/tmp/timeplot$$' using 1:2 \
- title "Release interval frequency"
-pause 9999
-EOF
-
-rm -f /tmp/time*
-
-# timeplot ends here