blob: f8d3f4c9df2cd231529d46a53b0109c6e2181702 (
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
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
|
#!/bin/sh
version=`sed -n '/VERSION *= *\(.*\)/s//\1/p' <Makefile`
echo "Uploading fetchmail version ${version}"
if [ $* ]
then
../upload $*
else
lftp <<EOF
# First, copy to primary website
open ${WWWHOST}
cd ${WWWDIR}/fetchmail
put fetchmail-${version}.tar.gz
put fetchmail-FAQ.html
put fetchmail-${version}-1.i386.rpm
put fetchmail-${version}-1.src.rpm
put fetchmail-features.html
put NEWS
put fetchmail-man.html
put design-notes.html
put todo.html
put testservers.html
# The following things vary seldom
#put funny.html
#put fetchmail.png
#put bighand.png
put growth.png
put timeseries
put growthplot
# The following things vary often
put checksums
put index.html
put history.html
close
echo "Upload to tuxedo complete"
# Next, upload to the ftp site
open locke.ccil.org
cd ~ftp/pub/esr/fetchmail
put fetchmail-${version}.tar.gz
put fetchmail-${version}-1.i386.rpm
put fetchmail-${version}-1.src.rpm
put README
put FAQ
put FEATURES
close
echo "Upload to locke complete"
# Next, upload to Metalab
open -u anonymous,esr@thyrsus.com metalab.unc.edu
cd incoming/Linux
put fetchmail-${version}.tar.gz
put fetchmail.lsm
put README -o fetchmail.README
put fetchmail-FAQ.html
put fetchmail-${version}-1.i386.rpm
put fetchmail-${version}-1.src.rpm
close
echo "Upload to Metalab complete"
# Finally, upload the RPMS to Red Hat
open incoming.redhat.com
cd libc6
put fetchmail-${version}-1.i386.rpm
put fetchmail-${version}-1.src.rpm
close
echo "Upload to Red Hat contrib complete"
EOF
echo "fetchmail uploaded"
fi
|