This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository buildscripts. from 0f51902 bin/build-rpm-package: replace mock '--result path' with '--resultdir=path' and use more quoting. new d73247d x2go-signtarballs: be more verbose, add sha256 checksums The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: bin/signtarballs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/buildscripts.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository buildscripts. commit d73247d9496f6bf8f0b7bff84af9c375bb0916bc Author: X2Go Admin <git-admin@x2go.org> Date: Tue Feb 10 20:22:46 2015 +0100 x2go-signtarballs: be more verbose, add sha256 checksums --- bin/signtarballs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bin/signtarballs b/bin/signtarballs index 81fa596..12be260 100755 --- a/bin/signtarballs +++ b/bin/signtarballs @@ -3,8 +3,9 @@ test -d _releases_ && cd _releases_ || test -d ../_releases_ && cd ../_releases_ || exit -1 find * -type f | egrep ".*(\.zip|\.tar\.gz|\.exe|\.dmg)$" | while read tarball; do - test -f $tarball.md5 || md5sum $tarball > $tarball.md5 - test -f $tarball.sha1 || sha1sum $tarball > $tarball.sha1 + test -f $tarball.md5 || md5sum $tarball | tee $tarball.md5 + test -f $tarball.sha1 || sha1sum $tarball | tee $tarball.sha1 + test -f $tarball.sha256 || sha256sum $tarball | tee $tarball.sha256 test -f $tarball.asc || gpg -a -b --sign $tarball done -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/buildscripts.git