xterm: Changes to 'upstream-unstable'

2008-01-06 Thread Julien Cristau
 MANIFEST   |2 +-
 Makefile.in|5 -
 configure  |2 +-
 configure.in   |4 ++--
 util.c |   10 ++
 version.h  |4 ++--
 xterm.log.html |   17 +++--
 7 files changed, 31 insertions(+), 13 deletions(-)

New commits:
commit 74606566b9ef5f4355eadb58c822c9f38728c70a
Author: Julien Cristau [EMAIL PROTECTED]
Date:   Sun Jan 6 10:12:18 2008 +0100

Import xterm-231.

diff --git a/MANIFEST b/MANIFEST
index d6339d4..6e491e5 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -1,4 +1,4 @@
-MANIFEST for xterm-229o, version xterm-230
+MANIFEST for xterm-231, version xterm-231
 

 MANIFESTthis file
 256colres.h resource-definitions for 256-color mode
diff --git a/Makefile.in b/Makefile.in
index ff90a4a..f15ad49 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,4 +1,4 @@
-## $XTermId: Makefile.in,v 1.154 2007/12/30 16:39:48 tom Exp $
+## $XTermId: Makefile.in,v 1.155 2008/01/05 14:26:52 tom Exp $
 ##
 ## Copyright 2002-2006,2007 by Thomas E. Dickey
 ##
@@ -221,6 +221,9 @@ install-full :: $(MANDIR)
 @no_appsdir@   @echo installing $(APPSDIR)/UXTerm
 @no_appsdir@   @sed -e s/XTerm/$(CLASS)/ $(srcdir)/UXTerm.ad XTerm.tmp
 @no_appsdir@   @$(INSTALL_DATA) XTerm.tmp $(APPSDIR)/UXTerm
[EMAIL PROTECTED]@  @echo installing $(APPSDIR)/KOI8RXTerm
[EMAIL PROTECTED]@  @sed -e s/XTerm/$(CLASS)/ $(srcdir)/KOI8RXTerm.ad 
XTerm.tmp
[EMAIL PROTECTED]@  @$(INSTALL_DATA) XTerm.tmp $(APPSDIR)/KOI8RXTerm
 @no_appsdir@   @rm -f XTerm.tmp
 @no_icondir@   @echo ... installed app-defaults
 
diff --git a/configure b/configure
index 6c3d984..5c43852 100755
--- a/configure
+++ b/configure
@@ -743,7 +743,7 @@ Optional Features:
   --disable-rightbar  disable right-scrollbar support
   --disable-samename  disable check for redundant name-change
   --disable-session-mgt   disable support for session management
-  --enable-tcap-fkeys disable termcap function-keys support
+  --disable-tcap-fkeysdisable termcap function-keys support
   --enable-tcap-query compile-in termcap-query support
   --disable-tek4014   disable tek4014 emulation
   --enable-toolbarcompile-in toolbar for pulldown menus
diff --git a/configure.in b/configure.in
index b1fe245..693355c 100644
--- a/configure.in
+++ b/configure.in
@@ -1,4 +1,4 @@
-dnl $XTermId: configure.in,v 1.239 2007/12/31 17:21:31 tom Exp $
+dnl $XTermId: configure.in,v 1.240 2008/01/05 14:26:52 tom Exp $
 dnl
 dnl ---
 dnl
@@ -722,7 +722,7 @@ test $enable_session_mgt = no  
AC_DEFINE(OPT_SESSION_MGT,0)
 
 AC_MSG_CHECKING(if you want to use termcap function-keys)
 CF_ARG_DISABLE(tcap-fkeys,
-   [  --enable-tcap-fkeys disable termcap function-keys support],
+   [  --disable-tcap-fkeysdisable termcap function-keys support],
[enable_tcap_fkeys=no],
[enable_tcap_fkeys=yes])
 AC_MSG_RESULT($enable_tcap_fkeys)
diff --git a/util.c b/util.c
index c6f2f95..03da20b 100644
--- a/util.c
+++ b/util.c
@@ -1,4 +1,4 @@
-/* $XTermId: util.c,v 1.403 2007/12/31 15:41:19 tom Exp $ */
+/* $XTermId: util.c,v 1.404 2008/01/05 14:26:52 tom Exp $ */
 
 /*
  * Copyright 1999-2006,2007 by Thomas E. Dickey
@@ -3497,9 +3497,11 @@ ClearCurBackground(XtermWidget xw,
 unsigned
 getXtermCell(TScreen * screen, int row, int col)
 {
-return PACK_PAIR(SCRN_BUF_CHARS(screen, row),
-SCRN_BUF_WIDEC(screen, row),
-col);
+unsigned ch = SCRN_BUF_CHARS(screen, row)[col];
+if_OPT_WIDE_CHARS(screen, {
+   ch |= (SCRN_BUF_WIDEC(screen, row)[col]  8);
+});
+return ch;
 }
 
 /*
diff --git a/version.h b/version.h
index b30ee58..6c19c76 100644
--- a/version.h
+++ b/version.h
@@ -1,4 +1,4 @@
-/* $XTermId: version.h,v 1.286 2007/11/10 01:36:34 tom Exp $ */
+/* $XTermId: version.h,v 1.287 2008/01/05 14:26:52 tom Exp $ */
 
 /*
  * These definitions are used to build the string that's printed in response to
@@ -6,7 +6,7 @@
  * version of X to which this version of xterm has been built.  The number in
  * parentheses is my patch number (Thomas E. Dickey).
  */
-#define XTERM_PATCH   230
+#define XTERM_PATCH   231
 
 #ifndef __vendorversion__
 #define __vendorversion__ XTerm
diff --git a/xterm.log.html b/xterm.log.html
index d19c2ac..70ff93d 100644
--- a/xterm.log.html
+++ b/xterm.log.html
@@ -20,7 +20,7 @@
  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF   *
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.*
  *
-  $XTermId: xterm.log.html,v 1.630 2007/12/31 23:03:01 tom Exp $
+  $XTermId: xterm.log.html,v 1.632 2008/01/06 01:53:25 tom Exp $
   --
 HTML
 HEAD
@@ -45,6 +45,7 @@ Most of these are summarized in the XFree86 CHANGELOG
 is the latest version of 

xterm: Changes to 'debian-unstable'

2008-01-06 Thread Julien Cristau
 MANIFEST |2 +-
 Makefile.in  |2 +-
 configure|2 +-
 configure.in |4 ++--
 debian/changelog |8 
 util.c   |   10 ++
 version.h|4 ++--
 xterm.log.html   |   17 +++--
 8 files changed, 36 insertions(+), 13 deletions(-)

New commits:
commit 6db80122ef8aa20bf37e01177f26df65f8f0cdca
Author: Julien Cristau [EMAIL PROTECTED]
Date:   Sun Jan 6 10:17:56 2008 +0100

* New upstream release
  + undo change to getXtermCell() from patch #230 using PACK_PAIR macro
