This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository buildscripts. from d65a05a fix closure rewrites new 1ac41b6 include x2goadmincenter in nightly builds new 3afbd61 support epel-7 builds by default new 11d444a also sign zip-files new cb17ede support epel-7 builds by default" new 2fc83c7 fix update scripts for release builds The 5 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/build-rpm-package | 2 +- bin/signtarballs | 2 +- bin/updatebuildmain | 2 +- bin/updatebuildrelease | 2 +- home/.buildscripts/x2go.conf | 3 ++- 5 files changed, 6 insertions(+), 5 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 1ac41b671576401e8fc1a68de3cc77101bf7a14a Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Tue Jan 28 15:25:38 2014 +0100 include x2goadmincenter in nightly builds --- home/.buildscripts/x2go.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/home/.buildscripts/x2go.conf b/home/.buildscripts/x2go.conf index 919271b..1e1da5e 100644 --- a/home/.buildscripts/x2go.conf +++ b/home/.buildscripts/x2go.conf @@ -44,6 +44,7 @@ x2goserver $COMPONENT_NIGHTLY master\n\ x2gobroker $COMPONENT_NIGHTLY master\n\ x2goclient $COMPONENT_NIGHTLY master\n\ cups-x2go $COMPONENT_NIGHTLY master\n\ +x2goadmincenter $COMPONENT_NIGHTLY master\n\ x2godesktopsharing $COMPONENT_NIGHTLY master\n\ x2gognomebindings $COMPONENT_NIGHTLY master\n\ x2golxdebindings $COMPONENT_NIGHTLY master\n\ -- 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 3afbd61845f6113314e3b3fd8b287add3500de66 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Tue Jan 28 15:26:01 2014 +0100 support epel-7 builds by default --- home/.buildscripts/x2go.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/.buildscripts/x2go.conf b/home/.buildscripts/x2go.conf index 1e1da5e..1edb807 100644 --- a/home/.buildscripts/x2go.conf +++ b/home/.buildscripts/x2go.conf @@ -14,7 +14,7 @@ RPMEMAIL=git-admin@x2go.org RPMFULLNAME="X2go Git Administrator" GPG_KEY="F4A7678C9C6B0B2B" RPM_DISTS_SUPPORTED="fedora epel" -RPM_BUILD_FOR=${RPM_BUILD_FOR:-"fedora:18,19,20,rawhide epel:6"} +RPM_BUILD_FOR=${RPM_BUILD_FOR:-"fedora:18,19,20,rawhide epel:6,7"} RPM_REPOS_BASE=/srv/sites/x2go.org/packages/ COMPONENT_MAIN="main" -- 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 11d444aa9ef8c675b4b9ec5250292eea11093566 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Tue Jan 28 15:27:40 2014 +0100 also sign zip-files --- bin/signtarballs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/signtarballs b/bin/signtarballs index 5dc236f..81fa596 100755 --- a/bin/signtarballs +++ b/bin/signtarballs @@ -2,7 +2,7 @@ test -d _releases_ && cd _releases_ || test -d ../_releases_ && cd ../_releases_ || exit -1 -find * -type f | egrep ".*(\.tar\.gz|\.exe|\.dmg)$" | while read tarball; do +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.asc || gpg -a -b --sign $tarball -- 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 2fc83c747ded932ce84ac0218a8cf19633ca0227 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Tue Jan 28 15:28:38 2014 +0100 fix update scripts for release builds --- bin/updatebuildmain | 2 +- bin/updatebuildrelease | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/updatebuildmain b/bin/updatebuildmain index 5a46ea4..9106e0a 100755 --- a/bin/updatebuildmain +++ b/bin/updatebuildmain @@ -31,8 +31,8 @@ test -z $1 || test -d ./.git || { } # update the build-main branch with our newest blessed reference -git branch -d build-main &>/dev/null || true git tag -d build-main &>/dev/null || true +git branch -D build-main &>/dev/null || true git checkout -b build-main $REF || true git push $ORIGIN build-main:build-main git checkout master diff --git a/bin/updatebuildrelease b/bin/updatebuildrelease index c11c538..d5e5eb8 100755 --- a/bin/updatebuildrelease +++ b/bin/updatebuildrelease @@ -32,8 +32,8 @@ test -z $1 || test -d ./.git || { } # update the build-main branch with our newest blessed reference -git branch -d build-$RELEASE &>/dev/null || true git tag -d build-$RELEASE &>/dev/null || true +git branch -D build-$RELEASE &>/dev/null || true git checkout -b build-$RELEASE $REF || true git push $ORIGIN build-$RELEASE:build-$RELEASE git checkout master -- 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 cb17ede63e21de046a1b98c0a3dddeae85aa33b0 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Tue Jan 28 15:28:16 2014 +0100 support epel-7 builds by default" --- bin/build-rpm-package | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/build-rpm-package b/bin/build-rpm-package index efa8a5a..d6bb7ca 100755 --- a/bin/build-rpm-package +++ b/bin/build-rpm-package @@ -27,7 +27,7 @@ RPMFULLNAME="Firstname Lastname" GPG_KEY= RPM_DISTS_SUPPORTED="fedora epel" FEDORA_DISTROS="18,19,20,rawhide" -EPEL_DISTROS="6" +EPEL_DISTROS="6,7" RPM_REPOS_BASE=/var/www/ COMPONENT_MAIN="main" -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/buildscripts.git