xorg-server: Changes to 'ubuntu'
debian/changelog |7 +++ debian/local/64-xorg-xkb.rules |2 +- 2 files changed, 8 insertions(+), 1 deletion(-) New commits: commit 8aa9d4dc50214ab91089dfc2ca6c4139756d0676 Author: Timo Aaltonen Date: Tue Dec 8 13:26:35 2009 +0200 local/64-xorg-xkb.rules: Use "program" instead of "file" when grepping the XKB settings from console-setup. diff --git a/debian/changelog b/debian/changelog index 5facb67..58306ca 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +xorg-server (2:1.7.2-2ubuntu2) lucid; urgency=low + + * local/64-xorg-xkb.rules: Use "program" instead of "file" when +grepping the XKB settings from console-setup. + + -- Timo Aaltonen Tue, 08 Dec 2009 13:17:04 +0200 + xorg-server (2:1.7.2-2ubuntu1) lucid; urgency=low * Merge from Debian experimental. Remaining Ubuntu changes: diff --git a/debian/local/64-xorg-xkb.rules b/debian/local/64-xorg-xkb.rules index e543580..f5f2c8a 100644 --- a/debian/local/64-xorg-xkb.rules +++ b/debian/local/64-xorg-xkb.rules @@ -6,6 +6,6 @@ KERNEL!="event*", GOTO="xorg_xkb_end" ENV{ID_INPUT}=="", IMPORT{program}="/lib/udev/input_id %p" # import keyboard layout from /etc/default/keyboard -ENV{ID_INPUT_KEY}=="?*", IMPORT{file}="/bin/grep ^XKB /etc/default/console-setup" +ENV{ID_INPUT_KEY}=="?*", IMPORT{program}="/bin/grep ^XKB /etc/default/console-setup" LABEL="xorg_xkb_end" -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
xserver-xorg-input-evdev: Changes to 'debian-unstable'
debian/control |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) New commits: commit 7656675298b512645a06a34a7994dfbde9796ae4 Author: Julien Cristau Date: Tue Dec 8 13:03:13 2009 +0100 The -dev package doesn't need to depend on the driver itself diff --git a/debian/control b/debian/control index 087d1bb..c184fec 100644 --- a/debian/control +++ b/debian/control @@ -42,7 +42,7 @@ Description: X.Org X server -- evdev input driver Package: xserver-xorg-input-evdev-dev Section: libdevel Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends}, xserver-xorg-input-evdev (= ${binary:Version}) +Depends: ${shlibs:Depends}, ${misc:Depends} Description: X.Org X server -- evdev input driver (development headers) This package provides the development headers for the evdev input driver found in xserver-xorg-input-evdev. Non-developers likely have little use -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
xserver-xorg-input-evdev: Changes to 'debian-unstable'
debian/changelog|3 ++- debian/control |3 ++- debian/xserver-xorg-input-evdev.postinst.in | 23 +++ 3 files changed, 27 insertions(+), 2 deletions(-) New commits: commit 87a95569ab27180b3cc3a5ab267e81d1c6377997 Author: Timo Aaltonen Date: Tue Dec 8 13:48:13 2009 +0200 Run udevadm trigger on postinst, and depend on udev [linux-any]. diff --git a/debian/changelog b/debian/changelog index 74d83e8..e30c6fe 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,8 +1,9 @@ xserver-xorg-input-evdev (1:2.3.1-2) UNRELEASED; urgency=low * Build against Xserver 1.7. + * Run udevadm trigger on postinst, and depend on udev [linux-any]. - -- Timo Aaltonen Sat, 05 Dec 2009 02:03:39 +0200 + -- Timo Aaltonen Tue, 08 Dec 2009 13:47:20 +0200 xserver-xorg-input-evdev (1:2.3.1-1) experimental; urgency=low diff --git a/debian/control b/debian/control index cbcb073..b2692c1 100644 --- a/debian/control +++ b/debian/control @@ -23,7 +23,8 @@ Vcs-Browser: http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-input-evdev.g Package: xserver-xorg-input-evdev Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends}, ${xserver:Depends} +Depends: ${shlibs:Depends}, ${misc:Depends}, ${xserver:Depends}, + udev [linux-any], Provides: ${xinpdriver:Provides} Replaces: xserver-xorg (<< 6.8.2-35) Description: X.Org X server -- evdev input driver diff --git a/debian/xserver-xorg-input-evdev.postinst.in b/debian/xserver-xorg-input-evdev.postinst.in new file mode 100644 index 000..2d7e9a6 --- /dev/null +++ b/debian/xserver-xorg-input-evdev.postinst.in @@ -0,0 +1,23 @@ +#!/bin/sh + +set -e + +THIS_PACKAGE=xserver-xorg-input-evdev +THIS_SCRIPT=postinst + +#INCLUDE_SHELL_LIB# + +case "$1" in + configure) + if dpkg --compare-versions "$2" lt 1:2.3.1-2; then +if [ `uname -s` = "Linux" ]; then + udevadm trigger --subsystem-match=input --action=change +fi + fi +esac + +#DEBHELPER# + +exit 0 + +# vim:set ai et sw=2 ts=2 tw=80: -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
xserver-xorg-input-evdev: Changes to 'debian-unstable'
debian/changelog|1 + debian/control | 16 debian/xserver-xorg-input-evdev-dev.install |3 +++ 3 files changed, 20 insertions(+) New commits: commit 56eca3a002730c85369b42b0be4e7954f1e220c1 Author: Timo Aaltonen Date: Tue Dec 8 13:59:55 2009 +0200 Add xserver-xorg-input-evdev-dev for the header and .pc files. diff --git a/debian/changelog b/debian/changelog index e30c6fe..562d904 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,7 @@ xserver-xorg-input-evdev (1:2.3.1-2) UNRELEASED; urgency=low * Build against Xserver 1.7. * Run udevadm trigger on postinst, and depend on udev [linux-any]. + * Add xserver-xorg-input-evdev-dev for the header and .pc files. -- Timo Aaltonen Tue, 08 Dec 2009 13:47:20 +0200 diff --git a/debian/control b/debian/control index b2692c1..087d1bb 100644 --- a/debian/control +++ b/debian/control @@ -38,3 +38,19 @@ Description: X.Org X server -- evdev input driver http://lists.freedesktop.org/mailman/listinfo/xorg> . This package is built from the X.org xf86-input-evdev driver module. + +Package: xserver-xorg-input-evdev-dev +Section: libdevel +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, xserver-xorg-input-evdev (= ${binary:Version}) +Description: X.Org X server -- evdev input driver (development headers) + This package provides the development headers for the evdev input driver + found in xserver-xorg-input-evdev. Non-developers likely have little use + for this package. + . + More information about X.Org can be found at: + http://www.X.org> + http://xorg.freedesktop.org> + http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This package is built from the X.org xf86-input-evdev driver module. diff --git a/debian/xserver-xorg-input-evdev-dev.install b/debian/xserver-xorg-input-evdev-dev.install new file mode 100644 index 000..5bda613 --- /dev/null +++ b/debian/xserver-xorg-input-evdev-dev.install @@ -0,0 +1,3 @@ +usr/include/xorg/* +usr/lib/pkgconfig/xorg-evdev.pc + -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
xserver-xorg-input-evdev: Changes to 'debian-unstable'
debian/changelog |4 debian/local/65-xorg-evdev.rules |2 +- 2 files changed, 5 insertions(+), 1 deletion(-) New commits: commit 3eddc02011d7805d8f959b6ca626df33d1f6a90b Author: Julien Cristau Date: Tue Dec 8 13:36:59 2009 +0100 65-xorg-evdev.rules: don't ignore change events. diff --git a/debian/changelog b/debian/changelog index 562d904..6d7df35 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,9 +1,13 @@ xserver-xorg-input-evdev (1:2.3.1-2) UNRELEASED; urgency=low + [ Timo Aaltonen ] * Build against Xserver 1.7. * Run udevadm trigger on postinst, and depend on udev [linux-any]. * Add xserver-xorg-input-evdev-dev for the header and .pc files. + [ Julien Cristau ] + * 65-xorg-evdev.rules: don't ignore change events. + -- Timo Aaltonen Tue, 08 Dec 2009 13:47:20 +0200 xserver-xorg-input-evdev (1:2.3.1-1) experimental; urgency=low diff --git a/debian/local/65-xorg-evdev.rules b/debian/local/65-xorg-evdev.rules index 48bbc8a..6c201f5 100644 --- a/debian/local/65-xorg-evdev.rules +++ b/debian/local/65-xorg-evdev.rules @@ -1,4 +1,4 @@ -ACTION!="add", GOTO="xorg_evdev_end" +ACTION!="add|change", GOTO="xorg_evdev_end" SUBSYSTEM!="input", GOTO="xorg_evdev_end" KERNEL!="event*", GOTO="xorg_evdev_end" -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#559940: input devices not detected at startup
On Mon, Dec 7, 2009 at 22:44:31 +0100, Anton Khirnov wrote: > with the most recent xserver with libudev support, no input devices are > detected at startup. If i disconnect and reconnect them after startup, > they are detected and work fine. > Hi, I'm not quite sure what's happening here, the udev dump looks fine so things ought to work. It looks like you're using a custom kernel, care to share the config? Thanks, Julien -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
xserver-xorg-input-synaptics: Changes to 'debian-experimental'
debian/changelog|8 debian/control | 13 - debian/xserver-xorg-input-synaptics-dev.install |2 ++ debian/xserver-xorg-input-synaptics.postinst.in | 23 +++ 4 files changed, 45 insertions(+), 1 deletion(-) New commits: commit 56ec8cbedc08b2ece202c7d39eaf90fc8c3cc809 Author: Timo Aaltonen Date: Tue Dec 8 16:16:32 2009 +0200 Run udevadm trigger on postinst, and depend on udev [linux-any]. diff --git a/debian/changelog b/debian/changelog index 67a956f..f1ca34e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,8 +2,9 @@ xserver-xorg-input-synaptics (1.2.0-4) UNRELEASED; urgency=low * Add xserver-xorg-input-evdev-dev for the header and .pc files. (LP: #340340) + * Run udevadm trigger on postinst, and depend on udev [linux-any]. - -- Timo Aaltonen Tue, 08 Dec 2009 16:02:11 +0200 + -- Timo Aaltonen Tue, 08 Dec 2009 16:15:58 +0200 xserver-xorg-input-synaptics (1.2.0-3) experimental; urgency=low diff --git a/debian/control b/debian/control index 8dceb07..49f60d4 100644 --- a/debian/control +++ b/debian/control @@ -21,7 +21,9 @@ Vcs-Browser: http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-input-synapti Package: xserver-xorg-input-synaptics Architecture: alpha amd64 arm armeb armel hppa i386 ia64 kfreebsd-amd64 kfreebsd-i386 m68k mips mipsel powerpc sh4 sparc -Depends: ${shlibs:Depends}, ${xserver:Depends}, libxi6 +Depends: ${shlibs:Depends}, ${xserver:Depends}, + libxi6, + udev [linux-any], Conflicts: xfree86-driver-synaptics (<< 0.14.4-2), xorg-driver-synaptics Replaces: xfree86-driver-synaptics (<< 0.14.4-2), xorg-driver-synaptics Provides: ${xinpdriver:Provides}, xfree86-driver-synaptics, xorg-driver-synaptics diff --git a/debian/xserver-xorg-input-synaptics.postinst.in b/debian/xserver-xorg-input-synaptics.postinst.in new file mode 100644 index 000..aea2faa --- /dev/null +++ b/debian/xserver-xorg-input-synaptics.postinst.in @@ -0,0 +1,23 @@ +#!/bin/sh + +set -e + +THIS_PACKAGE=xserver-xorg-input-synaptics +THIS_SCRIPT=postinst + +#INCLUDE_SHELL_LIB# + +case "$1" in + configure) + if dpkg --compare-versions "$2" lt 1.2.0-4; then +if [ `uname -s` = "Linux" ]; then + udevadm trigger --subsystem-match=input --action=change +fi + fi +esac + +#DEBHELPER# + +exit 0 + +# vim:set ai et sw=2 ts=2 tw=80: commit 54afb6470b28dde5644432d2193e84d7fd9ff617 Author: Timo Aaltonen Date: Tue Dec 8 16:03:36 2009 +0200 Add xserver-xorg-input-evdev-dev for the header and .pc files. (LP: #340340) diff --git a/debian/changelog b/debian/changelog index b6e1619..67a956f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +xserver-xorg-input-synaptics (1.2.0-4) UNRELEASED; urgency=low + + * Add xserver-xorg-input-evdev-dev for the header and .pc files. +(LP: #340340) + + -- Timo Aaltonen Tue, 08 Dec 2009 16:02:11 +0200 + xserver-xorg-input-synaptics (1.2.0-3) experimental; urgency=low [ Julien Cristau ] diff --git a/debian/control b/debian/control index 3a6665f..8dceb07 100644 --- a/debian/control +++ b/debian/control @@ -51,3 +51,12 @@ Description: Synaptics TouchPad driver for X.Org server * It also provides a daemon to disable touchpad while typing at the keyboard and thus avoid unwanted mouse movements (see syndaemon(1)). . + +Package: xserver-xorg-input-synaptics-dev +Section: libdevel +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: Synaptics TouchPad driver for X.Org server (development headers) + This package contains the development headers for the Synaptics input + driver found in xserver-xorg-input-synaptics. Non-developers likely have + little use for this package. diff --git a/debian/xserver-xorg-input-synaptics-dev.install b/debian/xserver-xorg-input-synaptics-dev.install new file mode 100644 index 000..22f774a --- /dev/null +++ b/debian/xserver-xorg-input-synaptics-dev.install @@ -0,0 +1,2 @@ +usr/include/xorg/* +usr/lib/pkgconfig/xorg-synaptics.pc -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#560037: xclock -d puts a large blank space to the left of the time
Package: x11-apps Version: 7.5+1 Severity: normal Running "xclock -d" with no other arguments displays the digital clock with the text shifted to the right so far that it is almost completely outside the default window. Running the program with a larger than default horizontal window size reveals the rest of the text, however this is kind of annoying to have to do. I haven't found any options that seem to change the placement of the text, so I don't have any idea what's causing this problem. - Anne -- System Information: Debian Release: squeeze/sid APT prefers unstable APT policy: (990, 'unstable'), (500, 'testing'), (500, 'stable'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 2.6.31-1-amd64 (SMP w/2 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages x11-apps depends on: ii cpp 4:4.3.4-2 The GNU C preprocessor (cpp) ii libc6 2.10.2-2 GNU C Library: Shared libraries ii libpng12-01.2.41-1 PNG library - runtime ii libsm62:1.1.1-1 X11 Session Management library ii libx11-6 2:1.3.2-1 X11 client-side library ii libxaw7 2:1.0.7-1 X11 Athena Widget library ii libxcursor1 1:1.1.10-1 X cursor management library ii libxext6 2:1.0.4-1 X11 miscellaneous extension librar ii libxft2 2.1.14-1 FreeType-based font drawing librar ii libxkbfile1 1:1.0.6-1 X11 keyboard file manipulation lib ii libxmu6 2:1.0.5-1 X11 miscellaneous utility library ii libxmuu1 2:1.0.5-1 X11 miscellaneous micro-utility li ii libxrender1 1:0.9.5-1 X Rendering Extension client libra ii libxt61:1.0.7-1 X11 toolkit intrinsics library ii x11-common1:7.4+4X Window System (X.Org) infrastruc x11-apps recommends no packages. Versions of packages x11-apps suggests: ii mesa-utils 7.6.1~rc2-1 Miscellaneous Mesa GL utilities -- no debconf information -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
xserver-xorg-input-joystick: Changes to 'debian-experimental'
debian/changelog |8 debian/control | 19 ++- debian/local/66-xorg-joystick.rules|8 debian/rules |2 ++ debian/xserver-xorg-input-joystick-dev.install |2 ++ debian/xserver-xorg-input-joystick.postinst.in | 23 +++ 6 files changed, 61 insertions(+), 1 deletion(-) New commits: commit 394fdd2a27cbda9cf1df707d3e44a4fe1a111f76 Author: Timo Aaltonen Date: Tue Dec 8 16:43:39 2009 +0200 Add xserver-xorg-input-joystick-dev for the header and .pc files. diff --git a/debian/changelog b/debian/changelog index a4119ef..2e69904 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,7 @@ xserver-xorg-input-joystick (1:1.5.0-2) UNRELEASED; urgency=low * Install a udev rules file to autoload the driver. * Run udevadm trigger on postinst, and depend on udev [linux-any]. + * Add xserver-xorg-input-joystick-dev for the header and .pc files. -- Timo Aaltonen Tue, 08 Dec 2009 16:32:07 +0200 diff --git a/debian/control b/debian/control index f987c80..6ba8288 100644 --- a/debian/control +++ b/debian/control @@ -36,3 +36,19 @@ Description: X.Org X server -- joystick input driver http://lists.freedesktop.org/mailman/listinfo/xorg> . This package is built from the X.org xf86-input-joystick driver module. + +Package: xserver-xorg-input-joystick +Section: libdevel +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: X.Org X server -- joystick input driver (development headers) + This package provides the development headers for the joystick input + driver found in xserver-xorg-input-joystick. Non-developers likely have + little use for this package. + . + More information about X.Org can be found at: + http://www.X.org> + http://xorg.freedesktop.org> + http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This package is built from the X.org xf86-input-joystick driver module. diff --git a/debian/xserver-xorg-input-joystick-dev.install b/debian/xserver-xorg-input-joystick-dev.install new file mode 100644 index 000..605b936 --- /dev/null +++ b/debian/xserver-xorg-input-joystick-dev.install @@ -0,0 +1,2 @@ +usr/include/xorg/* +usr/lib/pkgconfig/xorg-joystick.pc commit 98586eac671d77e94cc2419fe1e1dce515c0b44c Author: Timo Aaltonen Date: Tue Dec 8 16:38:48 2009 +0200 Run udevadm trigger on postinst, and depend on udev [linux-any]. diff --git a/debian/changelog b/debian/changelog index 23df76b..a4119ef 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,7 @@ xserver-xorg-input-joystick (1:1.5.0-2) UNRELEASED; urgency=low * Install a udev rules file to autoload the driver. + * Run udevadm trigger on postinst, and depend on udev [linux-any]. -- Timo Aaltonen Tue, 08 Dec 2009 16:32:07 +0200 diff --git a/debian/control b/debian/control index b6d8529..f987c80 100644 --- a/debian/control +++ b/debian/control @@ -23,7 +23,8 @@ Vcs-Browser: http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-input-joystic Package: xserver-xorg-input-joystick Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends}, ${xserver:Depends} +Depends: ${shlibs:Depends}, ${misc:Depends}, ${xserver:Depends}, + udev [linux-any], Provides: ${xinpdriver:Provides} Replaces: xserver-xorg (<< 6.8.2-35) Description: X.Org X server -- joystick input driver diff --git a/debian/xserver-xorg-input-joystick.postinst.in b/debian/xserver-xorg-input-joystick.postinst.in new file mode 100644 index 000..b4c84c0 --- /dev/null +++ b/debian/xserver-xorg-input-joystick.postinst.in @@ -0,0 +1,23 @@ +#!/bin/sh + +set -e + +THIS_PACKAGE=xserver-xorg-input-joystick +THIS_SCRIPT=postinst + +#INCLUDE_SHELL_LIB# + +case "$1" in + configure) + if dpkg --compare-versions "$2" lt "1:1.5.0-2"; then +if [ `uname -s` = "Linux" ]; then + udevadm trigger --subsystem-match=input --action=change +fi + fi +esac + +#DEBHELPER# + +exit 0 + +# vim:set ai et sw=2 ts=2 tw=80: commit dccb9d5fd6e9b57851b5a92ca48ecdc42efeae55 Author: Timo Aaltonen Date: Tue Dec 8 16:34:53 2009 +0200 Install a udev rules file to autoload the driver. diff --git a/debian/changelog b/debian/changelog index 190bb9d..23df76b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +xserver-xorg-input-joystick (1:1.5.0-2) UNRELEASED; urgency=low + + * Install a udev rules file to autoload the driver. + + -- Timo Aaltonen Tue, 08 Dec 2009 16:32:07 +0200 + xserver-xorg-input-joystick (1:1.5.0-1) experimental; urgency=low [ Timo Aaltonen ] diff --git a/debian/local/66-xorg-joystick.rules b/debian/local/66-xorg-joystick.rules new file mode 100644 index 000..4b31ec0 --- /dev/null +++ b/debian/local/66-xorg-joystick.rules @@ -0,0 +1,8 @@ +ACTION!="add|change", GOTO="xorg_joystick_end" +KERNEL!="event*", GOTO="xorg_joystick_end" + +ENV{ID_INPUT_JOYSTICK}!="1", GOTO="xorg_joystick_end" +
Bug#560039: xterm: double-click on word spanning across several lines doesn't select the bottom part
Package: xterm Version: 251-1 Severity: normal With xterm 251 (but not with previous versions), when I double-click on a word that spans across several lines, only the first lines until the double-clicked line are selected. For instance, if I type perl -e 'print "0123456789"x60' in a 80-column xterm and double-click on the 3rd line, then lines 1 to 3 are selected, but not the following ones. -- System Information: Debian Release: squeeze/sid APT prefers oldstable APT policy: (500, 'oldstable'), (500, 'unstable'), (500, 'stable'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 2.6.26.5-20080922 (SMP w/2 CPU cores; PREEMPT) Locale: LANG=POSIX, LC_CTYPE=en_US.ISO8859-1 (charmap=ISO-8859-1) Shell: /bin/sh linked to /bin/bash Versions of packages xterm depends on: ii libc6 2.10.2-2 GNU C Library: Shared libraries ii libfontconfig12.6.0-4generic font configuration library ii libice6 2:1.0.6-1 X11 Inter-Client Exchange library ii libncurses5 5.7+20090803-2 shared libraries for terminal hand ii libutempter0 1.1.5-2A privileged helper for utmp/wtmp ii libx11-6 2:1.3.2-1 X11 client-side library ii libxaw7 2:1.0.7-1 X11 Athena Widget library ii libxft2 2.1.14-1 FreeType-based font drawing librar ii libxmu6 2:1.0.5-1 X11 miscellaneous utility library ii libxt61:1.0.7-1 X11 toolkit intrinsics library ii xbitmaps 1.0.1-2Base X bitmaps Versions of packages xterm recommends: ii x11-utils 7.5+1 X11 utilities ii xutils1:7.4+4X Window System utility programs m Versions of packages xterm suggests: ii xfonts-cyrillic 1:1.0.0-7 Cyrillic fonts for X -- no debconf information -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
xserver-xorg-input-synaptics: Changes to 'debian-experimental'
debian/changelog |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) New commits: commit 7f5513736369faf0668c18b2d6d2932116b7077e Author: Timo Aaltonen Date: Tue Dec 8 16:53:57 2009 +0200 Fix the changelog, this is synaptics and not evdev.. diff --git a/debian/changelog b/debian/changelog index f1ca34e..dbb3af4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,6 @@ xserver-xorg-input-synaptics (1.2.0-4) UNRELEASED; urgency=low - * Add xserver-xorg-input-evdev-dev for the header and .pc files. + * Add xserver-xorg-input-synaptics-dev for the header and .pc files. (LP: #340340) * Run udevadm trigger on postinst, and depend on udev [linux-any]. -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#519009: Xtrans should not return TRANS_TRY_CONNECT_AGAIN when it cannot connect to abstract socket
On Mon, Mar 9, 2009 at 21:57:43 +0100, David Madore wrote: > The following code (lines 2058-2066 of Xtranssock.c) is wrong: > > else if (olderrno == ENOENT || olderrno == ECONNREFUSED) { > /* If opening as abstract socket failed, try again normally */ > if (abstract) { > ciptr->transptr->flags &= ~(TRANS_ABSTRACT); > return TRANS_TRY_CONNECT_AGAIN; > } else { > return TRANS_CONNECT_FAILED; > } > } else { > > What this intends to do is that if Xtrans can't connect on an abstract > domain socket, it will retry on the concrete Unix socket of the same > name: to do this, whoever wrote this code thought that returning > TRANS_TRY_CONNECT_AGAIN would do the trick, as the caller would then > retry. > > Unfortunatly, TRANS_TRY_CONNECT_AGAIN actually means "try again after > a delay" and not "try again immediately". So this code means that, > since I use a session manager that does not create an abstract domain > socket, every client trying to contact it (with the new Xtrans, > through libSM and libICE) sleeps for one second before starting, > because it first attempts to contact the abstract socket, then sleeps > for one second before trying the concrete Unix socket. > Hi David, Sorry for the delay in replying to this. Is there any chance you could propose a patch implementing your suggestion? Thanks, Julien -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
libx11 2:1.3.2-1 MIGRATED to testing
FYI: The status of the libx11 source package in Debian's testing distribution has changed. Previous version: 2:1.2.2-1 Current version: 2:1.3.2-1 -- This email is automatically generated once a day. As the installation of new packages into testing happens multiple times a day you will receive later changes on the next day. See http://release.debian.org/testing-watch/ for more information. -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
libxxf86misc 1:1.0.2-1 MIGRATED to testing
FYI: The status of the libxxf86misc source package in Debian's testing distribution has changed. Previous version: 1:1.0.1-3 Current version: 1:1.0.2-1 -- This email is automatically generated once a day. As the installation of new packages into testing happens multiple times a day you will receive later changes on the next day. See http://release.debian.org/testing-watch/ for more information. -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557795: compizconfig-python: patch for #557795
tags 557795 + patch thanks Hi, here's attached the patch to fix #557795. Regards. -- .''`. : :' : Luca Falavigna `. `' `- diff -u compizconfig-python-0.8.2/debian/install compizconfig-python-0.8.2/debian/install --- compizconfig-python-0.8.2/debian/install +++ compizconfig-python-0.8.2/debian/install @@ -1 +1 @@ -usr/lib/python*/site-packages/compizconfig.so +usr/lib/python*/*-packages/compizconfig.so signature.asc Description: PGP signature
Processed: compizconfig-python: patch for #557795
Processing commands for cont...@bugs.debian.org: > tags 557795 + patch Bug #557795 [src:compizconfig-python] compizconfig-python: uses pythonX.Y/site-packages for Python >= 2.6 Added 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
compizconfig-python: Changes to 'debian-unstable'
debian/install |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) New commits: commit 7c64a5c8df0c57d1f6e5ba159dc8bfbc5c09ecd5 Author: Sean Finney Date: Tue Dec 8 21:57:35 2009 +0100 update debian/install for python >= 2.6 Closes: #557795 diff --git a/debian/install b/debian/install index 31b7c77..12982d5 100644 --- a/debian/install +++ b/debian/install @@ -1 +1 @@ -usr/lib/python*/site-packages/compizconfig.so +usr/lib/python*/*-packages/compizconfig.so -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Processed: [/debian-unstable] update debian/install for python >= 2.6
Processing commands for cont...@bugs.debian.org: > tag 557795 pending Bug #557795 [src:compizconfig-python] compizconfig-python: uses pythonX.Y/site-packages for Python >= 2.6 Added tag(s) pending. > 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
Bug#557795: [/debian-unstable] update debian/install for python >= 2.6
tag 557795 pending thanks Date: Tue Dec 8 21:57:35 2009 +0100 Author: Sean Finney Commit ID: 7c64a5c8df0c57d1f6e5ba159dc8bfbc5c09ecd5 Commit URL: http://git.debian.org/?p=pkg-xorg/bling/compizconfig-python.git;a=commitdiff;h=7c64a5c8df0c57d1f6e5ba159dc8bfbc5c09ecd5 Patch URL: http://git.debian.org/?p=pkg-xorg/bling/compizconfig-python.git;a=commitdiff_plain;h=7c64a5c8df0c57d1f6e5ba159dc8bfbc5c09ecd5 update debian/install for python >= 2.6 Closes: #557795 -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
compizconfig-python: Changes to 'refs/tags/compizconfig-python-0.8.2-2'
Tag 'compizconfig-python-0.8.2-2' created by Sean Finney at 2009-12-08 21:24 + Tagging upload of compizconfig-python 0.8.2-2 to unstable. -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.10 (GNU/Linux) iD8DBQBLHsQkynjLPm522B0RAiNkAJ9kOe0tcz3KZ0c6xXEZAP59zzLC5ACcCSTT rhaIbS2TuXx4CTNAH+0Nq5Q= =rr+h -END PGP SIGNATURE- Changes since compizconfig-python-0.8.2-1: Loïc Minier (2): Depend on compiz-core and -abiversion-2009xxyy Revert "Depend on compiz-core and -abiversion-2009xxyy" Sean Finney (2): update debian/install for python >= 2.6 prepare changelog --- debian/changelog |7 +++ debian/install |2 +- 2 files changed, 8 insertions(+), 1 deletion(-) --- -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
compizconfig-python: Changes to 'debian-unstable'
debian/changelog |7 +++ 1 file changed, 7 insertions(+) New commits: commit 1678d875b355022e31a94f99bc2a5c112b125730 Author: Sean Finney Date: Tue Dec 8 22:21:01 2009 +0100 prepare changelog diff --git a/debian/changelog b/debian/changelog index cb0f530..a3825c6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +compizconfig-python (0.8.2-2) unstable; urgency=low + + * update debian/install for python >= 2.6 (Closes: #557795). +Thanks: Luca Falavigna. + + -- Sean Finney Tue, 08 Dec 2009 22:20:07 +0100 + compizconfig-python (0.8.2-1) unstable; urgency=low * New upstream release. -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Processing of compizconfig-python_0.8.2-2_amd64.changes
compizconfig-python_0.8.2-2_amd64.changes uploaded successfully to localhost along with the files: compizconfig-python_0.8.2-2.dsc compizconfig-python_0.8.2-2.diff.gz python-compizconfig_0.8.2-2_amd64.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
compizconfig-python override disparity
There are disparities between your recently accepted upload and the override file for the following file(s): python-compizconfig_0.8.2-2_amd64.deb: package says section is x11, override says python. Please note that a list of new sections were recently added to the archive: cli-mono, database, debug, fonts, gnu-r, gnustep, haskell, httpd, java, kernel, lisp, localization, ocaml, php, ruby, vcs, video, xfce, zope. At this time a script was used to reclassify packages into these sections. If this is the case, please only reply to this email if the new section is inappropriate, otherwise please update your package at the next upload. Either the package or the override file is incorrect. If you think the override is correct and the package wrong please fix the package so that this disparity is fixed in the next upload. If you feel the override is incorrect then please file a bug against ftp.debian.org and explain why. Please INCLUDE the list of packages as seen above, or we won't be able to deal with your request due to missing information. Please make sure that the subject of the bug you file follows the following format: Subject: override: BINARY1:section/priority, [...], BINARYX:section/priority Include the justification for the change in the body of the mail please. [NB: this is an automatically generated mail; if you already filed a bug and have not received a response yet, please ignore this mail. Your bug needs to be processed by a human and will be in due course, but until then the installer will send these automated mails; sorry.] -- Debian distribution maintenance software (This message was generated automatically; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@debian.org) -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557795: marked as done (compizconfig-python: uses pythonX.Y/site-packages for Python >= 2.6)
Your message dated Tue, 08 Dec 2009 21:49:01 + with message-id and subject line Bug#557795: fixed in compizconfig-python 0.8.2-2 has caused the Debian Bug report #557795, regarding compizconfig-python: uses pythonX.Y/site-packages for Python >= 2.6 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.) -- 557795: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=557795 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Source: compizconfig-python Version: 0.8.2-1 Severity: important User: debian-pyt...@lists.debian.org Usertags: python2.6 dist-packages Hello, When rebuilt against python-all{,-dev,-dbg} (and thus python2.6) from Debian experimental, your binary packages contained these files: [python-compizconfig_0.8.2-1_amd64.deb] /usr/lib/python2.6/site-packages/compizconfig.so This is an indication of a broken package: Python >= 2.6 does not look for modules into /usr/lib/pythonX.Y/site-packages/ anymore, but uses /usr/lib/pythonX.Y/dist-packages/ instead. How to fix it? == * if your package is using python-central: - add "XB-Python-Version: ${python:Versions}" to all binary packages that ship Python modules (.py files) or extensions (.so, including _d.so) in debian/control, check if it's enough, - try to convert to python-support[1], check if it's enough, * add --install-layout=deb to setup.py call and bump minimum required python{,-all,all-dev} build dependency to 2.5.4-1~, check if it's enough * ask for help on #debian-python or debian-pyt...@lists.debian.org [1] http://wiki.debian.org/DebianPython/central2support -- Jakub Wilk --- End Message --- --- Begin Message --- Source: compizconfig-python Source-Version: 0.8.2-2 We believe that the bug you reported is fixed in the latest version of compizconfig-python, which is due to be installed in the Debian FTP archive: compizconfig-python_0.8.2-2.diff.gz to main/c/compizconfig-python/compizconfig-python_0.8.2-2.diff.gz compizconfig-python_0.8.2-2.dsc to main/c/compizconfig-python/compizconfig-python_0.8.2-2.dsc python-compizconfig_0.8.2-2_amd64.deb to main/c/compizconfig-python/python-compizconfig_0.8.2-2_amd64.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 557...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Sean Finney (supplier of updated compizconfig-python 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, 08 Dec 2009 22:20:07 +0100 Source: compizconfig-python Binary: python-compizconfig Architecture: source amd64 Version: 0.8.2-2 Distribution: unstable Urgency: low Maintainer: Debian X Strike Force Changed-By: Sean Finney Description: python-compizconfig - Compizconfig bindings for python Closes: 557795 Changes: compizconfig-python (0.8.2-2) unstable; urgency=low . * update debian/install for python >= 2.6 (Closes: #557795). Thanks: Luca Falavigna. Checksums-Sha1: 91aecfc78aeafe53f0c2007dd6c66e36174de537 1451 compizconfig-python_0.8.2-2.dsc 7a4c1532406848fc7cce7514b274e490d3e11f68 2857 compizconfig-python_0.8.2-2.diff.gz 95274cae9cc8a728f54816634f43136fee9ed9f0 92716 python-compizconfig_0.8.2-2_amd64.deb Checksums-Sha256: bc657c3dedaf1f2c3f01997d6f6a0124d56bd9546cf0402f8594fbdf831961dd 1451 compizconfig-python_0.8.2-2.dsc 5aa5e4392585ba1b7b9b46a2f4a27fc228d7141c4016640bf8998846a1d1cec9 2857 compizconfig-python_0.8.2-2.diff.gz 60988e03714603d9303233e47ef22dc03b328a6d7edd01789f0522f8ee7d43f6 92716 python-compizconfig_0.8.2-2_amd64.deb Files: cb0e24f7d577719e0b073665c5edb683 1451 x11 extra compizconfig-python_0.8.2-2.dsc d934f290d3582d308e54b528156d381c 2857 x11 extra compizconfig-python_0.8.2-2.diff.gz d55658940a8c9f99dfdef44013359e8e 92716 x11 extra python-compizconfig_0.8.2-2_amd64.deb -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.10 (GNU/Linux) iD8DBQFLHsQWynjLPm522B0RAomSAJ9jRyzk/JCZOfGk14cNi7fQ/hwfaQCcC3Vt ecMzBYfE223tvl60/YojPmE= =jj7g -END PGP SIGNATURE- --- End Message ---
Bug#560039: #560039 xterm: double-click on word spanning across several lines doesn't select the bottom part
I can reproduce this (thanks). -- Thomas E. Dickey http://invisible-island.net ftp://invisible-island.net signature.asc Description: Digital signature
Processed: tagging 560126
Processing commands for cont...@bugs.debian.org: > tags 560126 + unreproducible Bug #560126 [xserver-xorg-video-radeon] xserver-xorg-video-radeon: Launching GL Apps Corrupts System Added tag(s) unreproducible. > 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 debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#560126: xserver-xorg-video-radeon: Launching GL Apps Corrupts System
Leo L. Schwab wrote: > Package: xserver-xorg-video-radeon > Version: 1:6.12.3-1 > Severity: critical > Justification: breaks the whole system > > After launching virtually any GL screensaver, the system appears to > become corrupted beyond usability. > > After exiting the screensaver, any one of several system-wide errors > manifest themselves, preventing the launch of any new program (including > programs to shut the system down). The only way to regain control of the > system is a hard reboot. > > Among the errors observed so far: > - Errors reporting system libraries are corrupt. > - Errors reporting the requested program isn't a valid binary image. > - Errors reporting a corrupt filesystem. > - Running daemons, which were running fine before, suddenly > reporting segfaults. > > This strongly suggests the graphics (or related) driver is > clobbering random system memory. > > I've upgraded to the 'unstable' mesa libraries, and to the > 2.6.32-rc8 kernel. Same problems. > You may try upgrading to experimental now... > I realize this report is terribly vague -- I haven't been able to > more concretely characterize the problem. > > To reproduce on this system (at least, how I've been doing it): > - Launch X, any window server/desktop environment. > - Open a terminal. > - Issue the command: "xscreensaver-command -activate". Iterate > until you get a GL screensaver. > - Allow the screensaver to run for a few seconds, then press a key > to exit back to the desktop. > > You should be unable to run any new program. More specifically, you > should be unable to run any program that isn't cached. (Example: After > exiting the screensaver, you can (probably) run 'xscreensaver-command' > again, but attempts to run 'ls' or any other utility will likely fail.) > I can't reproduce this on my Radeon X300 (rv370). When did this problem start? What did you upgrade when it started? Since nobody else has ever reported such a critical problem (while the radeon driver has many users), I suggest your check your installation (with debsums for instance) and maybe check your hardware as well (memtest, smartctl, is there some sort of memtest for video?). Something strange is going on here... Brice -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#559940: input devices not detected at startup
Just discovered that the issue completely disappears with libudev 149. Anton Khirnov -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org