Merge "Generate sha1 and md5 sum file for wheels"

This commit is contained in:
Jenkins 2014-06-02 14:13:24 +00:00 committed by Gerrit Code Review
commit 9884a1074f

View File

@ -32,7 +32,12 @@ rm -f dist/*.whl
tox -evenv pip install wheel
tox -evenv python setup.py bdist_wheel
echo "SHA1sum: "
sha1sum dist/*
echo "MD5sum: "
md5sum dist/*
FILES=dist/*.whl
for f in $FILES
do
echo -n "SHA1sum for $f: "
sha1sum $f | awk '{print $1}' | tee $f.sha1
echo -n "MD5sum for $f: "
md5sum $f | awk '{print $1}' | tee $f.md5
done