This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository buildscripts. from 692f74e bin/build-osx-package: clear out packages on the remote server in smart way to force checksum re-generation. new 84a64e7 bin/build-osx-package: make ${os_major} and ${os_minor} global. Needed later. new 24629a5 bin/build-osx-package: restrict package deletion to the builder's version. 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/build-osx-package | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) -- Alioth's /srv/git/code.x2go.org/buildscripts.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 24629a5433f5e17abca90db03c361ee6a8287c5d Author: Mihai Moldovan <ionic@ionic.de> Date: Fri Apr 7 13:45:34 2017 +0200 bin/build-osx-package: restrict package deletion to the builder's version. --- bin/build-osx-package | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/build-osx-package b/bin/build-osx-package index 9d9516b..c904f32 100755 --- a/bin/build-osx-package +++ b/bin/build-osx-package @@ -313,10 +313,10 @@ upload_packages() { # Delete files so that checksums are always regenerated. if [ "${is_release}" -eq "0" ]; then # Nightly builds are tracked by date and gitrev, so that multiple packages are possible per day if the repository changes between builds. - 0</dev/null ssh -- "${REPOS_SERVER}" "rm -rf -- '${OSX_REPOS_BASE}/${PROJECT}/${COMPONENT}/${upstream_version}/'*${DATE}.${gitrev}*" + 0</dev/null ssh -- "${REPOS_SERVER}" "rm -rf -- '${OSX_REPOS_BASE}/${PROJECT}/${COMPONENT}/${upstream_version}/'*${DATE}.${gitrev}*OSX_${os_major}_${os_minor}*" else # Releases are tracked by date, so that only one specific build per day is available. - 0</dev/null ssh -- "${REPOS_SERVER}" "rm -rf -- '${OSX_REPOS_BASE}/${PROJECT}/${COMPONENT}/${upstream_version}/'*${DATE}*" + 0</dev/null ssh -- "${REPOS_SERVER}" "rm -rf -- '${OSX_REPOS_BASE}/${PROJECT}/${COMPONENT}/${upstream_version}/'*${DATE}*OSX_${os_major}_${os_minor}*" fi # Remove packages that are older than 30 days, if building nightlies. -- Alioth's /srv/git/code.x2go.org/buildscripts.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 84a64e7dd3f0f901a9cc2fabe5163c283bb3dbf0 Author: Mihai Moldovan <ionic@ionic.de> Date: Fri Apr 7 13:45:09 2017 +0200 bin/build-osx-package: make ${os_major} and ${os_minor} global. Needed later. --- bin/build-osx-package | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/bin/build-osx-package b/bin/build-osx-package index 483bdb7..9d9516b 100755 --- a/bin/build-osx-package +++ b/bin/build-osx-package @@ -58,6 +58,8 @@ typeset -ag temp_cleanup="" typeset -g upstream_version="" typeset -g is_release="0" typeset -g gitrev="" +typeset -ig os_minor="0" +typeset -ig os_major="0" # End of non-user-serviceable part. set -ex @@ -238,8 +240,8 @@ build_packages() { # Make qt4 tools available. export PATH="${PATH}:/opt/local/libexec/qt4/bin/" - typeset -i os_major="0" - typeset -i os_minor="0" + os_major="0" + os_minor="0" os_major="$(get_generic_major_version "${l_CODENAME}")" if [ "${?}" -ne "0" ]; then -- Alioth's /srv/git/code.x2go.org/buildscripts.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/buildscripts.git