This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository buildscripts. from 6253e87 bin/sbuild-deb-package: really split up the upstream version at the *last* hyphen, since this character is illegal in a Debian revision and hence must belong to upstream version if encountered mid-string. new 04dc4df bin/sbuild-deb-package: further ignore non-existent upstream branch, we really only care for upstream/${upstream_version} branches. 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- 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 04dc4df48e460dac97874f65bd70cbcc0e56e8b1 Author: Mihai Moldovan <ionic@ionic.de> Date: Sat Jun 30 22:57:39 2018 +0200 bin/sbuild-deb-package: further ignore non-existent upstream branch, we really only care for upstream/${upstream_version} branches. --- 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 d2c430b..044cfd9 100755 --- a/bin/sbuild-deb-package +++ b/bin/sbuild-deb-package @@ -330,7 +330,7 @@ build_packages() { # we always build native packages for our repos SA_OPTION="" test -f "debian/source/format" && grep -Eqs '^3.0.*\(quilt\)$' "debian/source/format" && { - git fetch origin upstream:upstream + git fetch origin upstream:upstream || true # v remove epoch v remove debian revision UPSTREAM_VERSION="$(dpkg-parsechangelog | grep "Version:" | cut -d " " -f2 | sed -e 's/^.*://' -e 's/-[^-]*$//')" REVISION="$(dpkg-parsechangelog | grep "Version:" | cut -d " " -f2 | sed -e 's/.*-//')" -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/buildscripts.git