(closes: #459014, analysis by Caetano Jimenez Carezzato).

diff --git a/debian/changelog b/debian/changelog
index fc74f8f..6997652 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+xterm (231-1) unstable; urgency=low
+
+  * New upstream release
++ undo change to getXtermCell() from patch #230 using PACK_PAIR macro
+  (closes: #459014, analysis by Caetano Jimenez Carezzato).
+
+ -- Julien Cristau [EMAIL PROTECTED]  Sun, 06 Jan 2008 10:13:28 +0100
+
 xterm (230-1) unstable; urgency=low
 
   * New upstream release.

commit 74606566b9ef5f4355eadb58c822c9f38728c70a
Author: Julien Cristau [EMAIL PROTECTED]
Date:   Sun Jan 6 10:12:18 2008 +0100

Import xterm-231.

diff --git a/MANIFEST b/MANIFEST
index d6339d4..6e491e5 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -1,4 +1,4 @@
-MANIFEST for xterm-229o, version xterm-230
+MANIFEST for xterm-231, version xterm-231
 

 MANIFESTthis file
 256colres.h resource-definitions for 256-color mode
diff --git a/Makefile.in b/Makefile.in
index ff90a4a..f15ad49 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,4 +1,4 @@
-## $XTermId: Makefile.in,v 1.154 2007/12/30 16:39:48 tom Exp $
+## $XTermId: Makefile.in,v 1.155 2008/01/05 14:26:52 tom Exp $
 ##
 ## Copyright 2002-2006,2007 by Thomas E. Dickey
 ##
@@ -221,6 +221,9 @@ install-full :: $(MANDIR)
 @no_appsdir@   @echo installing $(APPSDIR)/UXTerm
 @no_appsdir@   @sed -e s/XTerm/$(CLASS)/ $(srcdir)/UXTerm.ad XTerm.tmp
 @no_appsdir@   @$(INSTALL_DATA) XTerm.tmp $(APPSDIR)/UXTerm
[EMAIL PROTECTED]@  @echo installing $(APPSDIR)/KOI8RXTerm
[EMAIL PROTECTED]@  @sed -e s/XTerm/$(CLASS)/ $(srcdir)/KOI8RXTerm.ad 
XTerm.tmp
[EMAIL PROTECTED]@  @$(INSTALL_DATA) XTerm.tmp $(APPSDIR)/KOI8RXTerm
 @no_appsdir@   @rm -f XTerm.tmp
 @no_icondir@   @echo ... installed app-defaults
 
diff --git a/configure b/configure
index 6c3d984..5c43852 100755
--- a/configure
+++ b/configure
@@ -743,7 +743,7 @@ Optional Features:
   --disable-rightbar  disable right-scrollbar support
   --disable-samename  disable check for redundant name-change
   --disable-session-mgt   disable support for session management
-  --enable-tcap-fkeys disable termcap function-keys support
+  --disable-tcap-fkeysdisable termcap function-keys support
   --enable-tcap-query compile-in termcap-query support
   --disable-tek4014   disable tek4014 emulation
   --enable-toolbarcompile-in toolbar for pulldown menus
diff --git a/configure.in b/configure.in
index b1fe245..693355c 100644
--- a/configure.in
+++ b/configure.in
@@ -1,4 +1,4 @@
-dnl $XTermId: configure.in,v 1.239 2007/12/31 17:21:31 tom Exp $
+dnl $XTermId: configure.in,v 1.240 2008/01/05 14:26:52 tom Exp $
 dnl
 dnl ---
 dnl
@@ -722,7 +722,7 @@ test $enable_session_mgt = no  
AC_DEFINE(OPT_SESSION_MGT,0)
 
 AC_MSG_CHECKING(if you want to use termcap function-keys)
 CF_ARG_DISABLE(tcap-fkeys,
-   [  --enable-tcap-fkeys disable termcap function-keys support],
+   [  --disable-tcap-fkeysdisable termcap function-keys support],
[enable_tcap_fkeys=no],
[enable_tcap_fkeys=yes])
 AC_MSG_RESULT($enable_tcap_fkeys)
diff --git a/util.c b/util.c
index c6f2f95..03da20b 100644
--- a/util.c
+++ b/util.c
@@ -1,4 +1,4 @@
-/* $XTermId: util.c,v 1.403 2007/12/31 15:41:19 tom Exp $ */
+/* $XTermId: util.c,v 1.404 2008/01/05 14:26:52 tom Exp $ */
 
 /*
  * Copyright 1999-2006,2007 by Thomas E. Dickey
@@ -3497,9 +3497,11 @@ ClearCurBackground(XtermWidget xw,
 unsigned
 getXtermCell(TScreen * screen, int row, int col)
 {
-return PACK_PAIR(SCRN_BUF_CHARS(screen, row),
-SCRN_BUF_WIDEC(screen, row),
-col);
+unsigned ch = SCRN_BUF_CHARS(screen, row)[col];
+if_OPT_WIDE_CHARS(screen, {
+   ch |= (SCRN_BUF_WIDEC(screen, row)[col]  8);
+});
+return ch;
 }
 
 /*
diff --git a/version.h b/version.h
index b30ee58..6c19c76 100644
--- a/version.h
+++ b/version.h
@@ -1,4 +1,4 @@
-/* $XTermId: version.h,v 1.286 2007/11/10 01:36:34 tom Exp $ */
+/* $XTermId: version.h,v 1.287 2008/01/05 14:26:52 tom Exp $ */
 
 /*
  * These definitions are used to build the string that's printed in response to
@@ -6,7 +6,7 @@
  * version of X to which this version of xterm 

xterm: Changes to 'refs/tags/xterm-231-1'

2008-01-06 Thread Julien Cristau
Tag 'xterm-231-1' created by Julien Cristau [EMAIL PROTECTED] at 2008-01-06 
10:05 +

Tagging upload of xterm 231-1 to unstable.

Changes since xterm-230-1:
Julien Cristau (3):
  Import xterm-231.
  Merge branch 'upstream-unstable' into debian-unstable
  * New upstream release

---
 MANIFEST |2 +-
 Makefile.in  |2 +-
 configure|2 +-
 configure.in |4 ++--
 debian/changelog |8 
 util.c   |   10 ++
 version.h|4 ++--
 xterm.log.html   |   17 +++--
 8 files changed, 36 insertions(+), 13 deletions(-)
---


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#459297: xorg: mouse/keyboard not responding under Xorg

2008-01-06 Thread Cristian Ionescu-Idbohrn
On Sun, 6 Jan 2008, Cristian Ionescu-Idbohrn wrote:

 I experience similar weired problems.

 Double click using pointer device left button in xterm behaves like
 tripple click.
 Single click using pointer device left buttonusing pointer device left
 button in aterm selects word.

 Paste using pointer device left buttonusing pointer device middle button
 inserts the clipp buffer twice, but works as expected in an aterm.

 shiftinsert works as expected both in xterm and aterm.

Appologies for the false alarm.

The cause of my problems was me trying to add a usb-mouse to my xorg.conf.
I'm probably doing something wrong.  Commented out that part which
reestablished order ;)

Any ideas?


Cheers,

-- 
Cristian

xorg.conf.gz
Description: Binary data


libxaw: Changes to 'debian-unstable'

2008-01-06 Thread Julien Cristau
 debian/changelog   |8 
 debian/control |   74 +
 debian/libxaw6-dev.install |3 -
 debian/libxaw6-dev.links   |1 
 debian/libxaw6.install |2 -
 debian/libxaw7-dev.install |3 +
 debian/rules   |9 ++---
 7 files changed, 16 insertions(+), 84 deletions(-)

New commits:
commit 14a9773a352103316e21cab0b0655b866ab66eff
Author: Julien Cristau [EMAIL PROTECTED]
Date:   Sun Jan 6 11:47:31 2008 +0100

Stop building Xaw6.

Remove the libxaw6, libxaw6-dbg, libxaw6-dev and libxaw-headers packages,
moving the contents of -headers to libxaw7-dev (closes: #172890).

diff --git a/debian/changelog b/debian/changelog
index c9ab737..f41c873 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,15 @@
 libxaw (2:1.0.4-2) UNRELEASED; urgency=low
 
+  [ Drew Parsons ]
   * Add a README.Debian to libxaw7-dev, pointing to further
 documentation in the xspecs package. Closes: #260659.
 
- -- Drew Parsons [EMAIL PROTECTED]  Tue, 18 Sep 2007 22:14:31 +1000
+  [ Julien Cristau ]
+  * Stop building Xaw6.  Remove the libxaw6, libxaw6-dbg, libxaw6-dev and
+libxaw-headers packages, moving the contents of -headers to libxaw7-dev
+(closes: #172890).
+
+ -- Julien Cristau [EMAIL PROTECTED]  Sun, 06 Jan 2008 11:45:39 +0100
 
 libxaw (2:1.0.4-1) unstable; urgency=low
 
diff --git a/debian/control b/debian/control
index a01ae3a..a3b0b75 100644
--- a/debian/control
+++ b/debian/control
@@ -7,60 +7,6 @@ Build-Depends: debhelper (= 5), libx11-dev (= 1:0.99.2-1), 
x11proto-core-dev (
 Standards-Version: 3.7.2
 XS-Vcs-Git: git://git.debian.org/git/pkg-xorg/lib/libxaw
 
-Package: libxaw6
-Section: libs
-Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, x11-common
-Description: X11 Athena Widget library
- libXaw6 provides the original version of Xaw, the Athena Widgets tookit,
- which is largely used by legacy X applications.  Within the Xaw series,
- version 6 is itself considered deprecated; version 7 is in most common
- usage.  See libxaw7 for more information.
- .
- More information about X.Org can be found at:
- URL:http://xorg.freedesktop.org
- URL:http://lists.freedesktop.org/mailman/listinfo/xorg
-
-Package: libxaw6-dbg
-Section: libdevel
-Architecture: any
-Priority: extra
-Depends: ${shlibs:Depends}, ${misc:Depends}, x11-common, libxaw6 (= 
${Source-Version})
-Description: X11 Athena Widget library (debug package)
- libXaw6 provides the original version of Xaw, the Athena Widgets tookit,
- which is largely used by legacy X applications.  Within the Xaw series,
- version 6 is itself considered deprecated; version 7 is in most common
- usage.  See libxaw7 for more information.  In general, use of a more
- modern toolkit such as GTK+ is recommended.
- .
- This package contains the debug versions of the library found in libxaw6.
- Non-developers likely have little use for this package.
- .
- More information about X.Org can be found at:
- URL:http://xorg.freedesktop.org
- URL:http://lists.freedesktop.org/mailman/listinfo/xorg
-
-Package: libxaw6-dev
-Section: libdevel
-Priority: extra
-Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, x11-common, libxaw6 (= 
${Source-Version}), libxaw-headers (= ${source:Version})
-Conflicts: libxaw7-dev, libxaw8-dev
-Replaces: libxaw7-dev, libxaw8-dev
-Description: X11 Athena Widget library (development headers)
- libXaw6 provides the original version of Xaw, the Athena Widgets tookit,
- which is largely used by legacy X applications.  Within the Xaw series,
- version 6 is itself considered deprecated; version 7 is in most common
- usage.  See libxaw7 for more information.  In general, use of a more
- modern toolkit such as GTK+ is recommended.
- .
- This package contains the development headers for the library found in
- libxaw6.  Non-developers likely have little use for this package.
- .
- More information about X.Org can be found at:
- URL:http://xorg.freedesktop.org
- URL:http://lists.freedesktop.org/mailman/listinfo/xorg
- 
 Package: libxaw7
 Section: libs
 Architecture: any
@@ -98,9 +44,9 @@ Description: X11 Athena Widget library (debug package)
 Package: libxaw7-dev
 Section: libdevel
 Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, x11-common, libxaw7 (= 
${Source-Version}), libxaw-headers (= ${source:Version})
+Depends: ${shlibs:Depends}, ${misc:Depends}, x11-common, libxaw7 (= 
${Source-Version}), libx11-dev, libxmu-dev, libxpm-dev, x11proto-core-dev
 Conflicts: libxaw6-dev, libxaw8-dev
-Replaces: libxaw6-dev, libxaw8-dev
+Replaces: libxaw6-dev, libxaw8-dev, libxaw-headers ( 2:1.0.4-2)
 Description: X11 Athena Widget library (development headers)
  libXaw7 provides the second version of Xaw, the Athena Widgets tookit,
  which is largely used by legacy X applications.  This version is the
@@ -114,19 +60,3 @@ Description: X11 Athena Widget library (development headers)
  More information about X.Org can be found at:

Bug#459371: Caps lock led turns on/off when c.l. is used as compose key (it shouldn't)

2008-01-06 Thread Diego Escalante Urrelo
On 1/5/08, Brice Goglin [EMAIL PROTECTED] wrote:
 Diego Escalante Urrelo wrote:
  Package: xserver-xorg
  Version: 1:7.3+7
  Severity: normal
 
  --- Please enter the report below this line. ---
 
  Recently (I assume since Xorg 7.3) the caps lock led turns on/off when
  hit. Now, that's not a problem on average joe's case, but if you are
  using caps lock as compose key then you find out that you have a
  constant blinking on your keyboard when typing something.
  The old behaviour was to keep caps lock led off all the time no matter
  how many times I pressed it. When using it as compose key I mean.
 

 You should not use reportbug-ng for now, it doesn't include all required
 information for debugging yet.

 Please send the whole output of
 /usr/share/bug/xserver-xorg/script 31
 so that we see your config and log.


Ok, using latest sid stuff (the problem still occurs):

Contents of /var/lib/x11/X.roster:
xserver-xorg

/etc/X11/X target does not match checksum in /var/lib/x11/X.md5sum.

X server symlink status:
lrwxrwxrwx 1 root root 13 2007-11-24 11:58 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1672764 2007-12-21 19:43 /usr/bin/Xorg

Contents of /var/lib/x11/xorg.conf.roster:
xserver-xorg

VGA-compatible devices on PCI bus:
00:02.0 VGA compatible controller: Intel Corporation 82852/855GM
Integrated Graphics Device (rev 02)

/etc/X11/xorg.conf does not match checksum in /var/lib/x11/xorg.conf.md5sum.

Xorg X server configuration file status:
-rw-r--r-- 1 root root 2223 2007-12-11 19:38 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
Section ServerLayout
Identifier X.org Configured
Screen  0  Screen0 0 0
InputDeviceMouse0 CorePointer
InputDeviceKeyboard0 CoreKeyboard
EndSection

Section Files
RgbPath  /etc/X11/rgb
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
EndSection

Section Module
Load  record
Load  glx
Load  extmod
Load  xtrap
Load  GLcore
Load  dri
Load  dbe
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
ModelNameMonitor Model
EndSection

Section Device
### Available Driver options are:-
### Values: i: integer, f: float, bool: True/False,
### string: String, freq: f Hz/kHz/MHz
### [arg]: arg optional
#Option ShadowFB  # [bool]
#Option KGAUniversal  # [bool]
Identifier  Card0
Driver  intel
VendorName  Intel Corporation
BoardName   82852/855GM Integrated Graphics Device
BusID   PCI:0:2:0
Option  VBERestore true
Option  DRI true
Option  AccelMethod XAA
Option  XaaNoOffscreenPixmaps
EndSection

Section Screen
Identifier Screen0
Device Card0
MonitorMonitor0
Option  Accel true
SubSection Display
Viewport   0 0
Depth 8
EndSubSection
SubSection Display
Viewport   0 0
Depth 15
EndSubSection
SubSection Display
Viewport   0 0
Depth 16
EndSubSection
SubSection Display
Viewport   0 0
Depth 24
EndSubSection
EndSection



Xorg X server log files on system:
-rw-r--r-- 1 root root 31855 2007-11-24 12:00 /var/log/Xorg.1.1.log
-rw-r--r-- 1 root root 35250 2008-01-05 20:20 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file
/var/log/Xorg.0.log:

X.Org X Server 1.4.0
Release Date: 5 September 2007
X Protocol Version 11, Revision 0
Build Operating System: Linux Debian (xorg-server 2:1.4.1~git20071212-2)
Current Operating System: Linux milkyway 2.6.23-1-686 #1 SMP Wed Dec 5
02:01:26 UTC 2007 i686
Build Date: 22 December 2007  01:30:34AM

Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: 

Processed (with 1 errors): setting package to libxaw libxaw7 libxaw7-dbg libxaw7-dev, tagging 172890, tagging 260659

2008-01-06 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.10.12
 package libxaw libxaw7 libxaw7-dbg libxaw7-dev
Ignoring bugs not assigned to: libxaw libxaw7-dev libxaw7-dbg libxaw7

 tags 172890 + pending
Bug number 172890 belongs to package libxaw6, skipping.

 tags 260659 + pending
Bug#260659: libxaw7-dev: package should have a README file pointing to the docs 
in the xspecs package
There were no tags set.
Tags added: pending


End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Processing of xterm_231-1_i386.changes

2008-01-06 Thread Archive Administrator
xterm_231-1_i386.changes uploaded successfully to localhost
along with the files:
  xterm_231-1.dsc
  xterm_231.orig.tar.gz
  xterm_231-1.diff.gz
  xterm_231-1_i386.deb

Greetings,

Your Debian queue daemon


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#459371: Caps lock led turns on/off when c.l. is used as compose key (it shouldn't)

2008-01-06 Thread Julien Cristau
On Sat, Jan  5, 2008 at 18:10:56 -0500, Diego Escalante Urrelo wrote:

 Recently (I assume since Xorg 7.3) the caps lock led turns on/off when
 hit. Now, that's not a problem on average joe's case, but if you are
 using caps lock as compose key then you find out that you have a
 constant blinking on your keyboard when typing something.
 The old behaviour was to keep caps lock led off all the time no matter
 how many times I pressed it. When using it as compose key I mean.
 
Doesn't seem to happen to me after setxkbmap -option compose:caps, the
caps lock led stays off.  What exactly are your xkb options? (please
provide the output of xprop -root _XKB_RULES_NAMES).

Cheers,
Julien



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



xterm_231-1_i386.changes ACCEPTED

2008-01-06 Thread Debian Installer

Accepted:
xterm_231-1.diff.gz
  to pool/main/x/xterm/xterm_231-1.diff.gz
xterm_231-1.dsc
  to pool/main/x/xterm/xterm_231-1.dsc
xterm_231-1_i386.deb
  to pool/main/x/xterm/xterm_231-1_i386.deb
xterm_231.orig.tar.gz
  to pool/main/x/xterm/xterm_231.orig.tar.gz


Override entries for your package:
xterm_231-1.dsc - source x11
xterm_231-1_i386.deb - optional x11

Announcing to [EMAIL PROTECTED]
Closing bugs: 459014 


Thank you for your contribution to Debian.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#454304: Transparency

2008-01-06 Thread Ties

Also, everything that's supposed to be transparent is now opaque.



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Processed: tagging 172890

2008-01-06 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.10.12
 tags 172890 + pending
Bug#172890: libxaw6: passwords visible in widgets [fixed in libxaw7]
Tags were: upstream security wontfix
Tags added: pending


End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Processed: tagging 457980

2008-01-06 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.10.12
 tags 457980 etch
Bug#457980: x11-common should conflict with xserver-s3v
There were no tags set.
Tags added: etch


End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#458301: marked as done (xbase-clients: /usr/bin/xrdb is missing)

2008-01-06 Thread Debian Bug Tracking System
Your message dated Sun, 6 Jan 2008 13:06:02 +0100
with message-id [EMAIL PROTECTED]
and subject line Bug#458301: xbase-clients: /usr/bin/xrdb is missing
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
Package: xbase-clients
Version: 1:7.2.ds2-2
Severity: normal

Did an 'aptitude update' and 'aptitude dist-upgrade' followed by a reboot to 
examine a piece of hardware.  Upon logging in to a gnome session I received an 
error 'xrdb command not found; X resource not merged.'.  Looked at local 
filesystem and xrdb was indeed missing.  Version 7.2.ds2-2 of xbase-clients was 
installed.  'dpkg -L xbase-clients | grep xrdb' came up with one xrdb related 
file, but it wasn't /usr/bin/xrdb.  I manually installed the same version of 
xbase-clients using 'dpkg -i' and /usr/bin/xrdb is now installed.

I'm not sure what happened here, but am reporting it none the less.  I see that 
xbase-clients_7.2.ds2-2_i386.deb does indeed contain xrdb and it is installed 
properly using dpkg.  It's possible that there was an install problem when 
xbase-clients was last updated by aptitude.  I don't know.  This bug can 
probably be closed upon receipt.  I just wanted to note the issue in case it 
becomes an issue on other systems.

Partial .xsession-errors included showing that xrdb was missing:

Xsession: warning: xrdb command not found; X resources not merged.

** (process:3643): WARNING **: can't lock memory: Cannot allocate memory
WARNING: not using secure memory for passwords
SESSION_MANAGER=local/varroa:/tmp/.ICE-unix/3643

** (gnome-settings-daemon:3705): WARNING **: The system configuration changed - 
but we remain silent


** (gnome-settings-daemon:3705): WARNING **: Could not execute xrdb -nocpp 
-merge: Failed to execute child process xrdb (No such file or directory)

** (gnome-settings-daemon:3705): WARNING **: Could not execute xrdb -merge: 
Failed to execute child process xrdb (No such file or directory)
 

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)

Kernel: Linux 2.6.18-4-686 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages xbase-clients depends on:
ii  cpp 4:4.2.1-6The GNU C preprocessor (cpp)
ii  libc6   2.7-4GNU C Library: Shared libraries
ii  libfontconfig1  2.4.2-1.2generic font configuration library
ii  libfreetype62.3.5-1+b1   FreeType 2 font engine, shared lib
ii  libfs6  2:1.0.0-4X11 Font Services library
ii  libgl1-mesa-glx [libgl1 7.0.2-2  A free implementation of the OpenG
ii  libice6 2:1.0.4-1X11 Inter-Client Exchange library
ii  libpng12-0  1.2.15~beta5-3   PNG library - runtime
ii  libsm6  2:1.0.3-1+b1 X11 Session Management library
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxau6 1:1.0.3-2X11 authorisation library
ii  libxaw7 2:1.0.4-1X11 Athena Widget library
ii  libxcursor1 1:1.1.9-1X cursor management library
ii  libxext61:1.0.3-2X11 miscellaneous extension librar
ii  libxft2 2.1.12-2 FreeType-based font drawing librar
ii  libxi6  2:1.1.3-1X11 Input extension library
ii  libxinerama11:1.0.2-1X11 Xinerama extension library
ii  libxkbfile1 1:1.0.4-1X11 keyboard file manipulation lib
ii  libxmu6 1:1.0.3-1X11 miscellaneous utility library
ii  libxmuu11:1.0.3-1X11 miscellaneous micro-utility li
ii  libxrandr2  2:1.2.2-1X11 RandR extension library
ii  libxrender1 1:0.9.4-1X Rendering Extension client libra
ii  libxss1 1:1.1.2-1X11 Screen Saver extension library
ii  libxt6  1:1.0.5-3X11 toolkit intrinsics library
ii  libxtrap6   1:1.0.0-4X11 event trapping extension libra
ii  libxtst62:1.0.3-1X11 Testing -- Resource extension 
ii  libxv1  1:1.0.3-1X11 Video extension library
ii  libxxf86dga12:1.0.2-1X11 Direct Graphics Access extensi
ii  libxxf86vm1 1:1.0.1-2X11 XFree86 video mode extension l
ii  x11-common  1:7.2-5  X 

Bug#447519: marked as done (x11-common: [Xresources] doesn't support '*' as a 'common' wildcard)

2008-01-06 Thread Debian Bug Tracking System
Your message dated Sun, 6 Jan 2008 13:18:06 +0100
with message-id [EMAIL PROTECTED]
and subject line Bug#447519: xterm: [UXTerm] doesn't support *XTerm class in 
~/.Xresources
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
Package: xterm
Version: 229-1
Severity: normal

Hello,

I'm not sure this is really a bug, but I cannot find anything in the
documentation.  In case it's there, can anyone point me at it, please?

Basically, I'd like to define UXTerm resources in the *XTerm form
(which is perfectly valid for xterm itself), in order to avoid
resource duplications.  As I wrote, it seems that xterm supports
*XTerm, while uxterm no.

Thx, bye,
Gismo / Luca

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (500, 'testing'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.23-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages xterm depends on:
ii  libc6 2.6.1-6GNU C Library: Shared libraries
ii  libfontconfig12.4.2-1.3  generic font configuration library
ii  libice6   2:1.0.4-1  X11 Inter-Client Exchange library
ii  libncurses5   5.6+20071013-1 Shared libraries for terminal hand
ii  libsm62:1.0.3-1+b1   X11 Session Management library
ii  libx11-6  2:1.0.3-7  X11 client-side library
ii  libxaw7   2:1.0.4-1  X11 Athena Widget library
ii  libxext6  1:1.0.3-2  X11 miscellaneous extension librar
ii  libxft2   2.1.12-2   FreeType-based font drawing librar
ii  libxmu6   1:1.0.3-1  X11 miscellaneous utility library
ii  libxt61:1.0.5-3  X11 toolkit intrinsics library
ii  xbitmaps  1.0.1-2Base X bitmaps

Versions of packages xterm recommends:
pn  xutilsnone (no description available)

-- no debconf information


---End Message---
---BeginMessage---
On Sat, Oct 27, 2007 at 00:41:06 +0200, Luca Capello wrote:

 Since the problem isn't in xterm, but in Xt resources, I reassigned
 the bug to x11-common (because it's the package that ships
 /etc/X11/Xresources).

It doesn't ship libXt, though, which is what you're talking about here.

 I haven't closed this bug yet because I don't really know how to
 proceed: either we just close this bug as a not-a-bug or we leave this
 bug opened as a wishlist, tagging it upstream, too.  In the latter
 case, since I think it's quite difficult that Xt resources will be
 changed to use 'common' wildcards, the bug is eligible for a wontfix
 tag, too.
 
Indeed, the semantics of Xt resources won't change, so I don't think
it'd be useful to keep this bug open.  I'm thus closing it with this
message.

Cheers,
Julien

---End Message---


xterm: Changes to 'debian-unstable'

2008-01-06 Thread Julien Cristau
 debian/changelog |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit c0e2a9afa623dbe36adec326116184fd397939d3
Author: Julien Cristau [EMAIL PROTECTED]
Date:   Sun Jan 6 13:35:53 2008 +0100

Close the right bug in the 231-1 changelog entry.

diff --git a/debian/changelog b/debian/changelog
index 6997652..4935c26 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,7 +2,7 @@ xterm (231-1) unstable; urgency=low
 
   * New upstream release
 + undo change to getXtermCell() from patch #230 using PACK_PAIR macro
-  (closes: #459014, analysis by Caetano Jimenez Carezzato).
+  (closes: #459041, analysis by Caetano Jimenez Carezzato).
 
  -- Julien Cristau [EMAIL PROTECTED]  Sun, 06 Jan 2008 10:13:28 +0100
 


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#459041: marked as done (xterm: version 230-1 segfaults somewhere when involving cut and paste)

2008-01-06 Thread Debian Bug Tracking System
Your message dated Sun, 6 Jan 2008 13:34:14 +0100
with message-id [EMAIL PROTECTED]
and subject line Bug#459041: fixed in xterm 231-1
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
Package: xterm
Version: 230-1
Severity: grave
Justification: causes non-serious data loss

Cutting text somewhere in an xterm causes it to segfault with the most
recent upgrade.  It may involve either the cut or paste of long lines.
I'm pretty sure it happens as soon as I click the mouse to make a
selection, and can happen after a successful cut and paste or two.

I haven't yet restarted X, but that's not going to cause a dynamic
library inconsistency problem.

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'), (1, 
'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.23 (SMP w/2 CPU cores)
Locale: LANG=en_AU, LC_CTYPE=en_AU (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages xterm depends on:
ii  libc6 2.7-5  GNU C Library: Shared libraries
ii  libfontconfig12.5.0-2generic font configuration library
ii  libice6   2:1.0.4-1  X11 Inter-Client Exchange library
ii  libncurses5   5.6+20071215-1 Shared libraries for terminal hand
ii  libsm62:1.0.3-1+b1   X11 Session Management library
ii  libx11-6  2:1.0.3-7  X11 client-side library
ii  libxaw7   2:1.0.4-1  X11 Athena Widget library
ii  libxext6  1:1.0.3-2  X11 miscellaneous extension librar
ii  libxft2   2.1.12-2   FreeType-based font drawing librar
ii  libxmu6   1:1.0.3-1  X11 miscellaneous utility library
ii  libxt61:1.0.5-3  X11 toolkit intrinsics library
ii  xbitmaps  1.0.1-2Base X bitmaps

Versions of packages xterm recommends:
ii  xutils1:7.3+9X Window System utility programs m

-- no debconf information


---End Message---
---BeginMessage---
Source: xterm
Source-Version: 231-1

[resending this, as I typoed the bug number in the changelog
 --Julien Cristau]


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:

xterm_231-1.diff.gz
  to pool/main/x/xterm/xterm_231-1.diff.gz
xterm_231-1.dsc
  to pool/main/x/xterm/xterm_231-1.dsc
xterm_231-1_i386.deb
  to pool/main/x/xterm/xterm_231-1_i386.deb
xterm_231.orig.tar.gz
  to pool/main/x/xterm/xterm_231.orig.tar.gz



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 [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Julien Cristau [EMAIL PROTECTED] (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 [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 06 Jan 2008 10:13:28 +0100
Source: xterm
Binary: xterm
Architecture: source i386
Version: 231-1
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Julien Cristau [EMAIL PROTECTED]
Description: 
 xterm  - X terminal emulator
Closes: 459014
Changes: 
 xterm (231-1) unstable; urgency=low
 .
   * New upstream release
 + undo change to getXtermCell() from patch #230 using PACK_PAIR macro
   (closes: #459014, analysis by Caetano Jimenez Carezzato).
Files: 
 abaa888d8ea6ddae017583aa038d441d 805 x11 optional xterm_231-1.dsc
 b767d702e1464e16802b90c2187252c6 850863 x11 optional xterm_231.orig.tar.gz
 ce834ff2e604e239d1927a4ccddfbaa7 61449 x11 optional xterm_231-1.diff.gz
 cb7a210bd50a78163709eb1e8345b67a 462338 x11 optional xterm_231-1_i386.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)

iD8DBQFHgKpwmEvTgKxfcAwRAj8QAKChoJ12c5vuQVujQ3nAH/Z6juDGLwCghSEr
qHWQYQxaWKCncxFuV6Teyxg=
=FDQ+
-END PGP SIGNATURE-



---End Message---


Bug#459381: marked as done (xterm: segmentation fault when selecting multi-line text)

2008-01-06 Thread Debian Bug Tracking System
Your message dated Sun, 6 Jan 2008 13:34:14 +0100
with message-id [EMAIL PROTECTED]
and subject line Bug#459041: fixed in xterm 231-1
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
Package: xterm
Version: 230-1
Severity: important

*** Please type your report below this line ***

Selecting more than one line crashes xterm. The crash depends on what
the xterm window contains.

Steps to reproduce:
1. Start xterm
2. 'cat test.txt' (see attachment) The xterm window should look like the
attached xterm-before-selection.png
3. Position the pointer to the end of the '--disable-rectangles' string
4. Start selecting text left and upwards

Result:

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0xb7a9f8c0 (LWP 24435)]
0x08075444 in ?? ()
(gdb) bt
#0  0x08075444 in ?? ()
#1  0x080b9044 in ?? ()
#2  0xbfe664b8 in ?? ()
#3  0x0804e543 in ?? ()
#4  0x080b7e68 in ?? ()
#5  0x0007 in ?? ()
#6  0x0035 in ?? ()
#7  0xbfe664d8 in ?? ()
#8  0x080b7d68 in ?? ()
#9  0xb7e5b558 in ?? () from /usr/lib/libXt.so.6
#10 0xbfe664e8 in ?? ()
#11 0x08050e36 in ?? ()
#12 0xbfe664d8 in ?? ()
#13 0x080b7d68 in ?? ()
#14 0xbfe664e8 in ?? ()
#15 0xb7e236a1 in XtWidgetToApplicationContext () from
/usr/lib/libXt.so.6
Backtrace stopped: previous frame inner to this frame (corrupt stack?)


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.23 (PREEMPT)
Locale: LANG=hu_HU, LC_CTYPE=hu_HU (charmap=ISO-8859-2)
Shell: /bin/sh linked to /bin/bash

Versions of packages xterm depends on:
ii  libc6 2.7-5  GNU C Library: Shared libraries
ii  libfontconfig12.4.2-1.2  generic font configuration library
ii  libice6   2:1.0.4-1  X11 Inter-Client Exchange library
ii  libncurses5   5.6+20071124-1 Shared libraries for terminal hand
ii  libsm62:1.0.3-1+b1   X11 Session Management library
ii  libx11-6  2:1.0.3-7  X11 client-side library
ii  libxaw7   2:1.0.4-1  X11 Athena Widget library
ii  libxext6  1:1.0.3-2  X11 miscellaneous extension librar
ii  libxft2   2.1.12-2   FreeType-based font drawing librar
ii  libxmu6   1:1.0.3-1  X11 miscellaneous utility library
ii  libxt61:1.0.5-3  X11 toolkit intrinsics library
ii  xbitmaps  1.0.1-2Base X bitmaps

Versions of packages xterm recommends:
ii  xutils  1:7.1.ds.3-1 X Window System utility programs

-- no debconf information

--disable-full-tgetent --disable-desktop --disable-setuid --disable-setgid 
--disable-imake --disable-active-icon --disable-ansi-color --disable-16-color 
--disable-blink-cursor --disable-c1-print --disable-bold-color 
--disable-color-class --disable-color-mode --disable-highlighting 
--disable-doublechars --disable-boxchars --disable-freetype --disable-sun-fkeys 
--disable-i18n --disable-initial-erase --disable-input-method 
--disable-maximize --disable-num-lock --disable-pty-handshake --disable-regex 
--disable-rightbar --disable-samename --disable-session-mgt --disable-tek4014 
--disable-vt52 --disable-rectangles --disable-ziconbeep --disable-leaks 
--disable-echo
inline: xterm-before-selection.png---End Message---
---BeginMessage---
Source: xterm
Source-Version: 231-1

[resending this, as I typoed the bug number in the changelog
 --Julien Cristau]


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:

xterm_231-1.diff.gz
  to pool/main/x/xterm/xterm_231-1.diff.gz
xterm_231-1.dsc
  to pool/main/x/xterm/xterm_231-1.dsc
xterm_231-1_i386.deb
  to pool/main/x/xterm/xterm_231-1_i386.deb
xterm_231.orig.tar.gz
  to pool/main/x/xterm/xterm_231.orig.tar.gz



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 [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Julien Cristau [EMAIL PROTECTED] (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 [EMAIL PROTECTED])


-BEGIN PGP SIGNED 

Bug#277832: marked as done (xterm: make xterm treat the primary selection exactly as gnome-terminal does)

2008-01-06 Thread Debian Bug Tracking System
Your message dated Sun, 6 Jan 2008 13:47:11 +0100
with message-id [EMAIL PROTECTED]
and subject line Bug#277832: #277832 xterm: make xterm treat the primary 
selection exactly as gnome-terminal does
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
Package: xterm
Version: 4.3.0.dfsg.1-8
Severity: normal

I open two uxterm's. In the first one, I type from zsh:

  echo \\u20ac

to get a Euro symbol. I double-click on this Euro symbol and paste it
(with the middle button) to the second uxterm. No problem: I get the
Euro symbol.

Now, I click in the first uxterm; the Euro symbol no longer appears
as selected (this is normal). I click with the middle button in the
second uxterm. But instead of getting the Euro symbol, I get a hash
(#).

I don't have this problem with ISO-8859-1 characters (éèê).

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (900, 'testing'), (200, 'unstable')
Architecture: powerpc (ppc)
Kernel: Linux 2.6.8
Locale: LANG=POSIX, LC_CTYPE=en_US.ISO8859-1

Versions of packages xterm depends on:
ii  libc6 2.3.2.ds1-16   GNU C Library: Shared libraries an
ii  libexpat1 1.95.6-8   XML parsing C library - runtime li
ii  libfontconfig12.2.3-1generic font configuration library
ii  libfreetype6  2.1.7-2.2  FreeType 2 font engine, shared lib
ii  libice6   4.3.0.dfsg.1-8 Inter-Client Exchange library
ii  libncurses5   5.4-4  Shared libraries for terminal hand
ii  libsm64.3.0.dfsg.1-8 X Window System Session Management
ii  libxaw7   4.3.0.dfsg.1-8 X Athena widget set library
ii  libxext6  4.3.0.dfsg.1-8 X Window System miscellaneous exte
ii  libxft2   2.1.2-6FreeType-based font drawing librar
ii  libxmu6   4.3.0.dfsg.1-8 X Window System miscellaneous util
ii  libxpm4   4.3.0.dfsg.1-8 X pixmap library
ii  libxrender1   0.8.3-7X Rendering Extension client libra
ii  libxt64.3.0.dfsg.1-8 X Toolkit Intrinsics
ii  xlibs 4.3.0.dfsg.1-8 X Window System client libraries m
ii  xlibs-data4.3.0.dfsg.1-8 X Window System client data

-- no debconf information

---End Message---
---BeginMessage---
Version: 230-1

On Tue, Jan  1, 2008 at 11:17:04 -0500, Thomas Dickey wrote:

 The keepSelection feature in patch #230 addresses this.
 
Thanks, marking as fixed in that version.

Cheers,
Julien

---End Message---


libxaw: Changes to 'debian-unstable'

2008-01-06 Thread Julien Cristau
 debian/changelog |5 -
 debian/control   |9 +
 2 files changed, 9 insertions(+), 5 deletions(-)

New commits:
commit f639d3f696524c27c4d2c7a5a3dc3bef4620ab3c
Author: Julien Cristau [EMAIL PROTECTED]
Date:   Sun Jan 6 14:47:30 2008 +0100

more debian/control updates

* Bump Standards-Version to 3.7.3.
* Add Vcs-Browser, and remove the XS- prefix from Vcs-Git.

diff --git a/debian/changelog b/debian/changelog
index c4610dc..9f74527 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,8 +9,10 @@ libxaw (2:1.0.4-2) UNRELEASED; urgency=low
 libxaw-headers packages, moving the contents of -headers to libxaw7-dev
 (closes: #172890).
   * Use ${binary:Version} instead of ${Source-Version}.
+  * Bump Standards-Version to 3.7.3.
+  * Add Vcs-Browser, and remove the XS- prefix from Vcs-Git.
 
- -- Julien Cristau [EMAIL PROTECTED]  Sun, 06 Jan 2008 14:42:24 +0100
+ -- Julien Cristau [EMAIL PROTECTED]  Sun, 06 Jan 2008 14:45:06 +0100
 
 libxaw (2:1.0.4-1) unstable; urgency=low
 
diff --git a/debian/control b/debian/control
index 5443615..add2cb2 100644
--- a/debian/control
+++ b/debian/control
@@ -4,8 +4,9 @@ Priority: optional
 Maintainer: Debian X Strike Force debian-x@lists.debian.org
 Uploaders: David Nusinow [EMAIL PROTECTED], Drew Parsons [EMAIL 
PROTECTED], Brice Goglin [EMAIL PROTECTED]
 Build-Depends: debhelper (= 5), libx11-dev (= 1:0.99.2-1), x11proto-core-dev 
(= 7.0.1-1), libxt-dev (= 1:0.99.1-1), libxmu-dev (= 1:0.99.1-1), libxpm-dev 
(= 1:3.5.3-1), pkg-config, ed, quilt, dpkg-dev (= 1.13.19)
-Standards-Version: 3.7.2
-XS-Vcs-Git: git://git.debian.org/git/pkg-xorg/lib/libxaw
+Standards-Version: 3.7.3
+Vcs-Git: git://git.debian.org/git/pkg-xorg/lib/libxaw
+Vcs-Browser: http://git.debian.org/?p=pkg-xorg/lib/libxaw.git
 
 Package: libxaw7
 Section: libs

commit 3e75bcab2dbdef63bc54afe1a323ab0390d62435
Author: Julien Cristau [EMAIL PROTECTED]
Date:   Sun Jan 6 14:42:50 2008 +0100

* Use ${binary:Version} instead of ${Source-Version}.

diff --git a/debian/changelog b/debian/changelog
index f41c873..c4610dc 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,8 +8,9 @@ libxaw (2:1.0.4-2) UNRELEASED; urgency=low
   * Stop building Xaw6.  Remove the libxaw6, libxaw6-dbg, libxaw6-dev and
 libxaw-headers packages, moving the contents of -headers to libxaw7-dev
 (closes: #172890).
+  * Use ${binary:Version} instead of ${Source-Version}.
 
- -- Julien Cristau [EMAIL PROTECTED]  Sun, 06 Jan 2008 11:45:39 +0100
+ -- Julien Cristau [EMAIL PROTECTED]  Sun, 06 Jan 2008 14:42:24 +0100
 
 libxaw (2:1.0.4-1) unstable; urgency=low
 
diff --git a/debian/control b/debian/control
index a3b0b75..5443615 100644
--- a/debian/control
+++ b/debian/control
@@ -26,7 +26,7 @@ Package: libxaw7-dbg
 Section: libdevel
 Architecture: any
 Priority: extra
-Depends: ${shlibs:Depends}, ${misc:Depends}, x11-common, libxaw7 (= 
${Source-Version})
+Depends: ${shlibs:Depends}, ${misc:Depends}, x11-common, libxaw7 (= 
${binary:Version})
 Description: X11 Athena Widget library (debug package)
  libXaw7 provides the second version of Xaw, the Athena Widgets tookit,
  which is largely used by legacy X applications.  This version is the
@@ -44,7 +44,7 @@ Description: X11 Athena Widget library (debug package)
 Package: libxaw7-dev
 Section: libdevel
 Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, x11-common, libxaw7 (= 
${Source-Version}), libx11-dev, libxmu-dev, libxpm-dev, x11proto-core-dev
+Depends: ${shlibs:Depends}, ${misc:Depends}, x11-common, libxaw7 (= 
${binary:Version}), libx11-dev, libxmu-dev, libxpm-dev, x11proto-core-dev
 Conflicts: libxaw6-dev, libxaw8-dev
 Replaces: libxaw6-dev, libxaw8-dev, libxaw-headers ( 2:1.0.4-2)
 Description: X11 Athena Widget library (development headers)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



libxt: Changes to 'debian-unstable'

2008-01-06 Thread Julien Cristau
 debian/changelog|8 
 debian/patches/02_dont_export_private_deps.diff |   13 +
 debian/patches/series   |1 +
 3 files changed, 22 insertions(+)

New commits:
commit b71240dd3ebd91f4b2d3bd385c056a51e9425614
Author: Julien Cristau [EMAIL PROTECTED]
Date:   Sun Jan 6 15:28:52 2008 +0100

Fix xt.pc.in to not export useless dependencies.

* Don't export dependencies on libSM and libX11 in the Requires field of
  xt.pc.  They're already in Requires.private, and do more harm than good in
  Requires.  Thanks to Stephen Gran and Margarita Manterola for noticing.

diff --git a/debian/changelog b/debian/changelog
index 63e5c05..299d701 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+libxt (1:1.0.5-4) UNRELEASED; urgency=low
+
+  * Don't export dependencies on libSM and libX11 in the Requires field of
+xt.pc.  They're already in Requires.private, and do more harm than good in
+Requires.  Thanks to Stephen Gran and Margarita Manterola for noticing.
+
+ -- Julien Cristau [EMAIL PROTECTED]  Sun, 06 Jan 2008 15:26:40 +0100
+
 libxt (1:1.0.5-3) unstable; urgency=low
 
   * Add patch to libXt's headers to add _XFUNCPROTO{BEGIN,END} around a bunch
diff --git a/debian/patches/02_dont_export_private_deps.diff 
b/debian/patches/02_dont_export_private_deps.diff
new file mode 100644
index 000..a945a86
--- /dev/null
+++ b/debian/patches/02_dont_export_private_deps.diff
@@ -0,0 +1,13 @@
+diff --git a/xt.pc.in b/xt.pc.in
+index 3ea8c6f..90a576c 100644
+--- a/xt.pc.in
 b/xt.pc.in
+@@ -7,7 +7,7 @@ [EMAIL PROTECTED]@
+ Name: Xt
+ Description: X Toolkit Library
+ Version: @VERSION@
+-Requires: xproto x11 sm
++Requires: xproto
+ Requires.private: x11 sm
+ Cflags: -I${includedir}
+ Libs: -L${libdir} -lXt
diff --git a/debian/patches/series b/debian/patches/series
index d58f4b3..730a7ea 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1 +1,2 @@
 01_use_extern_C_in_headers.diff
+02_dont_export_private_deps.diff


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#459431: with Depth 16, blank display with playing video file

2008-01-06 Thread Hideki Yamane
Package: xserver-xorg-video-ati
Version: 1:6.7.198~git20080102.30cab1db-1
Severity: normal

Hi,
  
 When I uses /etc/X11/xorg.conf as DefaultDepth  16, I cannot play 
 any video files with totem/xine/mplayer, I can see only blank display. 
 See attached screenshots.


--- System information. ---
Architecture: i386
Kernel:   Linux 2.6.18-13etch4-ccs

Debian Release: lenny/sid
  500 unstablewww.debian-multimedia.org 
  500 unstablecdn.debian.or.jp 
  500 stable  security.debian.org 
1 experimentalcdn.debian.or.jp 

--- Package information. ---
Depends(Version) | Installed
-+-===
libc6 (= 2.7-1) | 2.7-5
xserver-xorg-core (= 2:1.4) | 2:1.4.1~git20071212-2


attachment: Screenshot-MPlayer.pngattachment: Screenshot-digest0.mov.png

Bug#459431: with Depth 16, blank display with playing video file

2008-01-06 Thread Brice Goglin
forwarded 459431 https://bugs.freedesktop.org/show_bug.cgi?id=13924
thank you



Hideki Yamane wrote:
 Package: xserver-xorg-video-ati
 Version: 1:6.7.198~git20080102.30cab1db-1
 Severity: normal

 Hi,
   
  When I uses /etc/X11/xorg.conf as DefaultDepth  16, I cannot play 
  any video files with totem/xine/mplayer, I can see only blank display. 
  See attached screenshots.
   

The same problem has been reported upstream at the URL above, no
solution so far.

We need your config and log anyway, please send the whole output of
/usr/share/bug/xserver-xorg/script 31
(you should not use reportbug-ng since it does not include this output
automatically).

Thanks,
Brice




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Processed: Re: Bug#459431: with Depth 16, blank display with playing video file

2008-01-06 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 forwarded 459431 https://bugs.freedesktop.org/show_bug.cgi?id=13924
Bug#459431: with Depth 16, blank display with playing video file
Noted your statement that Bug has been forwarded to 
https://bugs.freedesktop.org/show_bug.cgi?id=13924.

 thank you
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#459428: xserver-xorg-video-ati: tossed event which came in late

2008-01-06 Thread Brice Goglin
Xavier Bestel wrote:
 since the very latest vesrion of this package (didn't happen in the
 previous experimental version),

with 1:6.7.198~git20080101.f65374f5-1 ? or
1:6.7.198~git20071223.ad3325f6-1 ? There are not many changes for your
hardware that could explain this behavior.

 my Xorg.log is full of:
   tossed event which came in late
   mieqEnequeue: out-of-order valuator event; dropping.
 It apparently doesn't cause more harm than usual.


Does it happen all the time, even when idle? Or only when running
compiz, 3d applications, anything CPU intensive that could prevent the
server from processing events fast enough?

Brice




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



libxmu: Changes to 'debian-unstable'

2008-01-06 Thread Julien Cristau
 debian/changelog|6 ++
 debian/control  |2 
 debian/patches/01_dont_export_private_deps.diff |   26 
 debian/patches/series   |1 
 debian/rules|6 +-
 debian/xsfbs/xsfbs.mk   |   50 
 debian/xsfbs/xsfbs.sh   |7 ---
 7 files changed, 54 insertions(+), 44 deletions(-)

New commits:
commit 46dfb651624a7c8c789dbb140f72a3eb527f376f
Author: Julien Cristau [EMAIL PROTECTED]
Date:   Sun Jan 6 16:30:08 2008 +0100

Update changelog.

diff --git a/debian/changelog b/debian/changelog
index 0421121..0f20212 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -6,11 +6,12 @@ libxmu (2:1.0.3-2) UNRELEASED; urgency=low
   * Don't export private dependencies in xmu.pc and xmuu.pc. These
 dependencies are handled by Requires.private.
   * Due to the above, build-depend on quilt and apply the xsfbs patch rules.
+  * Update xsfbs to the latest version as of 2008-01-06.
 
   [ Timo Aaltonen ]
   * Bump the epoch so that this can be synced to Ubuntu in the future.
 
- -- Julien Cristau [EMAIL PROTECTED]  Sun, 06 Jan 2008 16:26:30 +0100
+ -- Julien Cristau [EMAIL PROTECTED]  Sun, 06 Jan 2008 16:29:36 +0100
 
 libxmu (1:1.0.3-1) unstable; urgency=low
 

commit b90ed5bc28338aab500f6a6d52a2189bcc14fb44
Author: Julien Cristau [EMAIL PROTECTED]
Date:   Sun Jan 6 16:27:16 2008 +0100

Don't export private dependencies in xmu.pc and xmuu.pc.

These dependencies are handled by Requires.private.
Build-depend on quilt and apply the xsfbs patch rules.

diff --git a/debian/changelog b/debian/changelog
index 24dcce2..0421121 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,11 +3,14 @@ libxmu (2:1.0.3-2) UNRELEASED; urgency=low
   [ Julien Cristau ]
   * Make libxmu*-dev depend on libxmu-headers (= ${source:Version}).  Thanks,
 Josh Triplett.
+  * Don't export private dependencies in xmu.pc and xmuu.pc. These
+dependencies are handled by Requires.private.
+  * Due to the above, build-depend on quilt and apply the xsfbs patch rules.
 
   [ Timo Aaltonen ]
   * Bump the epoch so that this can be synced to Ubuntu in the future.
 
- -- Timo Aaltonen [EMAIL PROTECTED]  Tue, 24 Apr 2007 12:02:43 +0300
+ -- Julien Cristau [EMAIL PROTECTED]  Sun, 06 Jan 2008 16:26:30 +0100
 
 libxmu (1:1.0.3-1) unstable; urgency=low
 
diff --git a/debian/control b/debian/control
index 8d8730e..7037085 100644
--- a/debian/control
+++ b/debian/control
@@ -3,7 +3,7 @@ Section: x11
 Priority: optional
 Maintainer: Debian X Strike Force debian-x@lists.debian.org
 Uploaders: David Nusinow [EMAIL PROTECTED], Branden Robinson [EMAIL 
PROTECTED], Fabio M. Di Nitto [EMAIL PROTECTED]
-Build-Depends: debhelper (= 5.0.0), libx11-dev (= 1:0.99.2-1), libxt-dev (= 
1:0.99.1-1), libxext-dev (= 1:0.99.1-1), pkg-config
+Build-Depends: debhelper (= 5.0.0), libx11-dev (= 1:0.99.2-1), libxt-dev (= 
1:0.99.1-1), libxext-dev (= 1:0.99.1-1), pkg-config, quilt
 Standards-Version: 3.7.2
 XS-Vcs-Git: git://git.debian.org/git/pkg-xorg/lib/libxmu
 XS-Vcs-Browser: http://git.debian.org/?p=pkg-xorg/lib/libxmu.git
diff --git a/debian/patches/01_dont_export_private_deps.diff 
b/debian/patches/01_dont_export_private_deps.diff
new file mode 100644
index 000..64a5828
--- /dev/null
+++ b/debian/patches/01_dont_export_private_deps.diff
@@ -0,0 +1,26 @@
+diff --git a/xmu.pc.in b/xmu.pc.in
+index a086f83..15dabbf 100644
+--- a/xmu.pc.in
 b/xmu.pc.in
+@@ -6,7 +6,7 @@ [EMAIL PROTECTED]@
+ Name: Xmu
+ Description: Xmu Library
+ Version: @PACKAGE_VERSION@
+-Requires: xproto x11 xt
++Requires: xproto
+ Requires.private: x11 xt xext
+ Cflags: -I${includedir}
+ Libs: -L${libdir} -lXmu
+diff --git a/xmuu.pc.in b/xmuu.pc.in
+index 1e91ac4..72fa5f9 100644
+--- a/xmuu.pc.in
 b/xmuu.pc.in
+@@ -6,7 +6,7 @@ [EMAIL PROTECTED]@
+ Name: Xmuu
+ Description: Mini Xmu Library
+ Version: @PACKAGE_VERSION@
+-Requires: xproto x11
++Requires: xproto
+ Requires.private: x11
+ Cflags: -I${includedir}
+ Libs: -L${libdir} -lXmuu
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 000..e22712f
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+01_dont_export_private_deps.diff
diff --git a/debian/rules b/debian/rules
index 73f3782..0dfa02d 100755
--- a/debian/rules
+++ b/debian/rules
@@ -29,7 +29,7 @@ else
 endif
 
 
-build: build-stamp
+build: patch build-stamp
 build-stamp:
dh_testdir
 
@@ -42,7 +42,7 @@ build-stamp:
 
touch build-stamp
 
-clean:
+clean: xsfclean
dh_testdir
dh_testroot
rm -f build-stamp
@@ -64,7 +64,7 @@ install: build
cd obj-$(DEB_BUILD_GNU_TYPE)  $(MAKE) DESTDIR=$(CURDIR)/debian/tmp 
install
 
 # Build architecture-dependent files here.
-binary-arch: build install
+binary-arch: install
dh_testdir
dh_testroot
 

commit 

Bug#459371: Caps lock led turns on/off when c.l. is used as compose key (it shouldn't)

2008-01-06 Thread Diego Escalante Urrelo
On 1/6/08, Julien Cristau [EMAIL PROTECTED] wrote:
 On Sat, Jan  5, 2008 at 18:10:56 -0500, Diego Escalante Urrelo wrote:

  Recently (I assume since Xorg 7.3) the caps lock led turns on/off when
  hit. Now, that's not a problem on average joe's case, but if you are
  using caps lock as compose key then you find out that you have a
  constant blinking on your keyboard when typing something.
  The old behaviour was to keep caps lock led off all the time no matter
  how many times I pressed it. When using it as compose key I mean.
 
 Doesn't seem to happen to me after setxkbmap -option compose:caps, the
 caps lock led stays off.  What exactly are your xkb options? (please
 provide the output of xprop -root _XKB_RULES_NAMES).


[EMAIL PROTECTED]:~$ xprop -root _XKB_RULES_NAMES
_XKB_RULES_NAMES(STRING) = xorg, pc105, gb, intl, compose:caps

I used gnome-keyboard-properties to set caps as compose. If I use your
command the led remains off and the output of the above command is the
same.

Weird!



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#459428: xserver-xorg-video-ati: tossed event which came in late

2008-01-06 Thread Xavier Bestel

On dim, 2008-01-06 at 16:24 +0100, Brice Goglin wrote:
 Xavier Bestel wrote:
  since the very latest vesrion of this package (didn't happen in the
  previous experimental version),
 
 with 1:6.7.198~git20080101.f65374f5-1 ? or
 1:6.7.198~git20071223.ad3325f6-1 ?

It didn't happen with 1:6.7.198~git20080101.f65374f5-1 but now it
happens with 1:6.7.198~git20080102.30cab1db-1

 There are not many changes for your
 hardware that could explain this behavior.

Ah, I changed 1 thing in xorg.conf in-between: I uncommented Option
AGPMode 4 (it looks like it helps with my lockups, so far so good).

  my Xorg.log is full of:
  tossed event which came in late
  mieqEnequeue: out-of-order valuator event; dropping.
  It apparently doesn't cause more harm than usual.
 
 
 Does it happen all the time, even when idle? Or only when running
 compiz, 3d applications, anything CPU intensive that could prevent the
 server from processing events fast enough?

I'm running compiz, nothing else extravagant. Apparently it happened at
startup, because now I'm watching the log and it doesn't happen any
more, even when moving/resizing windows.

Xav





-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#459454: compiz refuses to work (window boarder disappear, windows are unmoveable)

2008-01-06 Thread Juergen Kosel
Package: compiz
Version: 0.6.3~git20071208.25941d14-1
Severity: normal

Hello,
after update from stable to testing, compiz refuses to work anymore.
Which means, that if compiz is started with `compiz --replace` the
boarders of all windows (xterms, etc) disapear and the windows become
unmoveable.

The following is the output of compiz:
compiz --replace
Checking for Xgl: not present.
Detected PCI ID for VGA: 01:00.0 0300: 1002:5b60 (prog-if 00 [VGA])
Checking for texture_from_pixmap: not present.
Trying again with indirect rendering:
Checking for texture_from_pixmap: present.
Checking for non power of two support: present.
Checking for Composite extension: present.
Comparing resolution (1280x1024) to maximum 3D texture size (2048):
Passed.
Checking for nVidia: not present.
Checking for FBConfig: present.
Checking for Xgl: not present.
Starting gtk-window-decorator
/usr/bin/compiz.real (cube) - Warn: Failed to load slide: freedesktop

Due to the line Checking for Xgl: not present., I guess that there is
something foul with package dependencies.
The graphic card is an ATI Radeon X300 and the X11 device driver is RADEON.

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.22-3-amd64 (SMP w/1 CPU core)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages compiz depends on:
ii  compiz-core 0.6.3~git20071208.25941d14-1 OpenGL window and compositing mana
ii  compiz-gnom 0.6.3~git20071208.25941d14-1 OpenGL window and compositing mana
ii  compiz-gtk  0.6.3~git20071208.25941d14-1 OpenGL window and compositing mana
ii  compiz-plug 0.6.3~git20071208.25941d14-1 OpenGL window and compositing mana

compiz recommends no packages.

-- no debconf information

-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



xkb-data: Changes to 'debian-unstable'

2008-01-06 Thread Mohammed Adnène Trojette
 debian/xkb-data.postinst |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit b4d73550cc7ca068f17bd146c7033d0ba45330cc
Author: Mohammed Adnene Trojette [EMAIL PROTECTED]
Date:   Sun Jan 6 18:33:04 2008 +0100

Use find -not -name instead of find | grep -v.

diff --git a/debian/xkb-data.postinst b/debian/xkb-data.postinst
index 3f1ccfe..adb634d 100644
--- a/debian/xkb-data.postinst
+++ b/debian/xkb-data.postinst
@@ -8,7 +8,7 @@ case $1 in
 configure)
 if [ -d /etc/X11/xkb/ -a `find /etc/X11/xkb/ | wc -l` -ne 1 ]
 then
-   find /etc/X11/xkb/* | grep -v '/etc/X11/xkb/base.xml' | xargs 
--no-run-if-empty rm
+   find /etc/X11/xkb/* -not -name base.xml* | xargs 
--no-run-if-empty rm
 fi
 ;;
 


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#459454: compiz refuses to work (window boarder disappear, windows are unmoveable)

2008-01-06 Thread Brice Goglin
Juergen Kosel wrote:
 Package: compiz
 Version: 0.6.3~git20071208.25941d14-1
 Severity: normal

 Hello,
 after update from stable to testing, compiz refuses to work anymore.
 Which means, that if compiz is started with `compiz --replace` the
 boarders of all windows (xterms, etc) disapear and the windows become
 unmoveable.

 The following is the output of compiz:
 compiz --replace
 Checking for Xgl: not present.
 Detected PCI ID for VGA: 01:00.0 0300: 1002:5b60 (prog-if 00 [VGA])
 Checking for texture_from_pixmap: not present.
 Trying again with indirect rendering:
 Checking for texture_from_pixmap: present.
 Checking for non power of two support: present.
 Checking for Composite extension: present.
 Comparing resolution (1280x1024) to maximum 3D texture size (2048):
 Passed.
 Checking for nVidia: not present.
 Checking for FBConfig: present.
 Checking for Xgl: not present.
 Starting gtk-window-decorator
 /usr/bin/compiz.real (cube) - Warn: Failed to load slide: freedesktop

 Due to the line Checking for Xgl: not present., I guess that there is
 something foul with package dependencies.
   

This Xgl check is only here to load compiz in a different way when Xgl
is running.

You're probably missing some plugins. Make sure decoration is loaded.
You can use ccsm (package compizconfig-settings-manager) to select it
(or gconf if you like it, see http://bgoglin.livejournal.com/11253.html).

Brice




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



x11-apps: Changes to 'debian-unstable'

2008-01-06 Thread Julien Cristau
 bitmap/BitEdit.c| 1128 +
 bitmap/Bitmap-color.ad  |   19 
 bitmap/Bitmap-nocase.ad |  233 +
 bitmap/Bitmap.ad|  229 +
 bitmap/Bitmap.c | 1950 
 bitmap/Bitmap.h |  286 ++
 bitmap/BitmapP.h|  211 +
 bitmap/COPYING  |   12 
 bitmap/ChangeLog|  267 ++
 bitmap/CutPaste.c   |  207 +
 bitmap/Dashes   |4 
 bitmap/Dialog.c |  202 +
 bitmap/Dialog.h |   57 
 bitmap/Down |   13 
 bitmap/Excl |   17 
 bitmap/FlipHoriz|   13 
 bitmap/FlipVert |   13 
 bitmap/Fold |   13 
 bitmap/Graphics.c   | 1575 +
 bitmap/Handlers.c   |  678 +
 bitmap/Left |   13 
 bitmap/Makefile.am  |  151 +
 bitmap/Makefile.in  |  933 +++
 bitmap/ReqMach.c|  263 ++
 bitmap/Requests.h   |   87 
 bitmap/Right|   13 
 bitmap/RotateLeft   |   13 
 bitmap/RotateRight  |   13 
 bitmap/Stipple  |4 
 bitmap/Term |   14 
 bitmap/Up   |   13 
 bitmap/aclocal.m4   | 1573 +
 bitmap/atobm.c  |  296 ++
 bitmap/autogen.sh   |   13 
 bitmap/bitmap.icon  |   14 
 bitmap/bitmap.man   |  656 +
 bitmap/bmtoa.c  |  216 +
 bitmap/compile  |  142 +
 bitmap/config.guess | 1510 
 bitmap/config.h.in  |   34 
 bitmap/config.sub   | 1619 +
 bitmap/configure| 5807 
 bitmap/configure.ac |   66 
 bitmap/depcomp  |  530 
 bitmap/install-sh   |  323 ++
 bitmap/missing  |  360 ++
 debian/changelog|6 
 debian/control  |   23 
 debian/rules|   12 
 49 files changed, 21823 insertions(+), 21 deletions(-)

New commits:
commit a17e1be1339a477ef7b41e9ae5deca81d0ea2432
Author: Julien Cristau [EMAIL PROTECTED]
Date:   Sun Jan 6 18:46:30 2008 +0100

* Re-add bitmap (closes: #445097).

diff --git a/bitmap/AUTHORS b/bitmap/AUTHORS
new file mode 100644
index 000..e69de29
diff --git a/bitmap/BitEdit.c b/bitmap/BitEdit.c
new file mode 100644
index 000..ee850d8
--- /dev/null
+++ b/bitmap/BitEdit.c
@@ -0,0 +1,1128 @@
+/* $Xorg: BitEdit.c,v 1.4 2001/02/09 02:05:28 xorgcvs Exp $ */
+/*
+
+Copyright 1989, 1998  The Open Group
+
+Permission to use, copy, modify, distribute, and sell this software and its
+documentation for any purpose is hereby granted without fee, provided that
+the above copyright notice appear in all copies and that both that
+copyright notice and this permission notice appear in supporting
+documentation.
+
+The above copyright notice and this permission notice shall be included
+in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS
+OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR
+OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
+ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+OTHER DEALINGS IN THE SOFTWARE.
+
+Except as contained in this notice, the name of The Open Group shall
+not be used in advertising or otherwise to promote the sale, use or
+other dealings in this Software without prior written authorization
+from The Open Group.
+
+*/
+/* $XFree86: xc/programs/bitmap/BitEdit.c,v 1.6tsi Exp $ */
+
+/*
+ * Author:  Davor Matic, MIT X Consortium
+ */
+
+
+
+
+#include stdio.h
+#include stdlib.h
+#include X11/Intrinsic.h
+#include X11/StringDefs.h
+#include X11/Xaw/Paned.h
+#include X11/Xaw/Form.h
+#include X11/Xaw/Box.h
+#include X11/Xaw/Command.h
+#include X11/Xaw/Toggle.h
+#include X11/Xaw/MenuButton.h
+#include X11/Xaw/SimpleMenu.h
+#include X11/Xaw/SmeLine.h
+#include X11/Xaw/SmeBSB.h
+#include X11/Xmu/SysUtil.h
+#include Bitmap.h
+
+#include X11/bitmaps/xlogo16
+
+static char *usage = [-options ...] filename\n\
+\n\
+where options include all standard toolkit options plus:\n\
+ -size WIDTHxHEIGHT\n\
+ -sw dimension\n\
+ -sh dimension\n\
+ -gt dimension\n\
+ -grid, +grid\n\
+ -axes, +axes\n\
+ -dashed, +dashed\n\
+ -stippled, +stippled\n\
+ -proportional, +proportional\n\
+ -basename basename\n\
+ -dashes filename\n\
+ -stipple filename\n\
+ -hl color\n\
+ -fr color\n\
+\n\
+The default WIDTHxHEIGHT is 16x16.\n;
+
+static XrmOptionDescRec options[] = {
+  { -axes,   *bitmap.axes, XrmoptionNoArg, True},
+  { +axes,   *bitmap.axes, XrmoptionNoArg, False},
+  { -basename,*bitmap.basename,XrmoptionSepArg,NULL},
+  { -dashed, *bitmap.dashed,   XrmoptionNoArg, True},
+  { +dashed, *bitmap.dashed,   XrmoptionNoArg, False},
+  { -dashes, *bitmap.dashes,   XrmoptionSepArg,NULL},
+ 

Bug#458858: old xserver-xorg-video-intel 2:2.1.1-4 doesn't help either

2008-01-06 Thread Ondrej Certik
So I installed the older driver:

$ dpkg -l xserver-xorg-video-intel
Desired=Unknown/Install/Remove/Purge/Hold
|
Status=Not/Installed/Config-files/Unpacked/Failed-config/Half-installed
|/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err:
uppercase=bad)
||/ Name   VersionDescription
+++-==-==-
hi  xserver-xorg-v 2:2.1.1-4  X.Org X server -- Intel i8xx, i9xx
display d


But it also hangs, as it used to hang, when this driver was the newest
one in sid: black screen, with the mouse pointer on and off
periodically. This used to do, then I upgraded to newer intel,
with the problems reported in this thread.

Note: I am not sitting at this computer physically - I am only 
administering it over ssh and forwarding all complains here. :)

I switched to vesa now.

Also, most of the day, there were someone else running windows, 
without problems. So I don't think it's a hardware problem. Unless
windows messup something, but I don't think so.

It can also be a problem in the kernel 2.6.21. I noticed today (the
previous weeks were fine):

Jan  6 18:06:52 dabl kernel: Unbalanced enable for IRQ 17
Jan  6 18:06:52 dabl kernel: BUG: at kernel/irq/manage.c:158
enable_irq()
Jan  6 18:06:52 dabl kernel:  [c014b54c] enable_irq+0x6e/0xa2
Jan  6 18:06:52 dabl kernel:  [f8ba6da7] probe_hwif+0x5c2/0x693
[ide_core]
Jan  6 18:06:52 dabl kernel:  [f8ba954f]
do_ide_setup_pci_device+0x37e/0x3d4 [ide_core]
Jan  6 18:06:52 dabl kernel:  [f8ba76e5]
probe_hwif_init_with_fixup+0xe/0x88 [ide_core]
Jan  6 18:06:52 dabl kernel:  [c0190007] dquot_alloc_space+0xf4/0x13c
Jan  6 18:06:52 dabl kernel:  [f8ba967a]
ide_setup_pci_device+0x43/0x75 [ide_core]
Jan  6 18:06:52 dabl kernel:  [f8838010] jmicron_init_one+0xf/0x12
[jmicron]
Jan  6 18:06:52 dabl kernel:  [c01d452f] pci_device_probe+0x36/0x57
Jan  6 18:06:52 dabl kernel:  [c0227b06] really_probe+0xbd/0x146
Jan  6 18:06:52 dabl kernel:  [c0227bd3] driver_probe_device+0x44/0xa5
Jan  6 18:06:52 dabl kernel:  [c0227cb7] __driver_attach+0x0/0x79
Jan  6 18:06:52 dabl kernel:  [c0227cfd] __driver_attach+0x46/0x79
Jan  6 18:06:52 dabl kernel:  [c02271ae] bus_for_each_dev+0x37/0x59
Jan  6 18:06:52 dabl kernel:  [c022798e] driver_attach+0x16/0x18
Jan  6 18:06:52 dabl kernel:  [c0227cb7] __driver_attach+0x0/0x79
Jan  6 18:06:52 dabl kernel:  [c0227460] bus_add_driver+0x5e/0x15f
Jan  6 18:06:52 dabl kernel:  [c01d468f] __pci_register_driver
+0x6b/0x97
Jan  6 18:06:52 dabl kernel:  [c013ed92] sys_init_module+0x1698/0x17cf
Jan  6 18:06:52 dabl kernel:  [f8843000] uhci_hcd_init+0x0/0xa8
[uhci_hcd]
Jan  6 18:06:52 dabl kernel:  [c015b75c] do_mmap_pgoff+0x564/0x6c4
Jan  6 18:06:52 dabl kernel:  [f8ba50cf]
ide_config_drive_speed+0x0/0x31e [ide_core]
Jan  6 18:06:52 dabl kernel:  [c0103d8c] syscall_call+0x7/0xb
Jan  6 18:06:52 dabl kernel:  ===
Jan  6 18:06:52 dabl kernel: ide0 at 0xbc00-0xbc07,0xb882 on irq 17
Jan  6 18:06:52 dabl kernel: Probing IDE interface ide1...


That could be related to the old problem with the jmicron driver, that
was famous for not working with 2.6.18 kernels on intel core duo. So
I'll try to upgrade to 2.6.23.

This computer is giving me a headache... I welcome any tips. :)

