mirror of git://gcc.gnu.org/git/gcc.git
gcc_release (snapshot_print): Include md5 hash for every tarball in the README file and notification mail.
* gcc_release (snapshot_print): Include md5 hash for every tarball in the README file and notification mail. From-SVN: r163251
This commit is contained in:
parent
73571bf1e2
commit
0c21b3cacd
|
@ -1,3 +1,8 @@
|
||||||
|
2010-08-14 Gerald Pfeifer <gerald@pfeifer.com>
|
||||||
|
|
||||||
|
* gcc_release (snapshot_print): Include md5 hash for every tarball
|
||||||
|
in the README file and notification mail.
|
||||||
|
|
||||||
2010-08-01 Gerald Pfeifer <gerald@pfeifer.com>
|
2010-08-01 Gerald Pfeifer <gerald@pfeifer.com>
|
||||||
|
|
||||||
* update_web_docs_libstdcxx_svn: Do not compress generated .html
|
* update_web_docs_libstdcxx_svn: Do not compress generated .html
|
||||||
|
|
|
@ -386,7 +386,10 @@ upload_files() {
|
||||||
# Print description if snapshot exists.
|
# Print description if snapshot exists.
|
||||||
snapshot_print() {
|
snapshot_print() {
|
||||||
if [ -e ${RELEASE}/$1 ]; then
|
if [ -e ${RELEASE}/$1 ]; then
|
||||||
printf "%-38s%s\n\n" "$1" "$2" >> ${SNAPSHOT_README}
|
hash=`openssl md5 ${RELEASE}/$1 | sed -e 's#(.*)##' -e 's# *= *#=#'`
|
||||||
|
|
||||||
|
printf "%-38s%s\n\n %s\n\n" "$1" "$2" "$hash" >> ${SNAPSHOT_README}
|
||||||
|
|
||||||
echo " <tr><td><a href=\"$1\">$1</a></td>" >> ${SNAPSHOT_INDEX}
|
echo " <tr><td><a href=\"$1\">$1</a></td>" >> ${SNAPSHOT_INDEX}
|
||||||
echo " <td>$2</td></tr>" >> ${SNAPSHOT_INDEX}
|
echo " <td>$2</td></tr>" >> ${SNAPSHOT_INDEX}
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue