This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository buildscripts. from d73247d x2go-signtarballs: be more verbose, add sha256 checksums new 385f55f x2go-release-announcement: fix grammar and style in release mail, add pseudo-subject. new a7d0e8d signtarballs: quote variables/filenames, add even more verbosity. The 2 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 | 12 ++++-------- bin/x2go-release-announcement | 9 +++++++-- 2 files changed, 11 insertions(+), 10 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 385f55f1484cf9e8cbe3968ddf27d2ce8d69c32e Author: Mihai Moldovan <ionic@ionic.de> Date: Tue Feb 10 22:15:55 2015 +0100 x2go-release-announcement: fix grammar and style in release mail, add pseudo-subject. --- bin/x2go-release-announcement | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/bin/x2go-release-announcement b/bin/x2go-release-announcement index 071d4dc..ae0ba3a 100755 --- a/bin/x2go-release-announcement +++ b/bin/x2go-release-announcement @@ -27,9 +27,11 @@ done project=$(basename `pwd`) echo " -Dear all, +Subject: $project (<ver>) released -the X2Go project is proud to announce a new release of the X2Go +Dear all + +The X2Go project is proud to announce a new release of the X2Go component ,,$project''. New gains of this version of ,,$project'' are: @@ -58,6 +60,9 @@ cat debian/changelog | sed -e 's/Fixes:/Closes:/i' | dpkg-parsechangelog --offse echo echo " Regards, + + + <release-manager> " echo -- 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 a7d0e8dbd446a4d5828bc82b79e75bf997b39ee7 Author: Mihai Moldovan <ionic@ionic.de> Date: Tue Feb 10 22:24:26 2015 +0100 signtarballs: quote variables/filenames, add even more verbosity. --- bin/signtarballs | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/bin/signtarballs b/bin/signtarballs index 12be260..9a81b77 100755 --- a/bin/signtarballs +++ b/bin/signtarballs @@ -3,12 +3,8 @@ 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 | 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 + test -f "${tarball}.md5" || { printf "${tarball}.md5: "; md5sum "${tarball}" | tee "${tarball}.md5"; } + test -f "${tarball}.sha1" || { printf "${tarball}.sha1: "; sha1sum "${tarball}" | tee "${tarball}.sha1"; } + test -f "${tarball}.sha256" || { printf "${tarball}.sha256: "; sha256sum "${tarball}" | tee "${tarball}.sha256"; } + test -f "${tarball}.asc" || { printf "signing ${tarball}... "; gpg -a -b --sign "${tarball}"; printf 'done.\n'; } done - - - - -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/buildscripts.git