Ondrej




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#459431: with Depth 16, blank display with playing video file

2008-01-06 Thread Brice Goglin
Hideki Yamane wrote:
 Hi,

 On Sun, 06 Jan 2008 15:38:50 +0100
 Brice Goglin [EMAIL PROTECTED] wrote:
   
 We need your config and log anyway, please send the whole output of
 /usr/share/bug/xserver-xorg/script 31
 
  
  Okay, here is.
   

Thanks.

  And now I use radeon driver, but I got same result with ati driver.
   


It's the same. ati is just a wrapper, it loads radeon on radeon boards,
r128 on some older ones, ...

Brice




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#454304: Transparency

2008-01-06 Thread Ties

Ties wrote:

Also, everything that's supposed to be transparent is now opaque.

I hope I'm not double-posting this, but making sure the extmod module 
was loaded helped both my issues. For some reason dpkg-reconfigure 
xserver-xorg didn't generate a module section.




--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#454304: Transparency

2008-01-06 Thread David Nusinow
On Sun, Jan 06, 2008 at 07:10:23PM +0100, Ties wrote:
 Ties wrote:
 Also, everything that's supposed to be transparent is now opaque.

 I hope I'm not double-posting this, but making sure the extmod module was 
 loaded helped both my issues. For some reason dpkg-reconfigure xserver-xorg 
 didn't generate a module section.

