This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository buildscripts. from d8ac6d1 home/.dupload.conf.x2go: add Raspbian jessie support. new c5ba772 bin/sbuild-deb-package: fix stupid logic error related to Raspbian builds... new a89b1d6 bin/sbuild-deb-package: sbuild does not like --jobs=auto, switch to --jobs=2 instead. 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/sbuild-deb-package | 4 ++-- 1 file changed, 2 insertions(+), 2 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 c5ba7725cbbf25202172f95c13001403089f0762 Author: Mihai Moldovan <ionic@ionic.de> Date: Tue Nov 15 05:23:24 2016 +0100 bin/sbuild-deb-package: fix stupid logic error related to Raspbian builds... --- bin/sbuild-deb-package | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/sbuild-deb-package b/bin/sbuild-deb-package index 5b648b0..a736932 100755 --- a/bin/sbuild-deb-package +++ b/bin/sbuild-deb-package @@ -339,7 +339,7 @@ build_packages() { SBUILD_OPTIONS_32="${SBUILD_OPTIONS} --arch=i386 --debbuildopts=\"-B\"" SBUILD_OPTIONS_ARMHF="${SBUILD_OPTIONS} --arch=armhf" - [ "${l_DIST}" != "raspbian" ] && { + [ "${l_DIST}" = "raspbian" ] && { [ "${SKIP_ARCH}" != "armhf" ] && grep -Eqs 'Architecture.*(all|any|armhf)' "${TEMP_DIR}/${PROJECT}/debian/control" && { cd "${PKGDIST}/${l_DIST}/${l_CODENAME}/armhf" nice ${SBUILD} ${SBUILD_OPTIONS_ARMHF} "${PROJECT_DIR}" -- 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 a89b1d62bfe1db0828bd539c41b6fcf25bcdbe99 Author: Mihai Moldovan <ionic@ionic.de> Date: Tue Nov 15 05:23:46 2016 +0100 bin/sbuild-deb-package: sbuild does not like --jobs=auto, switch to --jobs=2 instead. --- bin/sbuild-deb-package | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/sbuild-deb-package b/bin/sbuild-deb-package index a736932..4dd0f2c 100755 --- a/bin/sbuild-deb-package +++ b/bin/sbuild-deb-package @@ -325,7 +325,7 @@ build_packages() { # create git changelog immediately prior to building the package git --no-pager log --since "2 years ago" --format="%ai %aN (%h) %n%n%x09*%w(68,0,10) %s%d%n" > ChangeLog.gitlog - SBUILD_OPTIONS="-n --jobs=auto -sAd ${codename} -k ${GPG_KEY} --build-dep-resolver=aptitude" + SBUILD_OPTIONS="-n --jobs=2 -sAd ${codename} -k ${GPG_KEY} --build-dep-resolver=aptitude" if [ -n "${SA_OPTION}" ]; then SBUILD_OPTIONS="${SBUILD_OPTIONS} ${SA_OPTION}" -- Alioth's /srv/git/code.x2go.org/buildscripts.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/buildscripts.git