xserver-xorg-input-evdev: Changes to 'ubuntu'

2010-02-23 Thread Robert Hooker
 ChangeLog |   70 ++
 configure.ac  |2 
 debian/changelog  |   43 
 debian/control|   21 +
 debian/local/65-xorg-evdev.rules  |   15 -
 debian/patches/100-silence-eviocgname-error.patch |   25 ++
 debian/patches/series |1 
 debian/xserver-xorg-input-evdev-dev.install   |3 
 debian/xserver-xorg-input-evdev.postinst.in   |   21 +
 debian/xsfbs/xsfbs.mk |   21 -
 debian/xsfbs/xsfbs.sh |  233 --
 src/evdev.c   |   43 +++-
 12 files changed, 228 insertions(+), 270 deletions(-)

New commits:
commit 63ab79051577025372027c6172cec5eef03b6b5f
Author: Robert Hooker 
Date:   Tue Feb 23 23:38:36 2010 -0500

Add a patch to silence the EVIOCGNAME errors from the log.

diff --git a/debian/changelog b/debian/changelog
index ee4f783..cbcb8f4 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+xserver-xorg-input-evdev (1:2.3.2-3ubuntu1) lucid; urgency=low
+
+  * Add 100-silence-eviocgname-error.patch:
+ - Silences the harmless EVIOCGNAME errors from the log.
+
+ -- Robert Hooker   Tue, 23 Feb 2010 23:28:05 -0500
+
 xserver-xorg-input-evdev (1:2.3.2-3) unstable; urgency=low
 
   * 65-xorg-evdev.rules: instead of blacklisting joysticks, explicitly
diff --git a/debian/patches/100-silence-eviocgname-error.patch 
b/debian/patches/100-silence-eviocgname-error.patch
new file mode 100644
index 000..c9cfb57
--- /dev/null
+++ b/debian/patches/100-silence-eviocgname-error.patch
@@ -0,0 +1,25 @@
+From 3a06d505b3b1eaecc6e55aedd22106655d73f12a Mon Sep 17 00:00:00 2001
+From: Robert Hooker 
+Date: Tue, 23 Feb 2010 22:53:52 -0500
+Subject: [PATCH] Silence EVIOCGNAME error.
+
+---
+ src/evdev.c |2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+diff --git a/src/evdev.c b/src/evdev.c
+index 58ffcea..f9aae2c 100644
+--- a/src/evdev.c
 b/src/evdev.c
+@@ -1656,7 +1656,7 @@ EvdevCacheCompare(InputInfoPtr pInfo, BOOL compare)
+ unsigned long led_bitmask[NLONGS(LED_CNT)] = {0};
+ 
+ if (ioctl(pInfo->fd, EVIOCGNAME(sizeof(name) - 1), name) < 0) {
+-xf86Msg(X_ERROR, "ioctl EVIOCGNAME failed: %s\n", strerror(errno));
++/* xf86Msg(X_ERROR, "ioctl EVIOCGNAME failed: %s\n", 
strerror(errno)); */
+ goto error;
+ }
+ 
+-- 
+1.7.0
+
diff --git a/debian/patches/series b/debian/patches/series
index e69de29..33cdf8c 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -0,0 +1 @@
+100-silence-eviocgname-error.patch

commit 0d9675c50a127d4db06b87dd84307f32d7a719ef
Author: Julien Cristau 
Date:   Tue Jan 12 10:40:25 2010 +

Prepare changelog for upload