Yeah, dpkg-reconfigure won't generate that section again for the forseeable
future.

So extmod wasn't loaded for you before? It should be loaded by default
every time. What version of xserver-xorg-core are you running? Can you
attach your /var/log/Xorg.0.log file?

 - David Nusinow



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#459229: xserver-xorg-video-ati: Does not work on iBookG4

2008-01-06 Thread Alex Deucher
On Jan 4, 2008 1:54 PM, Leandro Noferini [EMAIL PROTECTED] wrote:
 Package: xserver-xorg-video-ati
 Version: 1:6.7.197-1
 Severity: important

 The driver does not work on an iBookG4. This are some related files:

 output of xrandr


 Screen 0: minimum 320 x 200, current 800 x 600, maximum 800 x 800
 LVDS connected 800x600+0+0 (normal left inverted right x axis y axis) 245mm x 
 184mm
800x60056.2*
640x48059.9
 VGA-0 disconnected (normal left inverted right x axis y axis)
 S-video disconnected (normal left inverted right x axis y axis)


The LVDS probe and the edid for the panel all report 1024x768, but
something is causing the driver to use 800x600.  try removing the sync
ranges from your monitor section:
   HorizSync   28-51
   VertRefresh 43-60

and see if that helps.

Alex



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



xorg: Changes to 'debian-unstable'

