aboutsummaryrefslogtreecommitdiffstats
path: root/indexgen.sh
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2001-06-25 00:34:44 +0000
committerEric S. Raymond <esr@thyrsus.com>2001-06-25 00:34:44 +0000
commit31e021867a047cec8d8f8ae866ff23b6c090a37d (patch)
tree8c44cf7f71258668317bcfaee9e26959047c1641 /indexgen.sh
parent41d8b8ba67b001a648cf01c48dc34db1a1e25075 (diff)
downloadfetchmail-31e021867a047cec8d8f8ae866ff23b6c090a37d.tar.gz
fetchmail-31e021867a047cec8d8f8ae866ff23b6c090a37d.tar.bz2
fetchmail-31e021867a047cec8d8f8ae866ff23b6c090a37d.zip
Ready to release.
svn path=/trunk/; revision=3380
Diffstat (limited to 'indexgen.sh')
-rwxr-xr-xindexgen.sh28
1 files changed, 27 insertions, 1 deletions
diff --git a/indexgen.sh b/indexgen.sh
index b65c213d..ebb5009c 100755
--- a/indexgen.sh
+++ b/indexgen.sh
@@ -33,6 +33,11 @@ then
done
fi
+# Cryptographically sign checksums
+gpg --clearsign checksums
+mv checksums.asc checksums
+gpg --detach-sign --armor fetchmail-$(VERSION).tar.gz
+
cat >index.html <<EOF
<!doctype HTML public "-//W3O//DTD W3 HTML 3.2//EN">
<HTML>
@@ -137,7 +142,21 @@ You can get any of the following leading-edge resources here:
Source RPM of fetchmail $version</a>
</UL>
-MD5 <a href="checksums">checksums</a> are available for these files.<p>
+The <a href="fetchmail-$version.tar.gz.asc">detached GPG signature</a> for the
+binary tarball can be used to check it for correctness, with the command
+
+<listing>
+gpg --verify fetchmail-$version.tar.gz.asc fetchmail-$version.tar.gz
+</listing>
+
+MD5 <a href="checksums">checksums</a> are available for these files; the
+checksum file is cryptographically signed and can be verified with the
+command:
+
+<listing>
+gpg --verify checksums.asc
+</listing>
+
EOF
if [ $version != $goldvers ]
@@ -155,6 +174,13 @@ Or you can get the last \`gold' version, $goldname:
<LI> <a href="fetchmail-$goldvers-1.src.rpm">
Source RPM of fetchmail $goldname</a>
</UL>
+The <a href="fetchmail-$goldvers.tar.gz.asc">detached GPG signature</a> for the
+binary tarball can be used to check it for correctness, with the command
+
+<listing>
+gpg --verify fetchmail-$goldvers.tar.gz.asc fetchmail-$goldvers.tar.gz
+</listing>
+
For differences between the leading-edge $version and gold $goldname versions,
see the distribution <a href="NEWS">NEWS</a> file.<p>
EOF