This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository x2gomatebindings. from 802d980 x2gomatebindings.spec: switch to GTK 3 for Fedora 25 and up. new dffec22 debian/rules: drop debugging output (which only leads to failing builds on all platforms) and consolidate default values. new 276e5df x2gomatebindings.spec: don't automatically configure after running autogen.sh. new 75fd286 debian/rules: don't automatically configure after running autogen.sh. The 3 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: debian/changelog | 4 ++++ debian/rules | 21 +++++++-------------- x2gomatebindings.spec | 2 +- 3 files changed, 12 insertions(+), 15 deletions(-) -- Alioth's /srv/git/code.x2go.org/x2gomatebindings.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2gomatebindings.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2gomatebindings. commit dffec2230b6929e1a2e09ca489982d3d61fa85fb Author: Mihai Moldovan <ionic@ionic.de> Date: Sat Jun 11 17:11:26 2016 +0200 debian/rules: drop debugging output (which only leads to failing builds on all platforms) and consolidate default values. --- debian/changelog | 2 ++ debian/rules | 19 ++++++------------- 2 files changed, 8 insertions(+), 13 deletions(-) diff --git a/debian/changelog b/debian/changelog index 2ce0786..fb6e131 100644 --- a/debian/changelog +++ b/debian/changelog @@ -50,6 +50,8 @@ x2gomatebindings (0.0.1.4-0~x2go1) UNRELEASED; urgency=low - Fix Ubuntu versioning override. It's uglier now, but there's no way around that. - Add explicit "printf-style" debugging, hoping it will actually show up. + - Drop debugging output (which only leads to failing builds on all + platforms) and consolidate default values. -- X2Go Release Manager <git-admin@x2go.org> Tue, 10 Feb 2015 23:48:43 +0100 diff --git a/debian/rules b/debian/rules index ea8752c..9af2f0a 100755 --- a/debian/rules +++ b/debian/rules @@ -1,39 +1,32 @@ #!/usr/bin/make -f +RELEASE_VER = 0 +RELEASE_VER_MAJOR = 0 +RELEASE_VER_MINOR = 0 +SUBSTVARS = -Vdist:Depends="libgtk-2.0-bin" +USE_GTK = 2.0 + ifeq ($(shell dpkg-vendor --is Debian && echo yes),yes) RELEASE_VER = $(shell /usr/bin/lsb_release -r | /bin/sed -e 's/[ ]*//g' | /usr/bin/cut -d ':' -f '2' | /usr/bin/cut -d '.' -f '1') - @echo 'initial RELEASE_VER in Debian vendor section: $(RELEASE_VER)' # Let's fake unstable's "release version"... ifeq ($(RELEASE_VER),unstable) RELEASE_VER = 9999 - @echo 'unstable detected, resetted RELEASE_VER to: $(RELEASE_VER)' endif - SUBSTVARS = -Vdist:Depends="libgtk-2.0-bin" - USE_GTK = 2.0 - @echo 'initialized USE_GTK with: $(USE_GTK)' ifeq ($(shell /bin/bash -c '(( $(RELEASE_VER) >= 9 )) && echo yes'),yes) SUBSTVARS = -Vdist:Depends="libgtk-3.0-bin" USE_GTK = 3.0 - @echo 'overriding USE_GTK with version 3, check: $(USE_GTK)' endif else ifeq ($(shell dpkg-vendor --is Ubuntu && echo yes),yes) RELEASE_VER_MAJOR = $(shell /usr/bin/lsb_release -r | /bin/sed -e 's/[ ]*//g' | /usr/bin/cut -d ':' -f '2' | /usr/bin/cut -d '.' -f '1') RELEASE_VER_MINOR = $(shell /usr/bin/lsb_release -r | /bin/sed -e 's/[ ]*//g' | /usr/bin/cut -d ':' -f '2' | /usr/bin/cut -d '.' -f '2') - @echo 'initial RELEASE_VER_MAJOR in Ubuntu vendor section: $(RELEASE_VER_MAJOR)' - @echo 'initial RELEASE_VER_MINOR in Ubuntu vendor section: $(RELEASE_VER_MINOR)' - SUBSTVARS = -Vdist:Depends="libgtk-2.0-bin" - USE_GTK = 2.0 - @echo 'initialized USE_GTK with: $(USE_GTK)' ifeq ($(shell /bin/bash -c '(( $(RELEASE_VER_MAJOR) == 16 )) && echo yes'),yes) ifeq ($(shell /bin/bash -c '(( $(RELEASE_VER_MINOR) >= 10 )) && echo yes'),yes) SUBSTVARS = -Vdist:Depends="libgtk-3.0-bin" USE_GTK = 3.0 - @echo 'overriding USE_GTK with version 3 in 16.10 branch, check: $(USE_GTK)' endif else ifeq ($(shell /bin/bash -c '(( $(RELEASE_VER_MAJOR) > 16 )) && echo yes'),yes) SUBSTVARS = -Vdist:Depends="libgtk-3.0-bin" USE_GTK = 3.0 - @echo 'overriding USE_GTK with version 3 in >16 branch, check: $(USE_GTK)' endif endif -- Alioth's /srv/git/code.x2go.org/x2gomatebindings.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2gomatebindings.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2gomatebindings. commit 276e5dff9eac0580f1ab19807df2025bcab29e56 Author: Mihai Moldovan <ionic@ionic.de> Date: Sat Jun 11 17:49:55 2016 +0200 x2gomatebindings.spec: don't automatically configure after running autogen.sh. --- debian/changelog | 1 + x2gomatebindings.spec | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index fb6e131..175bd71 100644 --- a/debian/changelog +++ b/debian/changelog @@ -30,6 +30,7 @@ x2gomatebindings (0.0.1.4-0~x2go1) UNRELEASED; urgency=low - Re-add explicit GTK library build dependencies. Run-time dependencies should be handled automatically. - Switch to GTK 3 for Fedora 25 and up. + - Don't automatically configure after running autogen.sh. * debian/control: - Maintainer change in package: X2Go Developers <x2go-dev@lists.x2go.org>. - Whitespace only. diff --git a/x2gomatebindings.spec b/x2gomatebindings.spec index 8aae7e0..ed960c7 100644 --- a/x2gomatebindings.spec +++ b/x2gomatebindings.spec @@ -85,7 +85,7 @@ MATE desktops. %build if [ ! -e configure ]; then - ./autogen.sh; + NOCONFIGURE=1 ./autogen.sh; fi; # Remember to switch to --with-gtk=3.0 once OpenSuSE already provides a newer MATE version compiled against GTK 3. # Fedora will switch to GTK 3 with FC25. -- Alioth's /srv/git/code.x2go.org/x2gomatebindings.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2gomatebindings.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2gomatebindings. commit 75fd286465650fe637fd3ea59a7a74b6442a9a58 Author: Mihai Moldovan <ionic@ionic.de> Date: Sat Jun 11 17:50:11 2016 +0200 debian/rules: don't automatically configure after running autogen.sh. --- debian/changelog | 1 + debian/rules | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 175bd71..6ab4d67 100644 --- a/debian/changelog +++ b/debian/changelog @@ -53,6 +53,7 @@ x2gomatebindings (0.0.1.4-0~x2go1) UNRELEASED; urgency=low - Add explicit "printf-style" debugging, hoping it will actually show up. - Drop debugging output (which only leads to failing builds on all platforms) and consolidate default values. + - Don't automatically configure after running autogen.sh. -- X2Go Release Manager <git-admin@x2go.org> Tue, 10 Feb 2015 23:48:43 +0100 diff --git a/debian/rules b/debian/rules index 9af2f0a..5a35886 100755 --- a/debian/rules +++ b/debian/rules @@ -36,7 +36,7 @@ endif override_dh_auto_configure: cp /usr/share/misc/config.sub . cp /usr/share/misc/config.guess . - ./autogen.sh + NOCONFIGURE=1 ./autogen.sh dh_auto_configure $(DHFLAGS) -- \ --with-gtk=$(USE_GTK) -- Alioth's /srv/git/code.x2go.org/x2gomatebindings.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2gomatebindings.git