2008-01-06 Thread David Nusinow
 debian/changelog|7 ++-
 debian/xserver-xorg.postinst.in |   23 +++
 2 files changed, 17 insertions(+), 13 deletions(-)

New commits:
commit 628b7dacad6e864715438826547b753b6b06d24a
Author: David Nusinow [EMAIL PROTECTED]
Date:   Sun Jan 6 13:49:16 2008 -0500

* Don't ask the bus ID question to anyone who it's not necessary for
  Hardcoding the bus ID is bad. The server already uses the same algorithm
  and more to figure out which PCI ID's have video cards, so don't replicate
  it. Currently we only ask people who have ppc, SGI indigos, and multiple
  heads on sparc.

diff --git a/debian/changelog b/debian/changelog
index 9a8bbeb..0c65d60 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -7,8 +7,13 @@ xorg (1:7.3+10) UNRELEASED; urgency=low
 Closes: #442892, #448845, #410889, #443397, #242952, #271599
 + Remove discover and discover1 from the xserver-xorg recommends
 + Remove autodetect_video_card and multiple_possible_x-driver templates
+  * Don't ask the bus ID question to anyone who it's not necessary for
+Hardcoding the bus ID is bad. The server already uses the same algorithm
+and more to figure out which PCI ID's have video cards, so don't replicate
+it. Currently we only ask people who have ppc, SGI indigos, and multiple
+heads on sparc.
 
- -- David Nusinow [EMAIL PROTECTED]  Sat, 05 Jan 2008 19:02:39 -0500
+ -- David Nusinow [EMAIL PROTECTED]  Sun, 06 Jan 2008 13:40:33 -0500
 
 xorg (1:7.3+9) unstable; urgency=low
 
diff --git a/debian/xserver-xorg.postinst.in b/debian/xserver-xorg.postinst.in
index d8c2236..14c50cf 100644
--- a/debian/xserver-xorg.postinst.in
+++ b/debian/xserver-xorg.postinst.in
@@ -559,15 +559,8 @@ if [ -n $FIRSTINST ] || [ -n $RECONFIGURE ]; then
   # only one in the machine (broken PCI bus code in the XFree86 X server, most
   # likely).  If there are multiple video cards, we need to configure one as 
the
   # primary head.
-  # Warty: always feed this info.
-  MULTIHEAD=yes
   if [ $ARCH = powerpc ] || [ $MULTIHEAD = yes ]; then
-if [ $ARCH = powerpc ]; then
-  PRIORITY=medium
-fi
-if [ $MULTIHEAD = yes ]; then
-  PRIORITY=medium
-fi
+PRIORITY=medium
 if which lspci  /dev/null 21; then
   # Try to guess the correct BusID.
   VIDEO_CARD=$(LC_ALL=C lspci -n | grep -E (Class )?0300: | sort -n | 
head -n 1 \
@@ -605,11 +598,17 @@ if [ -n $FIRSTINST ] || [ -n $RECONFIGURE ]; then
 fi
   fi
 
-  # this question requires input validation
-  if [ -n $DEFAULT ]; then
-auto_answer validate_bus_id_db_input $(priority_ceil $PRIORITY) 
xserver-xorg/config/device/bus_id $DEFAULT
+  # For most people, asking this question at all is a bad idea. Only do it
+  # if we have a need to do so, as defined by setting the priority
+  if [ $PRIORITY = medium ]; then
+# this question requires input validation
+if [ -n $DEFAULT ]; then
+  auto_answer validate_bus_id_db_input $(priority_ceil $PRIORITY) 
xserver-xorg/config/device/bus_id $DEFAULT
+else
+  validate_bus_id_db_input $(priority_ceil $PRIORITY) 
xserver-xorg/config/device/bus_id || debug_report_status 
validate_bus_id_db_input $(priority_ceil $PRIORITY) 
xserver-xorg/config/device/bus_id $?
+fi
   else
-validate_bus_id_db_input $(priority_ceil $PRIORITY) 
xserver-xorg/config/device/bus_id || debug_report_status 
validate_bus_id_db_input $(priority_ceil $PRIORITY) 
xserver-xorg/config/device/bus_id $?
+db_set xserver-xorg/config/device/bus_id 
   fi
 
   # use fbcon kernel functions?


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#459454: compiz refuses to work (window boarder disappear, windows are unmoveable)

2008-01-06 Thread Juergen Kosel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hello,

Brice Goglin schrieb:
 Juergen Kosel wrote:
 Package: compiz
 Version: 0.6.3~git20071208.25941d14-1
 Severity: normal

 You're probably missing some plugins. Make sure decoration is loaded.
 You can use ccsm (package compizconfig-settings-manager) to select it
 (or gconf if you like it, see http://bgoglin.livejournal.com/11253.html).

yes, this solved the problem.
Could you please add a default decoration, so that other users who
upgrade from stable avouid that their xterms (etc.) become unusable?


Greetings
Juergen
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFHgSVo5JgLPmj5988RAs3KAKDgrtYryx8PiN4emXPpPJKWDiyCugCdHPKk
Y6cDB7JHpVvsw+TTVXW5Lnk=
=r3wS
-END PGP SIGNATURE-



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Processed: Re: Bug#458246: report xrdb: filename:, not stdin

2008-01-06 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tags 458246 + upstream
Bug#458246: report xrdb: filename:, not stdin
There were no tags set.
Tags added: upstream

 tags 458246 + patch
Bug#458246: report xrdb: filename:, not stdin
Tags were: upstream
Tags added: patch

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#458246: report xrdb: filename:, not stdin

2008-01-06 Thread Luca Capello
tags 458246 + upstream
tags 458246 + patch
thanks

Hello!

On Sun, 30 Dec 2007 19:40:09 +0100, Brice Goglin wrote:
 [EMAIL PROTECTED] wrote:
 $ xrdb zz
 stdin:42:20: warning: missing terminating ' character

 I clearly gave it a filename, as the xrdb man page instructs, but
 instead it reports stdin. This causes _many hours_ of chasing down
 the source of errors when used in scripts!

 xrdb invokes cpp with your file as stdin. This first warning comes
 from cpp, that's why the warning talks about stdin, as opposed to
 other warnings that are issued by xrdb itself.

 As always, patches are welcome. Given how simple this program is, it
 would be a good programming exercise for anybody, even a newbie.

Against the Debian package (which is upstream 1.0.4 and the same as the
upstream git at [1]) and very similar to the WIN32 part:

--8---cut here---start-8---
--- x11-xserver-utils-7.3+2/xrdb/xrdb.c.ORG 2006-07-11 04:54:07.0 
+0200
+++ x11-xserver-utils-7.3+2/xrdb/xrdb.c 2008-01-06 20:14:06.0 +0100
@@ -1203,10 +1203,13 @@
 #else
if((cmd = (char *)
malloc(strlen(cpp_program) + strlen(includes.val) + 1 +
-  strlen(defines.val) + 1)) ==
+  strlen(defines.val) + 1 +
+  strlen(filename ? filename : ) + 1)) ==
   NULL)
fatal(%s: Out of memory\n, ProgramName);
-   sprintf(cmd, %s%s %s, cpp_program, includes.val, defines.val);
+   sprintf(cmd, %s%s %s %s, cpp_program,
+   includes.val, defines.val,
+   filename ? filename : );
if (!(input = popen(cmd, r)))
fatal(%s: cannot run '%s'\n, ProgramName, cmd);
free(cmd);
--8---cut here---end---8---

This has been tested on my sid-amd64:
=
[EMAIL PROTECTED]:~/test/x11-xserver-utils-7.3+2/xrdb$ ./configure
[...]
[EMAIL PROTECTED]:~/test/x11-xserver-utils-7.3+2/xrdb$ make
[...]
[EMAIL PROTECTED]:~/test/x11-xserver-utils-7.3+2/xrdb$ make
[empty, waiting for input as expected until CTRL-C]

[EMAIL PROTECTED]:~/test/x11-xserver-utils-7.3+2/xrdb$ ./xrdb -merge 
~/.Xresources
/home/luca/.Xresources:16:13: warning: missing terminating ' character
/home/luca/.Xresources:18:17: warning: missing terminating ' character
/home/luca/.Xresources:20:18: warning: missing terminating ' character
[EMAIL PROTECTED]:~/test/x11-xserver-utils-7.3+2/xrdb$
=

Fixing this bug would mean closing bug #443537: since xrdb calls cpp,
these warnings (not errors) will always be shown.

Thx, bye,
Gismo / Luca

Footnotes: 
[1] http://gitweb.freedesktop.org/?p=xorg/app/xrdb.git;a=summary



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#459229: xserver-xorg-video-ati: Does not work on iBookG4

2008-01-06 Thread leandro noferini
Alex Deucher ha scritto:


[...]

 The LVDS probe and the edid for the panel all report 1024x768, but
 something is causing the driver to use 800x600.  try removing the sync
 ranges from your monitor section:
HorizSync   28-51
VertRefresh 43-60
 
 and see if that helps.

Yes, it worked!

I will close the bug!

-- 
Ciao
leandro
Un esteso e normale uso della crittografia è il sistema più forte
per rivendicare il diritto alla privacy nelle comunicazioni
telematiche: come tutti i diritti e come i muscoli se non viene
esercitato costantemente si atrofizza e va perso.



pgpYr6dztuKaW.pgp
Description: PGP signature


xorg: Changes to 'debian-unstable'

2008-01-06 Thread David Nusinow
 debian/changelog |6 --
 debian/local/dexconf |3 +--
 2 files changed, 5 insertions(+), 4 deletions(-)

New commits:
commit dc9545e9b6e31989c6133779309735f6e43b8128
Author: David Nusinow [EMAIL PROTECTED]
Date:   Sun Jan 6 15:48:06 2008 -0500

Prepare changelog for upload

diff --git a/debian/changelog b/debian/changelog
index b0f714d..9cd3db3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xorg (1:7.3+10) UNRELEASED; urgency=low
+xorg (1:7.3+10) unstable; urgency=low
 
   * Just write a default video card identifier
   * Only run driver autodetection on sparc hardware
@@ -15,7 +15,7 @@ xorg (1:7.3+10) UNRELEASED; urgency=low
   * Don't write the DPMS option to the monitor section of xorg.conf.
 The xserver already defaults to enabling DPMS
 
- -- David Nusinow [EMAIL PROTECTED]  Sun, 06 Jan 2008 14:27:42 -0500
+ -- David Nusinow [EMAIL PROTECTED]  Sun, 06 Jan 2008 15:17:14 -0500
 
 xorg (1:7.3+9) unstable; urgency=low
 

commit ee160422c097bbe4fab6ef8b5df0b7bc312d4753
Author: David Nusinow [EMAIL PROTECTED]
Date:   Sun Jan 6 15:16:58 2008 -0500

* Don't write the DPMS option to the monitor section of xorg.conf.
  The xserver already defaults to enabling DPMS

diff --git a/debian/changelog b/debian/changelog
index 0c65d60..b0f714d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -12,8 +12,10 @@ xorg (1:7.3+10) UNRELEASED; urgency=low
 and more to figure out which PCI ID's have video cards, so don't replicate
 it. Currently we only ask people who have ppc, SGI indigos, and multiple
 heads on sparc.
+  * Don't write the DPMS option to the monitor section of xorg.conf.
+The xserver already defaults to enabling DPMS
 
- -- David Nusinow [EMAIL PROTECTED]  Sun, 06 Jan 2008 13:40:33 -0500
+ -- David Nusinow [EMAIL PROTECTED]  Sun, 06 Jan 2008 14:27:42 -0500
 
 xorg (1:7.3+9) unstable; urgency=low
 
diff --git a/debian/local/dexconf b/debian/local/dexconf
index 749c99c..fae07a5 100644
--- a/debian/local/dexconf
+++ b/debian/local/dexconf
@@ -256,9 +256,8 @@ exec 4$DEXCONFTMPDIR/Monitor
 cat 4 SECTION
 Section Monitor
Identifier  Configured Monitor
-   Option  DPMS
+EndSection
 SECTION
-printf EndSection\n 4
 
 ### SCREEN
 


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



xorg: Changes to 'refs/tags/xorg-1_7.3+10'

2008-01-06 Thread David Nusinow
Tag 'xorg-1_7.3+10' created by David Nusinow [EMAIL PROTECTED] at 2008-01-06 
20:48 +

Tagging upload of xorg-1_7.3+10 to unstable.

Changes since xorg-1_7.3+9:
David Nusinow (10):
  * Just write a default video card identifier
  Commit templates for last change
  * Only run driver autodetection on sparc hardware
  Remove now useless comment in dexconf
  Add closers
  Fix bashism
  Remove autodetect_video_card and multiple_possible_x-driver templates
  * Don't ask the bus ID question to anyone who it's not necessary for
  * Don't write the DPMS option to the monitor section of xorg.conf.
  Prepare changelog for upload

---
 debian/changelog|   19 ++
 debian/control  |2 
 debian/local/dexconf|   14 -
 debian/po/ar.po |  264 
 debian/po/bg.po |  262 
 debian/po/bs.po |  276 +-
 debian/po/ca.po |  277 +-
 debian/po/cs.po |  271 +
 debian/po/da.po |  276 +-
 debian/po/de.po |  280 +--
 debian/po/dz.po |  274 +-
 debian/po/el.po |  285 +--
 debian/po/es.po |  282 +--
 debian/po/eu.po |  282 +--
 debian/po/fi.po |  279 +--
 debian/po/fr.po |  277 +-
 debian/po/gl.po |  278 +-
 debian/po/he.po |  267 -
 debian/po/hr.po |  275 +-
 debian/po/hu.po |  269 -
 debian/po/it.po |  276 +-
 debian/po/ja.po |  277 +-
 debian/po/km.po |  266 -
 debian/po/ko.po |  267 -
 debian/po/lt.po |  279 +--
 debian/po/ml.po |  272 --
 debian/po/mr.po |  268 -
 debian/po/nb.po |  269 -
 debian/po/ne.po |  269 -
 debian/po/nl.po |  279 +--
 debian/po/nn.po |  271 -
 debian/po/pl.po |  266 +++--
 debian/po/pt.po |  282 +--
 debian/po/pt_BR.po  |  283 +--
 debian/po/ro.po |  286 ++--
 debian/po/ru.po |  274 +-
 debian/po/sk.po |  272 +-
 debian/po/sq.po |  276 +-
 debian/po/sv.po |  278 +-
 debian/po/ta.po |  271 -
 debian/po/templates.pot |  183 +++--
 debian/po/th.po |  267 -
 debian/po/tr.po |  278 +-
 debian/po/vi.po |  277 +-
 debian/po/wo.po |  274 +-
 debian/po/zh_CN.po  |  261 
 debian/po/zh_TW.po  |  263 
 debian/xserver-xorg.postinst.in |  233 +---
 debian/xserver-xorg.templates   |   40 -
 49 files changed, 5376 insertions(+), 6890 deletions(-)
