Re: An important issue was abandoned (package libx11-data)
On Fri, Jan 6, 2012 at 14:23:10 +0400, alexander barakin wrote: > On Fri, Jan 06, 2012 at 02:12:15AM +0100, Cyril Brulebois wrote: > > alexander barakin (06/01/2012): > > > $ sudo dpkg-reconfigure locales > > > Generating locales (this might take a while)... > > > en_US.UTF-8... done > > > ru_UA.UTF-8... done > > > Generation complete. > > > $ grep -Ev '^(#|$)' /etc/locale.gen > > > en_US.UTF-8 UTF-8 > > > ru_UA.UTF-8 UTF-8 > > > $ locale -a | grep utf > > > en_US.utf8 > > > ru_UA.utf8 > > > > That doesn't make it a valid locale. > > ok > > so in order to solve #608045 and #607138 we need one of two things: > 1. fix package "libc-bin" - true way in your opinion (please reopen > #608045 and assign both #608045 and #607138 to package "libc-bin") there's nothing to fix in libc afaict. > 2. add alias for ru_UA.utf8 in package "libx11-data" - yet another > workaround (see output of "grep utf8 > /usr/share/X11/locale/locale.alias") > and this shouldn't be necessary, just use the proper locale (ru_UA.UTF-8). Why do you think more is needed? Cheers, Julien -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20120108120645.gi9...@radis.cristau.org
Processed: reassign 654973 to xserver-xorg-video-radeon
Processing commands for cont...@bugs.debian.org: > reassign 654973 xserver-xorg-video-radeon 1:6.13.1-2+squeeze1 Bug #654973 [xorg] xorg: screen lock on thinkpad t30 when laptop lid closed Bug reassigned from package 'xorg' to 'xserver-xorg-video-radeon'. Bug No longer marked as found in versions xorg/1:7.5+8+squeeze1. Bug #654973 [xserver-xorg-video-radeon] xorg: screen lock on thinkpad t30 when laptop lid closed Bug Marked as found in versions xserver-xorg-video-ati/1:6.13.1-2+squeeze1. > thanks Stopping processing here. Please contact me if you need assistance. -- 654973: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=654973 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: http://lists.debian.org/handler.s.c.13260246567505.transcr...@bugs.debian.org
xterm: Changes to 'debian-unstable'
INSTALL |7 Imakefile|7 MANIFEST |2 Tekproc.c|8 VTPrsTbl.c | 22 VTparse.def | 10 VTparse.h| 10 aclocal.m4 | 162 +- button.c | 832 ++ charproc.c | 497 -- configure| 3631 +++ configure.in | 26 ctlseqs.ms | 89 + ctlseqs.txt | 99 - debian/changelog | 21 fontutils.c | 20 input.c | 23 main.c | 467 ++ main.h |8 menu.c |4 misc.c | 381 +++- os2main.c| 43 package/debian/changelog |6 package/xterm.spec |4 ptyx.h | 62 screen.c |4 trace.c |4 util.c | 81 - version.h|4 vttests/16colors.sh |6 vttests/8colors.sh |6 vttests/acolors.sh |6 vttests/doublechars.sh |6 vttests/dynamic.sh |6 vttests/dynamic2.sh |6 vttests/fonts.sh |6 vttests/resize.sh|6 vttests/title.sh |6 xcharmouse.h |7 xterm.h | 25 xterm.log.html | 107 + xterm.man| 457 +++-- xterm_io.h |4 xtermcfg.hin |9 44 files changed, 4734 insertions(+), 2463 deletions(-) New commits: commit 9ac25b837c3491b1bafa289273c35e68670e2652 Author: Julien Cristau Date: Sun Jan 8 13:42:11 2012 +0100 Changelog entry diff --git a/debian/changelog b/debian/changelog index ef64297..9474c29 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,24 @@ +xterm (277-1) UNRELEASED; urgency=low + + * New upstream release +- move call to grantpt before asking utempter to add a record, to work + with kFreeBSD which does not update the terminal's ownership until this + point (closes: #652907) +- document limitation of XIM interface in manpage (see #230787) +- add four new actions for making the selection or data directly copied + from the screen: exec-formatted, exec-selectable, insert-formatted, + insert-selectable (closes: #637001) +- add eightBitMeta resource to control the features which modify or + interpret the eighth bit of a key when the meta modifier key is pressed + (prompted by #326200) +- improve discussion of eightBitInput in the manpage (prompted by #326200) +- add a workaround for XAllocColor(), which does not actually allocate "a + read-only colormap entry corresponding to the closest RGB value + supported by the hardware", but rather a rough approximation (closes: + #650291) + + -- Julien Cristau Sun, 08 Jan 2012 13:33:32 +0100 + xterm (276-2) unstable; urgency=low * Team upload. commit 4e01e5971e45b9d39ac1531f9b84f5058e362400 Author: Julien Cristau Date: Sun Jan 8 13:21:43 2012 +0100 Imported Upstream version 277 diff --git a/INSTALL b/INSTALL index c8f28eb..0d0a4de 100644 --- a/INSTALL +++ b/INSTALL @@ -1,4 +1,4 @@ --- $XTermId: INSTALL,v 1.126 2011/08/30 09:51:01 tom Exp $ +-- $XTermId: INSTALL,v 1.127 2011/12/22 01:59:16 tom Exp $ --- -- Copyright 1997-2010,2011 by Thomas E. Dickey -- @@ -281,6 +281,11 @@ The options (in alphabetic order): Do not compile-in code that suppresses redundant updates to the titlebar when the text has not changed. + --disable-selection-ops disable selection operations + + Do not compile-in code to support the actions which allow users + to bind keys that use the selection or extract data from the screen. + --disable-session-mgt enable support for session management Do not compile-in code which adds simple session management hooks diff --git a/Imakefile b/Imakefile index f65c300..fcfaced 100644 --- a/Imakefile +++ b/Imakefile @@ -1,4 +1,4 @@ -XCOMM $XTermId: Imakefile,v 1.104 2011/07/02 00:48:49 tom Exp $ +XCOMM $XTermId: Imakefile,v 1.105 2011/11/29 10:19:20 Thorsten.Glaser Exp $ XCOMM XCOMM Attention xterm porters XCOMM @@ -253,6 +253,11 @@ SetUIDProgramTarget(xterm,$(OBJS1),$(DEPLIBS1),$(XRFLIBS) XkbClientLibs XawClien NormalProgramTarget(xterm,$(OBJS1),$(DEPLIBS1),$(XRFLIBS) XkbClientLibs XawClientLibs,$(TERMCAPLIB) $(UTMPLIB) $(PTYLIB)) #endif +#if defined(OpenBSDArchitecture) || defined(MirBSDArchitecture) +/* On OpenBSD xterm is now setgid utmp */ +INSTUIDFLAGS= -m 2555 -g utmp +#endif + #if InstallXtermSetUID && defined(SunArchitecture) && HasSharedLibraries && (OSMajorVersion < 5) #if AlternateUsrLibDir #if ((OSMajorVersion == 4) && (OSMinorVersion >= 1)) diff --git a/MANI
xterm: Changes to 'upstream-unstable'
INSTALL |7 Imakefile|7 MANIFEST |2 Tekproc.c|8 VTPrsTbl.c | 22 VTparse.def | 10 VTparse.h| 10 aclocal.m4 | 162 +- button.c | 832 ++ charproc.c | 497 -- configure| 3631 +++ configure.in | 26 ctlseqs.ms | 89 + ctlseqs.txt | 99 - fontutils.c | 20 input.c | 23 main.c | 467 ++ main.h |8 menu.c |4 misc.c | 381 +++- os2main.c| 43 package/debian/changelog |6 package/xterm.spec |4 ptyx.h | 62 screen.c |4 trace.c |4 util.c | 81 - version.h|4 vttests/16colors.sh |6 vttests/8colors.sh |6 vttests/acolors.sh |6 vttests/doublechars.sh |6 vttests/dynamic.sh |6 vttests/dynamic2.sh |6 vttests/fonts.sh |6 vttests/resize.sh|6 vttests/title.sh |6 xcharmouse.h |7 xterm.h | 25 xterm.log.html | 107 + xterm.man| 457 +++-- xterm_io.h |4 xtermcfg.hin |9 43 files changed, 4713 insertions(+), 2463 deletions(-) New commits: commit 4e01e5971e45b9d39ac1531f9b84f5058e362400 Author: Julien Cristau Date: Sun Jan 8 13:21:43 2012 +0100 Imported Upstream version 277 diff --git a/INSTALL b/INSTALL index c8f28eb..0d0a4de 100644 --- a/INSTALL +++ b/INSTALL @@ -1,4 +1,4 @@ --- $XTermId: INSTALL,v 1.126 2011/08/30 09:51:01 tom Exp $ +-- $XTermId: INSTALL,v 1.127 2011/12/22 01:59:16 tom Exp $ --- -- Copyright 1997-2010,2011 by Thomas E. Dickey -- @@ -281,6 +281,11 @@ The options (in alphabetic order): Do not compile-in code that suppresses redundant updates to the titlebar when the text has not changed. + --disable-selection-ops disable selection operations + + Do not compile-in code to support the actions which allow users + to bind keys that use the selection or extract data from the screen. + --disable-session-mgt enable support for session management Do not compile-in code which adds simple session management hooks diff --git a/Imakefile b/Imakefile index f65c300..fcfaced 100644 --- a/Imakefile +++ b/Imakefile @@ -1,4 +1,4 @@ -XCOMM $XTermId: Imakefile,v 1.104 2011/07/02 00:48:49 tom Exp $ +XCOMM $XTermId: Imakefile,v 1.105 2011/11/29 10:19:20 Thorsten.Glaser Exp $ XCOMM XCOMM Attention xterm porters XCOMM @@ -253,6 +253,11 @@ SetUIDProgramTarget(xterm,$(OBJS1),$(DEPLIBS1),$(XRFLIBS) XkbClientLibs XawClien NormalProgramTarget(xterm,$(OBJS1),$(DEPLIBS1),$(XRFLIBS) XkbClientLibs XawClientLibs,$(TERMCAPLIB) $(UTMPLIB) $(PTYLIB)) #endif +#if defined(OpenBSDArchitecture) || defined(MirBSDArchitecture) +/* On OpenBSD xterm is now setgid utmp */ +INSTUIDFLAGS= -m 2555 -g utmp +#endif + #if InstallXtermSetUID && defined(SunArchitecture) && HasSharedLibraries && (OSMajorVersion < 5) #if AlternateUsrLibDir #if ((OSMajorVersion == 4) && (OSMinorVersion >= 1)) diff --git a/MANIFEST b/MANIFEST index b17561b..36647ff 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1,4 +1,4 @@ -MANIFEST for xterm-276, version xterm-276 +MANIFEST for xterm-277, version xterm-277 MANIFESTthis file 256colres.h resource-definitions for 256-color mode diff --git a/Tekproc.c b/Tekproc.c index 1aa9282..6a7f668 100644 --- a/Tekproc.c +++ b/Tekproc.c @@ -1,4 +1,4 @@ -/* $XTermId: Tekproc.c,v 1.190 2011/09/03 12:13:42 tom Exp $ */ +/* $XTermId: Tekproc.c,v 1.191 2011/12/27 10:19:51 tom Exp $ */ /* * Copyright 2001-2010,2011 by Thomas E. Dickey @@ -397,7 +397,7 @@ TekPtyData(void) if (Tpushb == 0) { if ((Tpushb = TypeMallocN(Char, 10)) == NULL || (Tline = TypeMallocN(XSegment, MAX_VTX)) == NULL) { - fprintf(stderr, "%s: Not enough core for Tek mode\n", ProgramName); + xtermWarning("Not enough core for Tek mode\n"); if (Tpushb) free(Tpushb); Tfailed = True; @@ -1571,8 +1571,8 @@ TekRealize(Widget gw, else if (TestGIN(GIN_TERM_EOT_STR) == 0) tekscr->gin_terminator = GIN_TERM_EOT; else - fprintf(stderr, "%s: illegal GIN terminator setting \"%s\"\n", - ProgramName, tw->tek.gin_terminator_str); + xtermWarning("illegal GIN terminator setting \"%s\"\n", +tw->te
Bug#654980: xserver-xorg: keyboard problems only in X/Windows
Please capture the output of 'evtest' for the keyboard, and attach it along with 'xinput list'. On Sat, Jan 7, 2012 at 17:14:43 +, robert b wrote: > [ 1053.930] (EE) Error loading keymap /var/lib/xkb/server-0.xkm > [ 1053.930] (EE) XKB: Failed to load keymap. Loading default keymap instead. That's not really expected... Cheers, Julien -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20120108121656.gj9...@radis.cristau.org
Bug#179286: #179286 xterm: Alt-Return has a strange effect because eightBitInput is on by default
Discussion here is moot due to #326200 and #534192 -- Thomas E. Dickey http://invisible-island.net ftp://invisible-island.net signature.asc Description: Digital signature
Processed: re: #179286 xterm: Alt-Return has a strange effect because eightBitInput is on by default
Processing commands for cont...@bugs.debian.org: > close 179286 Bug#179286: xterm: Alt-Return has a strange effect because eightBitInput is on by default 'close' is deprecated; see http://www.debian.org/Bugs/Developer#closing. Bug closed, send any further explanations to Alessandro Dalvit > -- Stopping processing here. Please contact me if you need assistance. -- 179286: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=179286 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: http://lists.debian.org/handler.s.c.132603308613015.transcr...@bugs.debian.org
Bug#630345: gdb trace and logs with experimental drivers
On Sun, Jan 8, 2012 at 2:15 AM, Craig Small wrote: > On Wed, Jan 04, 2012 at 09:48:50AM -0500, Alex Deucher wrote: >> Is there any chance you are using a hybrid laptop with both Intel and >> AMD GPUs in it? Based on your log this looks like it a MUX-less one > It is definitely a hybrid laptop with Intel and AMD GPUs. I'm not sure > if it is muxless or not. This has worked with the closed-source fglrx > drivers. They support this setup. > >> MUX-less systems aren't supported yet as we need a fair amount of drm >> and X infrastructure to handle buffer sharing between GPUs and >> decoupled display and rendering. > When you mean "we" you're talking about xorg and the people supporting > it? I completely understand this is really a problem of ATI's doing. > It's a problem of a lack of manpower in the open source stack. It's a huge amount of non-driver work to support this. Alex > - Craig > > -- > Craig Small VK2XLZ http://enc.com.au/ csmall at : enc.com.au > Debian GNU/Linux http://www.debian.org/ csmall at : debian.org > GPG fingerprint: 5D2F B320 B825 D939 04D2 0519 3938 F96B DF50 FEA5 -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/cadnq5_pg-ae16vq+ft3k-29+bjqrszn95e2doyfvtk-wenv...@mail.gmail.com
Bug#326200: #326200 xterm: please set eightBitInput: false by default so Alt is usable as such
There are two relevant issues: (a) how to configure a terminal to send an escape character as a prefix. (b) how to configure a terminal to handle meta-key processing. Notwithstanding the confusion arising from bash, they're different. Even if all of the terminals are (for the ones that handle this), configured to support (a), there are still functional differences in (a), which are well-known, having been the subject of other bug reports. For (b), it appears that xterm (and some others such as kterm which derive from the same source) are the only ones that implement the meta key feature as documented in terminfo(5). Specifically, the features is not implemented in any source based on rxvt, vte, putty, or kde. In xterm #277, I've addressed (b): eightBitMeta (class EightBitMeta) This controls the way xterm modifies the eighth bit of a sin- gle-byte key when the eightBitInput resource is set. The default is "locale". The resource value is a string, evaluated as a boolean after startup. false The key is sent unmodified. locale The key is modified only if the locale uses eight-bit encoding. true The key is sent modified. never The key is always sent unmodified. Except for the never choice, xterm honors the terminfo capabil- ities smm (set meta mode) and rmm (reset meta mode), allowing the feature to be turned on or off dynamically. If eightBitMeta is enabled when the locale uses UTF-8, xterm encodes the value as UTF-8 (since patch #183 in 2003). -- Thomas E. Dickey http://invisible-island.net ftp://invisible-island.net signature.asc Description: Digital signature
Bug#650291: #650291 xterm -bg/-fg doesn't choose nearest colour the hardware supports
fixed in xterm #277 -- Thomas E. Dickey http://invisible-island.net ftp://invisible-island.net signature.asc Description: Digital signature
Bug#652907: #652907 xterm: no UTMP/WTMP update with kfreebsd-amd64
fixed in #277 -- Thomas E. Dickey http://invisible-island.net ftp://invisible-island.net signature.asc Description: Digital signature
Processed: re: #650291 xterm -bg/-fg doesn't choose nearest colour the hardware supports
Processing commands for cont...@bugs.debian.org: > tags 650291 fixed-upstream Bug #650291 [xterm] xterm -bg/-fg doesn't choose nearest colour the hardware supports Added tag(s) fixed-upstream. > -- Stopping processing here. Please contact me if you need assistance. -- 650291: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=650291 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: http://lists.debian.org/handler.s.c.132603367915520.transcr...@bugs.debian.org
Processed: re: #652907 xterm: no UTMP/WTMP update with kfreebsd-amd64
Processing commands for cont...@bugs.debian.org: > tags 652907 fixed-upstream Bug #652907 [xterm] xterm: no UTMP/WTMP update with kfreebsd-amd64 Added tag(s) fixed-upstream. > -- Stopping processing here. Please contact me if you need assistance. -- 652907: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=652907 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: http://lists.debian.org/handler.s.c.132603382915910.transcr...@bugs.debian.org
Bug#609060: #609060 xterm should repeat most commands passed, with arrow up
lacking further clarification, this is not a bug in xterm -- Thomas E. Dickey http://invisible-island.net ftp://invisible-island.net signature.asc Description: Digital signature
Bug#637001: #637001 allow xterm to run a user-specified command on some event (e.g. to open a URL)
this is addressed in #277 -- Thomas E. Dickey http://invisible-island.net ftp://invisible-island.net signature.asc Description: Digital signature
Processed: re: #609060 xterm should repeat most commands passed, with arrow up
Processing commands for cont...@bugs.debian.org: > close 609060 Bug#609060: xterm should repeat most commands passed, with arrow up 'close' is deprecated; see http://www.debian.org/Bugs/Developer#closing. Bug closed, send any further explanations to yellow > -- Stopping processing here. Please contact me if you need assistance. -- 609060: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=609060 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: http://lists.debian.org/handler.s.c.132603396116608.transcr...@bugs.debian.org
Processed: re: #637001 allow xterm to run a user-specified command on some event (e.g. to open a URL)
Processing commands for cont...@bugs.debian.org: > tags 637001 fixed-upstream Bug #637001 [xterm] allow xterm to run a user-specified command on some event (e.g. to open a URL) Added tag(s) fixed-upstream. > -- Stopping processing here. Please contact me if you need assistance. -- 637001: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=637001 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: http://lists.debian.org/handler.s.c.132603405716799.transcr...@bugs.debian.org
Bug#147753: #147753 xterm: either -bg and -fg should affect only the terminal widgets, or -bg should clobber the Athena backgroundPixmap resource
The options -fg/-bg are handled by X Toolkit. xterm can infer some things to improve the behavior (and this has been addressed in more than one way). The original problem here appears to be from a conflicting user-specified resource (which won't be fixed by any improvements to -fg/-bg handling). -- Thomas E. Dickey http://invisible-island.net ftp://invisible-island.net signature.asc Description: Digital signature
Bug#147753: marked as done (xterm: either -bg and -fg should affect only the terminal widgets, or -bg should clobber the Athena backgroundPixmap resource)
Your message dated Sun, 08 Jan 2012 09:54:07 -0500 with message-id <20120108145407.ga14...@debian50-32.invisible-island.net> and subject line re: #147753 xterm: either -bg and -fg should affect only the terminal widgets, or -bg should clobber the Athena backgroundPixmap resource has caused the Debian Bug report #147753, regarding xterm: either -bg and -fg should affect only the terminal widgets, or -bg should clobber the Athena backgroundPixmap resource 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.) -- 147753: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=147753 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: xterm Version: 4.1.0-16 Followup-For: Bug #147667 Severity: normal I work with Vivek (the gentleman who originally filed this bug) and I also experience the behaviour he described. I invoke xterms with "xterm -bg black -fg white" I see the foreground of the menu change colour to white, but not the background. This makes the menu somewhat unreadable. If I invoke xterm with no arguments, then it seems to behave as you'd expect. I use the -bg and -fg arguments to allow me to differentiate between xterms more easily -- I'm not convinced that the behaviour I'm seeing is due to the same reasons vivek is seeing it, but it it still a problem. Either the menu should honour the -bg flag, or there should be a commandline option to alter the menu background also. It is of course, quite possible that I have merely missed the relevant commandline argument when reading the xterm manual page; but I submit that a 2800 line manpage is easy to lose stuff in. Regards, Daniel -- System Information Debian Release: 3.0 Architecture: i386 Kernel: Linux coma 2.4.17preempt-xfs #1 Thu Feb 7 18:59:54 GMT 2002 i686 Locale: LANG=C, LC_CTYPE=en_GB Versions of packages xterm depends on: ii debconf 1.0.32 Debian configuration management sy ii libc62.2.5-6 GNU C Library: Shared libraries an ii libfreetype6 2.0.9-1 FreeType 2 font engine, shared lib ii libncurses5 5.2.20020112a-8 Shared libraries for terminal hand ii libxaw7 4.1.0-16X Athena widget set library ii xlibs4.1.0-16X Window System client libraries -- Daniel Silverstone http://www.digital-scurf.org/ Hostmaster, Webmaster, and Chief Code Wibbler Digital-Scurf Unlimited GPG Public key available from keyring.debian.org KeyId: 20687895 You have a will that can be influenced by all with whom you come in contact. --- End Message --- --- Begin Message --- The options -fg/-bg are handled by X Toolkit. xterm can infer some things to improve the behavior (and this has been addressed in more than one way). The original problem here appears to be from a conflicting user-specified resource (which won't be fixed by any improvements to -fg/-bg handling). -- Thomas E. Dickey http://invisible-island.net ftp://invisible-island.net signature.asc Description: Digital signature --- End Message ---
Bug#250429: #250429 debconf: cut and paste of debconf screens text mess
I addressed this in a different way, a while ago: Patch #225 - 2007/3/24 * improve select/paste between UTF-8 and Latin1 xterms by adapting the translations from [379]patch #185. Extend that to include Unicode fullwidth forms FF00-FF5E. Also modify select/paste of DEC line-drawing characters in Latin1 mode to use ASCII characters. -- Thomas E. Dickey http://invisible-island.net ftp://invisible-island.net signature.asc Description: Digital signature
Bug#250429: marked as done (debconf: cut and paste of debconf screens text mess)
Your message dated Sun, 08 Jan 2012 10:03:41 -0500 with message-id <20120108150341.ga14...@debian50-32.invisible-island.net> and subject line re: #250429 debconf: cut and paste of debconf screens text mess has caused the Debian Bug report #250429, regarding debconf: cut and paste of debconf screens text mess 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.) -- 250429: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=250429 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: debconf Version: 1.4.24 Severity: wishlist When we use dpkg-reconfigure and we cut and paste into a text buffer with the mouse while holding , can the edges of the screen not become when pasting, e.g. lqu Configuring resolvconf tqk x x x This package contains the infrastructure required for dynamic updating of the resolver x But instead Configuring resolvconf This package contains the infrastructure required for dynamic updating of the resolver as what would happen when one cuts and pastes from a browser instead of curses. If this is a curses problem, please reassign this wishlist. --- End Message --- --- Begin Message --- I addressed this in a different way, a while ago: Patch #225 - 2007/3/24 * improve select/paste between UTF-8 and Latin1 xterms by adapting the translations from [379]patch #185. Extend that to include Unicode fullwidth forms FF00-FF5E. Also modify select/paste of DEC line-drawing characters in Latin1 mode to use ASCII characters. -- Thomas E. Dickey http://invisible-island.net ftp://invisible-island.net signature.asc Description: Digital signature --- End Message ---
Processed: re: #653226 xterm does not more allow mutt to set title
Processing commands for cont...@bugs.debian.org: > tags 653226 moreinfo Bug #653226 [xterm] xterm does not more allow mutt to set title Added tag(s) moreinfo. > -- Stopping processing here. Please contact me if you need assistance. -- 653226: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=653226 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: http://lists.debian.org/handler.s.c.132603524224549.transcr...@bugs.debian.org
Bug#654980: xserver-xorg: keyboard problems only in X/Windows
> From: Julien Cristau > Date: Sun, 8 Jan 2012 13:16:56 +0100 > > Please capture the output of 'evtest' for the keyboard, and attach it > along with 'xinput list'. > > On Sat, Jan 7, 2012 at 17:14:43 +, robert b wrote: > > > [ 1053.930] (EE) Error loading keymap /var/lib/xkb/server-0.xkm > > [ 1053.930] (EE) XKB: Failed to load keymap. Loading default keymap inst! > > That's not really expected... > > Cheers, > Julien See below. # xinput list ⎡ Virtual core pointer id=2[master pointer (3)] ⎜ ↳ Virtual core XTEST pointer id=4[slave pointer (2)] ⎜ ↳ USBPS2 id=9[slave pointer (2)] ⎣ Virtual core keyboardid=3[master keyboard (2)] ↳ Virtual core XTEST keyboard id=5[slave keyboard (3)] ↳ Power Button id=6[slave keyboard (3)] ↳ Power Button id=7[slave keyboard (3)] ↳ USBPS2 id=8[slave keyboard (3)] ↳ DELL DELL USB Keyboard id=10 [slave keyboard (3)] Script started on Sun Jan 8 08:28:16 2012 # evtest No device specified, trying to scan all of /dev/input/event* Available devices: /dev/input/event0: USBPS2 /dev/input/event1: USBPS2 /dev/input/event2: DELL DELL USB Keyboard /dev/input/event3: Power Button /dev/input/event4: Power Button /dev/input/event5: PC Speaker Select the device event number [0-5]: 2 Input driver version is 1.0.1 Input device ID: bus 0x3 vendor 0x413c product 0x2005 version 0x110 Input device name: "DELL DELL USB Keyboard" Supported events: Event type 0 (EV_SYN) Event type 1 (EV_KEY) Event code 1 (KEY_ESC) Event code 2 (KEY_1) Event code 3 (KEY_2) Event code 4 (KEY_3) Event code 5 (KEY_4) Event code 6 (KEY_5) Event code 7 (KEY_6) Event code 8 (KEY_7) Event code 9 (KEY_8) Event code 10 (KEY_9) Event code 11 (KEY_0) Event code 12 (KEY_MINUS) Event code 13 (KEY_EQUAL) Event code 14 (KEY_BACKSPACE) Event code 15 (KEY_TAB) Event code 16 (KEY_Q) Event code 17 (KEY_W) Event code 18 (KEY_E) Event code 19 (KEY_R) Event code 20 (KEY_T) Event code 21 (KEY_Y) Event code 22 (KEY_U) Event code 23 (KEY_I) Event code 24 (KEY_O) Event code 25 (KEY_P) Event code 26 (KEY_LEFTBRACE) Event code 27 (KEY_RIGHTBRACE) Event code 28 (KEY_ENTER) Event code 29 (KEY_LEFTCTRL) Event code 30 (KEY_A) Event code 31 (KEY_S) Event code 32 (KEY_D) Event code 33 (KEY_F) Event code 34 (KEY_G) Event code 35 (KEY_H) Event code 36 (KEY_J) Event code 37 (KEY_K) Event code 38 (KEY_L) Event code 39 (KEY_SEMICOLON) Event code 40 (KEY_APOSTROPHE) Event code 41 (KEY_GRAVE) Event code 42 (KEY_LEFTSHIFT) Event code 43 (KEY_BACKSLASH) Event code 44 (KEY_Z) Event code 45 (KEY_X) Event code 46 (KEY_C) Event code 47 (KEY_V) Event code 48 (KEY_B) Event code 49 (KEY_N) Event code 50 (KEY_M) Event code 51 (KEY_COMMA) Event code 52 (KEY_DOT) Event code 53 (KEY_SLASH) Event code 54 (KEY_RIGHTSHIFT) Event code 55 (KEY_KPASTERISK) Event code 56 (KEY_LEFTALT) Event code 57 (KEY_SPACE) Event code 58 (KEY_CAPSLOCK) Event code 59 (KEY_F1) Event code 60 (KEY_F2) Event code 61 (KEY_F3) Event code 62 (KEY_F4) Event code 63 (KEY_F5) Event code 64 (KEY_F6) Event code 65 (KEY_F7) Event code 66 (KEY_F8) Event code 67 (KEY_F9) Event code 68 (KEY_F10) Event code 69 (KEY_NUMLOCK) Event code 70 (KEY_SCROLLLOCK) Event code 71 (KEY_KP7) Event code 72 (KEY_KP8) Event code 73 (KEY_KP9) Event code 74 (KEY_KPMINUS) Event code 75 (KEY_KP4) Event code 76 (KEY_KP5) Event code 77 (KEY_KP6) Event code 78 (KEY_KPPLUS) Event code 79 (KEY_KP1) Event code 80 (KEY_KP2) Event code 81 (KEY_KP3) Event code 82 (KEY_KP0) Event code 83 (KEY_KPDOT) Event code 85 (KEY_ZENKAKUHANKAKU) Event code 86 (KEY_102ND) Event code 87 (KEY_F11) Event code 88 (KEY_F12) Event code 89 (KEY_RO) Event code 90 (KEY_KATAKANA) Event code 91 (KEY_HIRAGANA) Event code 92 (KEY_HENKAN) Event code 93 (KEY_KATAKANAHIRAGANA) Event code 94 (KEY_MUHENKAN) Event code 95 (KEY_KPJPCOMMA) Event code 96 (KEY_KPENTER) Event code 97 (KEY_RIGHTCTRL) Event code 98 (KEY_KPSLASH) Event code 99 (KEY_SYSRQ) Event code 100 (KEY_RIGHTALT) Event code 102 (KEY_HOME) Event code 103 (KEY_UP) Event code 104 (KEY_PAGEUP) Event code 105 (KEY_LEFT) Event co
Processed: Re: compiz: FTBFS ("window.o: undefined reference to symbol 'KIcon::~KIcon()'")
Processing commands for cont...@bugs.debian.org: > # Adam D. Barratt wrote: > # > # > compiz fails to build when binNMUed, on all architectures; from the > # > amd64 log: > # > > # > /usr/bin/ld: window.o: undefined reference to symbol 'KIcon::~KIcon()' > # > /usr/bin/ld: note: 'KIcon::~KIcon()' is defined in DSO > /usr/lib64/libkdeui.so.5 so try adding it to the linker command line > # > # The cause: > # > # binutils (2.21.53.20110823-1) unstable; urgency=low > # > # * Snapshot, taken from the trunk 20110823. > #- ld --no-copy-dt-needed-entries/--no-add-needed is now the default. > # > #tags 639681 +notsqueeze > tags 639681 + wheezy sid experimental Bug #639681 {Done: Sean Finney } [src:compiz] compiz: FTBFS ("window.o: undefined reference to symbol 'KIcon::~KIcon()'") Bug #645748 {Done: Sean Finney } [src:compiz] compiz: FTBFS on all architectures: undefined reference to symbol 'KIcon::~KIcon()' Added tag(s) sid, wheezy, and experimental. Added tag(s) sid, wheezy, and experimental. > End of message, stopping processing here. Please contact me if you need assistance. -- 639681: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=639681 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: http://lists.debian.org/handler.s.c.132608237427937.transcr...@bugs.debian.org