Bug#762277: xinit: Keyboard stopped working in X after upgrade
Julien Cristau pisze: > On Sat, Sep 20, 2014 at 16:00:46 +0200, Robert Luberda wrote: > >> > Please provide the X log. Please find the logs attached: the "broken" one was generated with xinit 1.3.3-1 installed, and the "good" one is with xinit 1.3.2-1. Regards, robert Xorg.0.log.broken.gz Description: application/gzip Xorg.0.log.good.gz Description: application/gzip
Bug#762277: xinit: Keyboard stopped working in X after upgrade
On Mon, Sep 22, 2014 at 09:16:08 +0200, Robert Luberda wrote: > Julien Cristau pisze: > > On Sat, Sep 20, 2014 at 16:00:46 +0200, Robert Luberda wrote: > > > >> > > Please provide the X log. > > Please find the logs attached: the "broken" one was generated with xinit > 1.3.3-1 installed, and the "good" one is with xinit 1.3.2-1. > [ 1916.376] (**) Option "AutoAddDevices" "off" [ 1916.376] (**) Option "AutoEnableDevices" "off" That's definitely a bad idea. I'm guessing if you get rid of your xorg.conf it'll work. Cheers, Julien signature.asc Description: Digital signature
xserver-xorg-input-synaptics: Changes to 'ubuntu'
debian/changelog |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) New commits: commit 5f16db8f8fd62f76fa231826cbd2c00dd6134136 Author: Maarten Lankhorst Date: Mon Sep 22 09:49:16 2014 +0200 release to utopic diff --git a/debian/changelog b/debian/changelog index 0696df2..2cbb8ca 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -xserver-xorg-input-synaptics (1.8.1-1ubuntu1) UNRELEASED; urgency=low +xserver-xorg-input-synaptics (1.8.1-1ubuntu1) utopic; urgency=medium * Merge from released sid. * Drop postinst file, only needed for updating from synaptics <= 1.4.1. @@ -6,7 +6,7 @@ xserver-xorg-input-synaptics (1.8.1-1ubuntu1) UNRELEASED; urgency=low - A bunch of behavioral patches. - Install some behavioral quirks. - -- Maarten Lankhorst Mon, 22 Sep 2014 09:39:42 +0200 + -- Maarten Lankhorst Mon, 22 Sep 2014 09:44:47 +0200 xserver-xorg-input-synaptics (1.8.1-1) unstable; urgency=medium -- 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/e1xvynb-0002d2...@moszumanska.debian.org
xserver-xorg-video-intel: Changes to 'ubuntu'
debian/changelog |6 ++ 1 file changed, 6 insertions(+) New commits: commit d441084d5b6108c31ccd8723c45b2513c5ba9fbd Author: Maarten Lankhorst Date: Wed Sep 10 16:56:05 2014 +0200 Rebuild for xorg 1.16 abi. diff --git a/debian/changelog b/debian/changelog index 4c0df5c..bdadd00 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +xserver-xorg-video-intel (2:2.99.914-1~exp1ubuntu2) utopic; urgency=medium + + * Rebuild for xorg 1.16 abi. + + -- Maarten Lankhorst Wed, 10 Sep 2014 16:55:48 +0200 + xserver-xorg-video-intel (2:2.99.914-1~exp1ubuntu1) utopic; urgency=medium * Merge from released experimental. -- 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/e1xvzhe-00069j...@moszumanska.debian.org
xserver-xorg-video-intel: Changes to 'ubuntu-trusty'
debian/changelog |6 debian/patches/disable-outputs-when-slaved.patch | 184 +++ debian/patches/series|1 3 files changed, 191 insertions(+) New commits: commit 99a92e981fd85eac7677dfb9bcb7d6cae1d91687 Author: Maarten Lankhorst Date: Mon Sep 22 11:26:53 2014 +0200 Fix black screen with SNA. (LP: #1365695) diff --git a/debian/changelog b/debian/changelog index 4375206..7fa7a26 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +xserver-xorg-video-intel (2:2.99.910-0ubuntu1.2) UNRELEASED; urgency=low + + * Fix black screen with SNA. (LP: #1365695) + + -- Maarten Lankhorst Mon, 22 Sep 2014 11:26:22 +0200 + xserver-xorg-video-intel (2:2.99.910-0ubuntu1.1) trusty; urgency=medium * Backport fixes from upstream driver for fglrx and broadwell. (LP: #1359105) diff --git a/debian/patches/disable-outputs-when-slaved.patch b/debian/patches/disable-outputs-when-slaved.patch new file mode 100644 index 000..e2bfe33 --- /dev/null +++ b/debian/patches/disable-outputs-when-slaved.patch @@ -0,0 +1,184 @@ +commit d6830190bc9956f485db6c3420f7a4a79793a693 +Author: Chris Wilson +Date: Wed Jul 23 10:53:40 2014 +0100 + +sna: Disable all outputs when initializing as a slaved output provider + +When we are constructed as a slaved device, we need to disable all +outputs or else they are not correctly hooked into the master device +upon startup. + +Signed-off-by: Chris Wilson + +--- a/src/intel_module.c b/src/intel_module.c +@@ -531,7 +531,7 @@ + scrn->driverVersion = INTEL_VERSION; + scrn->driverName = (char *)INTEL_DRIVER_NAME; + scrn->name = (char *)INTEL_NAME; +- scrn->driverPrivate = (void *)(match_data | 1); ++ scrn->driverPrivate = (void *)(match_data | (flags & XF86_ALLOCATE_GPU_SCREEN) | 2); + scrn->Probe = NULL; + + if (xf86IsEntitySharable(entity_num)) +--- a/src/sna/sna.h b/src/sna/sna.h +@@ -233,16 +233,17 @@ + ScrnInfoPtr scrn; + + unsigned flags; +-#define SNA_NO_WAIT 0x1 +-#define SNA_NO_FLIP 0x2 ++#define SNA_IS_SLAVED 0x1 ++#define SNA_IS_HOSTED 0x2 + #define SNA_NO_VSYNC 0x4 + #define SNA_TRIPLE_BUFFER 0x8 + #define SNA_TEAR_FREE 0x10 + #define SNA_FORCE_SHADOW 0x20 + #define SNA_FLUSH_GTT 0x40 +-#define SNA_IS_HOSTED 0x80 ++#define SNA_NO_WAIT 0x80 + #define SNA_PERFORMANCE 0x100 + #define SNA_POWERSAVE 0x200 ++#define SNA_NO_FLIP 0x400 + #define SNA_REPROBE 0x8000 + + unsigned cpu_features; +--- a/src/sna/sna_display.c b/src/sna/sna_display.c +@@ -3418,6 +3418,9 @@ + + assert((sna->flags & SNA_IS_HOSTED) == 0); + ++ if (sna->flags & SNA_IS_SLAVED) ++ goto skip; ++ + if (xf86ReturnOptValBool(sna->Options, OPTION_REPROBE, FALSE)) { + DBG(("%s: user requests reprobing\n", __FUNCTION__)); + return false; +@@ -3438,6 +3441,7 @@ + } + } + ++skip: + /* Copy the existing modes on each CRTCs */ + for (i = 0; i < config->num_crtc; i++) { + xf86CrtcPtr crtc = config->crtc[i]; +@@ -3484,6 +3488,8 @@ + + crtc_id = (uintptr_t)output->crtc; + output->crtc = NULL; ++ if (sna->flags & SNA_IS_SLAVED) ++ continue; + + if (crtc_id == 0) + continue; +@@ -3543,7 +3549,7 @@ + } + + width = height = 0; +- for (i = 0; i < config->num_crtc; i++) { ++ for (i = 0; i < sna->mode.num_real_crtc; i++) { + xf86CrtcPtr crtc = config->crtc[i]; + int w, h; + +--- a/src/sna/sna_driver.c b/src/sna/sna_driver.c +@@ -441,7 +441,7 @@ + * As a result, we want to set up that server initialization once rather + * that doing it per generation. + */ +-static Bool sna_pre_init(ScrnInfoPtr scrn, int flags) ++static Bool sna_pre_init(ScrnInfoPtr scrn, int probe) + { + struct sna *sna; + char buf[1024]; +@@ -451,7 +451,7 @@ + int fd; + + DBG(("%s flags=%x, numEntities=%d\n", +- __FUNCTION__, flags, scrn->numEntities)); ++ __FUNCTION__, probe, scrn->numEntities)); + + if (scrn->numEntities != 1) + return FALSE; +@@ -467,17 +467,19 @@ + ) + return FALSE; + +- if (flags & PROBE_DETECT) ++ if (probe & PROBE_DETECT) + return TRUE; + + sna_selftest(); + +- if (((uintptr_t)scrn->driverPrivate) & 1) { ++ probe = 0; ++ if (((uintptr_t)scrn->driverPrivate) & 3) { + if (posix_memalign((void **)&sna, 4096, sizeof(*sna))) + return FALSE; + + memset(sna, 0, sizeof(*sna)); /* should be unnecessary */ +- sna->info = (void *)((uintptr_t)scrn->dr
mesa: Changes to 'debian-experimental'
debian/changelog |2 debian/patches/01_gallium-util-add-missing-u_debug-include.patch | 39 -- debian/patches/series|1 3 files changed, 2 insertions(+), 40 deletions(-) New commits: commit 1839b39a8465b7d8a9c00957293084e067eac00d Author: Maarten Lankhorst Date: Mon Sep 22 11:42:48 2014 +0200 Remove upstreamed patch. 01_gallium-util-add-missing-u_debug-include.patch diff --git a/debian/changelog b/debian/changelog index 459ad3b..ca47574 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,8 @@ mesa (10.3.0-1) UNRELEASED; urgency=medium * New upstream release. + * Remove upstreamed patch. +- 01_gallium-util-add-missing-u_debug-include.patch -- Maarten Lankhorst Mon, 22 Sep 2014 11:31:45 +0200 diff --git a/debian/patches/01_gallium-util-add-missing-u_debug-include.patch b/debian/patches/01_gallium-util-add-missing-u_debug-include.patch deleted file mode 100644 index 12ed857..000 --- a/debian/patches/01_gallium-util-add-missing-u_debug-include.patch +++ /dev/null @@ -1,39 +0,0 @@ -From 05bd91b0202e06cab998112a3a833c1fa3b47d31 Mon Sep 17 00:00:00 2001 -From: Andreas Boll -Date: Fri, 12 Sep 2014 10:11:24 +0200 -Subject: [PATCH] gallium/util: add missing u_debug include - -Needed for assert. -Fixes build on BE archs with -Werror=implicit-function-declaration. - -In file included from -../../../../../src/gallium/auxiliary/draw/draw_fs.c:30:0: -../../../../../src/gallium/auxiliary/util/u_math.h: In function -'util_memcpy_cpu_to_le32': -../../../../../src/gallium/auxiliary/util/u_math.h:810:4: error: -implicit declaration of function 'assert' -[-Werror=implicit-function-declaration] -assert(n % 4 == 0); -^ - -Cc: "10.3" -Signed-off-by: Andreas Boll - src/gallium/auxiliary/util/u_math.h | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/src/gallium/auxiliary/util/u_math.h b/src/gallium/auxiliary/util/u_math.h -index 25bcfb5..39bd40f 100644 a/src/gallium/auxiliary/util/u_math.h -+++ b/src/gallium/auxiliary/util/u_math.h -@@ -40,6 +40,7 @@ - - - #include "pipe/p_compiler.h" -+#include "util/u_debug.h" - - - #ifdef __cplusplus --- -2.1.0 - diff --git a/debian/patches/series b/debian/patches/series index 2274a62..9f0749f 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -1,2 +1 @@ -01_gallium-util-add-missing-u_debug-include.patch 07_gallium-fix-build-failure-on-powerpcspe.diff -- 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/e1xw0iz-00045f...@moszumanska.debian.org
xserver-xorg-video-intel: Changes to 'ubuntu'
debian/changelog |6 ++ debian/patches/series |1 + debian/patches/sna-freescreen.diff | 19 +++ 3 files changed, 26 insertions(+) New commits: commit 1d46b5e060c9b3cf232267514c8a2b30141cab4b Author: Maarten Lankhorst Date: Mon Sep 22 15:29:40 2014 +0200 Add patch to enable SNA with fglrx. (LP: #1359105) diff --git a/debian/changelog b/debian/changelog index bdadd00..dc2fe67 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +xserver-xorg-video-intel (2:2.99.914-1~exp1ubuntu3) utopic; urgency=medium + + * Add patch to enable SNA with fglrx. (LP: #1359105) + + -- Maarten Lankhorst Mon, 22 Sep 2014 15:29:05 +0200 + xserver-xorg-video-intel (2:2.99.914-1~exp1ubuntu2) utopic; urgency=medium * Rebuild for xorg 1.16 abi. diff --git a/debian/patches/series b/debian/patches/series index 8582ca8..1786fa5 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -3,3 +3,4 @@ dri3-flush-broken.patch # XMir series xmir.patch +sna-freescreen.diff diff --git a/debian/patches/sna-freescreen.diff b/debian/patches/sna-freescreen.diff new file mode 100644 index 000..d9a2603 --- /dev/null +++ b/debian/patches/sna-freescreen.diff @@ -0,0 +1,19 @@ +commit f5469681b620d9d6ccaf53e92ed31f931cb03b0d +Author: Chris Wilson +Date: Mon Aug 18 14:37:44 2014 +0100 + +sna: Be defensive during FreeScreen() + +Signed-off-by: Chris Wilson + +--- a/src/sna/sna_driver.c b/src/sna/sna_driver.c +@@ -1190,7 +1190,7 @@ + struct sna *sna = to_sna(scrn); + + DBG(("%s\n", __FUNCTION__)); +- if ((uintptr_t)sna & 1) ++ if (sna == NULL || (uintptr_t)sna & 3) /* beware thieves */ + return; + + scrn->driverPrivate = (void *)((uintptr_t)sna->info | (sna->flags & SNA_IS_SLAVED) | 2); -- 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/e1xw3kw-0007ff...@moszumanska.debian.org
mesa: Changes to 'debian-experimental'
debian/changelog|1 + debian/libgl1-mesa-dri.install.linux.in |2 -- 2 files changed, 1 insertion(+), 2 deletions(-) New commits: commit 7369e18ec2f1a282c9f106a3e27f2425f7077eb0 Author: Maarten Lankhorst Date: Mon Sep 22 13:56:29 2014 +0200 Remove gallium-pipe, no longer built. diff --git a/debian/changelog b/debian/changelog index ca47574..ac5d2ff 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,7 @@ mesa (10.3.0-1) UNRELEASED; urgency=medium * New upstream release. * Remove upstreamed patch. - 01_gallium-util-add-missing-u_debug-include.patch + * Remove gallium-pipe, no longer built. -- Maarten Lankhorst Mon, 22 Sep 2014 11:31:45 +0200 diff --git a/debian/libgl1-mesa-dri.install.linux.in b/debian/libgl1-mesa-dri.install.linux.in deleted file mode 100644 index 211578e..000 --- a/debian/libgl1-mesa-dri.install.linux.in +++ /dev/null @@ -1,2 +0,0 @@ -dri/etc/drirc etc -dri/usr/lib/${DEB_HOST_MULTIARCH}/gallium-pipe/*.so usr/lib/${DEB_HOST_MULTIARCH}/gallium-pipe -- 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/e1xw3yw-0001u1...@moszumanska.debian.org
Bug#762047: xserver-xorg-video-ati: Black screen with mouse cursor on PowerPC
OK, so I need to prevent radeonfb from running? What is the best way to do that if it's compiled into the kernel? Do I need to compile another kernel or is there a way to configure it not to use that driver? Please forgive my ignorance. But I'm having trouble finding answers to these questions. If you could recommend a document I could go to, I'd be glad to read it. If I understand this correctly, then one of the defects in this situation is that the old radeonfb, nouveaufb, etc fb device drivers are still being compiled into the kernel. This shouldn't happen if they're not really supported by the rest of the system. I could file a bug in that regard, if that is the right thing to do. There is a file that attempts to blacklist all the old fb drivers, but since they are not loadable modules, this fails. I have determined that the reason why gdm and gnome will not run is because they require an accelerated driver, which radeonfb does not support. So I either have to use radeonfb with xfce or get the radeon/drm to work so I can run gnome. Thanks for your continuing help. On Sun, 9/21/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: Sunday, September 21, 2014, 8:59 PM On 19.09.2014 23:58, Bill Chatfield wrote: > > 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? It was traditionally done like that on powerpc to provide a nice console experience and suspend/resume support on laptops. > 3. If the kernel is activating radeonfb as we can see in dmesg, why > would it also load the drm/radeon driver? Presumably, the radeon driver is loaded by udev because it declares that it supports your GPU. It could still be used by older upstream versions of xserver-xorg-video-radeon and libgl1-mesa-dri, but the current versions only support KMS anymore. I believe I answered your other questions in my previous two e-mails. -- 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/1411399513.86011.yahoomailba...@web124704.mail.ne1.yahoo.com
Bug#761182: xserver-xorg-video-nouveau: NV94: screen black after resume from S3, floods of kernel errors
On 2014-09-21 19:45 +0200, Zack Weinberg wrote: > Sorry for the delay getting back to you. nouveau.nofbaccel=1 > eliminates the kernel-level errors, but the screen still does not turn > back on. /var/log/messages shows some new errors instead: > > Sep 21 13:37:42 moxana gdm-Xorg-:0[781]: (WW) NOUVEAU(0): > nouveau_dri2_flip_event_handler: Pageflip has impossible msc 817307 < > target_msc 817308 > Sep 21 13:37:42 moxana gdm-Xorg-:0[781]: (WW) NOUVEAU(0): > nouveau_dri2_flip_event_handler: Pageflip has impossible msc 817307 < > target_msc 817308 I don't see those, but then I don't use gdm or a compositing window manager. Does it help to turn off the "PageFlip" option in xorg.conf (see nouveau(4))? > I can also confirm that suspend+resume works fine with the newer > driver and kernel 3.14, so probably this should be reassigned to the > kernel package. There's a newer kernel in experimental, could you please test 3.17-rc5? Thanks, Sven -- 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/871tr38wou@turtle.gmx.de
xterm: Changes to 'refs/tags/xterm-311-1'
Tag 'xterm-311-1' created by Sven Joachim at 2014-09-22 15:56 + Tagging upload of xterm 311-1 to unstable. -BEGIN PGP SIGNATURE- Version: GnuPG v1 iQIcBAABCgAGBQJUIEbFAAoJEDsQbnGNazGsaFcP/icLunvhl1a1tQ4xd6/LcKDC ver7qY1z516c500w6LVB0vnl/8dalYDthBbBHLT2lJgQXUM/aexpSbFC6fdcr4kh wEey4fU3Jwk1GHnQn5fTwEfcqj77Sq6dzmoibbNlH2Xrdsoipkl1y/bLwwGncDel H9V+t116cRP5WTgvdiX9GEgu5/TlyjzeYgBAhGL4hviZeMMIlpaWMBX2BnvhWuX0 IWNPrr0xBx9c2PPG1ioebijK+zsIYpKWS/WdYj84haZNndxfU2tp0OKZWD/hjGpv fv5J2A9rs+pgeDxosVq80fRWTx7DssQl50q9ZxL0CDXI1kbqjcxxRtvpgFgyGGoU A7ptmR1R2JeC/8X+imZHXkDplwt5zS6O7MZg0Ebi9pX1u/BNbU1id8F+Z9nSLbKb 2Dj7VeiD0SHP8XfSCPoD+k3oe5giSOiAHklio3Tx43h6ARpON4VUG70raPIc58vk ZmSoDL8EyEjWkmZAxm+2vCaiDc+i0EPaRlBufB0QI+TaMdtt/CUVzIjKtVUF7x8w vozzJraX+ZXPwlikBXY/alsILIn8cDX6Daf18t+CeAJh9gCDKunYS4yp9kgqtqsq xZJKU8BdqSI2/DGqvkjcko3kG1RM6JeC2BJ6XAR6ilCoTFRCLSJDFDYAvbAwEFdW RxtR73PCNHBRX2jMZqPk =ES5O -END PGP SIGNATURE- Changes since xterm-310-1: Sven Joachim (5): Imported Upstream version 311 Merge branch 'upstream-unstable' into debian-unstable New upstream release Close various bugs which are fixed according to upstream Upload to unstable --- 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(-) --- -- 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/e1xw61b-00051a...@moszumanska.debian.org
xterm: Changes to 'debian-unstable'
debian/changelog |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) New commits: commit 3220d6711aaf3821b8ad85dfa94837eb7a36cf55 Author: Sven Joachim Date: Mon Sep 22 17:56:02 2014 +0200 Upload to unstable diff --git a/debian/changelog b/debian/changelog index e2f8b2c..f3ca8bb 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -xterm (311-1) UNRELEASED; urgency=low +xterm (311-1) unstable; urgency=low * New upstream release. - Mention xclip in manpage as an alternative workaround for copying @@ -18,7 +18,7 @@ xterm (311-1) UNRELEASED; urgency=low 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 + -- Sven Joachim Mon, 22 Sep 2014 17:55:43 +0200 xterm (310-1) unstable; urgency=low -- 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/e1xw61r-0004zy...@moszumanska.debian.org
Processing of xterm_311-1_source.changes
xterm_311-1_source.changes uploaded successfully to ftp-master.debian.org along with the files: xterm_311-1.dsc xterm_311.orig.tar.gz xterm_311-1.diff.gz Greetings, Your Debian queue daemon (running on host coccia.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/e1xw6jz-0007pn...@coccia.debian.org
Processing of xterm_311-1_source.changes
xterm_311-1_source.changes uploaded successfully to localhost along with the files: xterm_311-1.dsc xterm_311.orig.tar.gz xterm_311-1.diff.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/e1xw6ka-0003mi...@franck.debian.org
xterm_311-1_source.changes ACCEPTED into unstable
Accepted: -BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Mon, 22 Sep 2014 17:55:43 +0200 Source: xterm Binary: xterm Architecture: source Version: 311-1 Distribution: unstable Urgency: low Maintainer: Debian X Strike Force Changed-By: Sven Joachim Description: xterm - X terminal emulator Closes: 639094 758633 759734 760207 760208 Changes: xterm (311-1) unstable; 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). Checksums-Sha1: f48db5df628f0bcbb3b3e5f4c15689f2ecbdf74c 2046 xterm_311-1.dsc 0a8e010247fde47baa1828d79ffe08153c908be6 1186153 xterm_311.orig.tar.gz 76b265c1392e320c43bb3b40782fb8b021502371 96143 xterm_311-1.diff.gz Checksums-Sha256: 9127c5ebbaa31235e89d1399d2de51dd60dcbfe039839a487e5fd4ba23a0ff17 2046 xterm_311-1.dsc 3b0a26e1c8a07a3e116a1bfa650da2a732a688e2e029d1ab36436c19cfd0b94b 1186153 xterm_311.orig.tar.gz eb43c90781cb04f40325cd3a178f1037e3b3a1366df8d53650bd51f441177e64 96143 xterm_311-1.diff.gz Files: 628dc7ac9426dc7cd5a694e5fc0c6b71 2046 x11 optional xterm_311-1.dsc bba4f296724aca42adeb61399e7b2a08 1186153 x11 optional xterm_311.orig.tar.gz 6c732a806704fc0d3c2341f629c2d9f1 96143 x11 optional xterm_311-1.diff.gz -BEGIN PGP SIGNATURE- Version: GnuPG v1 iQIcBAEBCgAGBQJUIEb3AAoJEDsQbnGNazGsRt8QAKdukwtmpUZlJFsCrv5LleH4 NMGo9Vs1qob73bPu0Q8UNZy9N+JPDvODfQwVljaROCG+q3EBDKn4vNvWHSg6YcgV RYZc3BlpFdLMr7uHD3B6jHeROeN+zIx0AIhPFb9+esf0go9V1V5TmjC0zeyZsGP/ Re1FtyQQIfimECPIN7QiMRy3oI1fnUqMYeUvFbhPQ5ZMFOFiRxmJ62h2y8k0Cae1 7SDpOTLVu5LDWYz8jbxBtPjZiy2edRcxIYgM7QCy7DBTyOOeWS8IRFabzW2OYCAV 17SU1zP6e3RJj6VIwK3EEhMCQnseBfm0SJsqmfcdNpBoPBfsqkeTQ4J8carRdBMT nh9d++wUchzGrbQJeuIoLU8ZF/Cn3Jnn2LOYUS6WTVsi4IKYvpOHz4OGxVG6+wO2 KOxQZj5oFch1ML44qN3DD8LiSwQQLriQFdRUb0oIU23oEASo3iSTB9lZnZITt/gX RWlqyC2nYTkM277+uiDQPRcBpVK0wSOUQO/QKrseA0pCyE7hjCnOT04/n7nS9frN PXGVI8FBY4TO4JDLeBYWL6bZAt+uWRlPGJ+CavapPoNVMdS1srallHtZisKrKYzH vK5Na6iOTjWpyu8CXvOP2NzHcb9Wvw6ZomuDhBt70ZJRDBrmgs1HzSbso0eCNZvA FLFU43CLg48tumoQShNU =LXew -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/e1xw6zk-0006nl...@franck.debian.org
Bug#759734: marked as done (xterm: the cursor hides the underneath character when in reverse video with xterm -bg black -fg white)
Your message dated Mon, 22 Sep 2014 16:34:56 + with message-id and subject line Bug#759734: fixed in xterm 311-1 has caused the Debian Bug report #759734, regarding xterm: the cursor hides the underneath character when in reverse video with xterm -bg black -fg white 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.) -- 759734: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=759734 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: xterm Version: 308-1 Severity: normal The cursor hides the underneath character when it is in reverse video with "xterm -bg black -fg white". To reproduce this, select the beginning of a command line and move the cursor backward to the selected part. This also occurs with links, links2 and elinks for the current link (because reverse video is also used). Changing the cursor color with -xrm '*cursorColor: ...' by using a color that is neither too dark nor too light may be a workaround, but: * this limits the possible colors of the cursor; * this probably doesn't solve the problem if an app displays colored text with the cursor above; * the default color should work; * this problem doesn't occur with rxvt or gnome-terminal, so there's no reason why xterm should be the only one with cursor problems; * the problem doesn't even occur in xterm with opposite settings (the default -bg white -fg black). Actually it seems that setting the cursor to black with xterm -bg black -fg white -xrm '*cursorColor: black' solves this problem, while the cursor remains white in the normal case. This may be OK but completely unintuitive! And not documented. -- System Information: Debian Release: jessie/sid APT prefers unstable APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'), (1, 'experimental') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 3.11-2-amd64 (SMP w/2 CPU cores) Locale: LANG=POSIX, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages xterm depends on: ii libc6 2.19-10 ii libfontconfig1 2.11.0-6.1 ii libice6 2:1.0.9-1 ii libtinfo5 5.9+20140712-2 ii libutempter01.1.5-4 ii libx11-62:1.6.2-3 ii libxaw7 2:1.0.12-2 ii libxft2 2.3.2-1 ii libxmu6 2:1.1.2-1 ii libxpm4 1:3.5.11-1 ii libxt6 1:1.1.4-1 ii xbitmaps1.1.1-2 Versions of packages xterm recommends: ii x11-utils 7.7+2 Versions of packages xterm suggests: pn xfonts-cyrillic -- debconf-show failed --- End Message --- --- Begin Message --- Source: xterm Source-Version: 311-1 We believe that the bug you reported is fixed in the latest version of xterm, 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 759...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Sven Joachim (supplier of updated xterm 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 Date: Mon, 22 Sep 2014 17:55:43 +0200 Source: xterm Binary: xterm Architecture: source Version: 311-1 Distribution: unstable Urgency: low Maintainer: Debian X Strike Force Changed-By: Sven Joachim Description: xterm - X terminal emulator Closes: 639094 758633 759734 760207 760208 Changes: xterm (311-1) unstable; 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
Bug#639094: marked as done (xterm: Middle mouse clip being remembers by Xterm)
Your message dated Mon, 22 Sep 2014 16:34:56 + with message-id and subject line Bug#639094: fixed in xterm 311-1 has caused the Debian Bug report #639094, regarding xterm: Middle mouse clip being remembers by Xterm 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.) -- 639094: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=639094 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: xterm Version: 261-1 Severity: wishlist Hi, I would like to have easier coding when coping some lines into xterm from gedit. (xclip -o gives you its content, mouse middle click paste it) Then I modify this line of code to my purpose, and press ENTER You might want to modify it and improve your line command, so ok, press UP ARROW KEY. Not working? - really Please add this to another wishlist when you may find little time to add this gorgeous wished feature for coders. Sincerely, Y. -- System Information: Debian Release: 6.0.2 APT prefers stable-updates APT policy: (500, 'stable-updates'), (500, 'stable') Architecture: i386 (i686) Kernel: Linux 2.6.32-5-686-bigmem (SMP w/2 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages xterm depends on: ii libc6 2.11.2-10 Embedded GNU C Library: Shared lib ii libfontconfig12.8.0-2.1 generic font configuration library ii libice6 2:1.0.6-2 X11 Inter-Client Exchange library ii libncurses5 5.7+20100313-5 shared libraries for terminal hand ii libutempter0 1.1.5-3A privileged helper for utmp/wtmp ii libx11-6 2:1.3.3-4 X11 client-side library ii libxaw7 2:1.0.7-1 X11 Athena Widget library ii libxft2 2.1.14-2 FreeType-based font drawing librar ii libxmu6 2:1.0.5-2 X11 miscellaneous utility library ii libxt61:1.0.7-1 X11 toolkit intrinsics library ii xbitmaps 1.1.0-1Base X bitmaps Versions of packages xterm recommends: ii x11-utils 7.5+4 X11 utilities Versions of packages xterm suggests: pn xfonts-cyrillic(no description available) -- no debconf information --- End Message --- --- Begin Message --- Source: xterm Source-Version: 311-1 We believe that the bug you reported is fixed in the latest version of xterm, 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 639...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Sven Joachim (supplier of updated xterm 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 Date: Mon, 22 Sep 2014 17:55:43 +0200 Source: xterm Binary: xterm Architecture: source Version: 311-1 Distribution: unstable Urgency: low Maintainer: Debian X Strike Force Changed-By: Sven Joachim Description: xterm - X terminal emulator Closes: 639094 758633 759734 760207 760208 Changes: xterm (311-1) unstable; 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). Checksums-Sha1: f48db5df628f0bcbb3b3e5f4c15689f2ecbdf74c 2046 xterm_311-1.dsc 0a8e010247fde47baa1828d7
Bug#758633: marked as done (xterm: exec-formatted, exec-selectable, insert-formatted, insert-selectable do not work correctly)
Your message dated Mon, 22 Sep 2014 16:34:56 + with message-id and subject line Bug#758633: fixed in xterm 311-1 has caused the Debian Bug report #758633, regarding xterm: exec-formatted, exec-selectable, insert-formatted, insert-selectable do not work correctly 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.) -- 758633: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=758633 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: xterm Version: 308-1 Severity: normal The exec-formatted, exec-selectable, insert-formatted, insert-selectable features do not work correctly. Well, with: Meta: exec-formatted("browser %s", PRIMARY) works correctly when the PRIMARY selection belongs to the current xterm, but if it belongs to another process, the selection is pasted in the current xterm and %s contains the empty string. Moreover, insert-formatted behaves strangely (it could be related to the above problem), and the *-selectable ones do not seem to have any effect, e.g. with Meta: exec-selectable("browser %s", word) or Meta: exec-selectable("browser %s", regex [^ ]*) -- System Information: Debian Release: jessie/sid APT prefers unstable APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'), (1, 'experimental') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 3.11-2-amd64 (SMP w/2 CPU cores) Locale: LANG=POSIX, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages xterm depends on: ii libc6 2.19-9 ii libfontconfig1 2.11.0-6 ii libice6 2:1.0.9-1 ii libtinfo5 5.9+20140712-2 ii libutempter01.1.5-4 ii libx11-62:1.6.2-3 ii libxaw7 2:1.0.12-2 ii libxft2 2.3.2-1 ii libxmu6 2:1.1.2-1 ii libxpm4 1:3.5.11-1 ii libxt6 1:1.1.4-1 ii xbitmaps1.1.1-2 Versions of packages xterm recommends: ii x11-utils 7.7+2 Versions of packages xterm suggests: pn xfonts-cyrillic -- debconf-show failed --- End Message --- --- Begin Message --- Source: xterm Source-Version: 311-1 We believe that the bug you reported is fixed in the latest version of xterm, 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 758...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Sven Joachim (supplier of updated xterm 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 Date: Mon, 22 Sep 2014 17:55:43 +0200 Source: xterm Binary: xterm Architecture: source Version: 311-1 Distribution: unstable Urgency: low Maintainer: Debian X Strike Force Changed-By: Sven Joachim Description: xterm - X terminal emulator Closes: 639094 758633 759734 760207 760208 Changes: xterm (311-1) unstable; 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). Checksums-Sha1: f48db5df628f0bcbb3b3e5f4c15689f2ecbdf74c 2046 xterm_311-1.dsc 0a8e010247fde47baa1828d79ffe08153c908be6 1186153 xterm_311.orig.tar.gz 76b265c1392e320c43bb3b40782fb8b021502371 96143 xterm_311-1.diff.gz Checksums-Sha256: 9127c5ebbaa31235e89d1399d2de51dd60dcbfe039839a487e5fd4ba23a0ff17 2046 xterm_311-1.dsc 3b0a26e1c8a07a3e116a1bfa650da2a732a688e2e029d1ab36436c19cfd0b94b 1186153 xterm_311.or
Bug#760208: marked as done (xterm: the set-vt-font(e) action doesn't work / menu item grayed out)
Your message dated Mon, 22 Sep 2014 16:34:56 + with message-id and subject line Bug#760208: fixed in xterm 311-1 has caused the Debian Bug report #760208, regarding xterm: the set-vt-font(e) action doesn't work / menu item grayed out 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.) -- 760208: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=760208 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: xterm Version: 310-1 Severity: minor If I run xterm -xrm '*allowFontOps: true' and change the font with the Set Font escape sequence, such as printf "\e]50;#+1\a" (after changing the font via the menu), the set-vt-font(e) action doesn't work and the "Escape Sequence" menu item remains grayed out. -- System Information: Debian Release: jessie/sid APT prefers unstable APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'), (1, 'experimental') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 3.11-2-amd64 (SMP w/2 CPU cores) Locale: LANG=POSIX, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages xterm depends on: ii libc6 2.19-10 ii libfontconfig1 2.11.0-6.1 ii libice6 2:1.0.9-1 ii libtinfo5 5.9+20140712-2 ii libutempter01.1.5-4 ii libx11-62:1.6.2-3 ii libxaw7 2:1.0.12-2 ii libxft2 2.3.2-1 ii libxmu6 2:1.1.2-1 ii libxpm4 1:3.5.11-1 ii libxt6 1:1.1.4-1 ii xbitmaps1.1.1-2 Versions of packages xterm recommends: ii x11-utils 7.7+2 Versions of packages xterm suggests: pn xfonts-cyrillic -- debconf-show failed --- End Message --- --- Begin Message --- Source: xterm Source-Version: 311-1 We believe that the bug you reported is fixed in the latest version of xterm, 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. Sven Joachim (supplier of updated xterm 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 Date: Mon, 22 Sep 2014 17:55:43 +0200 Source: xterm Binary: xterm Architecture: source Version: 311-1 Distribution: unstable Urgency: low Maintainer: Debian X Strike Force Changed-By: Sven Joachim Description: xterm - X terminal emulator Closes: 639094 758633 759734 760207 760208 Changes: xterm (311-1) unstable; 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). Checksums-Sha1: f48db5df628f0bcbb3b3e5f4c15689f2ecbdf74c 2046 xterm_311-1.dsc 0a8e010247fde47baa1828d79ffe08153c908be6 1186153 xterm_311.orig.tar.gz 76b265c1392e320c43bb3b40782fb8b021502371 96143 xterm_311-1.diff.gz Checksums-Sha256: 9127c5ebbaa31235e89d1399d2de51dd60dcbfe039839a487e5fd4ba23a0ff17 2046 xterm_311-1.dsc 3b0a26e1c8a07a3e116a1bfa650da2a732a688e2e029d1ab36436c19cfd0b94b 1186153 xterm_311.orig.tar.gz eb43c90781cb04f40325cd3a178f1037e3b3a1366df8d53650bd51f441177e64 96143 xterm_311-1.diff.gz Files: 628dc7ac9426dc7cd5a694e5fc0c6b71 2046 x11 optional xterm_311-1.dsc bba4f296724aca42adeb61399e7b2a08 1186153 x11 optional xterm_311.orig.tar.gz 6c732a806704fc0d3c2341f629c2d9f1 96143 x11 optional xterm_311-1.diff.gz -BEGIN PGP SIGNATURE- Version: GnuPG
Bug#760207: marked as done (xterm: segmentation fault when selecting a non-existing font)
Your message dated Mon, 22 Sep 2014 16:34:56 + with message-id and subject line Bug#760207: fixed in xterm 311-1 has caused the Debian Bug report #760207, regarding xterm: segmentation fault when selecting a non-existing font 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.) -- 760207: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=760207 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: xterm Version: 310-1 Severity: important To reproduce the crash: 1. Run: xterm -xrm '*allowFontOps: true' 2. Select the word "fixed" (PRIMARY selection). 3. Ctrl-right click, and choose "Selection". 4. Select the word "foo" (PRIMARY selection). 5. Ctrl-right click, and choose "Selection". Then thousands of /usr/bin/xterm: cannot load font 'foo' error messages are sent to stderr and xterm terminates with a segmentation fault. -- System Information: Debian Release: jessie/sid APT prefers unstable APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'), (1, 'experimental') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 3.11-2-amd64 (SMP w/2 CPU cores) Locale: LANG=POSIX, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages xterm depends on: ii libc6 2.19-10 ii libfontconfig1 2.11.0-6.1 ii libice6 2:1.0.9-1 ii libtinfo5 5.9+20140712-2 ii libutempter01.1.5-4 ii libx11-62:1.6.2-3 ii libxaw7 2:1.0.12-2 ii libxft2 2.3.2-1 ii libxmu6 2:1.1.2-1 ii libxpm4 1:3.5.11-1 ii libxt6 1:1.1.4-1 ii xbitmaps1.1.1-2 Versions of packages xterm recommends: ii x11-utils 7.7+2 Versions of packages xterm suggests: pn xfonts-cyrillic -- debconf-show failed --- End Message --- --- Begin Message --- Source: xterm Source-Version: 311-1 We believe that the bug you reported is fixed in the latest version of xterm, 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. Sven Joachim (supplier of updated xterm 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 Date: Mon, 22 Sep 2014 17:55:43 +0200 Source: xterm Binary: xterm Architecture: source Version: 311-1 Distribution: unstable Urgency: low Maintainer: Debian X Strike Force Changed-By: Sven Joachim Description: xterm - X terminal emulator Closes: 639094 758633 759734 760207 760208 Changes: xterm (311-1) unstable; 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). Checksums-Sha1: f48db5df628f0bcbb3b3e5f4c15689f2ecbdf74c 2046 xterm_311-1.dsc 0a8e010247fde47baa1828d79ffe08153c908be6 1186153 xterm_311.orig.tar.gz 76b265c1392e320c43bb3b40782fb8b021502371 96143 xterm_311-1.diff.gz Checksums-Sha256: 9127c5ebbaa31235e89d1399d2de51dd60dcbfe039839a487e5fd4ba23a0ff17 2046 xterm_311-1.dsc 3b0a26e1c8a07a3e116a1bfa650da2a732a688e2e029d1ab36436c19cfd0b94b 1186153 xterm_311.orig.tar.gz eb43c90781cb04f40325cd3a178f1037e3b3a1366df8d53650bd51f441177e64 96143 xterm_311-1.diff.gz Files: 628dc7ac9426dc7cd5a694e5fc0c6b71 2046 x11 optional xterm_311-1.dsc bba4f296724aca42adeb61399e7b2a08 1186153 x11 optional xterm_311.orig.tar.gz
Bug#762047: xserver-xorg-video-ati: Black screen with mouse cursor on PowerPC
On Mon, Sep 22, 2014 at 08:25:13 -0700, Bill Chatfield wrote: > OK, so I need to prevent radeonfb from running? What is the best way to do > that if it's compiled into the kernel? Do I need to compile another kernel or > is there a way to configure it not to use that driver? Please forgive my > ignorance. But I'm having trouble finding answers to these questions. If you > could recommend a document I could go to, I'd be glad to read it. > Please read Michel's previous mails, he answered that already. Cheers, Julien signature.asc Description: Digital signature
Bug#762047: xserver-xorg-video-ati: Black screen with mouse cursor on PowerPC
My apologies, some of the messages had gone into my Spam folder, so I didn't see them. On Mon, 9/22/14, Julien Cristau wrote: Subject: Re: Bug#762047: xserver-xorg-video-ati: Black screen with mouse cursor on PowerPC To: "Bill Chatfield" , 762...@bugs.debian.org Cc: "Michel Dänzer" Date: Monday, September 22, 2014, 2:37 PM On Mon, Sep 22, 2014 at 08:25:13 -0700, Bill Chatfield wrote: > OK, so I need to prevent radeonfb from running? What is the best way to do that if it's compiled into the kernel? Do I need to compile another kernel or is there a way to configure it not to use that driver? Please forgive my ignorance. But I'm having trouble finding answers to these questions. If you could recommend a document I could go to, I'd be glad to read it. > Please read Michel's previous mails, he answered that already. Cheers, Julien -- 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/1411414599.18127.yahoomailba...@web124706.mail.ne1.yahoo.com
xorg-server: Changes to 'debian-unstable'
debian/changelog |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) New commits: commit e94e1fdde9c073b8a76ec53e121d6269168bc67c Author: Julien Cristau Date: Mon Sep 22 22:12:34 2014 +0200 Upload to unstable diff --git a/debian/changelog b/debian/changelog index 96b7bb3..7200bd8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,10 +1,10 @@ -xorg-server (2:1.16.1-1) UNRELEASED; urgency=medium +xorg-server (2:1.16.1-1) unstable; urgency=medium * Add my key to debian/upstream/signing-key.asc. * New upstream release. * Update help text since -iglx is now the default (cherry-pick from master) - -- Julien Cristau Sun, 21 Sep 2014 11:29:00 +0200 + -- Julien Cristau Mon, 22 Sep 2014 22:12:20 +0200 xorg-server (2:1.16.0.901-1) unstable; urgency=medium -- 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/e1xwaf5-00014x...@moszumanska.debian.org
xorg-server: Changes to 'refs/tags/xorg-server-2_1.16.1-1'
Tag 'xorg-server-2_1.16.1-1' created by Julien Cristau at 2014-09-22 20:29 + Tagging upload of xorg-server 2:1.16.1-1 to unstable. -BEGIN PGP SIGNATURE- Version: GnuPG v1 iQIcBAABCAAGBQJUIIayAAoJEDEBgAUJBeQMV6oQAIrclkqWD6ecoj64zv/K589E Hy6Nd2Zzi+RNAOQRAj+3Wgy0M19ukaxZz3zyfvDC0L7TkAUFN3usgTC1gsK4Sd2G i+nL0K7MABFqafSxB26KcOeLPNfSZanir3+9QJXmePeNMrPet5zypBYOzKy/kmeB xJVHHmugXDcFuxLNLBxu3sdp+9UplQqpPh0eREjfWG+CtXxx0XQPtPXg1S9e1Qf5 e3FG8O0gIvPqdYPBY2y9wShVKfZjntbFVn89oVihptcZSQ9TabGjESlNrynsC1Xs 63ZCoETbpIz+FO+KZwyxOY2pwWSvYP6lCWh8QsXKOPxCk1l76NGguzgjkl9ilobG K9ee0zPj6IofwacJSKWe9UcfxTMh/IA5mUI4GRa0DQDU/1114I3rYeLrhzG5qD1v ar1by9hjnJMqGVm35OTeEQl4VnleGygKSMOz0Z5Kd4ReDYCXissH1zOvX0kZFGPj fuqGZ36q53clMe8JOuVWKoAhbg2LRJn/eGIYVsc87hsf5u+Ab0And1vzSqwVI7Fx ciegYHGpA7bfE5XN8GvfzJJnnW7qSmdIXoRHJwGVeTfa1YfsDWUOVfw9DDvhdH8v dHcBiz/j5xTmO6t3miFxS0tL/P8StLur0oYxlNEuuZcP6uc9u63kFAcTm0mAVJTL 6xjt0anklNyBYkhwOXY/ =DP0x -END PGP SIGNATURE- Changes since xorg-server-2_1.16.0.901-1: Jon TURNEY (1): Update help text since -iglx is now the default Julien Cristau (7): xwayland: always include drm.xml in tarballs Bump to 1.16.1 Add my key to debian/upstream/signing-key.asc. Merge tag 'xorg-server-1.16.1' into debian-unstable Bump changelogs Changelog addition Upload to unstable --- ChangeLog | 24 +++ configure.ac|4 +- debian/changelog|8 + debian/upstream/signing-key.asc | 64 hw/xwayland/Makefile.am |4 +- os/utils.c |4 +- 6 files changed, 102 insertions(+), 6 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/e1xwaf6-00014y...@moszumanska.debian.org
Processing of xorg-server_1.16.1-1_all.changes
xorg-server_1.16.1-1_all.changes uploaded successfully to localhost along with the files: xserver-common_1.16.1-1_all.deb xorg-server-source_1.16.1-1_all.deb xorg-server_1.16.1-1.dsc xorg-server_1.16.1.orig.tar.gz xorg-server_1.16.1-1.diff.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/e1xwalg-0006qs...@franck.debian.org
xorg-server_1.16.1-1_all.changes ACCEPTED into unstable
Mapping sid to unstable. Accepted: -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Mon, 22 Sep 2014 22:12:20 +0200 Source: xorg-server Binary: xserver-xorg-core xserver-xorg-core-udeb xserver-xorg-dev xdmx xdmx-tools xnest xvfb xserver-xephyr xserver-xorg-core-dbg xserver-common xorg-server-source xwayland Architecture: source all Version: 2:1.16.1-1 Distribution: sid Urgency: medium Maintainer: Debian X Strike Force Changed-By: Julien Cristau Description: xdmx - distributed multihead X server xdmx-tools - Distributed Multihead X tools xnest - Nested X server xorg-server-source - Xorg X server - source files xserver-common - common files used by various X servers xserver-xephyr - nested X server xserver-xorg-core - Xorg X server - core server xserver-xorg-core-dbg - Xorg - the X.Org X server (debugging symbols) xserver-xorg-core-udeb - Xorg X server - core server (udeb) xserver-xorg-dev - Xorg X server - development files xvfb - Virtual Framebuffer 'fake' X server xwayland - Xwayland X server Changes: xorg-server (2:1.16.1-1) unstable; urgency=medium . * Add my key to debian/upstream/signing-key.asc. * New upstream release. * Update help text since -iglx is now the default (cherry-pick from master) Checksums-Sha1: 837c3cf82f19ac63e8612fa94f0b13262666dae7 4670 xorg-server_1.16.1-1.dsc 1cc537bc0b1391853e8847efd3420dc6e843e3e7 8095544 xorg-server_1.16.1.orig.tar.gz bfe33d532ce870465022ab9fc8cad198f9a5 105698 xorg-server_1.16.1-1.diff.gz 44a15c7cfe6780a97d3b79ce1c2435f4dba7daa3 1744474 xserver-common_1.16.1-1_all.deb 7abdf3b65c05f73f48e6364abcf8dbddb232c59a 6434684 xorg-server-source_1.16.1-1_all.deb Checksums-Sha256: 0b17d72df71752cc5b0237770d57e3cb36743164ef292878a06aa749fb74ad72 4670 xorg-server_1.16.1-1.dsc d8fadca5c7d4a85be2d1e20e41d6fd1d80c68bb7c34791d5c750b5599787ba9f 8095544 xorg-server_1.16.1.orig.tar.gz c46a4f31b6958a8639996cc0ee572af3455bb4c09ab4fb9f8e640ec10dd65a83 105698 xorg-server_1.16.1-1.diff.gz dc13c2cca2ca4c36d08d709d42a0cde9ef66b2154b15c7efc52dae6cc7b5720d 1744474 xserver-common_1.16.1-1_all.deb 73804f50b394574f46d14073c9e163c2b4141b26d259277be9237a432adeb72d 6434684 xorg-server-source_1.16.1-1_all.deb Files: 8685e919a3e4e7fee50b4f4262a1f7d3 1744474 x11 optional xserver-common_1.16.1-1_all.deb d5cb0ce38011a91cef7a2678e745d7c9 6434684 x11 optional xorg-server-source_1.16.1-1_all.deb 8a0759ee9a46e0439be0bfe38b7075ab 4670 x11 optional xorg-server_1.16.1-1.dsc 570edf86a9916fbd675deb110819a8d4 8095544 x11 optional xorg-server_1.16.1.orig.tar.gz 0f5536844edcbfcc940707582b4acba6 105698 x11 optional xorg-server_1.16.1-1.diff.gz -BEGIN PGP SIGNATURE- Version: GnuPG v1 iQIcBAEBCAAGBQJUIIauAAoJEDEBgAUJBeQMPN4QAN/nAcnWFAv6ZGB7aEyZUMTL XDRfzYtpJ72o5ShjY9DOqmXvHkBcACW769wEVWEYAkEFzvy6MrjshSq3TJ4ELTif CClwEJdNyULPyEZSV4NtqUU82Eb00GIYQcq8T69czPtJUUOPm5aPOpum4wTzx2B0 7NpBQcRTYd4P+w9hEyDnukImsihxHVh4CCO5NmdIa/vwf6uzP6W0bwmtEI3QfId8 kdi7Y0qXsXtIeUiigsXH5aTIjxmuRETX0JmUYJaAbc6eQYPTugTRjfws7GLAnpGY U8KOyu8ro8yogVjpg5TKL5rW58ra0i1zMvviYxLwe0wS1ZnDmxKR5B3EAsDWpCep pL3yhG5JO6PPOjRqoolm6weqNPddnzdLUfswwkGynZCjx2WYPTMvJq/vCc5tqtHv iiwLUnB7scCe0A20CGTA5nBLDijBM3X6ZoJfp4nsfI/pYGl+vBhFlikekzm/+jQd TGysRQqYbFX0V1pQG/RX2R4H2iF9UnL1T88iULatQMa17CPBxa+0nq9PkrY3GZqQ +58AtWK42FdtjFaEwNPVDWEbwHBzXHc0YkR309vT1lo2AQ9Siv8sJRoriAr2BlqD vPzgzS/5obuti/E8RyEluWhTW7b9WaZe7PaUYKNH6twYuRztGIskHB0YYVfwMInF p4awEJiAxYTyIiUXF7GD =e5tU -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/e1xwbbm-0008bj...@franck.debian.org
Bug#759518: x11-common: Print the real name of the executable instead of x-session-manager
affects 759518 + apport thanks Hi, Apparently this could actually affects apport (/usr/bin/apport-bug) that actually try to determine the type of session the user is running by grepping the process list. Cheers, Laurent Bigonville -- 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/20140923002154.01a72...@fornost.bigon.be
Processed: Re: x11-common: Print the real name of the executable instead of x-session-manager
Processing commands for cont...@bugs.debian.org: > affects 759518 + apport Bug #759518 [x11-common] x11-common: Print the real name of the executable instead of x-session-manager Added indication that 759518 affects apport > thanks Stopping processing here. Please contact me if you need assistance. -- 759518: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=759518 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.141142452411057.transcr...@bugs.debian.org
Bug#725409: marked as done (xserver-xorg-video-radeon: Non-displayable screen-modes during system startup)
Your message dated Tue, 23 Sep 2014 08:25:03 +0200 with message-id <20140923082503.433c6653@s5.lokal> and subject line issue resolved has caused the Debian Bug report #725409, regarding xserver-xorg-video-radeon: Non-displayable screen-modes during system startup 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.) -- 725409: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725409 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Package: xserver-xorg-video-radeon Version: 1:6.14.4-8 Severity: minor Dear Maintainer, *** Please consider answering these questions, where appropriate *** * What led up to the situation? * What exactly did you do (or not do) that was effective (or ineffective)? * What was the outcome of this action? * What outcome did you expect instead? *** End of the template - remove these lines *** At the moment I use the onboard graphics-solution ATI RS780 [Radeon HD 3200], as hardinfo tells me. The problem was mentioned already there: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=711941 Now a new kernel-version was tried out, numbered 3.2.51, where the proprietary AMD-ATI-blob was not workable anymore, so I report this now separately in defense, so to speak. With some live-CD systems the effect is worse and does not only appear during boot-time and X-initialization, but there is no workable display at all. I tried the latest 3.10-kernel version from backports, which pulled in dracut and other stuff and was not workable at all. Now I probably really need to buy that graphics-card, I have on my wishlist, because a fix is not going arrive here soon. I tried to create an xorg.conf file and tried some things there, see below, but without any effect. - From my experience I can tell, that when things are broken in X, one can spend an arbitrary amount of time trying to reconfigure the X-server, but no success at all emerges from that. - -- Package-specific info: X server symlink status: - lrwxrwxrwx 1 root root 13 Jul 9 08:58 /etc/X11/X -> /usr/bin/Xorg - -rwxr-xr-x 1 root root 2044664 Apr 17 12:40 /usr/bin/Xorg VGA-compatible devices on PCI bus: - -- 01:05.0 VGA compatible controller [0300]: Advanced Micro Devices [AMD] nee ATI RS780 [Radeon HD 3200] [1002:9610] Xorg X server configuration file status: - - -rw-r--r-- 1 root root 6245 Oct 5 13:00 /etc/X11/xorg.conf Contents of /etc/X11/xorg.conf: - --- Section "ServerLayout" Identifier "X.org Configured" Screen 0 "Screen0" 0 0 # Screen 1 "Screen1" RightOf "Screen0" # Screen 2 "Screen2" RightOf "Screen1" InputDevice"Mouse0" "CorePointer" InputDevice"Keyboard0" "CoreKeyboard" EndSection Section "Files" ModulePath "/usr/lib/xorg/modules" FontPath "/usr/share/fonts/X11/misc" FontPath "/usr/share/fonts/X11/cyrillic" FontPath "/usr/share/fonts/X11/100dpi/:unscaled" FontPath "/usr/share/fonts/X11/75dpi/:unscaled" FontPath "/usr/share/fonts/X11/Type1" FontPath "/usr/share/fonts/X11/100dpi" FontPath "/usr/share/fonts/X11/75dpi" FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType" FontPath "built-ins" EndSection Section "Module" Load "glx" Load "extmod" Load "record" Load "dri" Load "dbe" Load "dri2" EndSection Section "InputDevice" Identifier "Keyboard0" Driver "kbd" EndSection Section "InputDevice" Identifier "Mouse0" Driver "mouse" Option "Protocol" "auto" Option "Device" "/dev/input/mice" Option "ZAxisMapping" "4 5 6 7" EndSection Section "Monitor" Identifier "Monitor0" VendorName "Monitor Vendor" ModelName"Monitor Model" EndSection Section "Device" ### Available Driver options are:- ### Values: : integer, : float, : "True"/"False", ### : "String", : " Hz/kHz/MHz", ### : "%" ### [arg]: arg optional #Option "NoAccel" # [] #Option "SWcursor" # [] #Option "Dac6Bit" # [] #Option "Dac8Bit" # [] #Option "BusType" # [] #Option "CPPIOMode" # [] #Option