---


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#443397: marked as done (xorg-xserver should use information from xdebconfigurator if it is available)

2008-01-06 Thread Debian Bug Tracking System
Your message dated Sun, 06 Jan 2008 21:02:04 +
with message-id [EMAIL PROTECTED]
and subject line Bug#443397: fixed in xorg 1:7.3+10
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
Package: xserver-xorg
Version: 1:7.2-5

When xorg-xserver runs its post-install script
(/var/lib/dpkg/info/xserver-xorg.postinst) it uses automatic
configuration for some items, even if it has a better source of
information (namely xdebconfigurator) available.  In the output from
the script, I see:
xserver-xorg postinst note: available driver list set to apm, ark, ati,
   chips, cirrus, cyrix, fbdev, glint, i128, i740, i810, imstt, intel, mga,
   neomagic, newport, nsc, nv, rendition, s3, s3virge, savage, siliconmotion,
   sis, sisusb, tdfx, tga, trident, tseng, vesa, vga, via, vmware, voodoo 
xserver-xorg postinst note: could not autodetect X server driver: no video
   card detected, or no driver known for it
xserver-xorg postinst note: auto_answer() db_input high
   xserver-xorg/config/device/driver with default vesa
xserver-xorg postinst note: auto_answer: auto-answering with vesa

However, when I run xdebconfigurator, it correctly reports:
...
VIDEO DRIVER: i810
...
Running 'dexconfig' at that point generates an xorg.conf file that
properly uses my video card drivers.  I'm running debian-live, if that
makes a difference.

The reason I notice this is the 'vesa' drivers give me a 640x480x8
display, and the steps to properly configure the card are very
straightforward.  Perhaps this bug should be filed against the live-*
package, but all they do to reconfigure the X server is
dpkg-reconfigure -fnoninteractive --no-reload xorg-xserver.  To my
way of thinking, that should take care of the details of deciding if
xdebconfigurator is installed or not and using it if it is, and the
script it runs is part of xserver-xorg.

Thanks!
Will


---End Message---
---BeginMessage---
Source: xorg
Source-Version: 1:7.3+10

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

libglu1-xorg-dev_7.3+10_all.deb
  to pool/main/x/xorg/libglu1-xorg-dev_7.3+10_all.deb
libglu1-xorg_7.3+10_all.deb
  to pool/main/x/xorg/libglu1-xorg_7.3+10_all.deb
x11-common_7.3+10_i386.deb
  to pool/main/x/xorg/x11-common_7.3+10_i386.deb
xbase-clients_7.3+10_all.deb
  to pool/main/x/xorg/xbase-clients_7.3+10_all.deb
xlibmesa-gl-dev_7.3+10_all.deb
  to pool/main/x/xorg/xlibmesa-gl-dev_7.3+10_all.deb
xlibmesa-gl_7.3+10_all.deb
  to pool/main/x/xorg/xlibmesa-gl_7.3+10_all.deb
xlibmesa-glu_7.3+10_all.deb
  to pool/main/x/xorg/xlibmesa-glu_7.3+10_all.deb
xlibs-data_7.3+10_all.deb
  to pool/main/x/xorg/xlibs-data_7.3+10_all.deb
xlibs-static-dev_7.3+10_all.deb
  to pool/main/x/xorg/xlibs-static-dev_7.3+10_all.deb
xorg-dev_7.3+10_all.deb
  to pool/main/x/xorg/xorg-dev_7.3+10_all.deb
xorg_7.3+10.dsc
  to pool/main/x/xorg/xorg_7.3+10.dsc
xorg_7.3+10.tar.gz
  to pool/main/x/xorg/xorg_7.3+10.tar.gz
xorg_7.3+10_i386.deb
  to pool/main/x/xorg/xorg_7.3+10_i386.deb
xserver-xorg-input-all_7.3+10_i386.deb
  to pool/main/x/xorg/xserver-xorg-input-all_7.3+10_i386.deb
xserver-xorg-video-all_7.3+10_i386.deb
  to pool/main/x/xorg/xserver-xorg-video-all_7.3+10_i386.deb
xserver-xorg_7.3+10_all.deb
  to pool/main/x/xorg/xserver-xorg_7.3+10_all.deb
