The branch, master has been updated
via 2ca1e9eb6500ebceb0a37df33bbd785bc7b91f1b (commit)
via 00a58a2e62e849fa85e2a996957bdd6a371c17d4 (commit)
from b625d7b3c3bcc55d632360377424a0101765abb6 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 2ca1e9eb6500ebceb0a37df33bbd785bc7b91f1b
…
[View More]Author: Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de>
Date: Thu Jun 28 22:15:12 2012 +0200
Launch x2goagent with $NX_TEMP=/tmp, otherwise it will fail to create the X11 Unix domain sockets.
commit 00a58a2e62e849fa85e2a996957bdd6a371c17d4
Author: Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de>
Date: Thu Jun 28 22:11:32 2012 +0200
it should be none of our business to create TMP directory
-----------------------------------------------------------------------
Summary of changes:
debian/changelog | 4 ++--
x2goserver/bin/x2gostartagent | 10 ++++------
2 files changed, 6 insertions(+), 8 deletions(-)
The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index e097f89..4860dac 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -14,8 +14,8 @@ x2goserver (3.1.1.2-0~x2go1) UNRELEASED; urgency=low
session.
- Fix crashes of x2gocleansessions due to faulty syslog calls.
- Drop redundant hostname calls in x2gocleansessions.
- - Create $TMP and $TEMP on x2gostartagent execution if it does not exist.
- - Launch x2goagent with $TEMP=/tmp, otherwise it will fail.
+ - Launch x2goagent with $NX_TEMP=/tmp, otherwise it will fail to
+ create the X11 Unix domain sockets.
-- Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de> Tue, 26 Jun 2012 09:32:31 +0200
diff --git a/x2goserver/bin/x2gostartagent b/x2goserver/bin/x2gostartagent
index 763dedd..fedd6ba 100755
--- a/x2goserver/bin/x2gostartagent
+++ b/x2goserver/bin/x2gostartagent
@@ -32,10 +32,6 @@ export NX_ROOT=$X2GO_ROOT
REMOTE=localhost
-# make sure the user's temporary directory exists...
-test -n "$TMP" && test -d "$TMP" || mkdir -p "$TMP"
-test -n "$TEMP" && test -d "$TEMP" || mkdir -p "$TEMP"
-
X2GO_CLIENT=`echo "$SSH_CLIENT" | awk '{print $1}'`
$X2GO_LIB_PATH/x2gosyslog "$0" "debug" "client announced itself as ,,$X2GO_CLIENT''"
@@ -259,9 +255,11 @@ x2gofeature X2GO_RUN_EXTENSIONS &>/dev/null && x2goserver-run-extensions "$SESSI
SESSION_WINDOW_TITLE="X2GO-${SESSION_NAME}"
if [ "$X2GO_STYPE" == "S" ]; then
- TEMP=/tmp x2goagent -nolisten tcp $X2GODPIOPTION_ -$SESSION_TYPE -auth "$XAUTHORITY" -shadow $SHADOW_DESKTOP -shadowmode $SHADOW_MODE -geometry ${X2GO_GEOMETRY} -name "${SESSION_WINDOW_TITLE}" "${NX_AGENT}" 2>"${SESSION_LOG}" &
+ # set NX_TEMP to /tmp, make sure x2goagent starts when pam_tmpdir.so is in use
+ NX_TEMP=/tmp x2goagent -nolisten tcp $X2GODPIOPTION_ -$SESSION_TYPE -auth "$XAUTHORITY" -shadow $SHADOW_DESKTOP -shadowmode $SHADOW_MODE -geometry ${X2GO_GEOMETRY} -name "${SESSION_WINDOW_TITLE}" "${NX_AGENT}" 2>"${SESSION_LOG}" &
else
- TEMP=/tmp x2goagent -nolisten tcp $X2GODPIOPTION_ $XDMCPOPT -$SESSION_TYPE $NOEXITPARAM -auth "$XAUTHORITY" -geometry ${X2GO_GEOMETRY} -name "${SESSION_WINDOW_TITLE}" "${NX_AGENT}" 2>"${SESSION_LOG}" &
+ # set NX_TEMP to /tmp, make sure x2goagent starts when pam_tmpdir.so is in use
+ NX_TEMP=/tmp x2goagent -nolisten tcp $X2GODPIOPTION_ $XDMCPOPT -$SESSION_TYPE $NOEXITPARAM -auth "$XAUTHORITY" -geometry ${X2GO_GEOMETRY} -name "${SESSION_WINDOW_TITLE}" "${NX_AGENT}" 2>"${SESSION_LOG}" &
fi
X2GO_AGENT_PID=$!
hooks/post-receive
--
x2goserver.git (X2Go Server)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "x2goserver.git" (X2Go Server).
[View Less]
The branch, master has been updated
via b42268b13cf1ecccc88e33c243dc5d1c2c819041 (commit)
via 7b3d592e637910cd0b16beca7db090bc0115a366 (commit)
from 6af3d3b802171532b5b8472ab1d389b9964ec552 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit b42268b13cf1ecccc88e33c243dc5d1c2c819041
…
[View More]Author: Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de>
Date: Thu Jun 28 22:22:00 2012 +0200
Improve 020_add-nxagent-wrapper.full.patch: Properly set NX_TEMP, make sure nxagent launches even with pam_tmpdir.so being in use.
commit 7b3d592e637910cd0b16beca7db090bc0115a366
Author: Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de>
Date: Thu Jun 28 22:20:57 2012 +0200
debian/changelog
Improve 023_add-x2goagent-wrapper.full.patch: Properly set NX_TEMP, make sure x2goagent launches even with pam_tmpdir.so being in use.
-----------------------------------------------------------------------
Summary of changes:
debian/changelog | 5 ++++-
debian/patches/020_add-nxagent-wrapper.full.patch | 9 +++++++--
.../patches/023_add-x2goagent-wrapper.full.patch | 9 +++++++--
3 files changed, 18 insertions(+), 5 deletions(-)
The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index a002072..1fe61e1 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,9 @@
nx-libs (2:3.5.0.15-0) UNRELEASED; urgency=low
- * Continue development...
+ * Improve 020_add-nxagent-wrapper.full.patch: Properly set NX_TEMP, make
+ sure nxagent launches even with pam_tmpdir.so being in use.
+ * Improve 023_add-x2goagent-wrapper.full.patch: Properly set NX_TEMP, make
+ sure x2goagent launches even with pam_tmpdir.so being in use.
-- Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de> Thu, 28 Jun 2012 14:54:51 +0200
diff --git a/debian/patches/020_add-nxagent-wrapper.full.patch b/debian/patches/020_add-nxagent-wrapper.full.patch
index daee69d..59d056b 100644
--- a/debian/patches/020_add-nxagent-wrapper.full.patch
+++ b/debian/patches/020_add-nxagent-wrapper.full.patch
@@ -1,6 +1,6 @@
--- /dev/null
+++ b/bin/nxagent
-@@ -0,0 +1,25 @@
+@@ -0,0 +1,30 @@
+#!/bin/bash
+
+# Copyright (C) 2012 Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de>
@@ -20,9 +20,14 @@
+
+NX_LIBS=/usr/lib/nx
+NX_LOCAL_LIBS=/usr/local/lib/nx
-+LD_LIBRARY_PATH=$NX_LIBS:$NX_LIBS/X11:$NX_LOCAL_LIBS:$NX_LOCAL_LIBS/X11:$LD_LIBRARY_PATH
+
++# make sure nxagent starts properly with pam_tmpdir.so being in use
++NX_TEMP=${NX_TEMP:-/tmp}
++
++LD_LIBRARY_PATH=$NX_LIBS:$NX_LIBS/X11:$NX_LOCAL_LIBS:$NX_LOCAL_LIBS/X11:$LD_LIBRARY_PATH
+test -d $NX_LIBS && export NX_LIBS || export NX_LIBS=$NX_LOCAL_LIBS
++
+export LD_LIBRARY_PATH
++export NX_TEMP
+
+exec $NX_LIBS/nxagent "$@"
diff --git a/debian/patches/023_add-x2goagent-wrapper.full.patch b/debian/patches/023_add-x2goagent-wrapper.full.patch
index d23d3f0..d349840 100644
--- a/debian/patches/023_add-x2goagent-wrapper.full.patch
+++ b/debian/patches/023_add-x2goagent-wrapper.full.patch
@@ -1,6 +1,6 @@
--- /dev/null
+++ b/bin/x2goagent
-@@ -0,0 +1,25 @@
+@@ -0,0 +1,30 @@
+#!/bin/bash
+
+# Copyright (C) 2012 Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de>
@@ -20,9 +20,14 @@
+
+NX_LIBS=/usr/lib/nx
+NX_LOCAL_LIBS=/usr/local/lib/nx
-+LD_LIBRARY_PATH=$NX_LIBS:$NX_LIBS/X11:$NX_LOCAL_LIBS:$NX_LOCAL_LIBS/X11:$LD_LIBRARY_PATH
+
++# make sure nxagent starts properly with pam_tmpdir.so being in use
++NX_TEMP=${NX_TEMP:-/tmp}
++
++LD_LIBRARY_PATH=$NX_LIBS:$NX_LIBS/X11:$NX_LOCAL_LIBS:$NX_LOCAL_LIBS/X11:$LD_LIBRARY_PATH
+test -d $NX_LIBS && export NX_LIBS || export NX_LIBS=$NX_LOCAL_LIBS
++
+export LD_LIBRARY_PATH
++export NX_TEMP
+
+exec $NX_LIBS/../x2go/x2goagent "$@"
hooks/post-receive
--
nx-libs.git (NX (redistributed))
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "nx-libs.git" (NX (redistributed)).
[View Less]
The branch, master has been updated
via b625d7b3c3bcc55d632360377424a0101765abb6 (commit)
from 84027cfd24dfdbba3b1eb602728a3baf6cd810df (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit b625d7b3c3bcc55d632360377424a0101765abb6
Author: Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de…
[View More]>
Date: Thu Jun 28 19:24:38 2012 +0200
Create $TMP and $TEMP on x2gostartagent execution if it does not exist. Launch x2goagent with $TEMP=/tmp, otherwise it will fail.
-----------------------------------------------------------------------
Summary of changes:
debian/changelog | 4 ++--
x2goserver/bin/x2gostartagent | 7 ++++---
2 files changed, 6 insertions(+), 5 deletions(-)
The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index c63260f..e097f89 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -14,8 +14,8 @@ x2goserver (3.1.1.2-0~x2go1) UNRELEASED; urgency=low
session.
- Fix crashes of x2gocleansessions due to faulty syslog calls.
- Drop redundant hostname calls in x2gocleansessions.
- - Create $TMP on x2gostartagent execution if it does not exist.
- Otherwise x2goagent will fail to launch.
+ - Create $TMP and $TEMP on x2gostartagent execution if it does not exist.
+ - Launch x2goagent with $TEMP=/tmp, otherwise it will fail.
-- Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de> Tue, 26 Jun 2012 09:32:31 +0200
diff --git a/x2goserver/bin/x2gostartagent b/x2goserver/bin/x2gostartagent
index 08bb1b1..763dedd 100755
--- a/x2goserver/bin/x2gostartagent
+++ b/x2goserver/bin/x2gostartagent
@@ -33,7 +33,8 @@ export NX_ROOT=$X2GO_ROOT
REMOTE=localhost
# make sure the user's temporary directory exists...
-test -d "$TMP" || mkdir -p "$TMP"
+test -n "$TMP" && test -d "$TMP" || mkdir -p "$TMP"
+test -n "$TEMP" && test -d "$TEMP" || mkdir -p "$TEMP"
X2GO_CLIENT=`echo "$SSH_CLIENT" | awk '{print $1}'`
$X2GO_LIB_PATH/x2gosyslog "$0" "debug" "client announced itself as ,,$X2GO_CLIENT''"
@@ -258,9 +259,9 @@ x2gofeature X2GO_RUN_EXTENSIONS &>/dev/null && x2goserver-run-extensions "$SESSI
SESSION_WINDOW_TITLE="X2GO-${SESSION_NAME}"
if [ "$X2GO_STYPE" == "S" ]; then
- x2goagent -nolisten tcp $X2GODPIOPTION_ -$SESSION_TYPE -auth "$XAUTHORITY" -shadow $SHADOW_DESKTOP -shadowmode $SHADOW_MODE -geometry ${X2GO_GEOMETRY} -name "${SESSION_WINDOW_TITLE}" "${NX_AGENT}" 2>"${SESSION_LOG}" &
+ TEMP=/tmp x2goagent -nolisten tcp $X2GODPIOPTION_ -$SESSION_TYPE -auth "$XAUTHORITY" -shadow $SHADOW_DESKTOP -shadowmode $SHADOW_MODE -geometry ${X2GO_GEOMETRY} -name "${SESSION_WINDOW_TITLE}" "${NX_AGENT}" 2>"${SESSION_LOG}" &
else
- x2goagent -nolisten tcp $X2GODPIOPTION_ $XDMCPOPT -$SESSION_TYPE $NOEXITPARAM -auth "$XAUTHORITY" -geometry ${X2GO_GEOMETRY} -name "${SESSION_WINDOW_TITLE}" "${NX_AGENT}" 2>"${SESSION_LOG}" &
+ TEMP=/tmp x2goagent -nolisten tcp $X2GODPIOPTION_ $XDMCPOPT -$SESSION_TYPE $NOEXITPARAM -auth "$XAUTHORITY" -geometry ${X2GO_GEOMETRY} -name "${SESSION_WINDOW_TITLE}" "${NX_AGENT}" 2>"${SESSION_LOG}" &
fi
X2GO_AGENT_PID=$!
hooks/post-receive
--
x2goserver.git (X2Go Server)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "x2goserver.git" (X2Go Server).
[View Less]
The branch, nx-buildscripts has been updated
via 6ef1f6ac8ed996097df92fa800d47876390090ee (commit)
from 12a71b8bc04917b5c1e62ae2f01ca206243678a1 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 6ef1f6ac8ed996097df92fa800d47876390090ee
Author: Mike Gabriel <mike.gabriel(a)das-…
[View More]netzwerkteam.de>
Date: Thu Jun 28 19:11:57 2012 +0200
fix undescore vs. dash issue in nx-tarballrelease
-----------------------------------------------------------------------
Summary of changes:
bin/nx-tarballrelease | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
The diff of changes is:
diff --git a/bin/nx-tarballrelease b/bin/nx-tarballrelease
index f74884d..8f71762 100755
--- a/bin/nx-tarballrelease
+++ b/bin/nx-tarballrelease
@@ -92,4 +92,4 @@ mkdir -p "$TARGETDIR/_releases_/source/${PROJECT}/"
# roll the ball...
( set -e; cd "$TEMP_DIR" && find "${PROJECT}_$RELEASE" -type f | sed 's/^\.*\/*//' | sort > "$MANIFEST" )
-tar c -C "$TEMP_DIR" --owner 0 --group 0 --numeric-owner --no-recursion --files-from "$MANIFEST" | gzip -n > "$TARGETDIR/_releases_/source/${PROJECT}/${PROJECT}_${RELEASE}${RELEASE_SUFFIX}.tar.gz"
+tar c -C "$TEMP_DIR" --owner 0 --group 0 --numeric-owner --no-recursion --files-from "$MANIFEST" | gzip -n > "$TARGETDIR/_releases_/source/${PROJECT}/${PROJECT}-${RELEASE}${RELEASE_SUFFIX}.tar.gz"
hooks/post-receive
--
nx-libs.git (NX (redistributed))
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "nx-libs.git" (NX (redistributed)).
[View Less]
The branch, master has been updated
via 84027cfd24dfdbba3b1eb602728a3baf6cd810df (commit)
from 0c300e8537a7049872ff468802d50dc783c67995 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 84027cfd24dfdbba3b1eb602728a3baf6cd810df
Author: Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de…
[View More]>
Date: Thu Jun 28 19:09:25 2012 +0200
Create $TMP on x2gostartagent execution if it does not exist. Otherwise x2goagent will fail to launch.
-----------------------------------------------------------------------
Summary of changes:
debian/changelog | 2 ++
x2goserver/bin/x2gostartagent | 3 +++
2 files changed, 5 insertions(+), 0 deletions(-)
The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index c4f67c8..c63260f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -14,6 +14,8 @@ x2goserver (3.1.1.2-0~x2go1) UNRELEASED; urgency=low
session.
- Fix crashes of x2gocleansessions due to faulty syslog calls.
- Drop redundant hostname calls in x2gocleansessions.
+ - Create $TMP on x2gostartagent execution if it does not exist.
+ Otherwise x2goagent will fail to launch.
-- Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de> Tue, 26 Jun 2012 09:32:31 +0200
diff --git a/x2goserver/bin/x2gostartagent b/x2goserver/bin/x2gostartagent
index 373ee13..08bb1b1 100755
--- a/x2goserver/bin/x2gostartagent
+++ b/x2goserver/bin/x2gostartagent
@@ -32,6 +32,9 @@ export NX_ROOT=$X2GO_ROOT
REMOTE=localhost
+# make sure the user's temporary directory exists...
+test -d "$TMP" || mkdir -p "$TMP"
+
X2GO_CLIENT=`echo "$SSH_CLIENT" | awk '{print $1}'`
$X2GO_LIB_PATH/x2gosyslog "$0" "debug" "client announced itself as ,,$X2GO_CLIENT''"
hooks/post-receive
--
x2goserver.git (X2Go Server)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "x2goserver.git" (X2Go Server).
[View Less]
The branch, master has been updated
via 6af3d3b802171532b5b8472ab1d389b9964ec552 (commit)
from 136375188303a9c8d775fb7555085cfd24e544d4 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 6af3d3b802171532b5b8472ab1d389b9964ec552
Author: Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de…
[View More]>
Date: Thu Jun 28 14:55:16 2012 +0200
Continue development...
-----------------------------------------------------------------------
Summary of changes:
debian/changelog | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index d98e982..a002072 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+nx-libs (2:3.5.0.15-0) UNRELEASED; urgency=low
+
+ * Continue development...
+
+ -- Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de> Thu, 28 Jun 2012 14:54:51 +0200
+
nx-libs (2:3.5.0.14-0) unstable; urgency=low
[ Mike Gabriel ]
hooks/post-receive
--
nx-libs.git (NX (redistributed))
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "nx-libs.git" (NX (redistributed)).
[View Less]
The branch, master has been updated
via 136375188303a9c8d775fb7555085cfd24e544d4 (commit)
from b65b83ba4bbfea8efef58c9f4bab31a1b20db066 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 136375188303a9c8d775fb7555085cfd24e544d4
Author: Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de…
[View More]>
Date: Thu Jun 28 14:52:41 2012 +0200
release 3.5.0.14
-----------------------------------------------------------------------
Summary of changes:
debian/changelog | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index 1787dff..d98e982 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-nx-libs (2:3.5.0.14-0) UNRELEASED; urgency=low
+nx-libs (2:3.5.0.14-0) unstable; urgency=low
[ Mike Gabriel ]
* New upstream release of nxagent (3.5.0-9).
@@ -14,7 +14,7 @@ nx-libs (2:3.5.0.14-0) UNRELEASED; urgency=low
nxauth search location on Mac OS X to $NX_SYSTEM/nxauth to facilitate
application bundle building.
- -- Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de> Fri, 11 May 2012 23:57:18 +0200
+ -- Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de> Thu, 28 Jun 2012 14:52:24 +0200
nx-libs (2:3.5.0.13-0) unstable; urgency=low
hooks/post-receive
--
nx-libs.git (NX (redistributed))
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "nx-libs.git" (NX (redistributed)).
[View Less]
The branch, master has been updated
via b65b83ba4bbfea8efef58c9f4bab31a1b20db066 (commit)
from dd7b5eb3c1c868bd38b8af71ed1236fc03fd4d8c (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit b65b83ba4bbfea8efef58c9f4bab31a1b20db066
Author: Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de…
[View More]>
Date: Thu Jun 28 12:31:01 2012 +0200
Drop patch: 109_nxagent_locale-utf8-compound-text.patch, the patch causes Qt applications to be rendered without window decorations when running in rootless window mode.
-----------------------------------------------------------------------
Summary of changes:
debian/changelog | 3 +++
...09_nxagent_locale-utf8-compound-text.full.patch | 14 ++++++++------
debian/patches/series | 1 -
3 files changed, 11 insertions(+), 7 deletions(-)
rename debian/{patches => patches-refused}/109_nxagent_locale-utf8-compound-text.full.patch (94%)
The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index 6cc8506..1787dff 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -5,6 +5,9 @@ nx-libs (2:3.5.0.14-0) UNRELEASED; urgency=low
* Adapt patch series (all hunks succeeded automatically).
* Drop patch: 120_nxagent_libcairo-null-source-drawables.full.patch, the issue
has been fixed by NoMachine (TR05J02703).
+ * Drop patch: 109_nxagent_locale-utf8-compound-text.patch, the patch causes
+ Qt applications to be rendered without window decorations when running in
+ rootless window mode.
[ Mihai Moldovan ]
* Add patch: 052_nxcomp_macos10-nxauth-location.full+lite.patch, change
diff --git a/debian/patches/109_nxagent_locale-utf8-compound-text.full.patch b/debian/patches-refused/109_nxagent_locale-utf8-compound-text.full.patch
similarity index 94%
rename from debian/patches/109_nxagent_locale-utf8-compound-text.full.patch
rename to debian/patches-refused/109_nxagent_locale-utf8-compound-text.full.patch
index 7fbdf45..6c11226 100644
--- a/debian/patches/109_nxagent_locale-utf8-compound-text.full.patch
+++ b/debian/patches-refused/109_nxagent_locale-utf8-compound-text.full.patch
@@ -96,21 +96,23 @@ Last-Update: 2011-12-31
#ifndef _XSERVER64
strcmp(typeS, "CARDINAL") == 0 ||
strcmp(typeS, "WM_SIZE_HINTS") == 0 ||
-@@ -483,6 +511,17 @@
+@@ -483,6 +511,19 @@
output = value;
export = True;
}
-+ /* add by dimbor, modified by Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de> */
++ /* add by dimbor, modified by Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de>
+ else if (strcmp(typeS, "COMPOUND_TEXT") == 0)
+ {
+ output = textToUTF8String(value, nUnits);
+ if ( output != NULL ) {
-+ nUnits = strlen((char *) output);
+ type = MakeAtom("UTF8_STRING", strlen("UTF8_STRING"), True);
-+ freeMem = True;
-+ export = True;
++ } else {
++ output = value;
+ }
-+ }
++ nUnits = strlen((char *) output);
++ freeMem = True;
++ export = True;
++ } */
#ifdef _XSERVER64
else if (strcmp(typeS, "CARDINAL") == 0 || strcmp(typeS, "WM_SIZE_HINTS") == 0)
{
diff --git a/debian/patches/series b/debian/patches/series
index d772a0e..f47979a 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -34,7 +34,6 @@
106_nxagent_utf8-copy-clipboard.full.patch
107_nxagent_clipboard-compound-text+small-bed-sheets.full.patch
108_nxagent_wine-close-delay.full.patch
-109_nxagent_locale-utf8-compound-text.full.patch
110_nxagent_createpixmap-bounds-check.full.patch
200_nxagent_check-binary-x2go-flavour.full.patch
201_nxagent_set-x2go-icon-if-x2goagent-flavour.full.patch
hooks/post-receive
--
nx-libs.git (NX (redistributed))
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "nx-libs.git" (NX (redistributed)).
[View Less]