Author: markt
Date: Mon Mar 5 12:14:37 2018
New Revision: 1825880
URL: http://svn.apache.org/viewvc?rev=1825880&view=rev
Log:
Remove MD5 from build script.
Update hashes in README.
Modified:
tomcat/jk/trunk/tools/dist/README.html
tomcat/jk/trunk/tools/signfile.sh
Modified: tomcat/jk/trunk/tools/dist/README.html
URL:
http://svn.apache.org/viewvc/tomcat/jk/trunk/tools/dist/README.html?rev=1825880&r1=1825879&r2=1825880&view=diff
==============================================================================
--- tomcat/jk/trunk/tools/dist/README.html (original)
+++ tomcat/jk/trunk/tools/dist/README.html Mon Mar 5 12:14:37 2018
@@ -39,7 +39,7 @@ nearest mirror site!</a></a></h2>
be matched against the
<a href="http://www.apache.org/dist/tomcat/tomcat-connectors/KEYS">KEYS</a>
file which contains the OpenPGP keys of the Release Managers. We also
- provide an <code>MD5</code> checksum for every release file. After you
- download the file, you should calculate a checksum for your download, and
- make sure it is the same as ours.
+ provide an <code>SHA1</code> and <code>SHA512</code> checksum for every
+ release file. After you download the file, you should calculate a checksum
+ for your download, and make sure it is the same as ours.
</p>
\ No newline at end of file
Modified: tomcat/jk/trunk/tools/signfile.sh
URL:
http://svn.apache.org/viewvc/tomcat/jk/trunk/tools/signfile.sh?rev=1825880&r1=1825879&r2=1825880&view=diff
==============================================================================
--- tomcat/jk/trunk/tools/signfile.sh (original)
+++ tomcat/jk/trunk/tools/signfile.sh Mon Mar 5 12:14:37 2018
@@ -38,13 +38,6 @@ do
esac
done
-# Try to locate a MD5 binary
-md5_bin="`which md5sum 2>/dev/null || type md5sum 2>&1`"
-if [ -x "$md5_bin" ]; then
- MD5SUM="$md5_bin --binary "
-else
- MD5SUM="echo 00000000000000000000000000000000 "
-fi
# Try to locate a SHA1 binary
sha1_bin="`which sha1sum 2>/dev/null || type sha1sum 2>&1`"
if [ -x "$sha1_bin" ]; then
@@ -64,7 +57,6 @@ for o
do
echo "Signing $o"
gpg $gpgopts $o
- $MD5SUM $o > $o.md5
$SHA1SUM $o > $o.sha1
$SHA512SUM $o > $o.sha512
done
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]