aboutsummaryrefslogtreecommitdiffstats
path: root/dist-tools
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2010-02-06 13:54:43 +0100
committerMatthias Andree <matthias.andree@gmx.de>2010-02-06 13:54:43 +0100
commit903b0498f0996fd45edfe33078f210381c228b27 (patch)
tree9dbf4dc678de07789118f7a7625828cb3c8c8a66 /dist-tools
parentdf77bb5c22b5386bdecd1ea6bb7eb35ebe01b1d6 (diff)
downloadfetchmail-903b0498f0996fd45edfe33078f210381c228b27.tar.gz
fetchmail-903b0498f0996fd45edfe33078f210381c228b27.tar.bz2
fetchmail-903b0498f0996fd45edfe33078f210381c228b27.zip
Update documents/scripts after SVN -> Git move.
Diffstat (limited to 'dist-tools')
-rwxr-xr-xdist-tools/getstats.py3
-rwxr-xr-xdist-tools/makerelease.pl (renamed from dist-tools/makerelease)2
-rwxr-xr-xdist-tools/send-security-announce.sh4
3 files changed, 7 insertions, 2 deletions
diff --git a/dist-tools/getstats.py b/dist-tools/getstats.py
index 17fcab50..df2fbeaf 100755
--- a/dist-tools/getstats.py
+++ b/dist-tools/getstats.py
@@ -4,6 +4,9 @@
import commands, os, string, ftplib
+print "This script must be adjusted for Git."
+exit(1)
+
# Get version and date
date = commands.getoutput("LC_TIME=C date -u")
pid = os.getpid()
diff --git a/dist-tools/makerelease b/dist-tools/makerelease.pl
index 59b120e3..9578eb52 100755
--- a/dist-tools/makerelease
+++ b/dist-tools/makerelease.pl
@@ -7,6 +7,8 @@
use POSIX qw(strftime);
$tmp = $ENV{TMPDIR} || $ENV{TMP} || $ENV{TEMP} || "/tmp";
+die "This script ($0) needs to be updated for the Git-orious repo.";
+
$project = "fetchmail";
$svnrepos = "http://mknod.org/svn/$project";
$website = "http://developer.berlios.de/projects/$project";
diff --git a/dist-tools/send-security-announce.sh b/dist-tools/send-security-announce.sh
index 2fe60265..d7da5fbb 100755
--- a/dist-tools/send-security-announce.sh
+++ b/dist-tools/send-security-announce.sh
@@ -1,7 +1,7 @@
test "$SEND_ANNOUNCEMENTS" = doit || { echo "read the source, luke! -> $0" ; cat "$0" ; exit 1 ; }
-ANN=fetchmail-SA-2009-01
-FILE=$HOME/VCS-mine/fetchmail.svn/BRANCH_6-3/$ANN.txt
+ANN=fetchmail-SA-2010-01
+FILE=$HOME/VCS-mine/fetchmail.git/$ANN.txt
test -r $FILE || { echo "Cannot find $FILE." ; exit 1 ; }
CVE=$(sed -n '/^CVE Name:/ { s/^.*:[ ]*//p;q; }' $FILE)
SUBJECT="fetchmail security announcement $ANN ($CVE)"