This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository nx-libs. from 7bdc7ef debian/changelog: add entry for last change. new ae590fe debian/: add x2goagent.options file for compatibility with x2goserver nightly. new 7c531a5 debian/roll-tarballs.sh: copy new debian/x2goagent.options file into real tarball environment. new 9b08689 debian/Makefile.nx-libs: install/destroot new x2goagent.options file. new 112f0f8 debian/rules: symlink and remove new debian/x2goagent.options file into/from build environment. new f3c5f88 debian/x2goagent.install: add new x2goagent.options file. new b8d8fda nx-libs.spec: copy new debian/x2goagent.options file into build environment, analogous to what debian/roll-tarballs.sh does. new b6bcc24 nx-libs.spec: add new x2goagent.options file to installed file list of x2goagent package. new 81f2c9c nx-libs.spec: let x2goagent package satisfy x2goagent-virtual. The 8 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/Makefile.nx-libs | 1 + debian/changelog | 16 ++++++++++++++++ debian/roll-tarballs.sh | 1 + debian/rules | 3 ++- debian/x2goagent.install | 1 + debian/x2goagent.options | 36 ++++++++++++++++++++++++++++++++++++ nx-libs.spec | 3 +++ 7 files changed, 60 insertions(+), 1 deletion(-) create mode 100644 debian/x2goagent.options -- Alioth's /srv/git/code.x2go.org/nx-libs.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/nx-libs.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository nx-libs. commit ae590fe4f4e1acc916822e10512952dfe9aa742d Author: Mihai Moldovan <ionic@ionic.de> Date: Thu Jun 30 10:00:08 2016 +0200 debian/: add x2goagent.options file for compatibility with x2goserver nightly. --- debian/changelog | 2 ++ debian/x2goagent.options | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+) diff --git a/debian/changelog b/debian/changelog index b00b5ad..4ad533e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -8,6 +8,8 @@ nx-libs (2:3.5.0.33-0x2go1) UNRELEASED; urgency=low * nx-libs.spec: - Add xkeyboard-config to nxagent's Requires. Should be a weak dependency, but RPM doesn't support that too well yet. + * debian/: + - Add x2goagent.options file for compatibility with x2goserver nightly. [ Mike Gabriel ] * debian/libxinerama1.postinst.in: diff --git a/debian/x2goagent.options b/debian/x2goagent.options new file mode 100644 index 0000000..de4735d --- /dev/null +++ b/debian/x2goagent.options @@ -0,0 +1,36 @@ +# +# This file can be used to specify default options that are passed to nxagent. +# +# These options can be overriden by the client! +# +# See the output of `nxagent -help` for the full list of options. +# +# Remember: +# "-extension" disables an extension. +# "+extension" enables an extension. + +X2GO_NXAGENT_DEFAULT_OPTIONS="" + +# Disable XFIXES. +# Workaround for https://bugs.launchpad.net/ubuntu/+source/libxfixes/+bug/985202 +# +X2GO_NXAGENT_DEFAULT_OPTIONS+=" -extension XFIXES" + +# Uncomment to disable GLX, the old mesa version is hopelessly outdated anyways. +# Unbreaks the gnome3 control center +# +#X2GO_NXAGENT_DEFAULT_OPTIONS+=" -extension GLX" + +# Launch X2Go's X-server x2goagent with option "-nolisten tcp". +# +# This is the default setting and the X2Go developers really recommend not to +# touch this. However, if you play with this (i.e. if you comment it out) you +# should really know what you are doing. +# +# For everyone else: don't touch the line below!!! +X2GO_NXAGENT_DEFAULT_OPTIONS+=" -nolisten tcp" + +# Enforce clipboard behaviour in X2Go sessions globally (for all connecting clients) +# Possible values for the -clipboard option: both, server, client, none +# If this option stays commented out, clients can choose the sessions' clipboard behaviour... +#X2GO_NXAGENT_DEFAULT_OPTIONS+=" -clipboard both" -- Alioth's /srv/git/code.x2go.org/nx-libs.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/nx-libs.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository nx-libs. commit 7c531a5be42af318b2cc47824999e014b6e20a69 Author: Mihai Moldovan <ionic@ionic.de> Date: Thu Jun 30 10:18:51 2016 +0200 debian/roll-tarballs.sh: copy new debian/x2goagent.options file into real tarball environment. --- debian/changelog | 2 ++ debian/roll-tarballs.sh | 1 + 2 files changed, 3 insertions(+) diff --git a/debian/changelog b/debian/changelog index 4ad533e..d575903 100644 --- a/debian/changelog +++ b/debian/changelog @@ -10,6 +10,8 @@ nx-libs (2:3.5.0.33-0x2go1) UNRELEASED; urgency=low but RPM doesn't support that too well yet. * debian/: - Add x2goagent.options file for compatibility with x2goserver nightly. + * debian/roll-tarballs.sh: + - Copy new debian/x2goagent.options file into real tarball environment. [ Mike Gabriel ] * debian/libxinerama1.postinst.in: diff --git a/debian/roll-tarballs.sh b/debian/roll-tarballs.sh index 36afd82..1cf0e99 100755 --- a/debian/roll-tarballs.sh +++ b/debian/roll-tarballs.sh @@ -91,6 +91,7 @@ if [ "x$MODE" = "xfull" ]; then cp -v "debian/rgb" "./etc/" cp -v "debian/nxagent.keyboard" "./etc/" cp -v "debian/x2goagent.keyboard" "./etc/" + cp -v "debian/x2goagent.options" "./etc/" cp -v "debian/VERSION" "./VERSION.x2goagent" else rm -Rf "nxcompshad"* -- Alioth's /srv/git/code.x2go.org/nx-libs.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/nx-libs.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository nx-libs. commit 112f0f8169427142da0ad7eeb5f55f81b7e1964f Author: Mihai Moldovan <ionic@ionic.de> Date: Thu Jun 30 10:27:31 2016 +0200 debian/rules: symlink and remove new debian/x2goagent.options file into/from build environment. --- debian/changelog | 3 +++ debian/rules | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 316d704..ceba303 100644 --- a/debian/changelog +++ b/debian/changelog @@ -14,6 +14,9 @@ nx-libs (2:3.5.0.33-0x2go1) UNRELEASED; urgency=low - Copy new debian/x2goagent.options file into real tarball environment. * debian/Makefile.nx-libs: - Install/destroot new x2goagent.options file. + * debian/rules: + - Symlink and remove new debian/x2goagent.options file into/from build + environment. [ Mike Gabriel ] * debian/libxinerama1.postinst.in: diff --git a/debian/rules b/debian/rules index 2cd77b3..10a0798 100755 --- a/debian/rules +++ b/debian/rules @@ -33,7 +33,7 @@ override_dh_clean: rm -f nx-X11/programs/nxauth/changelog if [ ! -f replace.sh ] && [ ! -h replace.sh ]; then ln -s debian/Makefile.replace.sh replace.sh; fi . ./replace.sh; set -x; ls debian/*.install.in | while read file; do rm -f $$(string_rep $$file .install.in .install); done - rm -fR replace.sh Makefile bin etc/rgb VERSION.x2goagent etc/keystrokes.cfg etc/nxagent.keyboard etc/x2goagent.keyboard + rm -fR replace.sh Makefile bin etc/rgb VERSION.x2goagent etc/keystrokes.cfg etc/nxagent.keyboard etc/x2goagent.keyboard etc/x2goagent.options rm -f debian/nxagent.postinst rm -fR .preserve/ if [ -f nxcomp/.VERSION.NoMachine ]; then mv nxcomp/.VERSION.NoMachine nxcomp/VERSION; fi @@ -114,6 +114,7 @@ override_dh_auto_build: ln -s ../debian/rgb etc/rgb ln -s ../debian/nxagent.keyboard etc/nxagent.keyboard ln -s ../debian/x2goagent.keyboard etc/x2goagent.keyboard + ln -s ../debian/x2goagent.options etc/x2goagent.options mkdir -p doc/ ln -s ../debian/changelog doc/changelog ln -sf debian/VERSION VERSION.x2goagent -- Alioth's /srv/git/code.x2go.org/nx-libs.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/nx-libs.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository nx-libs. commit 9b0868985e23acd4558ff5d82382cc8d672ff07b Author: Mihai Moldovan <ionic@ionic.de> Date: Thu Jun 30 10:23:47 2016 +0200 debian/Makefile.nx-libs: install/destroot new x2goagent.options file. --- debian/Makefile.nx-libs | 1 + debian/changelog | 2 ++ 2 files changed, 3 insertions(+) diff --git a/debian/Makefile.nx-libs b/debian/Makefile.nx-libs index 87610bf..0760021 100644 --- a/debian/Makefile.nx-libs +++ b/debian/Makefile.nx-libs @@ -153,6 +153,7 @@ install-full: $(INSTALL_FILE) etc/rgb $(DESTDIR)$(ETCDIR_NX)/ $(INSTALL_FILE) etc/nxagent.keyboard $(DESTDIR)$(ETCDIR_NX)/ $(INSTALL_FILE) etc/x2goagent.keyboard $(DESTDIR)$(ETCDIR_X2GO)/ + $(INSTALL_FILE) etc/x2goagent.options $(DESTDIR)$(ETCDIR_X2GO)/ $(INSTALL_DIR) $(DESTDIR)$(PREFIX)/share/x2go $(INSTALL_SYMLINK) $(ETCDIR_X2GO)/rgb $(DESTDIR)$(PREFIX)/share/x2go/rgb diff --git a/debian/changelog b/debian/changelog index d575903..316d704 100644 --- a/debian/changelog +++ b/debian/changelog @@ -12,6 +12,8 @@ nx-libs (2:3.5.0.33-0x2go1) UNRELEASED; urgency=low - Add x2goagent.options file for compatibility with x2goserver nightly. * debian/roll-tarballs.sh: - Copy new debian/x2goagent.options file into real tarball environment. + * debian/Makefile.nx-libs: + - Install/destroot new x2goagent.options file. [ Mike Gabriel ] * debian/libxinerama1.postinst.in: -- Alioth's /srv/git/code.x2go.org/nx-libs.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/nx-libs.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository nx-libs. commit 81f2c9c7db0b28a33b8f8e2b82e5f01d5c257cd5 Author: Mihai Moldovan <ionic@ionic.de> Date: Thu Jun 30 11:30:00 2016 +0200 nx-libs.spec: let x2goagent package satisfy x2goagent-virtual. --- debian/changelog | 1 + nx-libs.spec | 1 + 2 files changed, 2 insertions(+) diff --git a/debian/changelog b/debian/changelog index d9338c3..e1112c9 100644 --- a/debian/changelog +++ b/debian/changelog @@ -12,6 +12,7 @@ nx-libs (2:3.5.0.33-0x2go1) UNRELEASED; urgency=low to what debian/roll-tarballs.sh does. - Add new x2goagent.options file to installed file list of x2goagent package. + - Let x2goagent package satisfy x2goagent-virtual. * debian/: - Add x2goagent.options file for compatibility with x2goserver nightly. * debian/roll-tarballs.sh: diff --git a/nx-libs.spec b/nx-libs.spec index 5d78109..e0d5d8b 100644 --- a/nx-libs.spec +++ b/nx-libs.spec @@ -651,6 +651,7 @@ This package provides the NX proxy (client) binary. Group: Applications/System Summary: X2Go Agent Requires: nxagent +Provides: x2goagent-virtual %description -n x2goagent X2Go Agent functionality has been completely incorporated into -- Alioth's /srv/git/code.x2go.org/nx-libs.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/nx-libs.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository nx-libs. commit f3c5f881bfc5408ccda7725ae229943806a82022 Author: Mihai Moldovan <ionic@ionic.de> Date: Thu Jun 30 10:28:52 2016 +0200 debian/x2goagent.install: add new x2goagent.options file. --- debian/changelog | 2 ++ debian/x2goagent.install | 1 + 2 files changed, 3 insertions(+) diff --git a/debian/changelog b/debian/changelog index ceba303..d031f06 100644 --- a/debian/changelog +++ b/debian/changelog @@ -17,6 +17,8 @@ nx-libs (2:3.5.0.33-0x2go1) UNRELEASED; urgency=low * debian/rules: - Symlink and remove new debian/x2goagent.options file into/from build environment. + * debian/x2goagent.install: + - Add new x2goagent.options file. [ Mike Gabriel ] * debian/libxinerama1.postinst.in: diff --git a/debian/x2goagent.install b/debian/x2goagent.install index 9ef17d9..3b6f793 100644 --- a/debian/x2goagent.install +++ b/debian/x2goagent.install @@ -7,3 +7,4 @@ etc/x2go/rgb usr/share/x2go/versions/VERSION.x2goagent etc/x2go/keystrokes.cfg etc/x2go/x2goagent.keyboard +etc/x2go/x2goagent.options -- Alioth's /srv/git/code.x2go.org/nx-libs.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/nx-libs.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository nx-libs. commit b6bcc2410a10ed09583a431cc2e7c8f4df7f191a Author: Mihai Moldovan <ionic@ionic.de> Date: Thu Jun 30 11:09:04 2016 +0200 nx-libs.spec: add new x2goagent.options file to installed file list of x2goagent package. --- debian/changelog | 2 ++ nx-libs.spec | 1 + 2 files changed, 3 insertions(+) diff --git a/debian/changelog b/debian/changelog index 90e414f..d9338c3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -10,6 +10,8 @@ nx-libs (2:3.5.0.33-0x2go1) UNRELEASED; urgency=low but RPM doesn't support that too well yet. - Copy new debian/x2goagent.options file into build environment, analogous to what debian/roll-tarballs.sh does. + - Add new x2goagent.options file to installed file list of x2goagent + package. * debian/: - Add x2goagent.options file for compatibility with x2goserver nightly. * debian/roll-tarballs.sh: diff --git a/nx-libs.spec b/nx-libs.spec index 4dee24c..5d78109 100644 --- a/nx-libs.spec +++ b/nx-libs.spec @@ -1146,6 +1146,7 @@ ln -s -f ../../../../%{_lib}/libNX_Xinerama.so.1 %{buildroot}%{_libdir}/nx/X11/X %dir %{_libdir}/x2go/bin %config(noreplace) %{_sysconfdir}/x2go/keystrokes.cfg %config(noreplace) %{_sysconfdir}/x2go/x2goagent.keyboard +%config(noreplace) %{_sysconfdir}/x2go/x2goagent.options %config(noreplace) %{_sysconfdir}/x2go/rgb %{_bindir}/x2goagent %{_libdir}/x2go/bin/x2goagent -- Alioth's /srv/git/code.x2go.org/nx-libs.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/nx-libs.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository nx-libs. commit b8d8fdaad3dbfe8d59ae6d2bdb81eb6e1f829f6f Author: Mihai Moldovan <ionic@ionic.de> Date: Thu Jun 30 11:08:14 2016 +0200 nx-libs.spec: copy new debian/x2goagent.options file into build environment, analogous to what debian/roll-tarballs.sh does. --- debian/changelog | 2 ++ nx-libs.spec | 1 + 2 files changed, 3 insertions(+) diff --git a/debian/changelog b/debian/changelog index d031f06..90e414f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -8,6 +8,8 @@ nx-libs (2:3.5.0.33-0x2go1) UNRELEASED; urgency=low * nx-libs.spec: - Add xkeyboard-config to nxagent's Requires. Should be a weak dependency, but RPM doesn't support that too well yet. + - Copy new debian/x2goagent.options file into build environment, analogous + to what debian/roll-tarballs.sh does. * debian/: - Add x2goagent.options file for compatibility with x2goserver nightly. * debian/roll-tarballs.sh: diff --git a/nx-libs.spec b/nx-libs.spec index 0fda993..4dee24c 100644 --- a/nx-libs.spec +++ b/nx-libs.spec @@ -675,6 +675,7 @@ cp -v debian/Makefile.replace.sh replace.sh cp -v debian/rgb etc/rgb cp -v debian/nxagent.keyboard etc/nxagent.keyboard cp -v debian/x2goagent.keyboard etc/x2goagent.keyboard +cp -v debian/x2goagent.options etc/x2goagent.options cp -v debian/VERSION VERSION.x2goagent cp -v debian/VERSION nxcomp/VERSION -- Alioth's /srv/git/code.x2go.org/nx-libs.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/nx-libs.git