xterm: Changes to 'upstream-unstable'

2014-09-19 Thread Sven Joachim
 MANIFEST |2 
 button.c |  194 +--
 charproc.c   |   26 +++---
 fontutils.c  |   29 ++-
 graphics_regis.c |   65 ++-
 menu.c   |   28 --
 menu.h   |8 +
 misc.c   |   18 
 package/debian/changelog |6 +
 package/freebsd/Makefile |2 
 package/xterm.spec   |4 
 ptyx.h   |   23 +
 screen.c |6 -
 version.h|6 -
 xterm.h  |9 +-
 xterm.log.html   |   46 ++-
 xterm.man|   20 
 17 files changed, 327 insertions(+), 165 deletions(-)

New commits:
commit 2982e471d559c69d331ec2f8b4e26c5c583f76c0
Author: Sven Joachim 
Date:   Fri Sep 19 18:03:56 2014 +0200

Imported Upstream version 311

diff --git a/MANIFEST b/MANIFEST
index 22b4d14..634ec2c 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -1,4 +1,4 @@
-MANIFEST for xterm-310, version xterm-310
+MANIFEST for xterm-311, version xterm-311
 

 MANIFESTthis file
 256colres.h resource-definitions for 256-color mode
diff --git a/button.c b/button.c
index 69936a5..77929c9 100644
--- a/button.c
+++ b/button.c
@@ -1,4 +1,4 @@
-/* $XTermId: button.c,v 1.473 2014/05/26 17:12:51 tom Exp $ */
+/* $XTermId: button.c,v 1.481 2014/09/18 00:17:35 tom Exp $ */
 
 /*
  * Copyright 1999-2013,2014 by Thomas E. Dickey
@@ -2177,16 +2177,39 @@ SelectionReceived(Widget w,
 #endif
for (i = 0; i < text_list_count; i++) {
size_t len = removeControls(xw, text_list[i]);
+
if (screen->selectToBuffer) {
-   size_t have = (screen->internal_select
-  ? strlen(screen->internal_select)
+   InternalSelect *mydata = &(screen->internal_select);
+   size_t have = (mydata->buffer
+  ? strlen(mydata->buffer)
   : 0);
size_t need = have + len + 1;
-   char *buffer = realloc(screen->internal_select, need);
+   char *buffer = realloc(mydata->buffer, need);
+
+   screen->selectToBuffer = False;
+#if OPT_PASTE64
+   screen->base64_paste = mydata->base64_paste;
+#endif
+#if OPT_READLINE
+   screen->paste_brackets = mydata->paste_brackets;
+#endif
if (buffer != 0) {
strcpy(buffer + have, text_list[i]);
-   screen->internal_select = buffer;
+   mydata->buffer = buffer;
}
+   TRACE(("FormatSelect %d.%d .. %d.%d %s\n",
+  screen->startSel.row,
+  screen->startSel.col,
+  screen->endSel.row,
+  screen->endSel.col,
+  mydata->buffer));
+   mydata->format_select(w, mydata->format, mydata->buffer,
+ &(screen->startSel),
+ &(screen->endSel));
+
+   free(mydata->format);
+   free(mydata->buffer);
+   memset(mydata, 0, sizeof(*mydata));
} else {
_WriteSelectionData(xw, (Char *) text_list[i], len);
}
@@ -3204,7 +3227,7 @@ do_select_regex(TScreen *screen, CELL *startc, CELL *endc)
 char *search;
 int *indexed;
 
-TRACE(("Select_REGEX:%s\n", NonNull(expr)));
+TRACE(("Select_REGEX[%d]:%s\n", inx, NonNull(expr)));
 if (okPosition(screen, &ld, startc) && expr != 0) {
if (regcomp(&preg, expr, REG_EXTENDED) == 0) {
int firstRow = firstRowOfLine(screen, startc->row, True);
@@ -3234,7 +3257,7 @@ do_select_regex(TScreen *screen, CELL *startc, CELL *endc)
int start_col = indexToCol(indexed, len, start_inx);
int finis_col = indexToCol(indexed, len, finis_inx);
 
-   if (start_col <= actual &&
+   if (start_col >= actual &&
actual < finis_col) {
int test = finis_col - start_col;
if (best_len < test) {
@@ -4559,53 +4582,33 @@ getEventTime(XEvent *event)
 }
 
 /* obtain the selection string, passing the endpoints to caller's parameters */