xutils_7.3+10_all.deb
  to pool/main/x/xorg/xutils_7.3+10_all.deb



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 [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
David Nusinow [EMAIL PROTECTED] (supplier of updated xorg 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 [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 06 Jan 2008 15:17:14 -0500
Source: xorg
Binary: xlibs-static-dev xbase-clients xserver-xorg-video-all xserver-xorg 
x11-common xorg-dev xlibmesa-gl-dev xserver-xorg-input-all xutils 
libglu1-xorg-dev xlibmesa-glu libglu1-xorg xlibmesa-gl xorg xlibs-data
Architecture: source all i386
Version: 1:7.3+10
Distribution: unstable
Urgency: low
Maintainer: David Nusinow [EMAIL PROTECTED]
Changed-By: David Nusinow [EMAIL PROTECTED]
Description: 
 libglu1-xorg - transitional package for Debian etch
 libglu1-xorg-dev 

Bug#242952: marked as done (xserver-xfree86: [debconf] have config script catalog autodetected hardware)

2008-01-06 Thread Debian Bug Tracking System
Your message dated Sun, 06 Jan 2008 21:02:04 +
with message-id [EMAIL PROTECTED]
and subject line Bug#242952: fixed in xorg 1:7.3+10
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
Package: xserver-xfree86
Version: 4.3.0-7
Severity: wishlist


Good morning,

during a semy-newbie test installation with the new debian-installer,
the test person was a little bit confused, when he configured X. He
choosed to detect mouse and monitor automatically, which worked very
well. But since the installation process continued right after his last
choice, he thought that something crashed. He expectet to get some kind
of success-message.

I think it would be a good idea, to print out, what mouse / monitor /
etc. was found, to prevent users thinking the configuration has crashed.


Yours sincerely,
  Alexander


-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.4
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED]

Versions of packages xserver-xfree86 depends on:
ii  debconf [debconf-2.0]   1.4.16   Debian configuration management sy
ii  libc6   2.3.2.ds1-11 GNU C Library: Shared libraries an
ii  xserver-common  4.3.0-7  files and utilities common to all 
ii  zlib1g  1:1.2.1-5compression library - runtime

-- debconf information excluded

---End Message---
---BeginMessage---
Source: xorg
Source-Version: 1:7.3+10

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

libglu1-xorg-dev_7.3+10_all.deb
  to pool/main/x/xorg/libglu1-xorg-dev_7.3+10_all.deb
libglu1-xorg_7.3+10_all.deb
  to pool/main/x/xorg/libglu1-xorg_7.3+10_all.deb
x11-common_7.3+10_i386.deb
  to pool/main/x/xorg/x11-common_7.3+10_i386.deb
xbase-clients_7.3+10_all.deb
  to pool/main/x/xorg/xbase-clients_7.3+10_all.deb
xlibmesa-gl-dev_7.3+10_all.deb
  to pool/main/x/xorg/xlibmesa-gl-dev_7.3+10_all.deb
xlibmesa-gl_7.3+10_all.deb
  to pool/main/x/xorg/xlibmesa-gl_7.3+10_all.deb
xlibmesa-glu_7.3+10_all.deb
  to pool/main/x/xorg/xlibmesa-glu_7.3+10_all.deb
xlibs-data_7.3+10_all.deb
  to pool/main/x/xorg/xlibs-data_7.3+10_all.deb
xlibs-static-dev_7.3+10_all.deb
  to pool/main/x/xorg/xlibs-static-dev_7.3+10_all.deb
xorg-dev_7.3+10_all.deb
  to pool/main/x/xorg/xorg-dev_7.3+10_all.deb
xorg_7.3+10.dsc
  to pool/main/x/xorg/xorg_7.3+10.dsc
xorg_7.3+10.tar.gz
  to pool/main/x/xorg/xorg_7.3+10.tar.gz
xorg_7.3+10_i386.deb
  to pool/main/x/xorg/xorg_7.3+10_i386.deb
xserver-xorg-input-all_7.3+10_i386.deb
  to pool/main/x/xorg/xserver-xorg-input-all_7.3+10_i386.deb
xserver-xorg-video-all_7.3+10_i386.deb
  to pool/main/x/xorg/xserver-xorg-video-all_7.3+10_i386.deb
xserver-xorg_7.3+10_all.deb
  to pool/main/x/xorg/xserver-xorg_7.3+10_all.deb
xutils_7.3+10_all.deb
  to pool/main/x/xorg/xutils_7.3+10_all.deb



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 [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
David Nusinow [EMAIL PROTECTED] (supplier of updated xorg 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 [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 06 Jan 2008 15:17:14 -0500
Source: xorg
Binary: xlibs-static-dev xbase-clients xserver-xorg-video-all xserver-xorg 
x11-common xorg-dev xlibmesa-gl-dev xserver-xorg-input-all xutils 
libglu1-xorg-dev xlibmesa-glu libglu1-xorg xlibmesa-gl xorg xlibs-data
Architecture: source all i386
Version: 1:7.3+10
Distribution: unstable
Urgency: low
Maintainer: David Nusinow [EMAIL PROTECTED]
Changed-By: David Nusinow [EMAIL PROTECTED]
Description: 
 libglu1-xorg - transitional package for Debian etch
 libglu1-xorg-dev - transitional package for Debian etch
 x11-common - X Window System (X.Org) infrastructure
 xbase-clients - miscellaneous X clients - metapackage
 xlibmesa-gl - transitional package for Debian etch
 xlibmesa-gl-dev - transitional package for Debian etch
 xlibmesa-glu - transitional package for Debian etch
 xlibs-data - transitional package for X11 client data
 xlibs-static-dev - transitional metapackage
 xorg

Bug#271599: marked as done (xserver-xfree86: [debconf] defaults to wrong display driver)

2008-01-06 Thread Debian Bug Tracking System
Your message dated Sun, 06 Jan 2008 21:02:04 +
with message-id [EMAIL PROTECTED]
and subject line Bug#271599: fixed in xorg 1:7.3+10
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
Package: xserver-xfree86
Version: 4.3.0.dfsg.1-7
Severity: wishlist

The Select the desired X server driver question defaults to
vesa, but when X starts (via gdm), it displays a blank, black
screen.

When I reconfigure X to use the i810 driver, it displays the gdm
login dialog.

The card appears to be detected by discover:

 $ discover --version
 discover version 1.6.6
 $ discover --disable=serial,parallel --format=%V %M\t%S\t%D\n video
 Intel Corporation 82815 CGC [Chipset Graphics Controller]   XFree86 i810

-- 
Matt Kraai[EMAIL PROTECTED]http://ftbfs.org/


signature.asc
Description: Digital signature
---End Message---
---BeginMessage---
Source: xorg
Source-Version: 1:7.3+10

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

libglu1-xorg-dev_7.3+10_all.deb
  to pool/main/x/xorg/libglu1-xorg-dev_7.3+10_all.deb
libglu1-xorg_7.3+10_all.deb
  to pool/main/x/xorg/libglu1-xorg_7.3+10_all.deb
x11-common_7.3+10_i386.deb
  to pool/main/x/xorg/x11-common_7.3+10_i386.deb
xbase-clients_7.3+10_all.deb
  to pool/main/x/xorg/xbase-clients_7.3+10_all.deb
xlibmesa-gl-dev_7.3+10_all.deb
  to pool/main/x/xorg/xlibmesa-gl-dev_7.3+10_all.deb
xlibmesa-gl_7.3+10_all.deb
  to pool/main/x/xorg/xlibmesa-gl_7.3+10_all.deb
xlibmesa-glu_7.3+10_all.deb
  to pool/main/x/xorg/xlibmesa-glu_7.3+10_all.deb
xlibs-data_7.3+10_all.deb
  to pool/main/x/xorg/xlibs-data_7.3+10_all.deb
xlibs-static-dev_7.3+10_all.deb
  to pool/main/x/xorg/xlibs-static-dev_7.3+10_all.deb
xorg-dev_7.3+10_all.deb
  to pool/main/x/xorg/xorg-dev_7.3+10_all.deb
xorg_7.3+10.dsc
  to pool/main/x/xorg/xorg_7.3+10.dsc
xorg_7.3+10.tar.gz
  to pool/main/x/xorg/xorg_7.3+10.tar.gz
xorg_7.3+10_i386.deb
  to pool/main/x/xorg/xorg_7.3+10_i386.deb
xserver-xorg-input-all_7.3+10_i386.deb
  to pool/main/x/xorg/xserver-xorg-input-all_7.3+10_i386.deb
xserver-xorg-video-all_7.3+10_i386.deb
  to pool/main/x/xorg/xserver-xorg-video-all_7.3+10_i386.deb
xserver-xorg_7.3+10_all.deb
  to pool/main/x/xorg/xserver-xorg_7.3+10_all.deb
xutils_7.3+10_all.deb
  to pool/main/x/xorg/xutils_7.3+10_all.deb



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 [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
David Nusinow [EMAIL PROTECTED] (supplier of updated xorg 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 [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 06 Jan 2008 15:17:14 -0500
Source: xorg
Binary: xlibs-static-dev xbase-clients xserver-xorg-video-all xserver-xorg 
x11-common xorg-dev xlibmesa-gl-dev xserver-xorg-input-all xutils 
libglu1-xorg-dev xlibmesa-glu libglu1-xorg xlibmesa-gl xorg xlibs-data
Architecture: source all i386
Version: 1:7.3+10
Distribution: unstable
Urgency: low
Maintainer: David Nusinow [EMAIL PROTECTED]
Changed-By: David Nusinow [EMAIL PROTECTED]
Description: 
 libglu1-xorg - transitional package for Debian etch
 libglu1-xorg-dev - transitional package for Debian etch
 x11-common - X Window System (X.Org) infrastructure
 xbase-clients - miscellaneous X clients - metapackage
 xlibmesa-gl - transitional package for Debian etch
 xlibmesa-gl-dev - transitional package for Debian etch
 xlibmesa-glu - transitional package for Debian etch
 xlibs-data - transitional package for X11 client data
 xlibs-static-dev - transitional metapackage
 xorg   - X.Org X Window System
 xorg-dev   - the X.Org X Window System development libraries
 xserver-xorg - the X.Org X server
 xserver-xorg-input-all - the X.Org X server -- input driver metapackage
 xserver-xorg-video-all - the X.Org X server -- output driver metapackage
 xutils - X Window System utility programs metapackage
Closes: 242952 271599 410889 442892 443397 448845
Changes: 
 xorg (1:7.3+10) unstable; urgency=low
 .
   * Just write a default video card identifier
   * Only run driver autodetection on sparc hardware
 All other archictectures should be better supported by having the 

Bug#410889: marked as done (package update hint needed for outdated discover)

2008-01-06 Thread Debian Bug Tracking System
Your message dated Sun, 06 Jan 2008 21:02:04 +
with message-id [EMAIL PROTECTED]
and subject line Bug#410889: fixed in xorg 1:7.3+10
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
Package: xserver-xorg
Version: 1:7.1.0-11

Hello,

a dpkg-reconfigure xserver-xorg yields a graphics card autodetect?
prompt which failed on my machine since it's somewhat new ( 1 year):

00:02.0 VGA compatible controller: Intel Corporation 945G/GZ Express Integrated 
Graphics Controller (rev 02) (prog-if 00 [VGA])
Subsystem: Hewlett-Packard Company Unknown device 3010
Flags: bus master, fast devsel, latency 0, IRQ 22
Memory at e040 (32-bit, non-prefetchable) [size=512K]
I/O ports at 10c0 [size=8]
Memory at d000 (32-bit, prefetchable) [size=256M]
Memory at e048 (32-bit, non-prefetchable) [size=256K]
Capabilities: [90] Message Signalled Interrupts: Mask- 64bit- Queue=0/0 
Enable-
Capabilities: [d0] Power Management version 2

In the autodetection failure dialog, there was no sufficiently
direct hint that one should upgrade all discover related packages
(in the current package it's discover1 and, most importantly,
discover1-data) to get a newer database.

It simply said that discover does not seem to know this device
(really not a helpful help text, I'd say),
but what it should have said instead is that the *currently installed
package version* of discover packages does not know this device yet.
It's important to mention that the currently installed state is
lacking, not the package per se. Or alternatively mention that one
should attempt to upgrade discover related packages to newest version.

One shouldn't write too much prose in such a help dialog of course,
but at least a tiny but obvious hint towards discover upgrading
is clearly missing.

Thanks,

Andreas Mohr

---End Message---
---BeginMessage---
Source: xorg
Source-Version: 1:7.3+10

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

libglu1-xorg-dev_7.3+10_all.deb
  to pool/main/x/xorg/libglu1-xorg-dev_7.3+10_all.deb
libglu1-xorg_7.3+10_all.deb
  to pool/main/x/xorg/libglu1-xorg_7.3+10_all.deb
x11-common_7.3+10_i386.deb
  to pool/main/x/xorg/x11-common_7.3+10_i386.deb
xbase-clients_7.3+10_all.deb
  to pool/main/x/xorg/xbase-clients_7.3+10_all.deb
xlibmesa-gl-dev_7.3+10_all.deb
  to pool/main/x/xorg/xlibmesa-gl-dev_7.3+10_all.deb
xlibmesa-gl_7.3+10_all.deb
  to pool/main/x/xorg/xlibmesa-gl_7.3+10_all.deb
xlibmesa-glu_7.3+10_all.deb
  to pool/main/x/xorg/xlibmesa-glu_7.3+10_all.deb
xlibs-data_7.3+10_all.deb
  to pool/main/x/xorg/xlibs-data_7.3+10_all.deb
xlibs-static-dev_7.3+10_all.deb
  to pool/main/x/xorg/xlibs-static-dev_7.3+10_all.deb
xorg-dev_7.3+10_all.deb
  to pool/main/x/xorg/xorg-dev_7.3+10_all.deb
xorg_7.3+10.dsc
  to pool/main/x/xorg/xorg_7.3+10.dsc
xorg_7.3+10.tar.gz
  to pool/main/x/xorg/xorg_7.3+10.tar.gz
xorg_7.3+10_i386.deb
  to pool/main/x/xorg/xorg_7.3+10_i386.deb
xserver-xorg-input-all_7.3+10_i386.deb
  to pool/main/x/xorg/xserver-xorg-input-all_7.3+10_i386.deb
xserver-xorg-video-all_7.3+10_i386.deb
  to pool/main/x/xorg/xserver-xorg-video-all_7.3+10_i386.deb
xserver-xorg_7.3+10_all.deb
  to pool/main/x/xorg/xserver-xorg_7.3+10_all.deb
xutils_7.3+10_all.deb
  to pool/main/x/xorg/xutils_7.3+10_all.deb



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 [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
David Nusinow [EMAIL PROTECTED] (supplier of updated xorg 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 [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 06 Jan 2008 15:17:14 -0500
Source: xorg
Binary: xlibs-static-dev xbase-clients xserver-xorg-video-all xserver-xorg 
x11-common xorg-dev xlibmesa-gl-dev xserver-xorg-input-all xutils 
libglu1-xorg-dev xlibmesa-glu libglu1-xorg xlibmesa-gl xorg xlibs-data
Architecture: source all i386
Version: 1:7.3+10
Distribution: unstable
Urgency: low
Maintainer: David Nusinow [EMAIL PROTECTED]
Changed-By: David Nusinow [EMAIL PROTECTED]
Description: 
 libglu1-xorg - transitional package for Debian etch
 

Bug#256317: marked as done (xserver-xfree86: [debconf] chatter to stderr about DDC probe (when calling get-edid))

2008-01-06 Thread Debian Bug Tracking System
Your message dated Sun, 06 Jan 2008 21:02:04 +
with message-id [EMAIL PROTECTED]
and subject line Bug#242952: fixed in xorg 1:7.3+10
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
Package: installation-reports

Debian-installer-version: Sarge Test Candidate 1, June 8, 2004, from 
http://cdimage.debian.org/pub/cdimage-testing/sarge_d-i/i386/tc1/sarge-i386-netinst.iso
uname -a: Linux sol 2.4.26-1-386 #2 Sat May 1 16:31:24 EST 2004 i686
GNU/Linux
Date: June 8, 2004, 9:40pm
Method: From installation CD, Debian Sarge Test Candidate 1

Machine: No-name PC
Processor: Duron 800
Memory: 256 MB
Root Device: IDE /dev/hda
Root Size/partition table:

sol:/home/dustin# fdisk -l /dev/hda

Disk /dev/hda: 20.0 GB, 20020396032 bytes
255 heads, 63 sectors/track, 2434 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

   Device Boot  Start End  Blocks   Id  SystemMounted on
/dev/hda1   *   1 765 6144831   83  Linuxunused
/dev/hda2 766 831  530145   82  Linux swap
/dev/hda3 8321469 5124735   83  Linux/
/dev/hda414702434 7751362+  83  Linuxunused

Output of lspci:
sol:/home/dustin# lspci
pcilib: Cannot open /sys/bus/pci/devices
:00:00.0 Host bridge: VIA Technologies, Inc. VT8363/8365 [KT133/KM133]
(rev 03)
:00:01.0 PCI bridge: VIA Technologies, Inc. VT8363/8365 [KT133/KM133 AGP]
:00:07.0 ISA bridge: VIA Technologies, Inc. VT82C686 [Apollo Super
South] (rev 40)
:00:07.1 IDE interface: VIA Technologies, Inc.
VT82C586A/B/VT82C686/A/B/VT823x/A/C/VT8235 PIPC Bus Master IDE (rev 06)
:00:07.2 USB Controller: VIA Technologies, Inc. VT6202 [USB 2.0
controller] (rev 16)
:00:07.3 USB Controller: VIA Technologies, Inc. VT6202 [USB 2.0
controller] (rev 16)
:00:07.4 Host bridge: VIA Technologies, Inc. VT82C686 [Apollo Super
ACPI] (rev 40)
:00:0e.0 Ethernet controller: 3Com Corporation 3c905C-TX/TX-M
[Tornado] (rev 78)
:00:0f.0 Multimedia audio controller: Creative Labs SB Live! EMU10k1
(rev 08)
:00:0f.1 Input device controller: Creative Labs SB Live! MIDI/Game
Port (rev 08)
:01:00.0 VGA compatible controller: nVidia Corporation NV5M64 [RIVA
TNT2 Model 64/Model 64 Pro] (rev 15)

Base System Installation Checklist:

Initial boot worked:[O]
Configure network HW:   [O]
Config network: [O]
Detect CD:  [O]
Load installer modules: [O]
Detect hard drives: [O]
Partition hard drives:  [O]
Create file systems:[O]
Mount partitions:   [O]
Install base system:[O]
Install boot loader:[O]
Reboot: [O]
[O] = OK, [E] = Error (please elaborate below), [ ] = didn't try it

Comments/Problems:

Did a virtually default install, not creating new partitions, but I let
the installer format a partition.  The initial install was flawless.  I
was jumping for joy that Debian installer had finally got it right.  But I
wasn't out of the woods yet!

Here are the snags I encountered:


1) Next I used tasksel to install these categories:

Desktop environment
Games
Linux Standard Base
Office environment
Custom kernel compilation
Debian Jr.
Scientific applications
TeX/LaTeX environment

At first, I chose the Debian mirror mirror.direct.ca.  That mirror was
missing the package libmpeg, so the apt-getting crapped out ungracefully! 
Repeated attempts to download failed, even when the apt-get update-ing
was repeated.  The problem was solved by choosing a different mirror. 
**Perhaps the advice to back up a few steps and and try a different mirror
would have been helpful to more novice users, if not all packages could be
downloaded by apt.**


2) Once the actual packages were getting installed en masse (and many
packages ask questions), all of a sudden there was a huge jump in
confusion.

The questions asked during package installation, *which novice users
will view as part of the initial install* (even though they are
technically out of the hands of the Debian Installer) were very
novice-unfriendly.

Many packages did not offer recommendations as default answers.  I can't
remember quite which ones, but any and all packages that ask questions
that are part of the tasks:

Desktop environment
Games
Linux Standard Base
Office environment

...in tasksel should refrain from asking the end user questions, or make
it very easy and dumbed down, and always recommend a default answer if
they're unsure (like the linux kernel does when you configure it).  In
other 

Bug#442892: marked as done (dpkg-reconfigure xserver-xorg is useless without discover installed)

2008-01-06 Thread Debian Bug Tracking System
Your message dated Sun, 06 Jan 2008 21:02:04 +
with message-id [EMAIL PROTECTED]
and subject line Bug#442892: fixed in xorg 1:7.3+10
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
Package: xserver-xorg
Version: 1:7.3+2
Severity: important

Hi,

I recently upgraded my x.org server in sid, and, after upgrade, the X
server would not work. But this is another issue I will try to
understand at another time.

Anyways, the thing is, since my conf was not working, I wanted to try to
dpkg-reconfigure xserver-xorg, which I would assume to work, but didn't
in my case, because discover was not installed.

Here is the message I get after reconfiguring when discover is not
installed:

xserver-xorg postinst warning: overwriting possibly-customised configuration
   file; backup in /etc/X11/xorg.conf.20070917193443
dexconf: error: cannot generate configuration file; 
xserver-xorg/config/device/driver not set.  Aborting.  Reconfigure the X server 
with dpkg-reconfigure xserver-xorg to correct this problem.
xserver-xorg postinst warning: error while preparing new Xorg X server
   configuration file in /etc/X11/xorg.conf.dpkg-new; not attempting to
   update existing configuration

Note that /etc/X11/xorg.conf.dpkg-new doesn't even exist after this, and
that I never get asked what driver to use.

After installing discover, everything works fine.

Mike

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.22-1-686 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages xserver-xorg depends on:
ii  debconf [debconf-2 1.5.14Debian configuration management sy
ii  x11-common 1:7.3+2   X Window System (X.Org) infrastruc
ii  xbase-clients  1:7.3+2   miscellaneous X clients - metapack
ii  xkb-data   1.0~cvs.20070916-1X Keyboard Extension (XKB) configu
ii  xserver-xorg-core  2:1.4-2   X.Org X server -- core server
ii  xserver-xorg-input 1:1.2.0~git20070819-3 X.Org X server -- evdev input driv
ii  xserver-xorg-input 1:1.2.2-3 X.Org X server -- keyboard input d
ii  xserver-xorg-input 1:1.2.2-5 X.Org X server -- mouse input driv
ii  xserver-xorg-video 1:6.6.193-3   X.Org X server -- ATI display driv
ii  xserver-xorg-video 1:1.3.0-4 X.Org X server -- VESA display dri

Versions of packages xserver-xorg recommends:
ii  discover   2.1.2-2   hardware identification system
ii  dmidecode  2.9-1 Dump Desktop Management Interface 
ii  laptop-detect  0.13.2attempt to detect a laptop
ii  libgl1-mesa-dri7.0.1-2   A free implementation of the OpenG
ii  xresprobe  0.4.23debian1-0.1 X Resolution Probe

-- debconf information excluded


---End Message---
---BeginMessage---
Source: xorg
Source-Version: 1:7.3+10

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

libglu1-xorg-dev_7.3+10_all.deb
  to pool/main/x/xorg/libglu1-xorg-dev_7.3+10_all.deb
libglu1-xorg_7.3+10_all.deb
  to pool/main/x/xorg/libglu1-xorg_7.3+10_all.deb
x11-common_7.3+10_i386.deb
  to pool/main/x/xorg/x11-common_7.3+10_i386.deb
xbase-clients_7.3+10_all.deb
  to pool/main/x/xorg/xbase-clients_7.3+10_all.deb
xlibmesa-gl-dev_7.3+10_all.deb
  to pool/main/x/xorg/xlibmesa-gl-dev_7.3+10_all.deb
xlibmesa-gl_7.3+10_all.deb
  to pool/main/x/xorg/xlibmesa-gl_7.3+10_all.deb
xlibmesa-glu_7.3+10_all.deb
  to pool/main/x/xorg/xlibmesa-glu_7.3+10_all.deb
xlibs-data_7.3+10_all.deb
  to pool/main/x/xorg/xlibs-data_7.3+10_all.deb
xlibs-static-dev_7.3+10_all.deb
  to pool/main/x/xorg/xlibs-static-dev_7.3+10_all.deb
xorg-dev_7.3+10_all.deb
  to pool/main/x/xorg/xorg-dev_7.3+10_all.deb
xorg_7.3+10.dsc
  to pool/main/x/xorg/xorg_7.3+10.dsc
xorg_7.3+10.tar.gz
  to pool/main/x/xorg/xorg_7.3+10.tar.gz
xorg_7.3+10_i386.deb
  to pool/main/x/xorg/xorg_7.3+10_i386.deb
xserver-xorg-input-all_7.3+10_i386.deb
  to pool/main/x/xorg/xserver-xorg-input-all_7.3+10_i386.deb
xserver-xorg-video-all_7.3+10_i386.deb
  to pool/main/x/xorg/xserver-xorg-video-all_7.3+10_i386.deb
xserver-xorg_7.3+10_all.deb
  to pool/main/x/xorg/xserver-xorg_7.3+10_all.deb
xutils_7.3+10_all.deb
  to pool/main/x/xorg/xutils_7.3+10_all.deb



A summary of the changes between this 

xorg-server: Changes to 'debian-unstable'

2008-01-06 Thread David Nusinow
 debian/changelog   |4 +++-
 debian/patches/08_better_dpms_logging.diff |   21 +
 debian/patches/series  |1 +
 3 files changed, 25 insertions(+), 1 deletion(-)

New commits:
commit a2886cda07cf656265f058d5305abfba998ef22d
Author: David Nusinow [EMAIL PROTECTED]
Date:   Sun Jan 6 16:34:27 2008 -0500

* Improve logging when DPMS is enabled implicitly
  + Adds 08_better_dpms_logging.diff

diff --git a/debian/changelog b/debian/changelog
index 9af28af..0808b5e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,8 +3,10 @@ xorg-server (2:1.4.1~git20080105-1) UNRELEASED; urgency=low
   * Don't reference non-existent bug-reporting.txt file in xvfb-run.1
   * New upstream git pull, again from the server-1.4-branch
 + Drop 08_xkb_infinite_loop.diff, it's upstream now
+  * Improve logging when DPMS is enabled implicitly
++ Adds 08_better_dpms_logging.diff
 
- -- David Nusinow [EMAIL PROTECTED]  Sat, 05 Jan 2008 17:48:05 -0500
+ -- David Nusinow [EMAIL PROTECTED]  Sun, 06 Jan 2008 16:10:41 -0500
 
 xorg-server (2:1.4.1~git20071212-2) unstable; urgency=low
 
diff --git a/debian/patches/08_better_dpms_logging.diff 
b/debian/patches/08_better_dpms_logging.diff
new file mode 100644
index 000..b67b331
--- /dev/null
+++ b/debian/patches/08_better_dpms_logging.diff
@@ -0,0 +1,21 @@
+Index: xorg-server/hw/xfree86/common/xf86DPMS.c
+===
+--- xorg-server.orig/hw/xfree86/common/xf86DPMS.c  2008-01-06 
15:59:07.0 -0500
 xorg-server/hw/xfree86/common/xf86DPMS.c   2008-01-06 16:09:03.0 
-0500
+@@ -83,7 +83,6 @@
+!DPMSDisabledSwitch)
+   DPMSEnabled = TRUE;
+   xf86MarkOptionUsed(DPMSOpt);
+-  xf86DrvMsg(pScreen-myNum, X_CONFIG, DPMS enabled\n);
+ } else if (DPMSEnabledSwitch) {
+   if (!DPMSDisabledSwitch)
+   DPMSEnabled = TRUE;
+@@ -92,6 +91,8 @@
+ else {
+   pDPMS-Enabled = defaultDPMSEnabled;
+ }
++if (pDPMS-Enabled)
++  xf86DrvMsg(pScreen-myNum, X_CONFIG, DPMS enabled\n);
+ pDPMS-CloseScreen = pScreen-CloseScreen;
+ pScreen-CloseScreen = DPMSClose;
+ DPMSCount++;
diff --git a/debian/patches/series b/debian/patches/series
index f9cca17..097f64c 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -5,6 +5,7 @@
 05_kill_type1.diff
 06_use_proc_instead_of_sysfs_for_pci_domains.diff
 07_autoconfig_screen_with_device_section.diff
+08_better_dpms_logging.diff
 10_dont_look_in_home_for_config.diff -p0
 13_debian_add_xkbpath_env_variable.diff
 14_default_screen_section.diff


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#50949: why did this get tagged 'wontfix' ?

2008-01-06 Thread pmaydell
I've just noticed that this bug (50949, xbase-clients: [xmodmap]
all line numbers are off-by-one) was tagged 'wontfix' back in April
by Brice Goglin with no explanation (at least, Automatically
generated email from bts, devscripts version 2.10.2 doesn't seem
very explanatory to me...)

Can somebody provide an explanation? Or did somebody typo a bug
number?

thanks
-- PMM



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



[bts-link] source package xserver-xorg-video-intel

2008-01-06 Thread bts-link-upstream
#
# bts-link upstream status pull for source package xserver-xorg-video-intel
# see http://lists.debian.org/debian-devel-announce/2006/05/msg1.html
#

user [EMAIL PROTECTED]

# remote status report for #426548
#  * https://bugs.freedesktop.org/show_bug.cgi?id=11432
#  * remote status changed: NEEDINFO - NEW
usertags 426548 - status-NEEDINFO
usertags 426548 + status-NEW

thanks



[bts-link] source package xkeyboard-config

2008-01-06 Thread bts-link-upstream
#
# bts-link upstream status pull for source package xkeyboard-config
# see http://lists.debian.org/debian-devel-announce/2006/05/msg1.html
#

user [EMAIL PROTECTED]

# remote status report for #453675
#  * https://bugs.freedesktop.org/show_bug.cgi?id=13935
#  * remote status changed: (?) - RESOLVED
#  * remote resolution changed: (?) - FIXED
usertags 453675 + status-RESOLVED resolution-FIXED

# remote status report for #456942
#  * https://bugs.freedesktop.org/show_bug.cgi?id=13934
#  * remote status changed: (?) - RESOLVED
#  * remote resolution changed: (?) - FIXED
usertags 456942 + status-RESOLVED resolution-FIXED

# remote status report for #457927
#  * https://bugs.freedesktop.org/show_bug.cgi?id=13936
#  * remote status changed: (?) - RESOLVED
#  * remote resolution changed: (?) - FIXED
usertags 457927 + status-RESOLVED resolution-FIXED

thanks



[bts-link] source package xserver-xorg-video-ati

2008-01-06 Thread bts-link-upstream
#
# bts-link upstream status pull for source package xserver-xorg-video-ati
# see http://lists.debian.org/debian-devel-announce/2006/05/msg1.html
#

user [EMAIL PROTECTED]

# remote status report for #459431
#  * https://bugs.freedesktop.org/show_bug.cgi?id=13924
#  * remote status changed: (?) - NEEDINFO
usertags 459431 + status-NEEDINFO

thanks



xorg-server: Changes to 'refs/tags/xorg-server-2_1.4.1_git20080105-1'

2008-01-06 Thread David Nusinow
Tag 'xorg-server-2_1.4.1_git20080105-1' created by David Nusinow [EMAIL 
PROTECTED] at 2008-01-06 22:44 +

Tagging upload of xorg-server-2_1.4.1_git20080105-1 to unstable.

Changes since xorg-server-2_1.4.1-git20071212-2:
Daniel Stone (5):
  Config: D-Bus: Don't leak timers
  Config: HAL: Don't leak options on failure to add device
  OS: Don't leak connection translation table on regeneration
  KDrive: Xephyr: Don't leak screen damage structure
  Input: Don't reinit devices

David Nusinow (7):
  * Don't reference non-existent bug-reporting.txt file in xvfb-run.1
  Merge branch 'upstream-unstable' into debian-unstable
  * New upstream git pull, again from the server-1.4-branch
  + Drop 08_xkb_infinite_loop.diff, it's upstream now
  * Improve logging when DPMS is enabled implicitly
  Autoreconf
  Update changelog for upload

Peter Hutterer (1):
  include: never overwrite realInputProc with enqueueInputProc. Bug #13511

---
 aclocal.m4 |2 -
 config/dbus-core.c |5 +++-
 config/hal.c   |   11 -
 configure  |   20 -
 debian/changelog   |   10 
 debian/local/xvfb-run.1|4 ---
 debian/patches/08_better_dpms_logging.diff |   21 +
 debian/patches/08_xkb_infinite_loop.diff   |   34 -
 debian/patches/series  |2 -
 dix/devices.c  |3 +-
 hw/kdrive/ephyr/ephyr.c|1 
 hw/xprint/Makefile.in  |2 +
 include/xkbsrv.h   |3 +-
 os/connection.c|3 +-
 14 files changed, 67 insertions(+), 54 deletions(-)
---


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#459454: marked as done (compiz refuses to work (window boarder disappear, windows are unmoveable))

2008-01-06 Thread Debian Bug Tracking System
Your message dated Mon, 07 Jan 2008 00:00:57 +0100
with message-id [EMAIL PROTECTED]
and subject line Bug#459454: compiz refuses to work (window boarder disappear, 
windows are unmoveable)
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
Package: compiz
Version: 0.6.3~git20071208.25941d14-1
Severity: normal

Hello,
after update from stable to testing, compiz refuses to work anymore.
Which means, that if compiz is started with `compiz --replace` the
boarders of all windows (xterms, etc) disapear and the windows become
unmoveable.

The following is the output of compiz:
compiz --replace
Checking for Xgl: not present.
Detected PCI ID for VGA: 01:00.0 0300: 1002:5b60 (prog-if 00 [VGA])
Checking for texture_from_pixmap: not present.
Trying again with indirect rendering:
Checking for texture_from_pixmap: present.
Checking for non power of two support: present.
Checking for Composite extension: present.
Comparing resolution (1280x1024) to maximum 3D texture size (2048):
Passed.
Checking for nVidia: not present.
Checking for FBConfig: present.
Checking for Xgl: not present.
Starting gtk-window-decorator
/usr/bin/compiz.real (cube) - Warn: Failed to load slide: freedesktop

Due to the line Checking for Xgl: not present., I guess that there is
something foul with package dependencies.
The graphic card is an ATI Radeon X300 and the X11 device driver is RADEON.

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.22-3-amd64 (SMP w/1 CPU core)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages compiz depends on:
ii  compiz-core 0.6.3~git20071208.25941d14-1 OpenGL window and compositing mana
ii  compiz-gnom 0.6.3~git20071208.25941d14-1 OpenGL window and compositing mana
ii  compiz-gtk  0.6.3~git20071208.25941d14-1 OpenGL window and compositing mana
ii  compiz-plug 0.6.3~git20071208.25941d14-1 OpenGL window and compositing mana

compiz recommends no packages.

-- no debconf information

-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.



---End Message---
---BeginMessage---
Juergen Kosel wrote:
 Hello,

 Brice Goglin schrieb:
  Juergen Kosel wrote:
  Package: compiz
  Version: 0.6.3~git20071208.25941d14-1
  Severity: normal
 
  You're probably missing some plugins. Make sure decoration is loaded.
  You can use ccsm (package compizconfig-settings-manager) to select it
  (or gconf if you like it, see
 http://bgoglin.livejournal.com/11253.html).

 yes, this solved the problem.

Ok thanks, I am closing this bug.

 Could you please add a default decoration, so that other users who
 upgrade from stable avouid that their xterms (etc.) become unusable?

We already do that already for people that try compiz for the first
time. But we have somef people like you that suffer from this problem
because they have an old configuration that compiz created when it did
not enable many plugins by default. We might want to update this config
to something with more plugins. But we need to check first that there is
no good reason for people to disable those plugins. We'll see what we
can do.

Brice


---End Message---


【INCLUBのメルマガお宝情報】 (クジ付き)NO.167-特選広告

2008-01-06 Thread INCLUB
**
   
 【INCLUBのメルマガお宝情報】(くじ付き)
   ◆貴方のビジネスパートナーです◆

**
 ★「くじ」に当たれば有料独占広告が3回無料で配信できます
  「くじ」はメルマガの最後の方にあります(1日3回まで)
[EMAIL PROTECTED]
★===TOP=★
     ■あなたの未来を変える奇跡です!!■
  ★あのニナファームが日本上陸!★
  毎週毎日、破竹の勢いで登録者が増えつづけています
   ★「サンテアージュ」★この素晴らしいサプリメント!!
なにせ、ヨーロッパ・アメリカを中心に、あの『ルイ・ヴィトン』
グループの製薬会社・フォルテファーマ社が500万個も販売した
実績をもつ アンチエイジングとスリミングをかねたサプリメントが
 << 日本上陸 >> したんです!!
 日本では  <<  ニナファーム・ジャポン >> だけが
   販売権を独占市場で所持しています
今すぐ資料請求しませんか?

      ★ニナファーム★資料請求申し込み
  ↓ ↓ ↓
 http://marioda.web.fc2.com/nina/santeage1.html
★=TOP===★
INCLUBはあなたのビジネスを応援します
どんどん投稿してくださいね!お待ちしています

★=PR===★
  ●今年の目標がダイエットの人は、これで間違いなく達成しましょう●

   激やせ注意!美容のプロが簡単・即効でやせるダイエットを公開!
   ・3日坊主続きの私が、このプログラムで大成功でした!
   ・実践の書・・これすごいです!これなら誰でも成功できますね!

感謝の声が止まらないという成功者続出の秘密とは?
   そのヒミツを知りたい方はコチラから
★誰でもカンタンにスリムを実現!!知られざるヒミツの方法!

  http://www.affilitool.com/file/19063.html
★===PR=★
MLMについて
 丸特情報館⇒ http://www2s.biglobe.ne.jp/~marutoku/index.html


INCLUBでは、みなさまの投稿お待ちしています
   ↓ ↓ ↓ ↓
○─○
 皆様の投稿をお待ちしています
*無料投稿はこちらから⇒ http://www.formpro.jp/form.php?fid=21660
 お気軽にどうぞ 
*効果抜群の独占広告は有料になりますが、大変お安く設定していますので
 是非ご利用してください。TOP広告も用意しています。
 有料広告申し込み   ⇒ http://marioda.net/melmaga/yuryoumm
○─○

◆◇―――◇◆
  有料一括投稿システムは【ReadINCLUB】へ!只今8万部配信中です
   ★ビジネスの宣伝は、効果のあるメルマガ配信が1番です★
  ⇒⇒ http://marioda.net/ReadINClub/ikkatu
     ■優良なメルマガ発行者の提携申し込みも受付中です■
◆◇―――◇◆



INCLUBの井上です


有料特選広告
■☆■☆■☆■☆■☆■☆■☆■☆■☆■☆■☆■☆■☆■☆■☆■☆■☆■

   携帯電話のネットビジネス市場は、これから大爆発を起こす!
   今のうちに行動して、先行者利益をガッポリ手に入れませんか?

■☆■☆■☆■☆■☆■☆■☆■☆■☆■☆■☆■☆■☆■☆■☆■☆■☆■

”携帯サイト事業の権利的収益ビジネス”
~~
 リッチマンビジネスクラブが推奨するビジネスについて
 
 ご案内をします。

 ⇒   http://www.1richman.com/?123451081


 毎日配信されるメールを読んで、さらに詳細を確認したい方は、
 全てが理解できるオンラインセミナーに、ご参加ください!

 ここまでのサポート体制があるビジネスチームは、滅多にありません。
  → メーリングリストで概要を確認 & たくさんの方に質問ができる!
  → 事業内容についてインターネット説明会を自宅で聞くことができる!

 ビジネスの内容を聞くのは無料!

 あなたの将来を大きく逆転させるキッカケがココにあります。


【重要】 私は過去に様々なネットビジネスを経験してきた
 そして、過去に失敗を通して学んだ、

 『 儲からないビジネス裏事情 』を、お伝えしたいと思います

 参考程度にごらん下さい。

 これを十分に知らないと「登録費だけ支払った」で終わったりします。

 (1)「儲からない報酬システム」
  ガンバってもガンバっても
  高収入にたどり着くまで時間が掛かるシステムだと
  途中で挫折してしまう人がホトンド。
  速いスピードで収益につながるプランを選びましょう(^^)

 (2)「広告代よりも少ない収入」
  1人ビジネス参加してもらって2000円程度の報酬なら
  広告費に1万円使えば、大きな赤字です。
  きっちり採算があうビジネスを選びましょう(^^)


 (3)「宿泊・交通費のかかるセミナー参加」
  自分が地域セミナーに参加しないと、稼げないようなビジネスは
  時間と経費が大きくかかるので、これも赤字になりやすい。
  交通費、会議代、場所代、着てゆく洋服、だけでもバカになりません。
  子育て中でもお家でビジネスできるものを選びましょう(^^)


 (4)「ビデオ資料・試供品等の送付が必須」
  資料ビデオをダビングして送ったり、健康食品の試供品を送るなど
  これも個人負担で赤字の共連れになります。
  インターネットをうまく活用すれば、そんな問題はありません(^^)


 (5)「3年以上過ぎた古くて反応の無いビジネス」
  どんなビジネスでも、3年以上続けてインターネット広告をして
  ると広告反応が落ちてきます。
  資料請求を取るコストが年々と高くなってきます。
  3年以上前のビジネスに参加してませんか?


  いかがでしょうか??身に覚えはありませんか?


   ここに最良・最強のビジネスを紹介します
  ~~
⇒   http://www.1richman.com/?123451081

●─●


これが不労所得です


なんとなんと12月分の配当が¥81,798円です

〜不労deオールミリオネア〜

⇒ http://www.affilitool.com/file/19203.html


毎月5万円から10万円くらいが分配金として
もらえるんです

これが本当の不労所得です



インフォ業界に激震が……

完全不労所得とはこのことです

みんなを稼がせる唯一の方法を作り出した!!

その名も【 〜不労deオールミリオネア〜 】

なんとなんと、12月分の配当が¥81,798円です


本当に稼ぎたい!儲かりたいと思うのであれば
その訳をご自身の目でお確かめ下さい!

⇒ http://www.affilitool.com/file/19203.html



それは!

業界初!の 「稼げるビジネス」から

「稼がせるビジネス」へ時代は変わります

と言うか、変えさせて頂きます!

要するに今日からは「稼げない、儲からない」なんてことは

少なくても、この企画でいなくなると言うことです!
(一番肝心なことですが)


ですから、今までのような

「自分で稼ぎ続けなくてはならない」
こんなことからも解放されます


「今度は、私があなたを稼がせる
そんな新しい時代になります


そして、収入の取りこぼしを無くす為にはこの方法しかありません!

なぜなら、私の収入をあなたに分配するからなんです!」


ということでこの〜不労deミリオネア〜は

有限会社野路興業が税金対策で、利益を購入者に分配した方が

いいということで、始めた企画なんです



***
【 〜不労deオールミリオネア〜 】
12月度の総合分配額はお1人様¥81,798円!
総合分配累計額は驚きの¥188,188円の実績!
インフォ業界に激震が・・完全不労所得とはこのことだ!
今までこんなことを言いきった人は存在しない・・
「私の収入をあなたにも分配しちゃいます宣言!」
あなたは有り余る時間とお金!
今後どうされますか?この事実、あなたの目で今すぐ
お確かめ下さい!
その名も「不労deオールミリオネア」
限定特典1.2.3.4&無料メールサポート&返金制度付
***



これは購入するしかないでしょう

〜不労deオールミリオネア〜
⇒ http://www.affilitool.com/file/19203.html





●─●

◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆
   ◎今日も「おみくじ」を引きましょう◎
    ★当たるかな!!こちらをポチっと★
  http://bi-max.net/kuji/kuji.cgi?id=inclub
◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆

●─●


無料投稿1
◆∞◆
   ■簡単・明快・正統派のビジネスです■
◆∞◆

★凄い報酬プランです
 みんなに報酬を取れるようになっています
★凄い商品です
 1本で6役の美容ジェル「オードセリュール」が最高です
★グループ全体でフォローしてくれます
 メーリングリストでメンバー全員と楽しみながらビジネスができます
★宣伝HPが支給されるので、完全在宅で作業できます
 主婦・OLさん・子育て中のママさんにもおすすめです

毎日、登録者が殺到しています

こんな凄い情報!素通りしてもいいんですか??

真面目に楽しくMLMというものに参加してみようかな??
っていう方は、とりあえずゲストML(無料)に参加して

Bug#459507: xserver-xorg: Remove obsole init script on package upgrade

2008-01-06 Thread Michael Biebl
Package: xserver-xorg
Version: 1:7.3+9
Severity: normal

Hi,

it seems that the (obsolete) init script
/etc/init.d/xserver-xorg 
is not removed on package upgrades.

A way to correctly handle this conffile upgrade is described here:
http://wiki.debian.org/DpkgConffileHandling

Cheers,
Michael


-- Package-specific info:
Contents of /var/lib/x11/X.roster:
xserver-xorg

/var/lib/x11/X.md5sum does not exist.

X server symlink status:
lrwxrwxrwx 1 root root 13 2006-11-15 01:08 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1672764 2007-12-22 01:43 /usr/bin/Xorg

Contents of /var/lib/x11/xorg.conf.roster:
xserver-xorg

VGA-compatible devices on PCI bus:
01:00.0 VGA compatible controller: ATI Technologies Inc Radeon RV250 [Mobility 
FireGL 9000] (rev 01)

/etc/X11/xorg.conf does not match checksum in /var/lib/x11/xorg.conf.md5sum.

Xorg X server configuration file status:
-rw-r--r-- 1 root root 1011 2008-01-04 03:39 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
#  (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the  manual page.
# (Type man  at the shell prompt.)
#
# This file is automatically updated on  package upgrades *only*
# if it has not been modified since the last upgrade of the 
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh 

Section Device
Identifier  ATI Technologies Inc Radeon R250 [Mobility FireGL 
9000]
Driver  radeon
BusID   PCI:1:0:0
Option  XAANoOffscreenPixmaps
Option  AGPMode   4
EndSection

Section Monitor
Identifier  Configured Monitor
Option  DPMS
EndSection

Section Screen
Identifier  Default Screen
Monitor Configured Monitor
DefaultDepth24
SubSection Display
Virtual 2960 1050
Modes   1680x1050
EndSubSection
EndSection



Xorg X server log files on system:
-rw-r--r-- 1 root root 43595 2007-12-11 17:56 /var/log/Xorg.20.log
-rw-r--r-- 1 root root 37976 2007-12-19 07:34 /var/log/Xorg.1.log
-rw-r--r-- 1 root root 47732 2008-01-07 00:39 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file
/var/log/Xorg.0.log:

X.Org X Server 1.4.0
Release Date: 5 September 2007
X Protocol Version 11, Revision 0
Build Operating System: Linux Debian (xorg-server 2:1.4.1~git20071212-2)
Current Operating System: Linux pluto 2.6.23.12 #1 Wed Dec 19 06:44:03 CET 2007 
i686
Build Date: 22 December 2007  01:30:34AM
 
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/Xorg.0.log, Time: Sun Jan  6 23:29:17 2008
(==) Using config file: /etc/X11/xorg.conf
(==) No Layout section.  Using the first Screen section.
(**) |--Screen Default Screen (0)
(**) |   |--Monitor Configured Monitor
(==) No device specified for screen Default Screen.
Using the first device section listed.
(**) |   |--Device ATI Technologies Inc Radeon R250 [Mobility FireGL 9000]
(==) |--Input Device default pointer
(==) |--Input Device default keyboard
(==) The core pointer device wasn't specified explicitly in the layout.
Using the default mouse configuration.
(==) The core keyboard device wasn't specified explicitly in the layout.
Using the default keyboard configuration.
(==) Automatically adding devices
(==) Automatically enabling devices
(==) No FontPath specified.  Using compiled-in default.
(WW) The directory /usr/share/fonts/X11/cyrillic does not exist.
Entry deleted from font path.
(WW) The directory /var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType does not 
exist.
Entry deleted from font path.
(==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/100dpi/:unscaled,
/usr/share/fonts/X11/75dpi/:unscaled,
/usr/share/fonts/X11/Type1,
/usr/share/fonts/X11/100dpi,
/usr/share/fonts/X11/75dpi
(==) RgbPath set to /etc/X11/rgb
(==) ModulePath set to /usr/lib/xorg/modules
(II) Open ACPI successful (/var/run/acpid.socket)
(II) Loader magic: 0x81d85a0
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.3
X.Org Video Driver: 2.0
X.Org XInput driver : 2.0
X.Org Server Extension : 0.3
X.Org Font Renderer : 0.5
(II) Loader running on linux
(II) LoadModule: pcidata
(II) Loading /usr/lib/xorg/modules//libpcidata.so
(II) Module pcidata: vendor=X.Org Foundation
compiled for 1.4.0, module version = 1.0.0
 

BATCH NO: (N-222-6747,E-900-56)

2008-01-06 Thread Fondazion Di Vittorio

Fondazion Di Vittorio, ITALY
http://www.fondazionedivittorio.it
BATCH NO: (N-222-6747,E-900-56)

Dear Beneficiary,

Congratulations The Foundation Di Vittorio has chosen you by the board
 of
trustees as one of the final recipients of a cash Grant/Donation for
 your own
personal,educational, and business development.

To celebrate the 30th anniversary program,We are giving out a yearly
donation of US$500,000.00 (Five Hundred Thousand United States Dollars)

to 40 lucky recipients, as charity donations/aid from the Vittorio
Foundation, ECOWAS you are to fill the above form and send it back
to the Executive Secretary for verification.BATCH
 NO(N-222-6747,E-900-56)

Full Name:Address:
Occupation:. Country:..
Telephone: Sex:
Age:. Nationality:..

Payment Remittances:
Executive Secretary: Mr.Sean Brown
Email: [EMAIL PROTECTED]


NOTE: All information is strictly confidential.

Mr. Andrea Gianfagna
(Foundation officer)






-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#444223: xserver-xorg-video-ati: RS480 (radeon express X200G series): display goes to sleep after upgrade to latest unstable/sid

2008-01-06 Thread Junichi Uekawa
Hi,

 I asked our Gnome guys. The reply is below:
 
 Yes, the GNOME session does indeed some RandR setup based on the
 configured display properties, but only if the user has set them in
 gnome-display-properties. I think it only tries to change the resolution
 and refresh rate of the screen, and it doesn’t get the data through
 RandR 1.2.

hmm..

 
 To delete this configuration, you can run:
   gconftool --recursive-unset /desktop/gnome/screen

Thanks!



regards,
junichi
-- 
[EMAIL PROTECTED],netfort.gr.jp}   Debian Project




Processed: reassign 429432 to xserver-xorg-video-ati, reassign 451537 to xserver-xorg-core ... ...

2008-01-06 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.10.11
 reassign 429432 xserver-xorg-video-ati
Bug#429432: xserver-xorg: [ati/r128] 1152x768 can no longer be used on 
PowerBook, incorrect display
Bug reassigned from package `xserver-xorg' to `xserver-xorg-video-ati'.

 reassign 451537 xserver-xorg-core
Bug#451537: xserver-xorg: Can no longer scroll up/down with edge of touchpad
Bug reassigned from package `xserver-xorg' to `xserver-xorg-core'.

 reassign 452622 nvidia-glx
Bug#452622: xserver-xorg: resolution switching now causes black screen
Bug reassigned from package `xserver-xorg' to `nvidia-glx'.

 reassign 404450 xresprobe
Bug#404450: debconf: configuring X from console makes the screen go blank
Bug reassigned from package `xserver-xorg' to `xresprobe'.


End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]