diff --git a/debian/changelog b/debian/changelog
index 0620050..8902c90 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,11 +1,11 @@
-xserver-xorg-input-evdev (1:2.3.2-3) UNRELEASED; urgency=low
+xserver-xorg-input-evdev (1:2.3.2-3) unstable; urgency=low
 
   * 65-xorg-evdev.rules: instead of blacklisting joysticks, explicitly
 whitelist keyboards, mice, touchscreens and touchpads (closes: #564219).
 We'll need a better solution, but this should do for now.
   * No need to test for linux in postinst, this package only exists on linux.
 
- -- Julien Cristau   Tue, 12 Jan 2010 10:13:45 +
+ -- Julien Cristau   Tue, 12 Jan 2010 10:36:54 +
 
 xserver-xorg-input-evdev (1:2.3.2-2) unstable; urgency=low
 

commit 714a2424d591fb7d7ef016ba89112502bb67584f
Author: Julien Cristau 
Date:   Tue Jan 12 10:36:39 2010 +

No need to test for linux in postinst, this package only exists on linux.

diff --git a/debian/changelog b/debian/changelog
index bf1faae..0620050 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,6 +3,7 @@ xserver-xorg-input-evdev (1:2.3.2-3) UNRELEASED; urgency=low
   * 65-xorg-evdev.rules: instead of blacklisting joysticks, explicitly
 whitelist keyboards, mice, touchscreens and touchpads (closes: #564219).
 We'll need a better solution, but this should do for now.
+  * No need to test for linux in postinst, this package only exists on linux.
 
  -- Julien Cristau   Tue, 12 Jan 2010 10:13:45 +
 
diff --git a/debian/xserver-xorg-input-evdev.postinst.in 
b/debian/xserver-xorg-input-evdev.postinst.in
index 009f2c7..014c92b 100644
--- a/debian/xserver-xorg-input-evdev.postinst.in
+++ b/debian/xserver-xorg-input-evdev.postinst.in
@@ -10,9 +10,7 @@ THIS_SCRIPT=postinst
 case "$1" in
   configure)
   if dpkg --compare-versions "$2" lt 1:2.3.2-3; then
-if [ `uname -s` = "Linux" ]; then
-  udevadm trigger --subsystem-match=input --action=change
-fi
+udevadm trigger --subsystem-match=input --action=change
   fi
 esac
 

commit 29fb39fe6898c221ed4870cfe59683ff44af8de5
Author: Julien Cristau 
Date:   Tue Jan 12 10:35:14 2010 +00

Bug#567756: xserver-xorg-input-all: keyboard not working after squeeze upgrade

2010-02-23 Thread David Wlazlo
I'm having the same problem. 

I  am using an apple laptop, and mapped the right and left mouse buttons
to the keyboard, and these are still working. These are mapped
using /etc/sysctl.conf

Which of the above 'fixes' is supposed to work? 




-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/1266984775.5877.5.ca...@ground



xorg: Changes to 'ubuntu'

2010-02-23 Thread Bryce Harrington
 debian/changelog|   10 ++
 debian/x11-common.links |6 +++---
 2 files changed, 13 insertions(+), 3 deletions(-)

New commits:
commit 67c0c68fdbae6d9e78b455e976c7d8a09afe73d1
Author: Bryce Harrington 
Date:   Tue Feb 23 18:45:12 2010 -0800

Postpone upload since we're frozen for alpha-3

diff --git a/debian/changelog b/debian/changelog
index 4492d73..d59c2e6 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xorg (1:7.5+1ubuntu9) lucid; urgency=low
+xorg (1:7.5+1ubuntu9) UNRELEASED; urgency=low
 
   * debian/x11-common.links:
 + Update links for renamed packages
@@ -6,7 +6,7 @@ xorg (1:7.5+1ubuntu9) lucid; urgency=low
 + Add apport hook for -vmmouse (LP: #517664)
 + Remove apport hooks for packages now removed from repository
 
- -- Bryce Harrington   Tue, 23 Feb 2010 18:42:44 -0800
+ -- Bryce Harrington   Tue, 23 Feb 2010 18:45:03 -0800
 
 xorg (1:7.5+1ubuntu8) lucid; urgency=low
 

commit 627c925de4293cae97053b5e87453e5c7c735b8b
Author: Bryce Harrington 
Date:   Tue Feb 23 18:44:55 2010 -0800

Update apport hooks

diff --git a/debian/changelog b/debian/changelog
index c1c6dbf..4492d73 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,13 @@
+xorg (1:7.5+1ubuntu9) lucid; urgency=low
+
+  * debian/x11-common.links:
++ Update links for renamed packages
++ Add apport hook for nvidia-graphics-drivers
++ Add apport hook for -vmmouse (LP: #517664)
++ Remove apport hooks for packages now removed from repository
+
+ -- Bryce Harrington   Tue, 23 Feb 2010 18:42:44 -0800
+
 xorg (1:7.5+1ubuntu8) lucid; urgency=low
 
   * debian/scripts/vars.powerpc, debian/scripts/vars.ppc64: Remove the
diff --git a/debian/x11-common.links b/debian/x11-common.links
index ec6d38a..abc514c 100644
--- a/debian/x11-common.links
+++ b/debian/x11-common.links
@@ -10,22 +10,22 @@ usr/share/apport/package-hooks/source_xorg.py 
usr/share/apport/package-hooks/sou
 usr/share/apport/package-hooks/source_xorg.py 
usr/share/apport/package-hooks/source_nvidia-graphics-drivers-173.py
 usr/share/apport/package-hooks/source_xorg.py 
usr/share/apport/package-hooks/source_nvidia-graphics-drivers-180.py
 usr/share/apport/package-hooks/source_xorg.py 
usr/share/apport/package-hooks/source_nvidia-graphics-drivers-common.py
+usr/share/apport/package-hooks/source_xorg.py 
usr/share/apport/package-hooks/source_nvidia-graphics-drivers.py
 usr/share/apport/package-hooks/source_xorg.py 
usr/share/apport/package-hooks/source_fglrx-installer.py
-usr/share/apport/package-hooks/source_xorg.py 
usr/share/apport/package-hooks/source_wacom-tools.py
 usr/share/apport/package-hooks/source_xorg.py 
usr/share/apport/package-hooks/source_x11-xserver-utils.py
-usr/share/apport/package-hooks/source_xorg.py 
usr/share/apport/package-hooks/source_xf86-input-evtouch.py
-usr/share/apport/package-hooks/source_xorg.py 
usr/share/apport/package-hooks/source_xfree86-driver-synaptics.py
 usr/share/apport/package-hooks/source_xorg.py 
usr/share/apport/package-hooks/source_xinit.py
 usr/share/apport/package-hooks/source_xorg.py 
usr/share/apport/package-hooks/source_xkeyboard-config.py
 usr/share/apport/package-hooks/source_xorg.py 
usr/share/apport/package-hooks/source_xrandr.py
 usr/share/apport/package-hooks/source_xorg.py 
usr/share/apport/package-hooks/source_xorg_server.py
 usr/share/apport/package-hooks/source_xorg.py 
usr/share/apport/package-hooks/source_xserver-xorg-input-elographics.py
 usr/share/apport/package-hooks/source_xorg.py 
usr/share/apport/package-hooks/source_xserver-xorg-input-evdev.py
+usr/share/apport/package-hooks/source_xorg.py 
usr/share/apport/package-hooks/source_xserver-xorg-input-evtouch.py
 usr/share/apport/package-hooks/source_xorg.py 
usr/share/apport/package-hooks/source_xserver-xorg-input-joystick.py
 usr/share/apport/package-hooks/source_xorg.py 
usr/share/apport/package-hooks/source_xserver-xorg-input-keyboard.py
 usr/share/apport/package-hooks/source_xorg.py 
usr/share/apport/package-hooks/source_xserver-xorg-input-mouse.py
 usr/share/apport/package-hooks/source_xorg.py 
usr/share/apport/package-hooks/source_xserver-xorg-input-synaptics.py
 usr/share/apport/package-hooks/source_xorg.py 
usr/share/apport/package-hooks/source_xserver-xorg-input-wacom.py
+usr/share/apport/package-hooks/source_xorg.py 
usr/share/apport/package-hooks/source_xserver-xorg-input-vmmouse.py
 usr/share/apport/package-hooks/source_xorg.py 
usr/share/apport/package-hooks/source_xserver-xorg-video-ati.py
 usr/share/apport/package-hooks/source_xorg.py 
usr/share/apport/package-hooks/source_xserver-xorg-video-fbdev.py
 usr/share/apport/package-hooks/source_xorg.py 
usr/share/apport/package-hooks/source_xserver-xorg-video-geode.py


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1nk7fu-0002h5...@alioth.debian.org



xorg: Changes to 'ubuntu'

2010-02-23 Thread Bryce Harrington
 debian/changelog|9 +
 debian/scripts/vars.powerpc |1 -
 debian/scripts/vars.ppc64   |1 -
 3 files changed, 9 insertions(+), 2 deletions(-)

New commits:
commit 46cd4bbc9c5cf1bef06b57cf8ebaee5fc02d6b3a
Author: Bryce Harrington 
Date:   Tue Feb 23 18:23:11 2010 -0800

No -nouveau for PPC yet

diff --git a/debian/changelog b/debian/changelog
index ec9f4b0..c1c6dbf 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,12 @@
+xorg (1:7.5+1ubuntu8) lucid; urgency=low
+
+  * debian/scripts/vars.powerpc, debian/scripts/vars.ppc64: Remove the
+dependency on xserver-xorg-video-nouveau. Xserver-xorg-video-nouveau
+depends on linux backport modules packages that are unavailable on
+powerpc. (LP: #525683)
+
+ -- Luke Yelavich   Tue, 23 Feb 2010 19:24:12 +1100
+
 xorg (1:7.5+1ubuntu7) lucid; urgency=low
 
   * debian/local/Failsafe/failsafeXServer:
diff --git a/debian/scripts/vars.powerpc b/debian/scripts/vars.powerpc
index af1e61e..a3513d7 100755
--- a/debian/scripts/vars.powerpc
+++ b/debian/scripts/vars.powerpc
@@ -7,7 +7,6 @@ XSERVER_XORG_VIDEO_DEPENDS="xserver-xorg-video-ati, \
xserver-xorg-video-chips, \
xserver-xorg-video-fbdev, \
xserver-xorg-video-mga, \
-   xserver-xorg-video-nouveau, \
xserver-xorg-video-nv, \
xserver-xorg-video-s3, \
xserver-xorg-video-s3virge, \
diff --git a/debian/scripts/vars.ppc64 b/debian/scripts/vars.ppc64
index 0402ef5..d331787 100755
--- a/debian/scripts/vars.ppc64
+++ b/debian/scripts/vars.ppc64
@@ -7,7 +7,6 @@ XSERVER_XORG_VIDEO_DEPENDS="xserver-xorg-video-ati, \
xserver-xorg-video-chips, \
xserver-xorg-video-fbdev, \
xserver-xorg-video-mga, \
-   xserver-xorg-video-nouveau, \
xserver-xorg-video-nv, \
xserver-xorg-video-s3, \
xserver-xorg-video-s3virge, \


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1nk6ur-0005zz...@alioth.debian.org



Bug#563911: libgl1-mesa-dri: [r600] drmRadeonCmdBuffer: -22.

2010-02-23 Thread Fabian Knittel
Hello,

in January, I was able to reproduce the reported problems, but current
squeeze appears to have slightly improved things: I no longer see the
reported errors and OpenGL applications start-up fine. Unfortunately,
the textures are completely broken, so accelerated 3D is still unusable.

The good news is, that following the hints in [0] allowed me to get 3D
fully and correctly working (along with KMS and proper textures). So
current experimental fixes things for me:

  $ lspci | grep Radeon
  01:00.0 VGA compatible controller: ATI Technologies Inc RV730XT
[Radeon HD 4670]

  $ uname -s -r -v -m -o
  Linux 2.6.32-trunk-686-bigmem #1 SMP Sun Jan 10 07:12:17 UTC 2010 i686
GNU/Linux

  $ grep radeon /etc/modules
  radeon

  $ grep radeon /etc/modprobe.d/local.conf
  options radeon modeset=1

  $ dpkg -l '*mesa*' | grep ^ii
  ii  libgl1-mesa-dri 7.7-3 A free implementation of the OpenGL API -- D
  ii  libgl1-mesa-glx 7.7-3 A free implementation of the OpenGL API -- G
  ii  libglu1-mesa7.7-3 The OpenGL utility library (GLU)
  ii  mesa-utils  7.7-3 Miscellaneous Mesa GL utilities

  $ dmesg | grep radeon
  [   14.669219] [drm] radeon kernel modesetting enabled.
  [   14.669261] radeon :01:00.0: PCI INT A -> GSI 18 (level, low)
-> IRQ 18
  [   14.669266] radeon :01:00.0: setting latency timer to 64
  [   14.670318] [drm] radeon: Initializing kernel modesetting.
  [   14.673504] [drm] radeon: 256M of VRAM memory ready
  [   14.673505] [drm] radeon: 512M of GTT memory ready.
  [   14.673549] platform radeon_cp.0: firmware: requesting
radeon/RV730_pfp.bin
  [   14.694983] platform radeon_cp.0: firmware: requesting
radeon/RV730_me.bin
  [   14.738331] [drm] radeon: ib pool ready.
  [   15.362924] fb0: radeondrmfb frame buffer device
  [   15.362929] [drm] Initialized radeon 2.0.0 20080528 for
:01:00.0 on minor 0
  [ 1426.412028] radeon :01:00.0: setting latency timer to 64

Cheers
Fabian

0: http://bgoglin.livejournal.com/19346.html



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4b846258.8090...@avona.com



Processed: found 547810 in 0.8.4-1

2010-02-23 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> found 547810 0.8.4-1
Bug #547810 {Done: Sean Finney } [ccsm] ccsm: manipulates 
site-packages/ directly, failing with Python 2.6
There is no source info for the package 'ccsm' at version '0.8.4-1' with 
architecture ''
Unable to make a source version for version '0.8.4-1'
Bug Marked as found in versions 0.8.4-1; no longer marked as fixed in versions 
ccsm/0.8.4-1 and reopened.
> thanks
Stopping processing here.

Please contact me if you need assistance.

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


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



Bug#569430: marked as done (x11-apps: FTBFS: mkdir: cannot create directory `app-defaults': File exists)

2010-02-23 Thread Debian Bug Tracking System
Your message dated Tue, 23 Feb 2010 22:16:53 +
with message-id 
and subject line Bug#569430: fixed in x11-apps 7.5+3
has caused the Debian Bug report #569430,
regarding x11-apps: FTBFS: mkdir: cannot create directory `app-defaults': File 
exists
to be marked as done.

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

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


-- 
569430: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=569430
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: x11-apps
Version: 7.5+2
Severity: serious
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20100211 qa-ftbfs
Justification: FTBFS on amd64

Hi,

During a rebuild of all packages in sid, your package failed to build on
amd64.

Relevant part:
> ar cru libmp.a libmp_a-mp.o libmp_a-mpi.o libmp_a-mpr.o 
> cp app-defaults/Xedit.ad app-defaults/Xedit
> ranlib libmp.a
> ranlib liblisp.a
> ranlib libre.a
> yes
> gcc -I../xedit/lisp/re -I../xedit/lisp/mp -DLISP 
> -DLISPDIR=\"/usr/lib/X11/xedit/lisp\" -D_BSD_SOURCE -Wall -g -O2   -o 
> lisp/lsp lisp_lsp-hash.o lisp_lsp-lsp.o   -L. -llisp -lre -lmp -lm 
> mkdir: cannot create directory `app-defaults': File exists
> make[2]: *** [app-defaults/Xedit-color] Error 1

The full build log is available from:
   
http://people.debian.org/~lucas/logs/2010/02/11/x11-apps_7.5+2_lsid64.buildlog

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot.  Internet was not
accessible from the build systems.

-- 
| Lucas Nussbaum
| lu...@lucas-nussbaum.net   http://www.lucas-nussbaum.net/ |
| jabber: lu...@nussbaum.fr GPG: 1024D/023B3F4F |


--- End Message ---
--- Begin Message ---
Source: x11-apps
Source-Version: 7.5+3

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

x11-apps_7.5+3.dsc
  to main/x/x11-apps/x11-apps_7.5+3.dsc
x11-apps_7.5+3.tar.gz
  to main/x/x11-apps/x11-apps_7.5+3.tar.gz
x11-apps_7.5+3_i386.deb
  to main/x/x11-apps/x11-apps_7.5+3_i386.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 569...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Brice Goglin  (supplier of updated x11-apps package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 23 Feb 2010 21:51:06 +0100
Source: x11-apps
Binary: x11-apps
Architecture: source i386
Version: 7.5+3
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force 
Changed-By: Brice Goglin 
Description: 
 x11-apps   - X applications
Closes: 569430
Changes: 
 x11-apps (7.5+3) unstable; urgency=low
 .
   * Add 01_xedit_mkdir_races.diff to fix FTBFS, closes: #569430.
Checksums-Sha1: 
 2adfe81a0b6af12077c78e33a1182ea2770ff992 1226 x11-apps_7.5+3.dsc
 6645b7c27a042c220c693a1ec59a1284c0b035e9 3385434 x11-apps_7.5+3.tar.gz
 9a0dbbc082561d08a9ba620739f04f4f75791618 663792 x11-apps_7.5+3_i386.deb
Checksums-Sha256: 
 ed97b5271cf7f6765475d99df89a962a081a456e5b17da4c4014aa6fcb59fd40 1226 
x11-apps_7.5+3.dsc
 bf3cdff31d5a1cb38d9aba590f822a87ffbafe624f96b60ae3787e50edbce581 3385434 
x11-apps_7.5+3.tar.gz
 e9ba016956deac3152e5dede81e7bf50d44006ea2a5dce560fd36da696fd52dc 663792 
x11-apps_7.5+3_i386.deb
Files: 
 f9a6fdc4a6b859fb9c96f4ee2c46c1c7 1226 x11 optional x11-apps_7.5+3.dsc
 b21f5b88d68af5de0e466a1fefc8aef8 3385434 x11 optional x11-apps_7.5+3.tar.gz
 ac555f812629bfd6471facddf2e4c21d 663792 x11 optional x11-apps_7.5+3_i386.deb

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

iEYEARECAAYFAkuEQe8ACgkQRh88F8PcWfqhdwCgqx4BPKJzNNP46nOSX/8kN8RD
FoUAn0MgGoM4fDVOXO9cHrEVmwuLCncd
=vc1h
-END PGP SIGNATURE-


--- End Message ---


x11-apps_7.5+3_i386.changes ACCEPTED

2010-02-23 Thread Archive Administrator



Accepted:
x11-apps_7.5+3.dsc
  to main/x/x11-apps/x11-apps_7.5+3.dsc
x11-apps_7.5+3.tar.gz
  to main/x/x11-apps/x11-apps_7.5+3.tar.gz
x11-apps_7.5+3_i386.deb
  to main/x/x11-apps/x11-apps_7.5+3_i386.deb


Override entries for your package:
x11-apps_7.5+3.dsc - source x11
x11-apps_7.5+3_i386.deb - optional x11

Announcing to debian-devel-chan...@lists.debian.org
Closing bugs: 569430 


Thank you for your contribution to Debian.


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1nk33l-0001yl...@ries.debian.org



Bug#567563: Unable to switch to the console

2010-02-23 Thread Brice Goglin
On Sat, Jan 30, 2010 at 01:14:55AM +0500, Sergey I. Sharybin wrote:
> Package: xserver-xorg-video-intel
> Version: 2:2.9.1-2
> Severity: serious
> 
> When I'm trying to switch to the console on my HP Compaq 6720s
> notebook with GME965 videocard image on monitor freezes, mouse
> cursor disappears and nothing more happens. Switching to the X
> server by Alt-F7 unfreezes image on monitor and X server continues
> normal work.
> 
> Additional info is attached to the message.

Does it work better with latest xserver-xorg-core ?

Can you try with latest 2.6.32-trunk-686 kernel package ?
Or even try with 2.6.33-rc ? (with KMS enabled)

Brice




-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100223220528.ga16...@loulous.org



Processed: Re: Bug#547810: ccsm: manipulates site-packages/ directly, failing with Python 2.6

2010-02-23 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> found 547810 0.8.2-2
Bug #547810 {Done: Sean Finney } [ccsm] ccsm: manipulates 
site-packages/ directly, failing with Python 2.6
There is no source info for the package 'ccsm' at version '0.8.2-2' with 
architecture ''
Unable to make a source version for version '0.8.2-2'
Ignoring request to alter found versions of bug #547810 to the same values 
previously set
> tags 547810 - patch
Bug #547810 {Done: Sean Finney } [ccsm] ccsm: manipulates 
site-packages/ directly, failing with Python 2.6
Removed tag(s) 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 debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.126696288223197.transcr...@bugs.debian.org



Bug#547810: ccsm: manipulates site-packages/ directly, failing with Python 2.6

2010-02-23 Thread Jakub Wilk

found 547810 0.8.2-2
tags 547810 - patch
thanks

When rebuilt in an environment with Python 2.6 as the default version, 
your package failed to build from source. Here are the relevant parts of 
the build log:


| running install_lib 
| creating debian/tmp

| creating debian/tmp/usr
| creating debian/tmp/usr/lib
| creating debian/tmp/usr/lib/python2.6
| creating debian/tmp/usr/lib/python2.6/dist-packages
| creating debian/tmp/usr/lib/python2.6/dist-packages/ccm
| copying build/lib.linux-x86_64-2.6/ccm/Widgets.py -> 
debian/tmp/usr/lib/python2.6/dist-packages/ccm
| copying build/lib.linux-x86_64-2.6/ccm/Pages.py -> 
debian/tmp/usr/lib/python2.6/dist-packages/ccm
| copying build/lib.linux-x86_64-2.6/ccm/__init__.py -> 
debian/tmp/usr/lib/python2.6/dist-packages/ccm
| copying build/lib.linux-x86_64-2.6/ccm/Constants.py -> 
debian/tmp/usr/lib/python2.6/dist-packages/ccm
| copying build/lib.linux-x86_64-2.6/ccm/Utils.py -> debian/tmp/usr/lib/python2.6/dist-packages/ccm 
| copying build/lib.linux-x86_64-2.6/ccm/Settings.py -> debian/tmp/usr/lib/python2.6/dist-packages/ccm

| copying build/lib.linux-x86_64-2.6/ccm/Window.py -> 
debian/tmp/usr/lib/python2.6/dist-packages/ccm
| copying build/lib.linux-x86_64-2.6/ccm/Conflicts.py -> 
debian/tmp/usr/lib/python2.6/dist-packages/ccm
[...]
| dh_install --sourcedir=debian/tmp --fail-missing
| dh_install: compizconfig-settings-manager missing files 
(usr/lib/python*/site-packages/ccm/*.py), aborting
| make: *** [binary-arch] Error 2

--
Jakub Wilk


signature.asc
Description: Digital signature


Processed: severity of 567563 is important

2010-02-23 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> severity 567563 important
Bug #567563 [xserver-xorg-video-intel] Unable to switch to the console
Bug #569718 [xserver-xorg-video-intel] Black screen on the console after X exits
Severity set to 'important' from 'serious'

Severity set to 'important' from 'serious'

> thanks
Stopping processing here.

Please contact me if you need assistance.

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


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



Processed: severity of 570007 is important

2010-02-23 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> severity 570007 important
Bug #570007 [xkb-data] xkb-data: Keyboard doesn't work - Key events occur, but 
no Keysym is assigned
Severity set to 'important' from 'grave'

> thanks
Stopping processing here.

Please contact me if you need assistance.

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


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



Bug#570007: xkb-data: Keyboard doesn't work - Key events occur, but no Keysym is assigned

2010-02-23 Thread Brice Goglin
On Mon, Feb 15, 2010 at 08:59:08PM +0100, Paul M. wrote:
> Package: xkb-data
> Version: 1.7-2
> Severity: grave
> Justification: renders package unusable
> 
> After updating to xserver 1.7.5, the keyboard doesn't work, if I start the 
> xserver (it doesn't matter which window manager).
> I get the following output if I start the xserver: 
> www.inf.tu-dresden.de/~s5569359/xstart.log
> 
> xev shows, that the key press events are recognized, but there is no keysym 
> found
> e.g. a and Enter: www.inf.tu-dresden.de/~s5569359/c
> I tried several keymaps. Executing xmodmap -pk while a xsession gives a 
> normal key table. 
> 
> xinitrc and xsession are empty. libx11-6 and all orther related packages are 
> uptodate.

Please send the output of
  /usr/share/bug/xserver-xorg/script 3>&1

Brice




-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100223215901.ga16...@loulous.org



Processed: severity of 565673 is important

2010-02-23 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> severity 565673 important
Bug #565673 [libgl1-mesa-dri] libgl1-mesa-dri: 3d applications completely 
freeze system
Severity set to 'important' from 'serious'

> thanks
Stopping processing here.

Please contact me if you need assistance.

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


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



Bug#567756: marked as done (xserver-xorg-input-all: keyboard not working after squeeze upgrade)

2010-02-23 Thread Debian Bug Tracking System
Your message dated Tue, 23 Feb 2010 22:12:18 +0100
with message-id <20100223211218.ga16...@loulous.org>
and subject line Re: Bug#567756: xserver-xorg-input-all: keyboard not working 
after squeeze upgrade
has caused the Debian Bug report #567756,
regarding xserver-xorg-input-all: keyboard not working after squeeze upgrade
to be marked as done.

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

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


-- 
567756: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=567756
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: xserver-xorg-input-all
Version: 1:7.5+2
Severity: grave
Justification: renders package unusable


After upgrading my Squeeze system, my keyboard is non-responsive under X.
By changing /etc/X11/default-display-manager
from
/usr/bin/gdm
to
/bin/false
thus disabling gnome, I was able to use the console in text mode.
So I'm assuming that it's not a hardware problem.

I'm attaching /var/log/Xorg.0.log



-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: powerpc (ppc)

Kernel: Linux 2.6.32-trunk-powerpc
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash

Versions of packages xserver-xorg-input-all depends on:
ii  xserver-xorg-input-evd 1:2.3.2-3 X.Org X server -- evdev input driv
ii  xserver-xorg-input-syn 1.2.1-1   Synaptics TouchPad driver for X.Or
ii  xserver-xorg-input-wac 0.10.3+20100109-1 X.Org X server -- Wacom input driv

xserver-xorg-input-all recommends no packages.

xserver-xorg-input-all suggests no packages.

-- no debconf information

X.Org X Server 1.7.4
Release Date: 2010-01-08
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.26-2-powerpc64 ppc Debian
Current Operating System: Linux greybox 2.6.32-trunk-powerpc #1 Mon Jan 11 
03:50:43 UTC 2010 ppc
Kernel command line: root=/dev/hda9 ro 
Build Date: 20 January 2010  11:29:49PM
xorg-server 2:1.7.4-2 (bui...@praetorius.debian.org) 
Current version of pixman: 0.16.4
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
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 31 02:39:44 2010
(II) Loader magic: 0x101e2ca0
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.4
X.Org Video Driver: 6.0
X.Org XInput driver : 7.0
X.Org Server Extension : 2.0
(++) using VT number 7

(--) PCI:*(0:0:16:0) 1002:5157:1002:5157 ATI Technologies Inc Radeon RV200 QW 
[Radeon 7500] rev 0, Mem @ 0x9800/134217728, 0x9000/65536, I/O @ 
0x0400/256, BIOS @ 0x/131072
(==) Using default built-in configuration (21 lines)
(==) --- Start of built-in configuration ---
Section "Device"
Identifier  "Builtin Default ati Device 0"
Driver  "ati"
EndSection
Section "Screen"
Identifier  "Builtin Default ati Screen 0"
Device  "Builtin Default ati Device 0"
EndSection
Section "Device"
Identifier  "Builtin Default fbdev Device 0"
Driver  "fbdev"
EndSection
Section "Screen"
Identifier  "Builtin Default fbdev Screen 0"
Device  "Builtin Default fbdev Device 0"
EndSection
Section "ServerLayout"
Identifier  "Builtin Default Layout"
Screen  "Builtin Default ati Screen 0"
Screen  "Builtin Default fbdev Screen 0"
EndSection
(==) --- End of built-in configuration ---
(==) ServerLayout "Builtin Default Layout"
(**) |-->Screen "Builtin Default ati Screen 0" (0)
(**) |   |-->Monitor ""
(**) |   |-->Device "Builtin Default ati Device 0"
(==) No monitor specified for screen "Builtin Default ati Screen 0".
Using a default monitor configuration.
(**) |-->Screen "Builtin Default fbdev Screen 0" (1)
(**) |   |-->Monitor ""
(**) |   |-->Device "Builtin Default fbdev Device 0"
(==) No monitor specified for screen "Builtin Default fbdev Screen 0".
Using a default monitor configuration.
(==) Automatically adding devices
(==) Automatically enabling devices
(WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
Entry deleted from font path.
(==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/1

Bug#567318: xrandr -q

2010-02-23 Thread Samuel Hym
>
> Thanks for reporting this. This does also happen on my machine. Another
> reason to love aRandR :)
>

And you manage to keep cool, knowing there is a nasty dangling pointer
there? ;-)

Best regards,
Sam


Processed: Re: Bug#567619: xserver-xorg: After upgrading squeeze xserver stops responding

2010-02-23 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> reassign 567619 xserver-xorg-video-neomagic
Bug #567619 [xserver-xorg] xserver-xorg: After upgrading squeeze xserver stops 
responding
Bug reassigned from package 'xserver-xorg' to 'xserver-xorg-video-neomagic'.
Bug No longer marked as found in versions xorg/1:7.5+2.
> forcemerge 568887 567619
Bug#568887: xserver-xorg-video-neomagic: neomagic xorg driver fails to start 
due to missing symbol [x86UDelay()]
Bug#567619: xserver-xorg: After upgrading squeeze xserver stops responding
Forcibly Merged 567619 568887.

> 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 debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.126695928412317.transcr...@bugs.debian.org



Processing of x11-apps_7.5+3_i386.changes

2010-02-23 Thread Archive Administrator
x11-apps_7.5+3_i386.changes uploaded successfully to localhost
along with the files:
  x11-apps_7.5+3.dsc
  x11-apps_7.5+3.tar.gz
  x11-apps_7.5+3_i386.deb

Greetings,

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


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1nk1yx-0003wm...@ries.debian.org



x11-apps: Changes to 'refs/tags/x11-apps-7.5+3'

2010-02-23 Thread Brice Goglin
Tag 'x11-apps-7.5+3' created by Brice Goglin  at 2010-02-23 
20:58 +

Tagging upload of x11-apps 7.5+3 to unstable.

Changes since x11-apps-7.5+2:
Brice Goglin (2):
  Add 01_xedit_mkdir_races.diff to fix FTBFS
  Prepare Changelog for upload

Julien Cristau (2):
  debian/watch.*: drop broken filenamemangle rule
  add debian/watch.ico

---
 debian/changelog |6 +
 debian/patches/01_xedit_mkdir_races.diff |  102 +++
 debian/patches/series|1 
 debian/watch.bitmap  |2 
 debian/watch.ico |2 
 debian/watch.oclock  |2 
 debian/watch.x11perf |2 
 debian/watch.xbiff   |2 
 debian/watch.xcalc   |2 
 debian/watch.xclipboard  |2 
 debian/watch.xclock  |2 
 debian/watch.xconsole|2 
 debian/watch.xcursorgen  |2 
 debian/watch.xditview|2 
 debian/watch.xedit   |2 
 debian/watch.xeyes   |2 
 debian/watch.xgc |2 
 debian/watch.xload   |2 
 debian/watch.xlogo   |2 
 debian/watch.xmag|2 
 debian/watch.xman|2 
 debian/watch.xmore   |2 
 debian/watch.xwd |2 
 debian/watch.xwud|2 
 24 files changed, 131 insertions(+), 20 deletions(-)
---


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1nk1u0-0001kr...@alioth.debian.org



x11-apps: Changes to 'debian-unstable'

2010-02-23 Thread Brice Goglin
 debian/changelog |6 +
 debian/patches/01_xedit_mkdir_races.diff |  102 +++
 debian/patches/series|1 
 3 files changed, 109 insertions(+)

New commits:
commit cbb9ec36e0d7db0493833248bfc2ccd98c42
Author: Brice Goglin 
Date:   Tue Feb 23 21:51:46 2010 +0100

Prepare Changelog for upload

diff --git a/debian/changelog b/debian/changelog
index 401965c..dde49c4 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,8 @@
-x11-apps (7.5+3) UNRELEASED; urgency=low
+x11-apps (7.5+3) unstable; urgency=low
 
   * Add 01_xedit_mkdir_races.diff to fix FTBFS, closes: #569430.
 
- -- Brice Goglin   Tue, 23 Feb 2010 21:50:09 +0100
+ -- Brice Goglin   Tue, 23 Feb 2010 21:51:06 +0100
 
 x11-apps (7.5+2) unstable; urgency=low
 

commit 0724efeb47e7c78f0c9a86aef57ca872e286c489
Author: Brice Goglin 
Date:   Tue Feb 23 21:51:04 2010 +0100

Add 01_xedit_mkdir_races.diff to fix FTBFS

diff --git a/debian/changelog b/debian/changelog
index bf2c05e..401965c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+x11-apps (7.5+3) UNRELEASED; urgency=low
+
+  * Add 01_xedit_mkdir_races.diff to fix FTBFS, closes: #569430.
+
+ -- Brice Goglin   Tue, 23 Feb 2010 21:50:09 +0100
+
 x11-apps (7.5+2) unstable; urgency=low
 
   [ Brice Goglin ]
diff --git a/debian/patches/01_xedit_mkdir_races.diff 
b/debian/patches/01_xedit_mkdir_races.diff
new file mode 100644
index 000..cf8935f
--- /dev/null
+++ b/debian/patches/01_xedit_mkdir_races.diff
@@ -0,0 +1,102 @@
+Combination of two upstream patches (post 1.1.2) to fix #569430
+
+From 0ab2815743d89b1cd283abaf4d2cb77fed4a2df4 Mon Sep 17 00:00:00 2001
+From: Peter Breitenlohner 
+Date: Sun, 09 Nov 2008 13:24:10 +
+Subject: avoid race condition for parallel jobs
+
+From cfc78a1c2452362a5e7c88ed239c9d7ef0240a4d Mon Sep 17 00:00:00 2001
+From: Peter Breitenlohner 
+Date: Tue, 11 Nov 2008 09:52:18 +
+Subject: reorganize app default files
+
+
+diff --git a/xedit/Makefile.am b/xedit/Makefile.am
+index 1a32798..0fad032 100644
+--- a/xedit/Makefile.am
 b/xedit/Makefile.am
+@@ -161,33 +161,13 @@ lisp_re_tests_LDADD = -L. -lre
+ lisp_re_tests_SOURCES = lisp/re/tests.c
+ 
+ 
+-# App default files  (*.ad)
++# App default files
+ 
+-APPDEFAULTFILES = \
++appdefaultdir = @appdefaultdir@
++appdefault_DATA = \
+ app-defaults/Xedit-color \
+   app-defaults/Xedit
+ 
+-if USE_XPRINT
+-app-defaults/Xedit.ad: 
+-  test -d app-defaults || mkdir app-defaults
+-  cp $(top_srcdir)/app-defaults/Xedit-xprint.ad app-defaults/Xedit.ad
+-else
+-app-defaults/Xedit.ad:
+-  test -d app-defaults || mkdir app-defaults
+-  cp $(top_srcdir)/app-defaults/Xedit-noxprint.ad app-defaults/Xedit.ad
+-endif
+-
+-SUFFIXES = .ad 
+-
+-.ad:
+-  test -d app-defaults || mkdir app-defaults
+-  cp $< $@
+-
+-appdefaultdir = @appdefaultdir@
+-appdefault_DATA = $(APPDEFAULTFILES)
+-
+-CLEANFILES = $(APPDEFAULTFILES) app-defaults/Xedit.ad
+-
+ lispdir = $(LISPDIR)
+ dist_lisp_DATA = ${srcdir}/lisp/modules/lisp.lsp \
+   ${srcdir}/lisp/modules/xedit.lsp \
+@@ -216,9 +196,9 @@ dist_progmodes_DATA = \
+ appman_PRE = xedit.man
+ 
+ EXTRA_DIST = \
+-  app-defaults/Xedit-color.ad \
+-  app-defaults/Xedit-xprint.ad \
+-  app-defaults/Xedit-noxprint.ad \
++  app-defaults/Xedit-color \
++  app-defaults/Xedit-xprint \
++  app-defaults/Xedit-noxprint \
+   app-defaults/Xedit-sample \
+   lisp/README \
+   lisp/TODO \
+@@ -246,7 +226,7 @@ appmandir = $(APP_MAN_DIR)
+ appman_DATA = $(appman_PRE:m...@app_man_suffix@)
+ 
+ EXTRA_DIST += $(appman_PRE)
+-CLEANFILES += $(appman_DATA)
++CLEANFILES = $(appman_DATA)
+ 
+ SED = sed
+ 
+@@ -267,7 +247,7 @@ MAN_SUBSTS = \
+   -e 's|__miscmansuffix__|$(MISC_MAN_SUFFIX)|g' \
+   -e 's|__filemansuffix__|$(FILE_MAN_SUFFIX)|g'
+ 
+-SUFFIXES += .$(APP_MAN_SUFFIX) .man
++SUFFIXES = .$(APP_MAN_SUFFIX) .man
+ 
+ .man.$(APP_MAN_SUFFIX):
+   sed $(MAN_SUBSTS) < $< > $@
+diff --git a/xedit/configure.ac b/xedit/configure.ac
+index 64fc0b1..dc3a947 100644
+--- a/xedit/configure.ac
 b/xedit/configure.ac
+@@ -41,9 +41,12 @@ AC_ARG_ENABLE(xprint,
+ AM_CONDITIONAL(USE_XPRINT, test x$enable_xprint = xyes)
+ if test x$enable_xprint = xyes; then
+PKG_CHECK_MODULES(PKGDEPS, xprintutil xp xaw8)
++   print_noprint=xprint
+ else
+PKG_CHECK_MODULES(PKGDEPS, xaw7)
++   print_noprint=noxprint
+ fi
++AC_CONFIG_LINKS([app-defaults/Xedit:app-defaults/Xedit-$print_noprint])
+ 
+ AC_ARG_WITH(lispdir, AS_HELP_STRING([--with-lispdir=PATH],
+   [Directory to install lisp files (default: 
$libdir/X11/xedit/lisp)]),
diff --git a/debian/patches/series b/debian/patches/series
index a77af23..e94bd24 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,3 +1,4 @@
+01_xedit_mkdir_races.diff
 #02_xedit_manpage_typos.diff
 03_xconsole_implicit_pointer_conversion.diff
 05_xmore_fix_segv_without_xprint.diff


-- 
To UNSUB

Bug#567318: xrandr -q

2010-02-23 Thread Martin Gollowitzer
Hi Samuel,

* Samuel Hym  [100223 19:37]:
> Hello,
> 
> Same problem, with a weirder remark to make: I don't get the segfault if I
> run "xrandr -q" to check the result after the modifying xrandr (noticed
> thanks to arandr which follows this behaviour).

Thanks for reporting this. This does also happen on my machine. Another
reason to love aRandR :)

All the best, 
Martin


signature.asc
Description: Digital signature


Processed: reassign 568421 to linux-2.6, retitle 568421 to Xorg locked in vga_get

2010-02-23 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> reassign 568421 linux-2.6
Bug #568421 [xserver-xorg] X hangs after upgrade from 7.4 to 7.5
Bug reassigned from package 'xserver-xorg' to 'linux-2.6'.
Bug No longer marked as found in versions xorg/1:7.5+3.
> retitle 568421 Xorg locked in vga_get
Bug #568421 [linux-2.6] X hangs after upgrade from 7.4 to 7.5
Changed Bug title to 'Xorg locked in vga_get' from 'X hangs after upgrade from 
7.4 to 7.5'
> thanks
Stopping processing here.

Please contact me if you need assistance.

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


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



Processed: reassign 567318 to xserver-xorg-core, forcibly merging 565773 567318

2010-02-23 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> reassign 567318 xserver-xorg-core
Bug #567318 [xserver-xorg] gnome-screensaver causes X session crash
Bug reassigned from package 'xserver-xorg' to 'xserver-xorg-core'.
> forcemerge 565773 567318
Bug#565773: [xserver-xorg-video-intel] Segfaults when trying to lock screen
Bug#567318: gnome-screensaver causes X session crash
Bug#554450: xserver-xorg-video-intel: server crash on external monitor when 
using gnome-screensaver
Forcibly Merged 554450 565773 567318.

> thanks
Stopping processing here.

Please contact me if you need assistance.

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


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



Bug#567318: xrandr -q

2010-02-23 Thread Samuel Hym
Hello,

Same problem, with a weirder remark to make: I don't get the segfault if I
run "xrandr -q" to check the result after the modifying xrandr (noticed
thanks to arandr which follows this behaviour).

Regards,
Samuel Hym


Bug#567999: Please compile with kernel-based modesetting (KMS) enabled

2010-02-23 Thread Adrian Glaubitz
Package: xserver-xorg-video-radeon
Severity: normal

Hi Brice,

I have installed the version you have uploaded now and will give it some 
intense testing.
So far, it runs very smooth like I already experienced on my Ubuntu Lucid 
laptop. If
I see anything serious, I will give you a feedback.

Adrian

-- Package-specific info:
/var/lib/x11/X.roster does not exist.

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

X server symlink status:
lrwxrwxrwx 1 root root 13 Aug 24  2009 /etc/X11/X -> /usr/bin/Xorg
-rwxr-xr-x 1 root root 1864832 Jan 21 00:37 /usr/bin/Xorg

/var/lib/x11/xorg.conf.roster does not exist.

VGA-compatible devices on PCI bus:
02:00.0 VGA compatible controller: ATI Technologies Inc RV370 [Sapphire X550 
Silent]

/var/lib/x11/xorg.conf.md5sum does not exist.

Xorg X server configuration file status:
-rw-r--r-- 1 root root 1077 Sep  6 20:52 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
# xorg.conf (X.Org 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 xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section "InputDevice"
Identifier  "Generic Keyboard"
Driver  "kbd"
Option  "XkbRules"  "xorg"
Option  "XkbModel"  "pc104"
Option  "XkbLayout" "us"
EndSection

Section "InputDevice"
Identifier  "Configured Mouse"
Driver  "mouse"
EndSection

Section "Device"
Identifier  "Configured Video Device"
EndSection

Section "Monitor"
Identifier  "Configured Monitor"
EndSection

Section "Screen"
Identifier  "Default Screen"
Monitor "Configured Monitor"
EndSection


Xorg X server log files on system:
-rw-r--r-- 1 root root 31847 Feb 23 15:41 /var/log/Xorg.0.log

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

X.Org X Server 1.7.4
Release Date: 2010-01-08
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.32.4-dsa-amd64 x86_64 Debian
Current Operating System: Linux z6 2.6.32-trunk-amd64 #1 SMP Sun Jan 10 
22:40:40 UTC 2010 x86_64
Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.32-trunk-amd64 
root=UUID=a09c284d-51c2-476e-9edd-a66813c26b17 ro quiet
Build Date: 20 January 2010  11:36:07PM
xorg-server 2:1.7.4-2 (bui...@brahms.debian.org) 
Current version of pixman: 0.16.4
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
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: Tue Feb 23 15:37:13 2010
(==) 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 "Configured Video Device"
(==) Automatically adding devices
(==) Automatically enabling devices
(==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/cyrillic,
/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,
/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType,
built-ins
(==) ModulePath set to "/usr/lib/xorg/modules"
(II) Cannot locate a core pointer device.
(II) Cannot locate a core keyboard device.
(II) The server relies on udev to provide the list of input devices.
If no devices become available, reconfigure udev or disable 
AutoAddDevices.
(II) Loader magic: 0x7c1600
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.4
X.Org Video Driver: 6.0
X.Org XInput driver : 7.0
X.Org Server Extension : 2.0
(++) using VT number 8

(--) PCI:*(0:2:0:0) 1002:5b63:174b:3000 ATI Technologies Inc RV370 [Sapphire 
X550 Silent] rev 0, Mem @ 0xe800/134217728, 0xfddf/65536, I/O @ 
0xcc00/256, BIOS @ 0x/131072
(--) PCI: (0:2:0:1) 1002:5b73:174b:3001 ATI Technologies Inc RV370 secondary 
[Sapphire X550 Silent] rev 0, Mem @ 0xfdde/65536
(II) Open ACPI successful (/var/run/acpid.socket)
(II) LoadModule: "extmod"
(II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
(II) Module extmod: vendor="X.Org Foundation"
compiled for 1.7.4, modu

Lieliska iespēja saņemt dāvanu!

2010-02-23 Thread ebid






    Jaunā izsoles veikala atklāšana jau  18. februārī! Reģistrējies 
www.ebid.lv un saņem dāvanā divas likmes bez maksas!  Iepazīsties ar izsoles 
precēm jau tagad un izmēģini veiksmi – varbūt esi  vienīgais solītājs! Ja 
izsoles laikā neatrodies pie datora, lieliska iespēja  izmantot Autobid 
funkciju, kas veiks likmi tavā vietā! Seko līdzi izsoles  sākuma laikam un 
nenokavē savu iespēju! 
  Veiksmi izsolē! 
Ar cieņu
  www.ebid.lv
Ja turpmāk  nevēlaties saņemt komerciiālos paziņojumus no Ebid, tad sūtiet savu 
epasta  adresi uz i...@ebid.lv 
Atvainojamies,ja  saņēmāt šo e-pastu kļūdas dēļ un tā saturs Jums nešķita 
saistošs.
Ebid  kolektīvs
  REG.nr  44103057911





Bug#570936: marked as done (xserver-xorg-video-geode: DPI incorrect on XO-1)

2010-02-23 Thread Debian Bug Tracking System
Your message dated Tue, 23 Feb 2010 15:49:42 +0100
with message-id <20100223144942.ga9...@patate.is-a-geek.org>
and subject line Re: Bug#570936: xserver-xorg-video-geode: DPI incorrect on XO-1
has caused the Debian Bug report #570936,
regarding xserver-xorg-video-geode: DPI incorrect on XO-1
to be marked as done.

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

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


-- 
570936: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=570936
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: xserver-xorg-video-geode
Version: 2.11.6-3+b1
Severity: normal


Since the upgrade of xserver-xorg-video-geode from 2.11.6-3 to 2.11.6-3+b1 
(which included upgrading xserver-xorg from 1:7.4+4 to 1:7.5+3 as well as 
xserver-common and xserver-xorg-core from 2:1.6.5-1 to 2:1.7.4-2) the DPI 
values are totally off.

After upgrade:
sascha.si...@xo-bine:~$ DISPLAY=:0 xdpyinfo|grep dots
  resolution:96x96 dots per inch
sascha.si...@xo-bine:~$ grep 'DPI set' /var/log/Xorg.0.log
(**) GEODE(0): DPI set to (200, 267)


On a second machine that hasn't been upgraded yet:
o...@xo-sascha:~$ DISPLAY=:0 xdpyinfo|grep dots
  resolution:201x201 dots per inch
o...@xo-sascha:~$ grep 'DPI set' /var/log/Xorg.0.log
(**) GEODE(0): DPI set to (200, 267)


Seems like the DPI values are detected properly, but not propagated to the 
server.
Workaround: Add "-dpi 201" to server command line.


-- Package-specific info:
/var/lib/x11/X.roster does not exist.

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

X server symlink status:
lrwxrwxrwx 1 root root 13 Nov 15 17:46 /etc/X11/X -> /usr/bin/Xorg
-rwxr-xr-x 1 root root 1710344 Jan 21 00:01 /usr/bin/Xorg

/var/lib/x11/xorg.conf.roster does not exist.

VGA-compatible devices on PCI bus:
00:01.1 VGA compatible controller: Advanced Micro Devices [AMD] Geode LX Video

/etc/X11/xorg.conf does not exist.

Xorg X server log files on system:
-rw-r--r-- 1 root root 22605 Feb 17 16:13 /var/log/Xorg.0.log

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

X.Org X Server 1.7.4
Release Date: 2010-01-08
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.32-trunk-686 i686 Debian
Current Operating System: Linux xo-bine.sascha.silbe.org 
2.6.31.6-xo-bine-nfs-12-00317-gf58e4aa #37 PREEMPT Thu Jan 28 16:06:11 CET 2010 
i586
Kernel command line: olpc.ecdebug=0 video=lxfb fbcon=font:SUN12x22 
no_console_suspend ro root=/dev/nfs ip=dhcp 
nfsroot=/tftpboot/%s,nfsvers=3,intr,acl,rsize=1024,wsize=1024 rootflags=noatime 
rootwait
Build Date: 20 January 2010  10:52:55PM
xorg-server 2:1.7.4-2 (bgog...@debian.org) 
Current version of pixman: 0.16.4
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
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: Wed Feb 17 16:12:53 2010
(II) Loader magic: 0x81e7680
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.4
X.Org Video Driver: 6.0
X.Org XInput driver : 7.0
X.Org Server Extension : 2.0
(++) using VT number 8

(--) PCI:*(0:0:1:1) 1022:2081:100b:0030 Advanced Micro Devices [AMD] Geode LX 
Video rev 0, Mem @ 0xfd00/16777216, 0xfe00/16384, 0xfe004000/16384, 
0xfe008000/16384, 0xfe00c000/16384
(--) PCI: (0:0:12:2) 11ab:4102:11ab:4100 Marvell Technology Group Ltd. rev 16, 
Mem @ 0xfe028000/16384
(==) Using default built-in configuration (30 lines)
(==) --- Start of built-in configuration ---
Section "Device"
Identifier  "Builtin Default geode Device 0"
Driver  "geode"
EndSection
Section "Screen"
Identifier  "Builtin Default geode Screen 0"
Device  "Builtin Default geode Device 0"
EndSection
Section "Device"
Identifier  "Builtin Default vesa Device 0"
Driver  "vesa"
EndSection
Section "Screen"
Identifier  "Builtin Default vesa Screen 0"
Device  "Builtin Default vesa Device 0"
EndSection
Section "Device"
Identifier  "Builtin Default fbdev Device 0"
Driver  "fbdev"
EndSection
Section "Screen"
Identifier  "Builtin Default fbdev Screen 0"
Device  "Builtin Default fbdev Device 0"
EndSection
Section "ServerLayout"
Identifier  "Builtin Default Layou

Processed: Re: Bug#565773: [xserver-xorg-core] re-open: Segfaults when lock screen in xf86GetGammaRampSize()

2010-02-23 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> reopen 565773
Bug #565773 {Done: Brice Goglin } 
[xserver-xorg-core] [xserver-xorg-video-intel] Segfaults when trying to lock 
screen
Bug #554450 {Done: Brice Goglin } 
[xserver-xorg-core] xserver-xorg-video-intel: server crash on external monitor 
when using gnome-screensaver
> 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 debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.126693390617430.transcr...@bugs.debian.org



Bug#565773: [xserver-xorg-core] re-open: Segfaults when lock screen in xf86GetGammaRampSize()

2010-02-23 Thread Brice Goglin
reopen 565773
thank you


Philippe Teuwen wrote:
> Package: xserver-xorg-core
> Version: 2:1.7.5-1
>
> I have the same issue when an external screen is attached and internal
> screen is off.
> I thought upgrading xserver-xorg-core to 2:1.7.5-1 would solve the issue
> as this bug was closed but apparently the bug is not fixed properly yet
> so I guess this deserves a re-opening.
>
> Here is the backtrace:
>
> Program received signal SIGSEGV, Segmentation fault.
> 0x0052793b in xf86GetGammaRampSize (pScreen=0x25eecb0) at
> ../../../../hw/xfree86/common/xf86cmap.c:1080
> 1080../../../../hw/xfree86/common/xf86cmap.c: No such file or directory.
> in ../../../../hw/xfree86/common/xf86cmap.c
> (gdb) bt full
> #0  0x0052793b in xf86GetGammaRampSize (pScreen=0x25eecb0) at
> ../../../../hw/xfree86/common/xf86cmap.c:1080
>   

Indeed, as Uwe reported in another bug report, the problem is not that
crtc->randr_crtc is NULL (fixed in 1.7.5), it's about crtc being NULL. I
am talking with upstream about this.

Brice




-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4b83e08a.8010...@ens-lyon.org



Processed: forcibly merging 565773 554450

2010-02-23 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> forcemerge 565773 554450
Bug#565773: [xserver-xorg-video-intel] Segfaults when trying to lock screen
Bug#554450: xserver-xorg-video-intel: server crash on external monitor when 
using gnome-screensaver
Forcibly Merged 554450 565773.

> thanks
Stopping processing here.

Please contact me if you need assistance.

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


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



Processed: Re: Bug#568236: (no subject)

2010-02-23 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> reassign 568236 xserver-xorg-core 2:1.7.5-1
Bug #568236 [xserver-xorg-input-wacom] xserver-xorg-input-wacom: wacom tablet 
not detected after upgrade
Bug reassigned from package 'xserver-xorg-input-wacom' to 'xserver-xorg-core'.
Bug No longer marked as found in versions xf86-input-wacom/0.10.3+20100109-1.
Bug #568236 [xserver-xorg-core] xserver-xorg-input-wacom: wacom tablet not 
detected after upgrade
Bug Marked as found in versions xorg-server/2:1.7.5-1.
> tags 568236 +pending
Bug #568236 [xserver-xorg-core] xserver-xorg-input-wacom: wacom tablet not 
detected after upgrade
Added tag(s) pending.
> 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 debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.126693225822786.transcr...@bugs.debian.org



xorg-server: Changes to 'debian-unstable'

2010-02-23 Thread Brice Goglin
 debian/changelog |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 018ef00b463a920c44b231304b1597cbd620fa98
Author: Brice Goglin 
Date:   Tue Feb 23 14:39:00 2010 +0100

Add bug closer

diff --git a/debian/changelog b/debian/changelog
index d4d509f..d184c9f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -5,7 +5,8 @@ xorg-server (2:1.7.5-2) UNRELEASED; urgency=low
 
   [ Timo Aaltonen ]
   * Add 16-config-dont-filter-input-subsys.diff so for instance serial
-wacom devices are initialized by the udev backend (LP: #522318).
+wacom devices are initialized by the udev backend (LP: #522318,
+closes: #568236).
 
  -- Julien Cristau   Thu, 18 Feb 2010 19:14:51 +0100
 


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1njuyh-0003jj...@alioth.debian.org



xorg-server: Changes to 'debian-unstable'

2010-02-23 Thread Timo Aaltonen
 debian/changelog   |5 ++
 debian/patches/16-config-dont-filter-input-subsys.diff |   42 +
 debian/patches/series  |1 
 3 files changed, 48 insertions(+)

New commits:
commit 49d38c213ce48640cd4812c57efe7f4a124f5327
Author: Timo Aaltonen 
Date:   Tue Feb 23 14:54:34 2010 +0200

Add 16-config-dont-filter-input-subsys.diff so for instance serial wacom 
devices are initialized by the udev backend (LP: #522318).

diff --git a/debian/changelog b/debian/changelog
index 6cc58c9..d4d509f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,7 +1,12 @@
 xorg-server (2:1.7.5-2) UNRELEASED; urgency=low
 
+  [ Julien Cristau ]
   * config/udev: fix adding unnamed devices.
 
+  [ Timo Aaltonen ]
+  * Add 16-config-dont-filter-input-subsys.diff so for instance serial
+wacom devices are initialized by the udev backend (LP: #522318).
+
  -- Julien Cristau   Thu, 18 Feb 2010 19:14:51 +0100
 
 xorg-server (2:1.7.5-1) unstable; urgency=low
diff --git a/debian/patches/16-config-dont-filter-input-subsys.diff 
b/debian/patches/16-config-dont-filter-input-subsys.diff
new file mode 100644
index 000..3f9400c
--- /dev/null
+++ b/debian/patches/16-config-dont-filter-input-subsys.diff
@@ -0,0 +1,42 @@
+From 84905007702da2c05a4f7446b3fc5ff52be49655 Mon Sep 17 00:00:00 2001
+From: Thomas Jaeger 
+Date: Mon, 04 Jan 2010 20:00:49 +
+Subject: udev: Don't filter subsystem "input"
+
+This allows serial wacom devices to work, whose subsystem is "tty".
+
+Signed-off-by: Thomas Jaeger 
+Reviewed-by: Peter Hutterer 
+Signed-off-by: Peter Hutterer 
+---
+Index: xorg-server/config/udev.c
+===
+--- xorg-server.orig/config/udev.c 2010-02-23 14:49:01.0 +0200
 xorg-server/config/udev.c  2010-02-23 14:49:01.0 +0200
+@@ -191,7 +191,6 @@
+ struct udev *udev;
+ struct udev_enumerate *enumerate;
+ struct udev_list_entry *devices, *device;
+-int rc;
+ 
+ udev = udev_new();
+ if (!udev)
+@@ -199,10 +198,6 @@
+ udev_monitor = udev_monitor_new_from_netlink(udev, "udev");
+ if (!udev_monitor)
+ return 0;
+-rc = udev_monitor_filter_add_match_subsystem_devtype(udev_monitor,
+- "input", NULL);
+-if (rc < 0)
+-return 0;
+ 
+ if (udev_monitor_enable_receiving(udev_monitor)) {
+ ErrorF("config/udev: failed to bind the udev monitor\n");
+@@ -212,7 +207,6 @@
+ enumerate = udev_enumerate_new(udev);
+ if (!enumerate)
+ return 0;
+-udev_enumerate_add_match_subsystem(enumerate, "input");
+ udev_enumerate_scan_devices(enumerate);
+ devices = udev_enumerate_get_list_entry(enumerate);
+ udev_list_entry_foreach(device, devices) {
diff --git a/debian/patches/series b/debian/patches/series
index 047e43d..f38fd97 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -12,3 +12,4 @@
 13-configure-config-udev-defaults-to-off-for-now.diff
 14-config-add-example-udev-rules.diff
 15-config-udev-look-for-xkb-rules-model-layout-variant-.diff
+16-config-dont-filter-input-subsys.diff


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1njuhg-0008hu...@alioth.debian.org



Bug#565344: xserver-xorg-video-radeon: Similar problem on IBM Thinkpad X32

2010-02-23 Thread Michel Dänzer
On Mon, 2010-02-22 at 13:27 +0100, Kjö Hansi Glaz wrote: 
> Package: xserver-xorg-video-radeon
> Version: 1:6.12.4-2
> Severity: normal
> 
> 
> I can't understand why, but since some days, after resuming, my display
> is not black anymore but gray, and the xgamma workaround now works.

Sounds like maybe previously the panel backlight was off in addition to
the CLUT problem.


-- 
Earthling Michel Dänzer   |http://www.vmware.com
Libre software enthusiast |  Debian, X and DRI developer



--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/1266921373.3447.2640.ca...@thor.local



Bug#538248: yet another cause

2010-02-23 Thread Václav Ovsík
When Midnight Command is started and Ctrl-O is pressed to hide panels...

bobek:~# pvs
File descriptor 7 (pipe:[49791]) leaked on pvs invocation. Parent PID 27660: 
bash
  PV VG   Fmt  Attr PSize   PFree
  /dev/sda3  vg   lvm2 a-   465.48g 9.11g

Should be all these occurences reported as bugs?
There are probably many such bugs?
LVM binaries are interesting test utility for this :).
Regards
-- 
Zito



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100223095355.gc18...@bobek.localdomain



Bug#538248: [r...@bobek.localdomain: Anacron job 'cron.daily' on bobek]

2010-02-23 Thread Václav Ovsík
Hi,
I wrote a script draft yesterday, that should collect some information for
further backups.

z...@bobek:/etc/cron.daily$ cat sysinfo-local 
#!/bin/sh

DSTDIR=/var/backups/sysinfo

mkdir -p "$DSTDIR"
cd "$DSTDIR"

mount >mount.out
blockdev --report >blockdev-report.out
sfdisk -l >sfdisk-l.out 2>&1
for d in /dev/hd? /dev/sd?
do
sfdisk -d $d >sfdisk-d.${d##/dev/}.out 2>&1
done
pvs >lvm-pvs.out
vgs >lvm-vgs.out
lvs >lvm-lvs.out

dmidecode >dmidecode.out
lspci >lspci.out

dpkg --get-selections >dpkg-get-selections.out

Cron output (the script run by anacron after resume from suspend) is
attached. I tried to google strange messages and found this bug-report.

This bug-report should be reassigned somewhere?

Regards
-- 
Zito
--- Begin Message ---
/etc/cron.daily/sysinfo-local:
File descriptor 3 (/var/run/pm-utils/locks/pm-suspend.lock (deleted)) leaked on 
pvs invocation. Parent PID 20848: /bin/sh
File descriptor 4 (/dev/input/event12) leaked on pvs invocation. Parent PID 
20848: /bin/sh
File descriptor 5 (/dev/input/event2) leaked on pvs invocation. Parent PID 
20848: /bin/sh
File descriptor 6 (/dev/input/event3) leaked on pvs invocation. Parent PID 
20848: /bin/sh
File descriptor 7 (/dev/input/event4) leaked on pvs invocation. Parent PID 
20848: /bin/sh
File descriptor 8 (/dev/input/event5) leaked on pvs invocation. Parent PID 
20848: /bin/sh
File descriptor 9 (inotify) leaked on pvs invocation. Parent PID 20848: /bin/sh
File descriptor 10 (socket:[10191]) leaked on pvs invocation. Parent PID 20848: 
/bin/sh
File descriptor 11 (/) leaked on pvs invocation. Parent PID 20848: /bin/sh
File descriptor 3 (/var/run/pm-utils/locks/pm-suspend.lock (deleted)) leaked on 
vgs invocation. Parent PID 20848: /bin/sh
File descriptor 4 (/dev/input/event12) leaked on vgs invocation. Parent PID 
20848: /bin/sh
File descriptor 5 (/dev/input/event2) leaked on vgs invocation. Parent PID 
20848: /bin/sh
File descriptor 6 (/dev/input/event3) leaked on vgs invocation. Parent PID 
20848: /bin/sh
File descriptor 7 (/dev/input/event4) leaked on vgs invocation. Parent PID 
20848: /bin/sh
File descriptor 8 (/dev/input/event5) leaked on vgs invocation. Parent PID 
20848: /bin/sh
File descriptor 9 (inotify) leaked on vgs invocation. Parent PID 20848: /bin/sh
File descriptor 10 (socket:[10191]) leaked on vgs invocation. Parent PID 20848: 
/bin/sh
File descriptor 11 (/) leaked on vgs invocation. Parent PID 20848: /bin/sh
File descriptor 3 (/var/run/pm-utils/locks/pm-suspend.lock (deleted)) leaked on 
lvs invocation. Parent PID 20848: /bin/sh
File descriptor 4 (/dev/input/event12) leaked on lvs invocation. Parent PID 
20848: /bin/sh
File descriptor 5 (/dev/input/event2) leaked on lvs invocation. Parent PID 
20848: /bin/sh
File descriptor 6 (/dev/input/event3) leaked on lvs invocation. Parent PID 
20848: /bin/sh
File descriptor 7 (/dev/input/event4) leaked on lvs invocation. Parent PID 
20848: /bin/sh
File descriptor 8 (/dev/input/event5) leaked on lvs invocation. Parent PID 
20848: /bin/sh
File descriptor 9 (inotify) leaked on lvs invocation. Parent PID 20848: /bin/sh
File descriptor 10 (socket:[10191]) leaked on lvs invocation. Parent PID 20848: 
/bin/sh
File descriptor 11 (/) leaked on lvs invocation. Parent PID 20848: /bin/sh
--- End Message ---