-static char *
-getSelectionString(XtermWidget xw,
-  Widget w,
-  XEvent *event,
-  String *params,
-  Cardinal *num_params,
-  CELL *start, CELL *finish)
+static void
+doSelectionFormat(XtermWidget xw,
+ Widget w,
+ XEvent *event,
+ String *params,
+ Cardinal *num_params,
+ FormatSelect format_select)
 {
 TSc

xterm: Changes to 'debian-unstable'

2014-09-19 Thread Sven Joachim
 MANIFEST |2 
 button.c |  194 +--
 charproc.c   |   26 +++---
 debian/changelog |   22 +
 fontutils.c  |   29 ++-
 graphics_regis.c |   65 ++-
 menu.c   |   28 --
 menu.h   |8 +
 misc.c   |   18 
 package/debian/changelog |6 +
 package/freebsd/Makefile |2 
 package/xterm.spec   |4 
 ptyx.h   |   23 +
 screen.c |6 -
 version.h|6 -
 xterm.h  |9 +-
 xterm.log.html   |   46 ++-
 xterm.man|   20 
 18 files changed, 349 insertions(+), 165 deletions(-)

New commits:
commit 632c582c411fd8a3513d0dd0781b4f02f3da35a2
Author: Sven Joachim 
Date:   Fri Sep 19 18:21:44 2014 +0200

Close various bugs which are fixed according to upstream

diff --git a/debian/changelog b/debian/changelog
index 695d997..e2f8b2c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,22 @@
 xterm (311-1) UNRELEASED; urgency=low
 
   * New upstream release.
+- Mention xclip in manpage as an alternative workaround for copying
+  clipboard data, noting that selectToClipboard is the recommended
+  approach (Closes: #639094).
+- Correct initialization for regular-expression feature of
+  exec-selectable and insert-selectable actions.
+  Modify logic for exec-formatted and insert-formatted actions to
+  ensure that the formatting occurs just after the selection is
+  received (Closes: #758633).
+- Account for state of reverse-video in special case of cursor coloring
+  (Closes: #759734).
+- Enable the "Escape Sequence" menu entry when an OSC 50 is received.
+  Also disable it if the escape sequence specifies no font
+  (Closes: #760208).
+- Improve fix for the fontsel menu entry from xterm 304: because the
+  recovery used the "current font", it would fail if one first selected
+  a valid font, then an invalid font (Closes: #760207).
 
  -- Sven Joachim   Fri, 19 Sep 2014 18:05:27 +0200
 

commit f761d93b18679f91c8eb00b1b3d423b3d2b79710
Author: Sven Joachim 
Date:   Fri Sep 19 18:05:32 2014 +0200

New upstream release

diff --git a/debian/changelog b/debian/changelog
index 9f3079c..695d997 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+xterm (311-1) UNRELEASED; urgency=low
+
+  * New upstream release.
+
+ -- Sven Joachim   Fri, 19 Sep 2014 18:05:27 +0200
+
 xterm (310-1) unstable; urgency=low
 
   * New upstream release.

commit 2982e471d559c69d331ec2f8b4e26c5c583f76c0
Author: Sven Joachim 
Date:   Fri Sep 19 18:03:56 2014 +0200

Imported Upstream version 311

diff --git a/MANIFEST b/MANIFEST
index 22b4d14..634ec2c 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -1,4 +1,4 @@
-MANIFEST for xterm-310, version xterm-310
+MANIFEST for xterm-311, version xterm-311
 

 MANIFESTthis file
 256colres.h resource-definitions for 256-color mode
diff --git a/button.c b/button.c
index 69936a5..77929c9 100644
--- a/button.c
+++ b/button.c
@@ -1,4 +1,4 @@
-/* $XTermId: button.c,v 1.473 2014/05/26 17:12:51 tom Exp $ */
+/* $XTermId: button.c,v 1.481 2014/09/18 00:17:35 tom Exp $ */
 
 /*
  * Copyright 1999-2013,2014 by Thomas E. Dickey
@@ -2177,16 +2177,39 @@ SelectionReceived(Widget w,
 #endif
for (i = 0; i < text_list_count; i++) {
size_t len = removeControls(xw, text_list[i]);
+
if (screen->selectToBuffer) {
-   size_t have = (screen->internal_select
-  ? strlen(screen->internal_select)
+   InternalSelect *mydata = &(screen->internal_select);
+   size_t have = (mydata->buffer
+  ? strlen(mydata->buffer)
   : 0);
size_t need = have + len + 1;
-   char *buffer = realloc(screen->internal_select, need);
+   char *buffer = realloc(mydata->buffer, need);
+
+   screen->selectToBuffer = False;
+#if OPT_PASTE64
+   screen->base64_paste = mydata->base64_paste;
+#endif
+#if OPT_READLINE
+   screen->paste_brackets = mydata->paste_brackets;
+#endif
if (buffer != 0) {
strcpy(buffer + have, text_list[i]);
-   screen->internal_select = buffer;
+   mydata->buffer = buffer;
}
+   TRACE(("FormatSelect %d.%d .. %d.%d %s\n",
+  screen->startSel.row,
+  screen->startSel.col,
+  screen->endSel.row,
+  screen->endSel.col,
+  mydata->buffer));
+   mydata->format_select(w, mydata->format, mydata->buffer,
+   

Bug#760043: marked as done (weston-terminal: exits under load)

2014-09-19 Thread Debian Bug Tracking System
Your message dated Fri, 19 Sep 2014 15:27:53 +
with message-id 
and subject line Bug#760043: fixed in weston 1.6.0-1
has caused the Debian Bug report #760043,
regarding weston-terminal: exits under load
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
760043: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=760043
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: weston
Version: 1.5.0-2
Severity: grave
Justification: causes non-serious data loss

Dear Maintainer,

When the Weston terminal outputs really fast, it pseudo-randomly ends
up vanishing and the process exits. For me, this is reproducible about
every third time running "ls -lR /". 

On the console that started the compositor:

[11:54:52.890] launching '/usr/lib/weston/weston-desktop-shell'



Error sending request: Resource temporarily unavailable
child 7795 exited

>From a quick investigation, this appears to be an unhandled error
without the libwayland-client marshaller. I guess that write congestion
on the socket to the compositor is not handled; if that is the case,
it is somewhat surprisingly and disturbingly naive.

Feel free to reassign to wayland.

Best regards,

-- System Information:
Debian Release: jessie/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.16.0-basile (SMP w/4 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages weston depends on:
ii  adduser 3.113+nmu3
ii  libc6   2.19-10
ii  libcairo2   1.12.16-3
ii  libcolord2  1.2.1-1
ii  libdbus-1-3 1.8.6-2
ii  libdrm2 2.4.56-1
ii  libegl1-mesa10.2.6-1
ii  libegl1-mesa-drivers10.2.6-1
ii  libgbm1 10.2.6-1
ii  libgl1-mesa-glx [libgl1]10.2.6-1
ii  libgles2-mesa   10.2.6-1
ii  libglib2.0-02.40.0-5
ii  libglu1-mesa [libglu1]  9.0.0-2
ii  libinput0   0.2.0-2
ii  libjpeg88d1-1
ii  liblcms2-2  2.6-3
ii  libmtdev1   1.1.5-1
ii  libpam0g1.1.8-3.1
ii  libpango-1.0-0  1.36.6-1
ii  libpangocairo-1.0-0 1.36.6-1
ii  libpixman-1-0   0.32.6-3
ii  libpng12-0  1.2.50-2
ii  libsystemd-login0   208-8
ii  libudev1208-8
ii  libwayland-client0  1.5.0-1
ii  libwayland-cursor0  1.5.0-1
ii  libwayland-egl1-mesa [libwayland-egl1]  10.2.6-1
ii  libwayland-server0  1.5.0-1
ii  libx11-62:1.6.2-3
ii  libx11-xcb1 2:1.6.2-3
ii  libxcb-composite0   1.10-3
ii  libxcb-render0  1.10-3
ii  libxcb-shape0   1.10-3
ii  libxcb-shm0 1.10-3
ii  libxcb-xfixes0  1.10-3
ii  libxcb-xkb1 1.10-3
ii  libxcb1 1.10-3
ii  libxcursor1 1:1.1.14-1
ii  libxkbcommon0   0.4.1-2

Versions of packages weston recommends:
ii  libgl1-mesa-dri  10.2.6-1

weston suggests no packages.

-- no debconf information
--- End Message ---
--- Begin Message ---
Source: weston
Source-Version: 1.6.0-1

We believe that the bug you reported is fixed in the latest version of
weston, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 760...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Hector Oron  (supplier of updated weston package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Dat

wayland_1.6.0-1_amd64.changes ACCEPTED into unstable

2014-09-19 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 19 Sep 2014 16:28:13 +0200
Source: wayland
Binary: libwayland-client0 libwayland-client0-dbg libwayland-server0 
libwayland-server0-dbg libwayland-cursor0 libwayland-cursor0-dbg libwayland-dev
Architecture: source amd64
Version: 1.6.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian X Strike Force 
Changed-By: Hector Oron 
Description:
 libwayland-client0 - wayland compositor infrastructure - client library
 libwayland-client0-dbg - wayland compositor infrastructure - client library 
(debug)
 libwayland-cursor0 - wayland compositor infrastructure - cursor library
 libwayland-cursor0-dbg - wayland compositor infrastructure - cursor library 
(debug)
 libwayland-dev - wayland compositor infrastructure - development files
 libwayland-server0 - wayland compositor infrastructure - server library
 libwayland-server0-dbg - wayland compositor infrastructure - server library 
(debug)
Changes:
 wayland (1.6.0-1) unstable; urgency=medium
 .
   * New upstream release.
Checksums-Sha1:
 ef9a8a6fdbdbf6dc77dd7a2431030b14133f4bf6 2218 wayland_1.6.0-1.dsc
 33f40daecd6b3e2a6c4d4aceb1f98b84e419eee6 234672 wayland_1.6.0-1.tar.gz
 de34e50ad2015ea954db90436d5f7464824ff6ca 23350 
libwayland-client0_1.6.0-1_amd64.deb
 91fe0a3fbcfda1bd463e391a5368c455c3853c7e 45502 
libwayland-client0-dbg_1.6.0-1_amd64.deb
 f8d64ab2765dab24a0f07bd63ae11d4cb61eab8a 28468 
libwayland-server0_1.6.0-1_amd64.deb
 3b215e1b7c1a959174dc7be98a0e5310b3b2e2d8 61910 
libwayland-server0-dbg_1.6.0-1_amd64.deb
 723f9af7eb4aa7ab120e593843def4f2372d137c 12446 
libwayland-cursor0_1.6.0-1_amd64.deb
 8d1c36cc6e0216eb30527193373d4863314a620a 24570 
libwayland-cursor0-dbg_1.6.0-1_amd64.deb
 ea51438b5402008b45ca1d64ea42469cd0034814 109030 
libwayland-dev_1.6.0-1_amd64.deb
Checksums-Sha256:
 26e100624aa0c07f33b80648f42f308b19a9475f26693f604ae8cb68d3686cbe 2218 
wayland_1.6.0-1.dsc
 96fe057d9a5d4bcb0a3d767bb797121ad662923bb8ed272397b9a4b571329468 234672 
wayland_1.6.0-1.tar.gz
 46652f0195439bc468a8effec57c04b0a8df1420f3e58ef22cc52d147b47d7ad 23350 
libwayland-client0_1.6.0-1_amd64.deb
 6fde3398b93031a9e6b9f92daf2b54b9c6254fd5cc8d1eb9caa00b3fe9ddb6b9 45502 
libwayland-client0-dbg_1.6.0-1_amd64.deb
 3c9a815109d62700e96f79febfa0126c33472adcc2c24962eeec983c48f60acc 28468 
libwayland-server0_1.6.0-1_amd64.deb
 88a1b196471116f162042d23428b50e1e64e3751cbc5097aa98891f889180126 61910 
libwayland-server0-dbg_1.6.0-1_amd64.deb
 060e4d59c3e4548561f8b3d3a182a02e365118cfd6baf8064163a6a8fd70baf1 12446 
libwayland-cursor0_1.6.0-1_amd64.deb
 8ba76a2325a499dc87698b699f09563230145baceceb6dd968ac24e525a8b07d 24570 
libwayland-cursor0-dbg_1.6.0-1_amd64.deb
 04c2b28414e8510121e1e5d9c8af57a79b9de3248892ec5f3a81b1e2b4b41f3d 109030 
libwayland-dev_1.6.0-1_amd64.deb
Files:
 aa73c812ccad0a82de0d9f1a600ecf7d 23350 libs optional 
libwayland-client0_1.6.0-1_amd64.deb
 7d82998ae7e4c651278ea056eb1915c0 45502 debug extra 
libwayland-client0-dbg_1.6.0-1_amd64.deb
 c69083659a2205ae96bc5400632d654e 28468 libs optional 
libwayland-server0_1.6.0-1_amd64.deb
 6ca28ba6f9746092456ef8390a370e77 61910 debug extra 
libwayland-server0-dbg_1.6.0-1_amd64.deb
 398fb5b3c8639a815bc22e0edac3b73d 12446 libs optional 
libwayland-cursor0_1.6.0-1_amd64.deb
 2232cd22a1b229f36cffed950812c1dd 24570 debug extra 
libwayland-cursor0-dbg_1.6.0-1_amd64.deb
 c703218f081459006a5f06e208428820 109030 libdevel extra 
libwayland-dev_1.6.0-1_amd64.deb
 3291a0677fa3160281996b4e1b000b3e 2218 x11 optional wayland_1.6.0-1.dsc
 d650bd11a4edf1b2ecad00211ebeb77d 234672 x11 optional wayland_1.6.0-1.tar.gz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJUHD8+AAoJEK8ig6p24qx7kd0QAId7Tvhn+SzeZaoMs/CioWDq
gqDzT2WW8lMm5pwyA5XThqF+WBf1f+9fd5ggWG6DwP6iXr/A8PvHnUQHth75IeDS
ijIuONhmD1S+znDOGcla/mz8l5Ya8CK5xv/P0k8nV1Aiiup0TzV473zG6ox25sXX
Ljt2NDWyLol+k7zM8b+FiZCMPpZKt3Wo+FgX0rdz+WwKLhDxiHg4LwcMp5HgeS0/
Xl56R6F+81EG/i1Jnsx2A9zO3q9ofKvhDY1dettlofvZUvyOxokhqItDEi34jyPM
iw4VH7i1LA/wBccPRHzn8NWLylqdjnzRmW62esQks9Y8GtYXfdN7V2ClmOsF8+1X
BBQOV/ueLjPrCxQ7L0Oq89yiB6R8LXS+Caeatme933/CCIZNSJLVU2HYXqve7+v0
OOY+fDXO+ncSv36fQaOFPZT1rXCKzrz9ziWAmRvOZTFifeCPsseUf305Y+qzYUba
+vCPU0f97Hg1OyF3l5T9qeTUJm0zGSQp9yTRnqje4oR0qR4n1u2n78cf6hbwZocn
tRm+XjWnBM/7fmKK8Y8L8vO06TH2/jntvVbb0LPxeLgP+SwUzRzW/HQ1bjeHh1qO
L5g84nxAVQnkEmJKtXeNzU/oYK8tXZdtYSqG6SnHzTcujcGu7ict84uE1NTh8aOf
wSgFksCwRNvKPmqlAvtH
=u1BN
-END PGP SIGNATURE-


Thank you for your contribution to Debian.


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1xv065-0003tc...@franck.debian.org



weston_1.6.0-1_amd64.changes ACCEPTED into unstable

2014-09-19 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 19 Sep 2014 16:38:47 +0200
Source: weston
Binary: weston
Architecture: source amd64
Version: 1.6.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian X Strike Force 
Changed-By: Hector Oron 
Description:
 weston - reference implementation of a wayland compositor
Closes: 760043
Changes:
 weston (1.6.0-1) unstable; urgency=medium
 .
   * New upstream release.
   * Fix "weston-terminal: exits under load"
 - Thanks Rémi Denis-Courmont for report.
 (Closes: #760043)
Checksums-Sha1:
 c326a8239f057cd552b990213625acc7d5285e8a 2311 weston_1.6.0-1.dsc
 a872cb2d6e3275db0e3ffb5773db0e3dea1eaf75 690260 weston_1.6.0-1.tar.gz
 31aa29aab82d1a53ffc4a408cc62584735f91220 448442 weston_1.6.0-1_amd64.deb
Checksums-Sha256:
 633c640d8b76e70a9a8162c0dca704281e94dec3142934446a678f60c6bdaaa9 2311 
weston_1.6.0-1.dsc
 6443ce63c837f08bbb5b6f9d0ec0167107d173610987494ccf40d4681465e92f 690260 
weston_1.6.0-1.tar.gz
 0722ce4b51cabd4ab213cdf52d56316e9d479f611058f5bc25509a4b9ef2f268 448442 
weston_1.6.0-1_amd64.deb
Files:
 071448dadbd1d54cf82885955dd6a36b 448442 x11 optional weston_1.6.0-1_amd64.deb
 eee855366a38dbee4cfb079314192a58 2311 x11 optional weston_1.6.0-1.dsc
 c83ba84df67c1ba1dd109fc4b396dc28 690260 x11 optional weston_1.6.0-1.tar.gz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJUHENIAAoJEK8ig6p24qx7tiIP+wY7Du6dAc8HByp+2JsxHRYA
oyXYm4eAIL9HfElz4XQsJEaU/MIVoX8U/lQMkhk8T/YJXnMFi+rGJvE1vSZoJD7u
5ihNJ43dHDdu98TqZQbjrYJop9XRmvejw7KFmbzNSRXxcBMnnk9DVePfXaQZBi42
QUXehB/vKtwgYr1u82dRHyY46nNStgE/OsUkOMdltJMXO0ZNj2rltSGeUgSqTX4M
WL1Yjud0nrc26MMpKmm0YHOY82eHKsGn06M1NvaMcS0n+usWaQUqGUKnR0WRACbr
CNy8Gzm3ttghw59wujpZdBYXsIJKEy3yfPplWoLP6q6Mm42KG5nqDKP4CaM2WeWL
OgJqJ+lZy9helkoiXy3JH8xEy+lDPE9Q4QIT2kS2WM0M8ObAM9u88Cm/oLj/yEUe
gAvmGM4LBHytFXms5bSvSNJY2niLDE1w+/8tHQhUaocwvGqqOkxmFQAliLj4T9Pj
ywyEaZ77iYFB8Rh74/fv3ms73/fWbSxwzleOd1g+wXedjbe5KgWgd+jVfLw0Hicg
Jg4L4i+Cjm4Ejo4NDAWMXjpIgvxYetqrn796HiSFyZjwsnj8qUhJopBwKDUpthrT
353nQbVAGlAhQrlbX6ri0F+AU+F4HT+t+Ev5uEx1KIguaWsinuikgGunYr0kp1S4
zA/vJikAjgPybGIJLUxx
=MwmT
-END PGP SIGNATURE-


Thank you for your contribution to Debian.


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1xv06d-00041i...@franck.debian.org



Bug#762047: xserver-xorg-video-ati: Black screen with mouse cursor on PowerPC

2014-09-19 Thread Bill Chatfield
I've verified that I provided the correct dmesg. But, my knowledge of how this 
is supposed to work is lacking, so I don't know how to debug this. If you could 
answer some questions, that would help me figure out what to do next. I'd also 
really like to learn whatever you can tell me about it:

1. Will the kernel choose one of the drivers (radeonfb or radeon) if they're 
both present or do I need to completely block one of them to get it to work 
right?

2. Is radeonfb really supposed to be compiled into the kernel as it is, or 
should it have been built as a module? Why do you think they compiled it into 
the kernel?

3. If the kernel is activating radeonfb as we can see in dmesg, why would it 
also load the drm/radeon driver?

4. The login screen comes up and is functional because I can blindly type in my 
user id and password, but none of the components of the login screen are 
actually visible except for the mouse. Which component is failing in this 
scenario (Xorg, radeon(fb), gtk, etc) ?

Thanks for your help!


On Thu, 9/18/14, Michel Dänzer  wrote:

 Subject: Re: Bug#762047: xserver-xorg-video-ati: Black screen with mouse 
cursor on PowerPC
 To: "Bill Chatfield" 
 Cc: 762...@bugs.debian.org
 Date: Thursday, September 18, 2014, 2:24 AM
 
 On 18.09.2014 13:23, Bill Chatfield
 wrote:
 > [    0.997986] radeonfb :00:10.0:
 enabling device (0006 -> 0007)
 > [    1.193788] radeonfb :00:10.0: Invalid
 ROM contents
 > [    1.193813] radeonfb (:00:10.0):
 Invalid ROM signature 303 should be 0xaa55
 > [    1.193823] radeonfb: Retrieved PLL infos
 from Open Firmware
 > [    1.193842] radeonfb: Reference=27.00 MHz
 (RefDiv=12) Memory=203.00 Mhz, System=392.00 MHz
 > [    1.193864] radeonfb: PLL min 12000 max
 35000
 > [    1.289994] i2c i2c-2: unable to read EDID
 block.
 > [    1.441986] i2c i2c-2: unable to read EDID
 block.
 > [    1.593986] i2c i2c-2: unable to read EDID
 block.
 > [    1.949865] radeonfb: Monitor 1 type LCD
 found
 > [    1.949881] radeonfb: EDID probed
 > [    1.949893] radeonfb: Monitor 2 type no
 found
 > [    1.949915] radeonfb: Using Firmware
 dividers 0x0002008e from PPLL 0
 > [    1.949981] radeonfb: Dynamic Clock Power
 Management enabled
 > [    1.982573] Console: switching to colour
 frame buffer device 160x53
 > [    2.004457] radeonfb: Backlight
 initialized (radeonbl0)
 > [    2.004635] radeonfb (:00:10.0): ATI
 Radeon 4e50 "NP"
 
 This shows that radeonfb is still enabled, so it doesn't
 provide the 
 information corresponding to the bug.
 
 
 -- 
 Earthling Michel Dänzer         
   |             
     http://www.amd.com
 Libre software enthusiast         
 |               
 Mesa and X developer



--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/1411138730.93575.yahoomailba...@web124703.mail.ne1.yahoo.com



Processing of weston_1.6.0-1_amd64.changes

2014-09-19 Thread Debian FTP Masters
weston_1.6.0-1_amd64.changes uploaded successfully to localhost
along with the files:
  weston_1.6.0-1_amd64.deb
  weston_1.6.0-1.dsc
  weston_1.6.0-1.tar.gz

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1xuzdg-0006we...@franck.debian.org



weston: Changes to 'upstream-unstable'

2014-09-19 Thread Hector Oron
 clients/editor.c |5 +
 clients/keyboard.c   |5 +
 clients/window.c |   12 
 configure.ac |4 ++--
 src/compositor-x11.c |2 +-
 5 files changed, 25 insertions(+), 3 deletions(-)

New commits:
commit 53fd7d70dc34007f0dc86621ed94c6f71fa35bf9
Author: Pekka Paalanen 
Date:   Fri Sep 19 13:40:14 2014 +0300

configure.ac: bump version to 1.6.0

Signed-off-by: Pekka Paalanen 

diff --git a/configure.ac b/configure.ac
index 4a889af..05e883d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
 m4_define([weston_major_version], [1])
-m4_define([weston_minor_version], [5])
-m4_define([weston_micro_version], [93])
+m4_define([weston_minor_version], [6])
+m4_define([weston_micro_version], [0])
 m4_define([weston_version],
   [weston_major_version.weston_minor_version.weston_micro_version])
 

commit 01448094768882a542ca4f3d3f32a66b8704bcc4
Author: Olivier Blin 
Date:   Tue Sep 16 19:13:17 2014 +0200

editor: do not crash when text input manager is not available

[Pekka Paalanen: whitespace fix]

Signed-off-by: Pekka Paalanen 

diff --git a/clients/editor.c b/clients/editor.c
index 66cba0b..421f8fe 100644
--- a/clients/editor.c
+++ b/clients/editor.c
@@ -1359,6 +1359,11 @@ main(int argc, char *argv[])
display_set_user_data(editor.display, &editor);
display_set_global_handler(editor.display, global_handler);
 
+   if (editor.text_input_manager == NULL) {
+   fprintf(stderr, "No text input manager global\n");
+   return -1;
+   }
+
editor.window = window_create(editor.display);
editor.widget = window_frame_create(editor.window, &editor);
 

commit 997232d068fdbd48f9de55ca7cc6e422ee6404b0
Author: Olivier Blin 
Date:   Tue Sep 16 19:13:16 2014 +0200

keyboard: do not crash when input panel is not available

[Pekka Paalanen: whitespace fix]

Signed-off-by: Pekka Paalanen 

diff --git a/clients/keyboard.c b/clients/keyboard.c
index 7c11cec..2579571 100644
--- a/clients/keyboard.c
+++ b/clients/keyboard.c
@@ -995,6 +995,11 @@ main(int argc, char *argv[])
display_set_user_data(virtual_keyboard.display, &virtual_keyboard);
display_set_global_handler(virtual_keyboard.display, global_handler);
 
+   if (virtual_keyboard.input_panel == NULL) {
+   fprintf(stderr, "No input panel global\n");
+   return -1;
+   }
+
output = display_get_output(virtual_keyboard.display);
keyboard_create(output, &virtual_keyboard);
 

commit 495339f7363b3aac040395419419c5dedb690b7b
Author: Jason Ekstrand 
Date:   Mon Sep 15 12:10:27 2014 -0700

compositor-x11: Rename the output make to "weston-X11"

Previously all outputs in the X11 backend had the make "xwayland" which is
confusing.  Now they have something that makes a little more sense.

diff --git a/src/compositor-x11.c b/src/compositor-x11.c
index 3494e34..b602bc9 100644
--- a/src/compositor-x11.c
+++ b/src/compositor-x11.c
@@ -869,7 +869,7 @@ x11_compositor_create_output(struct x11_compositor *c, int 
x, int y,
output->base.set_dpms = NULL;
output->base.switch_mode = NULL;
output->base.current_mode = &output->mode;
-   output->base.make = "xwayland";
+   output->base.make = "weston-X11";
output->base.model = "none";
 
if (configured_name)

commit a253fca28727101239cc2ea558864f686128b116
Author: Ondřej Majerech 
Date:   Sat Sep 13 16:35:45 2014 +0200

window: Don't needlessly sync parent and geometry

When a toytoolkit client redraws, the toolkit syncs the parent and
geometry. If a client redraws often (such as the terminal drawing a huge
amount of output), this can spam the compositor with requests and may
result in the client's eventual being killed.

We don't need to send requests for changing the geometry or parent if
these haven't changed. So remember the last geometry and parent, and
update them only if needed.

Bug: https://bugs.freedesktop.org/show_bug.cgi?id=83297
Signed-off-by: Ondřej Majerech 
Reviewed-by: Pekka Paalanen 

diff --git a/clients/window.c b/clients/window.c
index 9c48155..e44d65c 100644
--- a/clients/window.c
+++ b/clients/window.c
@@ -217,6 +217,7 @@ struct window {
struct rectangle saved_allocation;
struct rectangle min_allocation;
struct rectangle pending_allocation;
+   struct rectangle last_geometry;
int x, y;
int redraw_needed;
int redraw_task_scheduled;
@@ -246,6 +247,7 @@ struct window {
struct xdg_popup *xdg_popup;
 
struct window *parent;
+   struct wl_surface *last_parent_surface;
 
struct window_frame *frame;
 
@@ -3993,7 +3995,11 @@ window_sync_parent(struct window *window)
else
parent_surface = NULL;
 
+   if (parent_surface == window->last_parent_surface)
+   return;
+
xdg

weston: Changes to 'refs/tags/weston-1.6.0-1'

2014-09-19 Thread Hector Oron
Tag 'weston-1.6.0-1' created by Héctor Orón Martínez  at 
2014-09-19 14:40 +

Release Debian version weston-1.6.0-1

Changes since weston-1.5.93-2:
Héctor Orón Martínez (2):
  Merge branch 'upstream-unstable' into debian-unstable
  Release Debian version weston-1.6.0-1

Jason Ekstrand (1):
  compositor-x11: Rename the output make to "weston-X11"

Olivier Blin (2):
  keyboard: do not crash when input panel is not available
  editor: do not crash when text input manager is not available

Ondřej Majerech (1):
  window: Don't needlessly sync parent and geometry

Pekka Paalanen (1):
  configure.ac: bump version to 1.6.0

---
 clients/editor.c |5 +
 clients/keyboard.c   |5 +
 clients/window.c |   12 
 configure.ac |4 ++--
 debian/changelog |9 +
 src/compositor-x11.c |2 +-
 6 files changed, 34 insertions(+), 3 deletions(-)
---


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1xuzzf-0007vj...@moszumanska.debian.org



weston: Changes to 'debian-unstable'

2014-09-19 Thread Hector Oron
 clients/editor.c |5 +
 clients/keyboard.c   |5 +
 clients/window.c |   12 
 configure.ac |4 ++--
 debian/changelog |9 +
 src/compositor-x11.c |2 +-
 6 files changed, 34 insertions(+), 3 deletions(-)

New commits:
commit 474b8be0f041b7b39686979ab0c0c4e8b270f984
Author: Héctor Orón Martínez 
Date:   Fri Sep 19 16:40:33 2014 +0200

Release Debian version weston-1.6.0-1

Signed-off-by: Héctor Orón Martínez 

diff --git a/debian/changelog b/debian/changelog
index 6a77044..64a8dd9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,12 @@
+weston (1.6.0-1) unstable; urgency=medium
+
+  * New upstream release.
+  * Fix "weston-terminal: exits under load"
+- Thanks Rémi Denis-Courmont for report.
+(Closes: #760043)
+
+ -- Hector Oron   Fri, 19 Sep 2014 16:38:47 +0200
+
 weston (1.5.93-2) unstable; urgency=medium
 
   [ Hector Oron ]

commit 2858cc2a50854685b44eee72994dea57f5aa4246
Author: Pekka Paalanen 
Date:   Fri Sep 19 13:40:14 2014 +0300

configure.ac: bump version to 1.6.0

Signed-off-by: Pekka Paalanen 

diff --git a/configure.ac b/configure.ac
index 4a889af..05e883d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
 m4_define([weston_major_version], [1])
-m4_define([weston_minor_version], [5])
-m4_define([weston_micro_version], [93])
+m4_define([weston_minor_version], [6])
+m4_define([weston_micro_version], [0])
 m4_define([weston_version],
   [weston_major_version.weston_minor_version.weston_micro_version])
 

commit 30e1f3c311772ad884df894c7ebf733a41f66458
Author: Olivier Blin 
Date:   Tue Sep 16 19:13:17 2014 +0200

editor: do not crash when text input manager is not available

[Pekka Paalanen: whitespace fix]

Signed-off-by: Pekka Paalanen 

diff --git a/clients/editor.c b/clients/editor.c
index 66cba0b..421f8fe 100644
--- a/clients/editor.c
+++ b/clients/editor.c
@@ -1359,6 +1359,11 @@ main(int argc, char *argv[])
display_set_user_data(editor.display, &editor);
display_set_global_handler(editor.display, global_handler);
 
+   if (editor.text_input_manager == NULL) {
+   fprintf(stderr, "No text input manager global\n");
+   return -1;
+   }
+
editor.window = window_create(editor.display);
editor.widget = window_frame_create(editor.window, &editor);
 

commit 814f0ee5a634601f9c4cf36ac1a5147826192509
Author: Olivier Blin 
Date:   Tue Sep 16 19:13:16 2014 +0200

keyboard: do not crash when input panel is not available

[Pekka Paalanen: whitespace fix]

Signed-off-by: Pekka Paalanen 

diff --git a/clients/keyboard.c b/clients/keyboard.c
index 7c11cec..2579571 100644
--- a/clients/keyboard.c
+++ b/clients/keyboard.c
@@ -995,6 +995,11 @@ main(int argc, char *argv[])
display_set_user_data(virtual_keyboard.display, &virtual_keyboard);
display_set_global_handler(virtual_keyboard.display, global_handler);
 
+   if (virtual_keyboard.input_panel == NULL) {
+   fprintf(stderr, "No input panel global\n");
+   return -1;
+   }
+
output = display_get_output(virtual_keyboard.display);
keyboard_create(output, &virtual_keyboard);
 

commit 22e16b656f67ee577e32a7af91f443840fc3aee1
Author: Jason Ekstrand 
Date:   Mon Sep 15 12:10:27 2014 -0700

compositor-x11: Rename the output make to "weston-X11"

Previously all outputs in the X11 backend had the make "xwayland" which is
confusing.  Now they have something that makes a little more sense.

diff --git a/src/compositor-x11.c b/src/compositor-x11.c
index 3494e34..b602bc9 100644
--- a/src/compositor-x11.c
+++ b/src/compositor-x11.c
@@ -869,7 +869,7 @@ x11_compositor_create_output(struct x11_compositor *c, int 
x, int y,
output->base.set_dpms = NULL;
output->base.switch_mode = NULL;
output->base.current_mode = &output->mode;
-   output->base.make = "xwayland";
+   output->base.make = "weston-X11";
output->base.model = "none";
 
if (configured_name)

commit b2c18647775732da740946eb199b1f2b46ba950b
Author: Ondřej Majerech 
Date:   Sat Sep 13 16:35:45 2014 +0200

window: Don't needlessly sync parent and geometry

When a toytoolkit client redraws, the toolkit syncs the parent and
geometry. If a client redraws often (such as the terminal drawing a huge
amount of output), this can spam the compositor with requests and may
result in the client's eventual being killed.

We don't need to send requests for changing the geometry or parent if
these haven't changed. So remember the last geometry and parent, and
update them only if needed.

Bug: https://bugs.freedesktop.org/show_bug.cgi?id=83297
Signed-off-by: Ondřej Majerech 
Reviewed-by: Pekka Paalanen 

diff --git a/clients/window.c b/clients/window.c
index 9c48155..e44d65c 100644
--- a/clients/window.c
+++ b/clients/window.c

wayland: Changes to 'upstream-unstable'

2014-09-19 Thread Hector Oron
 configure.ac |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 339e83aa579569711cd14623ca4b2db46256b766
Author: Pekka Paalanen 
Date:   Fri Sep 19 12:36:04 2014 +0300

configure.ac: bump version to 1.6.0

Signed-off-by: Pekka Paalanen 

diff --git a/configure.ac b/configure.ac
index c556d4f..cc7b535 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,8 +1,8 @@
 AC_PREREQ([2.64])
 
 m4_define([wayland_major_version], [1])
-m4_define([wayland_minor_version], [5])
-m4_define([wayland_micro_version], [93])
+m4_define([wayland_minor_version], [6])
+m4_define([wayland_micro_version], [0])
 m4_define([wayland_version],
   [wayland_major_version.wayland_minor_version.wayland_micro_version])
 


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1xuzjv-0002nj...@moszumanska.debian.org



Processing of wayland_1.6.0-1_amd64.changes

2014-09-19 Thread Debian FTP Masters
wayland_1.6.0-1_amd64.changes uploaded successfully to localhost
along with the files:
  libwayland-client0_1.6.0-1_amd64.deb
  libwayland-client0-dbg_1.6.0-1_amd64.deb
  libwayland-server0_1.6.0-1_amd64.deb
  libwayland-server0-dbg_1.6.0-1_amd64.deb
  libwayland-cursor0_1.6.0-1_amd64.deb
  libwayland-cursor0-dbg_1.6.0-1_amd64.deb
  libwayland-dev_1.6.0-1_amd64.deb
  wayland_1.6.0-1.dsc
  wayland_1.6.0-1.tar.gz

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1xuzjn-0004yz...@franck.debian.org



wayland: Changes to 'refs/tags/wayland-1.6.0-1'

2014-09-19 Thread Hector Oron
Tag 'wayland-1.6.0-1' created by Héctor Orón Martínez  at 
2014-09-19 14:30 +

Release Debian version wayland-1.6.0-1

Changes since wayland-1.5.93-2:
Héctor Orón Martínez (2):
  Merge branch 'upstream-unstable' into debian-unstable
  Release Debian version wayland-1.6.0-1

Pekka Paalanen (1):
  configure.ac: bump version to 1.6.0

---
 configure.ac |4 ++--
 debian/changelog |6 ++
 2 files changed, 8 insertions(+), 2 deletions(-)
---


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1xuzil-0005nh...@moszumanska.debian.org



wayland: Changes to 'debian-unstable'

2014-09-19 Thread Hector Oron
 configure.ac |4 ++--
 debian/changelog |6 ++
 2 files changed, 8 insertions(+), 2 deletions(-)

New commits:
commit 1be81c6a578a5c6f49c38bed1f4ec0f14ad4c7d6
Author: Héctor Orón Martínez 
Date:   Fri Sep 19 16:30:22 2014 +0200

Release Debian version wayland-1.6.0-1

Signed-off-by: Héctor Orón Martínez 

diff --git a/debian/changelog b/debian/changelog
index d07a386..7b75168 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+wayland (1.6.0-1) unstable; urgency=medium
+
+  * New upstream release.
+
+ -- Hector Oron   Fri, 19 Sep 2014 16:28:13 +0200
+
 wayland (1.5.93-2) unstable; urgency=medium
 
   * Upload to unstable.

commit 339e83aa579569711cd14623ca4b2db46256b766
Author: Pekka Paalanen 
Date:   Fri Sep 19 12:36:04 2014 +0300

configure.ac: bump version to 1.6.0

Signed-off-by: Pekka Paalanen 

diff --git a/configure.ac b/configure.ac
index c556d4f..cc7b535 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,8 +1,8 @@
 AC_PREREQ([2.64])
 
 m4_define([wayland_major_version], [1])
-m4_define([wayland_minor_version], [5])
-m4_define([wayland_micro_version], [93])
+m4_define([wayland_minor_version], [6])
+m4_define([wayland_micro_version], [0])
 m4_define([wayland_version],
   [wayland_major_version.wayland_minor_version.wayland_micro_version])
 


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1xuzia-000403...@moszumanska.debian.org



Processed: tagging 761398

2014-09-19 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 761398 - wheezy jessie
Bug #761398 [xorg] Xorg refuses remote login over XDMCP with Xephyr
Removed tag(s) wheezy and jessie.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
761398: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=761398
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/handler.s.c.141112703729545.transcr...@bugs.debian.org



Bug#761398: This is also the case with Wheezy/stable

2014-09-19 Thread Andreas Glaeser
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

I tried this on another PC today, running Wheezy/stable.
The situation is the same there. GDM3 does not allow any logins via XDMCP, 
although
configured accordingly, lightdm allows this with Xnest only, but not with 
Xephyr.
Tagging this accordingly.
This does not seem to be specific to systemd.

auth.log:
.
..
> Sep 19 09:17:16 gamebox lightdm: pam_unix(lightdm:session): session closed 
> for user
> lightdm Sep 19 09:17:16 gamebox lightdm: pam_nologin(lightdm:auth): cannot 
> determine
> username Sep 19 09:17:25 gamebox sshd[4085]: Server listening on 0.0.0.0 port 
> 22.
> Sep 19 09:17:25 gamebox sshd[4085]: Server listening on :: port 22.
> Sep 19 09:17:26 gamebox lightdm: pam_unix(lightdm:session): session opened 
> for user
> lightdm by (uid=0) Sep 19 09:17:26 gamebox lightdm: 
> pam_ck_connector(lightdm:session):
> nox11 mode, ignoring PAM_TTY :0 Sep 19 09:17:26 gamebox dbus[3939]: [system] 
> Rejected
> send message, 2 matched rules; type="method_call", sender=":1.12" (uid=114 
> pid=4666
> comm="/usr/sbin/lightdm-gtk-greeter ") 
> interface="org.freedesktop.DBus.Properties"
> member="GetAll" error name="(unset)" requested_reply="0" destination=":1.10" 
> (uid=0
> pid=4593 comm="/usr/sbin/console-kit-daemon --no-daemon ") Sep 19 09:17:54 
> gamebox
> lightdm: pam_unix(lightdm:session): session opened for user lightdm by 
> (uid=0) Sep 19
> 09:17:54 gamebox lightdm: pam_ck_connector(lightdm:session): nox11 mode, 
> ignoring
> PAM_TTY 2a02:8109:8440:25f4:219:99ff:fe60:9de1:1 Sep 19 09:17:56 gamebox 
> dbus[3939]:
> [system] Rejected send message, 2 matched rules; type="method_call",
> sender=":1.16" (uid=114 pid=4878 comm="/usr/sbin/lightdm-gtk-greeter ")
> interface="org.freedesktop.DBus.Properties" member="GetAll" error 
> name="(unset)"
> requested_reply="0" destination=":1.10" (uid=0 pid=4593
> comm="/usr/sbin/console-kit-daemon --no-daemon ") Sep 19 09:18:12 gamebox 
> lightdm:
> pam_unix(lightdm:session): session closed for user lightdm Sep 19 09:18:12 
> gamebox
> lightdm: pam_unix(lightdm:session): session opened for user andreas by 
> (uid=0) Sep 19
> 09:18:12 gamebox lightdm: pam_ck_connector(lightdm:session): nox11 mode, 
> ignoring
> PAM_TTY 2a02:8109:8440:25f4:219:99ff:fe60:9de1:1 Sep 19 09:18:23 gamebox
> polkitd(authority=local): Registered Authentication Agent for
> unix-session:/org/freedesktop/ConsoleKit/Session3 (system bus name :1.59
> [/usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1], object
> path /org/gnome/PolicyKit1/AuthenticationAgent, locale en_GB.UTF-8) Sep 19 
> 09:18:52
> gamebox lightdm: pam_unix(lightdm:session): session closed for user andreas 
> Sep 19
> 09:18:52 gamebox polkitd(authority=local): Unregistered Authentication Agent 
> for
> unix-session:/org/freedesktop/ConsoleKit/Session3 (system bus name :1.59, 
> object
> path /org/gnome/PolicyKit1/AuthenticationAgent, locale en_GB.UTF-8) 
> (disconnected from
> bus) Sep 19 09:18:53 gamebox lightdm: pam_unix(lightdm:session): session 
> opened for
> user lightdm by (uid=0) Sep 19 09:18:53 gamebox lightdm:
> pam_ck_connector(lightdm:session): nox11 mode, ignoring PAM_TTY
> 2a02:8109:8440:25f4:219:99ff:fe60:9de1:1 Sep 19 09:18:54 gamebox dbus[3939]: 
> [system]
> Rejected send message, 2 matched rules; type="method_call", sender=":1.64" 
> (uid=114
> pid=5136 comm="/usr/sbin/lightdm-gtk-greeter ")
> interface="org.freedesktop.DBus.Properties" member="GetAll" error 
> name="(unset)"
> requested_reply="0" destination=":1.10" (uid=0 pid=4593
> comm="/usr/sbin/console-kit-daemon --no-daemon ") Sep 19 09:18:55 gamebox 
> lightdm:
> pam_unix(lightdm:session): session closed for user lightdm Sep 19 09:19:24 
> gamebox
> lightdm: pam_unix(lightdm:session): session opened for user lightdm by 
> (uid=0) Sep 19
> 09:19:24 gamebox lightdm: pam_ck_connector(lightdm:session): nox11 mode, 
> ignoring
> PAM_TTY 2a02:8109:8440:25f4:219:99ff:fe60:9de1:1 Sep 19 09:19:24 gamebox 
> dbus[3939]:
> [system] Rejected send message, 2 matched rules; type="method_call",
> sender=":1.66" (uid=114 pid=5189 comm="/usr/sbin/lightdm-gtk-greeter ")
> interface="org.freedesktop.DBus.Properties" member="GetAll" error 
> name="(unset)"
> requested_reply="0" destination=":1.10" (uid=0 pid=4593
> comm="/usr/sbin/console-kit-daemon --no-daemon ") Sep 19 09:19:40 gamebox 
> lightdm:
> pam_unix(lightdm:auth): authentication failure; logname= uid=0 euid=0
> tty=2a02:8109:8440:25f4:219:99ff:fe60:9de1:1 ruser= rhost=  user=andreas Sep 
> 19
> 09:19:59 gamebox lightdm: pam_unix(lightdm:session): session closed for user 
> lightdm
..
.
-BEGIN PGP SIGNATURE-
Version: GnuPG v2

iEYEARECAAYFAlQb+GMACgkQ5+rBHyUt5wupCQCggxRkZZNxS1jRWcncjkrjFlPE
IGoAmweYUeB4uvea4rUp6SYXD/JQQOau
=9N0w
-END PGP SIGNATURE-


Processed: tags

2014-09-19 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tag 761398 jessie wheezy
Bug #761398 [xorg] Xorg refuses remote login over XDMCP with Xephyr
Added tag(s) wheezy and jessie.
>
End of message, stopping processing here.

Please contact me if you need assistance.
-- 
761398: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=761398
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/handler.s.c.14938410311.transcr...@bugs.debian.org



Bug#762047: xserver-xorg-video-ati: Black screen with mouse cursor on PowerPC

2014-09-19 Thread Michel Dänzer

On 19.09.2014 18:50, Michel Dänzer wrote:

On 18.09.2014 23:33, Bill Chatfield wrote:

It would seem so, but it is the right information. I double checked
that it is right by booting without the video kernel parameter and
running dmesg.


Okay, so I think your original problem is because the Xorg fbdev driver
uses the colour depth from console by default, and I guess the login
manager you're using can't deal with that.


To clarify, I mean it can't deal with depth 8 pseudo-colour.


--
Earthling Michel Dänzer|  http://www.amd.com
Libre software enthusiast  |Mesa and X developer


--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/541bfd92.3050...@daenzer.net



Bug#762047: xserver-xorg-video-ati: Black screen with mouse cursor on PowerPC

2014-09-19 Thread Michel Dänzer

On 18.09.2014 23:33, Bill Chatfield wrote:

It would seem so, but it is the right information. I double checked
that it is right by booting without the video kernel parameter and
running dmesg.


Okay, so I think your original problem is because the Xorg fbdev driver 
uses the colour depth from console by default, and I guess the login 
manager you're using can't deal with that. You may want to report that 
against the login manager package, but you probably want to use a higher 
colour depth anyway. So you need to change it, either for console as 
you've been doing, or just for X in /etc/X11/xorg.conf or by having the 
login manager pass -depth XX on the Xorg command line.




I got the same radeonfb lines that you show in your message. I think
that's part of the problem, radeonfb is compiled into the kernel and
active when drm/radeon are being used?


Right, to use radeon KMS, you need to disable radeonfb with 
video=radeonfb:off on the kernel command line. That should give you at 
least 2D hardware acceleration, but suspend/resume won't work.



--
Earthling Michel Dänzer|  http://www.amd.com
Libre software enthusiast  |Mesa and X developer


--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/541bfc56.6020...@daenzer.net



Processed: notfixed 754392 in 1.5.93-1

2014-09-19 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> notfixed 754392 1.5.93-1
Bug #754392 [weston] weston: segfault on exit when cms-colord.so is loaded
No longer marked as fixed in versions weston/1.5.93-1.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
754392: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=754392
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/handler.s.c.14729026233.transcr...@bugs.debian.org



Processed: ANN xterm 311

2014-09-19 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 760208 fixed-upstream
Bug #760208 [xterm] xterm: the set-vt-font(e) action doesn't work / menu item 
grayed out
Added tag(s) fixed-upstream.
> --
Stopping processing here.

Please contact me if you need assistance.
-- 
760208: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=760208
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/handler.s.c.14596017196.transcr...@bugs.debian.org



Processed: ANN: xterm-311

2014-09-19 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 639094 fixed-upstream
Bug #639094 [xterm] xterm: Middle mouse clip being remembers by Xterm
Added tag(s) fixed-upstream.
> tags 758633 fixed-upstream
Bug #758633 [xterm] xterm: exec-formatted, exec-selectable, insert-formatted, 
insert-selectable do not work correctly
Added tag(s) fixed-upstream.
> tags 759734 fixed-upstream
Bug #759734 [xterm] xterm: the cursor hides the underneath character when in 
reverse video with xterm -bg black -fg white
Added tag(s) fixed-upstream.
> tags 760207 fixed-upstream
Bug #760207 [xterm] xterm: segmentation fault when selecting a non-existing font
Added tag(s) fixed-upstream.
> --
Stopping processing here.

Please contact me if you need assistance.
-- 
639094: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=639094
758633: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=758633
759734: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=759734
760207: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=760207
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/handler.s.c.14494110785.transcr...@bugs.debian.org



Processed: tagging 760043

2014-09-19 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 760043 + pending
Bug #760043 [weston] weston-terminal: exits under load
Added tag(s) pending.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
760043: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=760043
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/handler.s.c.1448369752.transcr...@bugs.debian.org



Processed: tagging 760043

2014-09-19 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 760043 + patch
Bug #760043 [weston] weston-terminal: exits under load
Added tag(s) patch.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
760043: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=760043
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/handler.s.c.1448309714.transcr...@bugs.debian.org



Bug#760043: weston-terminal: exits under load

2014-09-19 Thread Hector Oron
On Sat, Sep 13, 2014 at 02:17:57PM +0200, Hector Oron wrote:
 
> Yes, I was able to reproduce and it affects upstream, but however upstream 
> considers "weston-terminal" as a toy application. Therefore I do not think 
> this bug makes weston completely unusable, I hope you agree on downgrading 
> severity, at most to important or normal.
> 
> However let's track it upstream.

It should be fixed in weston master:
  b2c18647775732da740946eb199b1f2b46ba950b

It should be part of next release and package upload

Regards,
-- 
  Hector Oron


signature.asc
Description: Digital signature