This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository buildscripts. from 0cb3b3f bin/slave-start-prepare.sh: don't use special array-like splitting when calling sg. new 34fed50 bin/sbuild-deb-package: Debian uses ppc64el, so use that name correctly in the special arch-aware sbuild options array. 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/sbuild-deb-package | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) -- Alioth's /home/x2go-admin/maintenancescripts/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 34fed504b8c04cdba80722e33307840cb69a5b52 Author: Mihai Moldovan <ionic@ionic.de> Date: Sat Nov 25 23:16:21 2017 +0100 bin/sbuild-deb-package: Debian uses ppc64el, so use that name correctly in the special arch-aware sbuild options array. --- bin/sbuild-deb-package | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/sbuild-deb-package b/bin/sbuild-deb-package index acbe6b9..cb79538 100755 --- a/bin/sbuild-deb-package +++ b/bin/sbuild-deb-package @@ -387,14 +387,14 @@ build_packages() { typeset -a sbuild_options_amd64 sbuild_options_i386 \ sbuild_options_armhf \ sbuild_options_powerpc sbuild_options_ppc64 \ - sbuild_options_ppc64le + sbuild_options_ppc64el sbuild_options_amd64=("${sbuild_options[@]}") sbuild_options_i386=("${sbuild_options[@]}" "--arch=i386" "--debbuildopts=-B") sbuild_options_armhf=("${sbuild_options[@]}" "--arch=armhf" "--chroot=${codename}-armhf-raspbian-sbuild") sbuild_options_powerpc=("${sbuild_options[@]}") # ppc64 is the more or less experimental Power7+ ppc64 port only available for unstable with experimental packages. sbuild_options_ppc64=("${sbuild_options[@]}" "--arch=ppc64" "--chroot=${codename}-ppc64-sbuild" "--debbuildopts=-B") - sbuild_options_ppc64le=("${sbuild_options[@]}") + sbuild_options_ppc64el=("${sbuild_options[@]}") typeset base_arch="${arches[0]}" [ "x${SKIP_ARCH}" != "x${base_arch}" ] && grep -Eqs "Architecture.*(all|any|${base_arch})" "${TEMP_DIR}/${PROJECT}/debian/control" && { -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/buildscripts.git