Bug#388694: xkb-data: XkbLayout says US but is actually UK keyboard

2006-09-22 Thread Denis Barbier
On Fri, Sep 22, 2006 at 11:44:38AM +1000, Helen Faulkner wrote:
 Package: xkb-data
 Version: 0.8-12
 Severity: normal
 
 Hi,
 
 I have just installed Debian sid on a new computer.  The keyboard has a US
 layout (in particular, it has an @ above the 2).  I have it set to a US 
 layout,
 but it is behaving as though it has a UK layout ( above the 2).

Another program (GNOME/KDE/xmodmap/whatever) can override your settings.
Running
  $ xprop -root | grep XKB
should normally display
  _XKB_RULES_NAMES(STRING) = xorg, pc104, us, , 
in your case.

Denis


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



Processed: setting forwarded to upstream bug

2006-09-22 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 forwarded 388125 https://bugs.freedesktop.org/show_bug.cgi?id=8392
Bug#388125: osgcal FTBFS (sparc): bus error in xvfb
Forwarded-to-address changed from 
http://lists.freedesktop.org/archives/xorg/2006-September/018251.html to 
https://bugs.freedesktop.org/show_bug.cgi?id=8392.

 thanks
Stopping processing here.

Please contact me if you need assistance.

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


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



Bug#363517: xorg-server kfreebsd

2006-09-22 Thread Petr Salinger

found 363517 2:1.1.1-7
thanks

Hi,

please could you include fixes for kfreebsd ?

Please, apply the attached patch and regenerate
configure by debian/rules patch ; autoconf.

The attached patch creates debian/patches/20_kbsd.patch,
and adjust debian/patches/series and debian/xserver-xorg-core.install
accordingly.

When applied, xorg-server 1.1.1-7 builds on kfreebsd-i386 fine.
It would be very nice, if it could be uploaded soon.

Thanks in advance
Petr
diff -u xorg-server-1.1.1/debian/patches/series 
xorg-server-1.1.1/debian/patches/series
--- xorg-server-1.1.1/debian/patches/series
+++ xorg-server-1.1.1/debian/patches/series
@@ -19,0 +20 @@
+20_kbsd.patch 
diff -u xorg-server-1.1.1/debian/xserver-xorg-core.install 
xorg-server-1.1.1/debian/xserver-xorg-core.install
--- xorg-server-1.1.1/debian/xserver-xorg-core.install
+++ xorg-server-1.1.1/debian/xserver-xorg-core.install
@@ -2,6 +2,7 @@
 usr/lib/xorg/modules/extensions/*.so
 usr/lib/xorg/modules/fonts/*
 usr/lib/xorg/modules/linux/*.so
+usr/lib/xorg/modules/freebsd/*.so
 usr/lib/xorg/modules/multimedia/*.so
 usr/bin/Xorg
 usr/share/man/man1/Xserver.1
only in patch2:
unchanged:
--- xorg-server-1.1.1.orig/debian/patches/20_kbsd.patch
+++ xorg-server-1.1.1/debian/patches/20_kbsd.patch
@@ -0,0 +1,126 @@
+Index: xorg-server-1.1.1/configure.ac
+===
+--- xorg-server-1.1.1.orig/configure.ac2006-09-22 09:16:33.065267000 
+0200
 xorg-server-1.1.1/configure.ac 2006-09-22 09:17:08.0 +0200
+@@ -246,7 +246,10 @@
+ dnl it would be nice to autodetect these *CONS_SUPPORTs
+ case $host_os in
+   *freebsd*)
+-  AC_DEFINE(CSRG_BASED, 1, [System is BSD-like])
++  case $host_os in
++  kfreebsd*-gnu) ;;
++  *) AC_DEFINE(CSRG_BASED, 1, [System is BSD-like]) ;;
++  esac
+   AC_DEFINE(PCCONS_SUPPORT, 1, [System has PC console])
+   AC_DEFINE(PCVT_SUPPORT, 1, [System has PCVT console])
+   AC_DEFINE(SYSCONS_SUPPORT, 1, [System has syscons console])
+@@ -1080,7 +1083,7 @@
+   ;;
+   esac
+   ;;
+-freebsd*)
++freebsd* | kfreebsd*-gnu)
+   XORG_OS=freebsd
+   XORG_OS_SUBDIR=bsd
+   XORG_OS_KBD=BSD
+@@ -1179,7 +1182,7 @@
+   ;;
+ powerpc*)
+   case $host_os in
+-linux*|freebsd*|netbsd*|openbsd*)
++linux*|freebsd*|netbsd*|openbsd*|kfreebsd*-gnu)
+   ;;
+ *)
+   xorg_bus_ppcpci=yes
+@@ -1192,7 +1195,7 @@
+   ;;
+ x86_64*|amd64*)
+   case $host_os in
+-freebsd*)
++freebsd*|kfreebsd*-gnu)
+   # FreeBSD uses the system pci interface
+   ;;
+ *)
+@@ -1437,7 +1440,11 @@
+ 
+ AC_CHECK_HEADERS([sys/vm86.h sys/io.h])
+ if test $ac_cv_header_sys_vm86_h = yes; then
+-AC_DEFINE(KDRIVEVESA, 1, [Build VESA-based kdrive servers])
++  case $host_os in
++  kfreebsd*-gnu)  kdrivevesa=no ;;
++  *)  AC_DEFINE(KDRIVEVESA, 1, [Build VESA-based kdrive 
servers])
++  kdrivevesa=yes;;
++  esac
+ fi
+ 
+ AC_CHECK_HEADERS([linux/fb.h])
+@@ -1477,7 +1484,7 @@
+ AC_SUBST(KDRIVE_LIBS)
+ AM_CONDITIONAL(TSLIB, false)
+ AM_CONDITIONAL(H3600_TS, false)
+-AM_CONDITIONAL(KDRIVEVESA, [test x$ac_cv_header_sys_vm86_h = xyes])
++AM_CONDITIONAL(KDRIVEVESA, [test x$kdrivevesa = xyes])
+ AM_CONDITIONAL(KDRIVEFBDEV, [test x$ac_cv_header_linux_fb_h = xyes])
+ #AM_CONDITIONAL(KDRIVEVESA, false)
+ #AM_CONDITIONAL(KDRIVEFBDEV, false)
+@@ -1532,7 +1539,7 @@
+   cygwin*) ;;
+   solaris*) ;;
+ darwin*) ;;
+-  *bsd*) ;;
++  freebsd*|netbsd*|openbsd*) ;;
+   *) 
+   AC_DEFINE(_POSIX_SOURCE, 1, [POSIX-compliant source])
+   AC_DEFINE(_XOPEN_SOURCE, 500, [X/Open-compliant source])
+Index: xorg-server-1.1.1/hw/xfree86/os-support/bus/Pci.h
+===
+--- xorg-server-1.1.1.orig/hw/xfree86/os-support/bus/Pci.h 2006-09-22 
09:16:33.106722000 +0200
 xorg-server-1.1.1/hw/xfree86/os-support/bus/Pci.h  2006-09-22 
09:17:08.0 +0200
+@@ -332,7 +332,7 @@
+ #  define ARCH_PCI_PCI_BRIDGE sparcPciPciBridge
+ # endif
+ #elif defined(__amd64__) || defined(__amd64)
+-# if defined(__FreeBSD__)
++# if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
+ #  define ARCH_PCI_INIT freebsdPciInit
+ # else
+ #  define ARCH_PCI_INIT ix86PciInit
+Index: xorg-server-1.1.1/GL/glx/indirect_dispatch_swap.c
+===
+--- xorg-server-1.1.1.orig/GL/glx/indirect_dispatch_swap.c 2006-09-22 
09:16:33.182567000 +0200
 xorg-server-1.1.1/GL/glx/indirect_dispatch_swap.c  2006-09-22 
09:17:08.0 +0200
+@@ -28,7 

Processed: xorg-server kfreebsd

2006-09-22 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 found 363517 2:1.1.1-7
Bug#363517: FTBFS on kfreebsd-i386 and kfreebsd-amd64
Bug marked as found in version 2:1.1.1-7.

 thanks
Stopping processing here.

Please contact me if you need assistance.

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


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



Bug#363451: marked as done (xserver-xorg: xserver aborts with signal 11)

2006-09-22 Thread Debian Bug Tracking System
Your message dated Fri, 22 Sep 2006 11:29:51 +0200
with message-id [EMAIL PROTECTED]
and subject line Bug#363451: xserver-xorg: xserver aborts with signal 11
has caused the attached Bug report to be marked as done.

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

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: xserver-xorg
Version: 1:7.0.14
Severity: important

The grafics card in question is a Intel Corporation 945G Integrated 
Graphics Controller. Since last evenings upgrade (changing from the 
unofficial amd64 port to the official one) startx ends with the 
following output:

   Backtrace:
   0: /usr/X11R6/bin/X(xf86SigHandler+0x95) [0x477305]
   1: /lib/libc.so.6 [0x2ad7299d3e90]
   2: /usr/lib/xorg/modules/drivers/i810_drv.so(I830DRIDoMappings+0x24e) 
   [0x2ad72af9059e]
   3: /usr/lib/xorg/modules/drivers/i810_drv.so [0x2ad72af7e469]
   4: /usr/X11R6/bin/X(AddScreen+0x244) [0x430c64]
   5: /usr/X11R6/bin/X(InitOutput+0x4b2) [0x45fba2]
   6: /usr/X11R6/bin/X(main+0x2fb) [0x43053b]
   7: /lib/libc.so.6(__libc_start_main+0xda) [0x2ad7299c04ca]
   8: /usr/X11R6/bin/X(FontFileCompleteXLFD+0x9a) [0x42fbea]

   Fatal server error:
   Caught signal 11.  Server aborting

- Martin



-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16.3
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages xserver-xorg depends on:
ii  debconf   1.4.72 Debian configuration management sy
ii  x11-common1:7.0.14   X Window System (X.Org) infrastruc
ii  xbase-clients 1:7.0.0-4  miscellaneous X clients
ii  xkb-data  0.8-5  X Keyboard Extension (XKB) configu
ii  xserver-xorg-core 1:1.0.2-5  X.Org X server -- core server
ii  xserver-xorg-input-al 1:7.0.14   the X.Org X server -- input driver
ii  xserver-xorg-input-ev 1:1.0.0.5-2X.Org X server -- evdev input driv
ii  xserver-xorg-input-kb 1:1.0.1.3-2X.Org X server -- keyboard input d
ii  xserver-xorg-input-mo 1:1.0.4-2  X.Org X server -- mouse input driv
ii  xserver-xorg-video-ap 1:1.0.1.5-2X.Org X server -- APM display driv
ii  xserver-xorg-video-ar 1:0.5.0.5-2X.Org X server -- ark display driv
ii  xserver-xorg-video-at 1:6.5.7.3-3X.Org X server -- ATI display driv
ii  xserver-xorg-video-ch 1:1.0.1.3-3X.Org X server -- Chips display dr
ii  xserver-xorg-video-ci 1:1.0.0.5-2X.Org X server -- Cirrus display d
ii  xserver-xorg-video-cy 1:1.0.0.5-2X.Org X server -- Cyrix display dr
ii  xserver-xorg-video-du 1:0.1.0.5-2X.Org X server -- dummy display dr
ii  xserver-xorg-video-fb 1:0.1.0.5-2X.Org X server -- fbdev display dr
ii  xserver-xorg-video-i1 1:1.1.0.5-2X.Org X server -- i128 display dri
ii  xserver-xorg-video-i8 1:1.5.1.0-2X.Org X server -- Intel i8xx, i9xx
ii  xserver-xorg-video-mg 1:1.2.1.3.dfsg.1-2 X.Org X server -- MGA display driv
ii  xserver-xorg-video-ne 1:1.0.0.5-2X.Org X server -- Neomagic display
ii  xserver-xorg-video-nv 1:1.0.1.5-2X.Org X server -- NV display drive
ii  xserver-xorg-video-re 1:4.0.1.3.dfsg.1-2 X.Org X server -- Rendition displa
ii  xserver-xorg-video-s3 1:1.8.6.5-2X.Org X server -- S3 ViRGE display
ii  xserver-xorg-video-sa 1:2.0.2.3-4X.Org X server -- Savage display d
ii  xserver-xorg-video-si 1:1.3.1.5-3X.Org X server -- SiliconMotion di
ii  xserver-xorg-video-si 1:0.8.1.3-2X.Org X server -- SiS display driv
ii  xserver-xorg-video-si 1:0.7.1.3-2X.Org X server -- SiS USB display 
ii  xserver-xorg-video-td 1:1.1.1.3-3X.Org X server -- tdfx display dri
ii  xserver-xorg-video-tg 1:1.0.0.5-3X.Org X server -- TGA display driv
ii  xserver-xorg-video-tr 1:1.0.1.2-2X.Org X server -- Trident display 
ii  xserver-xorg-video-ts 1:1.0.0.5-2X.Org X server -- Tseng display dr
ii  xserver-xorg-video-ve 1:1.0.1.3-2X.Org X server -- VESA display dri
ii  xserver-xorg-video-vg 1:4.0.0.5-2X.Org X server -- VGA display driv
ii  xserver-xorg-video-vi 1:0.1.33.2-2   X.Org X server -- VIA display driv
ii  xserver-xorg-video-vo 1:1.0.0.5-2X.Org X server -- Voodoo display d

Versions of packages xserver-xorg recommends:
ii  discover1  1.7.18hardware identification system
ii  laptop-detect  0.12.1attempt to detect a laptop
ii  mdetect0.5.2.1   

Bug#388737: xserver-xorg-video-ati: TV-in black screen on Theatre 200 / radeon 8500

2006-09-22 Thread David Liontooth
Package: xserver-xorg-video-ati
Version: 1:6.6.2-2
Severity: normal


xawtv clearly takes control of the tuner and everything appears to be working 
behind the scenes, but the screen remains black.

Details:

The GATOS site http://gatos.sourceforge.net/supported_cards.php says,

All-in-Wonder Radeon 8500DV (Radeon200) -- Should work fine with 4.2.0 or later 
drivers. XvImage (YUV-RGB overlay and scaling) should 
work fine. TV-in works in NTSC. Video capture should work.

dmesg says,

Linux agpgart interface v0.101 (c) Dave Jones
agpgart: Detected AGP bridge 0
agpgart: Setting up Nforce3 AGP.
agpgart: AGP aperture is 64M @ 0xf000
agpgart: Found an AGP 2.0 compliant device at :00:00.0.

[drm] Initialized radeon 1.24.0 20060225 on minor 0

# grep multimedia Xorg.0.log says (let me know if you want more detail),

(II) RADEON(0): I2C bus Radeon multimedia bus initialized.
(II) Loading /usr/lib/xorg/modules/multimedia/fi1236_drv.so
(II) RADEON(0): I2C device Radeon multimedia bus:FI12xx Tuner registered at 
address 0xC6.
(II) Loading /usr/lib/xorg/modules/multimedia/tda9885_drv.so
(II) RADEON(0): I2C device Radeon multimedia bus:TDA9885 Alignment-free 
IF-PLL registered at address 0x86.
(II) Loading /usr/lib/xorg/modules/multimedia/uda1380_drv.so
(II) Loading /usr/lib/xorg/modules/multimedia/msp3430_drv.so
(II) RADEON(0): I2C device Radeon multimedia bus:MSP34xx registered at 
address 0x80.
(II) Loading /usr/lib/xorg/modules/multimedia/theatre_detect_drv.so
(II) Loading /usr/lib/xorg/modules/multimedia/theatre_drv.so

When I start xawtv with no parameters I get a black screen, but Xorg.0.log 
shows something is working 
(I should mention I have several other working cards in the same box, so I know 
the signal is good). 
Video source Television is not accepted, and 'tuner' flips to 'composite' every 
time I change channel.

(II) RADEON(0): Setting tuner band to 2
(II) RADEON(0): Setting tuner frequency to 3092
(II) RADEON(0): Tuner status 34
(II) RADEON(0): Rage Theatre setting standard 0x
(II) RADEON(0): TDA9885 setparam: B data: d2, C data: 30, E data: 84
(II) RADEON(0): TDA9885 status: after_reset=0 afc_status=0 (-12.5 kHz off) 
fm_carrier=1 vif_level=0 afc_win=1 VCO in
(II) RADEON(0): AFC: FI1236_get_afc_hint: 0
(II) RADEON(0): AFC: TUNER_TUNNED
(II) RADEON(0): Rage Theatre setting standard 0x
(II) RADEON(0): TDA9885 setparam: B data: d2, C data: 30, E data: 84
(II) RADEON(0): TDA9885 status: after_reset=0 afc_status=1 (-37.5 kHz off) 
fm_carrier=1 vif_level=0 afc_win=1 VCO in
(II) RADEON(0): AFC: FI1236_get_afc_hint: 1
(II) RADEON(0): AFC: Setting tuner frequency to 55.2812
(II) RADEON(0): Setting tuner band to 1
(II) RADEON(0): Setting tuner frequency to 885
(II) RADEON(0): Tuner status 7c

I don't see any errors, but there's no picture. This is NTSC with us-cable. I 
have three additional different types of tv grabber 
cards in the same box and they all work fine -- all PCI cards, while the Radeon 
is in the AGP slot.

I don't know enough to give a more useful bugreport -- I just don't see what 
could be going wrong.

Dave



-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages xserver-xorg-video-ati depends on:
ii  libc62.3.6.ds1-4 GNU C Library: Shared libraries
ii  xserver-xorg-core2:1.1.1-6   X.Org X server -- core server

xserver-xorg-video-ati recommends no packages.

-- no debconf information


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



Processed: Re: Bug#388734: xfonts: after a dist-upgrade, the font system is broken, fonts display erraticly

2006-09-22 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 reassign 388734 xfonts-base
Bug#388734: xfonts: after a dist-upgrade, the font system is broken, fonts 
display erraticly
Warning: Unknown package 'xfonts'
Bug reassigned from package `xfonts' to `xfonts-base'.

 --
Stopping processing here.

Please contact me if you need assistance.

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


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



Re: X Strike Force X.Org X11 SVN commit: r3393 - in trunk/app/compiz: debian debian/patches gnome/window-decorator include plugins src

2006-09-22 Thread Thierry Reding
* Aaron M. Ucko wrote:
 X Strike Force SVN Repository Admin [EMAIL PROTECTED]
 writes:
 
  +/usr/bin/compiz.real --strict-binding --indirect-rendering --use-cow $@ 
  gconf
 
 $@ requires double quotes to DTRT: 
 
 /usr/bin/compiz.real --strict-binding --indirect-rendering --use-cow $@ 
 gconf

What exactly is the difference? I've just run some tests with and without
double quotes, but the result is always the same.

 - Thierry



signature.asc
Description: Digital signature


Re: X Strike Force X.Org X11 SVN commit: r3393 - in trunk/app/compiz: debian debian/patches gnome/window-decorator include plugins src

2006-09-22 Thread Frans Pop
On Friday 22 September 2006 12:33, Thierry Reding wrote:
  $@ requires double quotes to DTRT:
 
  /usr/bin/compiz.real --strict-binding --indirect-rendering --use-cow
  $@ gconf

 What exactly is the difference? I've just run some tests with and
 without double quotes, but the result is always the same.

See this analysis of a similar bug in grub:
http://bugs.debian.org/388277

Without quotes $@ gives exactly the same output as $* (the first example).

Cheers,
FJP


pgpw1S0sNRR0F.pgp
Description: PGP signature


X Strike Force X.Org X11 SVN commit: r3440 - trunk/lib/libsm/debian

2006-09-22 Thread X Strike Force SVN Repository Admin
Author: dparsons
Date: 2006-09-22 07:37:47 -0400 (Fri, 22 Sep 2006)
New Revision: 3440

Modified:
   trunk/lib/libsm/debian/changelog
   trunk/lib/libsm/debian/control
   trunk/lib/libsm/debian/rules
Log:
  * Exclude libSM.la from dh_install.
  * The library in debian/rules is libsm6 not libxau6! Closes: #383468.
  * libsm-dev uses versioned depends on libice-dev from X11R7.
Closes: #372129.
  


Modified: trunk/lib/libsm/debian/changelog
===
--- trunk/lib/libsm/debian/changelog2006-09-22 03:52:14 UTC (rev 3439)
+++ trunk/lib/libsm/debian/changelog2006-09-22 11:37:47 UTC (rev 3440)
@@ -1,3 +1,12 @@
+libsm (1:1.0.1-3) unstable; urgency=low
+
+  * Exclude libSM.la from dh_install.
+  * The library in debian/rules is libsm6 not libxau6! Closes: #383468.
+  * libsm-dev uses versioned depends on libice-dev from X11R7. 
+Closes: #372129.
+
+ -- Drew Parsons [EMAIL PROTECTED]  Fri, 22 Sep 2006 21:33:23 +1000
+
 libsm (1:1.0.1-2) unstable; urgency=low
 
   [ Andres Salomon ]

Modified: trunk/lib/libsm/debian/control
===
--- trunk/lib/libsm/debian/control  2006-09-22 03:52:14 UTC (rev 3439)
+++ trunk/lib/libsm/debian/control  2006-09-22 11:37:47 UTC (rev 3440)
@@ -42,7 +42,7 @@
 
 Package: libsm-dev
 Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, libsm6 (= ${Source-Version}), 
x11proto-core-dev, libice-dev
+Depends: ${shlibs:Depends}, ${misc:Depends}, libsm6 (= ${Source-Version}), 
x11proto-core-dev, libice-dev (= 1:1.0.0-1)
 Pre-Depends: x11-common (= 1:7.0.0)
 Description: X11 Inter-Client Exchange library (development headers)
  This package provides the main interface to the X11 Session Management

Modified: trunk/lib/libsm/debian/rules
===
--- trunk/lib/libsm/debian/rules2006-09-22 03:52:14 UTC (rev 3439)
+++ trunk/lib/libsm/debian/rules2006-09-22 11:37:47 UTC (rev 3440)
@@ -8,7 +8,7 @@
 #export DH_VERBOSE=1
 
 # set this to the name of the main shlib's binary package
-PACKAGE = libxau6
+PACKAGE = libsm6
 
 include debian/xsfbs/xsfbs.mk
 
@@ -72,7 +72,7 @@
dh_testroot
 
dh_installdocs
-   dh_install --sourcedir=debian/tmp --list-missing
+   dh_install --sourcedir=debian/tmp --list-missing --exclude=libSM.la
dh_installchangelogs
dh_link
dh_strip --dbg-package=$(PACKAGE)-dbg


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



libsm override disparity

2006-09-22 Thread Debian Installer
There are disparities between your recently accepted upload and the
override file for the following file(s):

libsm-dev_1.0.1-3_i386.deb: package says section is x11, override says libdevel.
libsm6-dbg_1.0.1-3_i386.deb: package says section is x11, override says 
libdevel.
libsm6_1.0.1-3_i386.deb: package says section is x11, override says libs.

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 reply to this mail and explain why.

[NB: this is an automatically generated mail; if you replied to one
like it before and have not received a response yet, please ignore
this mail.  Your reply 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 [EMAIL PROTECTED])


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



libsm_1.0.1-3_i386.changes ACCEPTED

2006-09-22 Thread Debian Installer

Accepted:
libsm-dev_1.0.1-3_i386.deb
  to pool/main/libs/libsm/libsm-dev_1.0.1-3_i386.deb
libsm6-dbg_1.0.1-3_i386.deb
  to pool/main/libs/libsm/libsm6-dbg_1.0.1-3_i386.deb
libsm6_1.0.1-3_i386.deb
  to pool/main/libs/libsm/libsm6_1.0.1-3_i386.deb
libsm_1.0.1-3.diff.gz
  to pool/main/libs/libsm/libsm_1.0.1-3.diff.gz
libsm_1.0.1-3.dsc
  to pool/main/libs/libsm/libsm_1.0.1-3.dsc


Override entries for your package:
libsm-dev_1.0.1-3_i386.deb - optional libdevel
libsm6-dbg_1.0.1-3_i386.deb - extra libdevel
libsm6_1.0.1-3_i386.deb - optional libs
libsm_1.0.1-3.dsc - source x11

Announcing to debian-devel-changes@lists.debian.org
Closing bugs: 372129 383468 


Thank you for your contribution to Debian.


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



X Strike Force X.Org X11 SVN commit: r3441 - tags/lib/libsm

2006-09-22 Thread X Strike Force SVN Repository Admin
Author: dparsons
Date: 2006-09-22 08:00:36 -0400 (Fri, 22 Sep 2006)
New Revision: 3441

Added:
   tags/lib/libsm/1:1.0.1-3/
Log:
Tagging libsm (1:1.0.1-3) in unstable.


Copied: tags/lib/libsm/1:1.0.1-3 (from rev 3440, trunk/lib/libsm)


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



Bug#387917: xserver-xorg: xkb-data 0.8-12exp2 (experimental) crashes radeon ibook X server

2006-09-22 Thread Wolfgang Pfeiffer
Denis

Congratulations  :) ...
 
So good news first : No more crashes here on the 5,8 alubook with your
new 
xkb-data_0.8-12exp4_all.deb

On Fri, Sep 22, 2006 at 01:26:16AM +0200, Denis Barbier wrote:
 On Thu, Sep 21, 2006 at 11:22:02PM +0200, Denis Barbier wrote:
  On Thu, Sep 21, 2006 at 01:56:14PM +0200, Wolfgang Pfeiffer wrote:
   *** 2:
   
   xkbcomp :0
   
   result from last command is attached. Please note that my keyboard
   settings at the time of this command should have been set by the local
   ~/.xmodmap, if everything went as I expect. ... :)
  
  Great, I can reproduce this crash with your file, thanks.
 
 And a fix has been committed into xkb-data 0.8-12exp4 and uploaded into
 experimental, at the moment available at
   http://people.debian.org/~barbier/tmp/
 I do not know exactly why xkbcomp crashes, but this is no more
 reproducible here.  

Same here:
These both work now without trouble, so far :)


*** 1:

setxkbmap -option -model macintosh -layout de -variant nodeadkeys -print | 
xkbcomp - :0


*** 2:

setxkbmap -option -model pc105 -layout de -variant nodeadkeys -print | xkbcomp 
- :0


 I intend to upload this version into unstable very
 soon now.

Good luck :) And thanks for the work ... :)
Please let me know if you need further testings ...

Best Regards

Wolfgang 

-- 
Wolfgang Pfeiffer: /ICQ: 286585973/ + + +  /AIM: crashinglinux/
http://profiles.yahoo.com/wolfgangpfeiffer

Key ID: E3037113
http://keyserver.mine.nu/pks/lookup?search=0xE3037113fingerprint=on


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



Bug#383468: marked as done (libsm6-dbg: contains no files except docs)

2006-09-22 Thread Debian Bug Tracking System
Your message dated Fri, 22 Sep 2006 04:48:24 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#383468: fixed in libsm 1:1.0.1-3
has caused the attached Bug report to be marked as done.

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

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: libsm6-dbg
Severity: normal


Looking at both libsm6-dbg_1.0.0-4_i386.deb in unstable and
libsm6-dbg_1.0.1-1_i386.deb in experimental, they contain no
files except Debian changelog and copyright. I would expect
them to contain the shared object under /usr/lib/debug, like
libice6-dbg does.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing')
Architecture: i386 (i586)
Kernel: Linux 2.6.14-2-386
Locale: LANG=fi_FI, LC_CTYPE=fi_FI (charmap=ISO-8859-1)

---End Message---
---BeginMessage---
Source: libsm
Source-Version: 1:1.0.1-3

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

libsm-dev_1.0.1-3_i386.deb
  to pool/main/libs/libsm/libsm-dev_1.0.1-3_i386.deb
libsm6-dbg_1.0.1-3_i386.deb
  to pool/main/libs/libsm/libsm6-dbg_1.0.1-3_i386.deb
libsm6_1.0.1-3_i386.deb
  to pool/main/libs/libsm/libsm6_1.0.1-3_i386.deb
libsm_1.0.1-3.diff.gz
  to pool/main/libs/libsm/libsm_1.0.1-3.diff.gz
libsm_1.0.1-3.dsc
  to pool/main/libs/libsm/libsm_1.0.1-3.dsc



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Drew Parsons [EMAIL PROTECTED] (supplier of updated libsm package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri, 22 Sep 2006 21:33:23 +1000
Source: libsm
Binary: libsm-dev libsm6-dbg libsm6
Architecture: source i386
Version: 1:1.0.1-3
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Drew Parsons [EMAIL PROTECTED]
Description: 
 libsm-dev  - X11 Inter-Client Exchange library (development headers)
 libsm6 - X11 Session Management library
 libsm6-dbg - X11 Inter-Client Exchange library (debug package)
Closes: 372129 383468
Changes: 
 libsm (1:1.0.1-3) unstable; urgency=low
 .
   * Exclude libSM.la from dh_install.
   * The library in debian/rules is libsm6 not libxau6! Closes: #383468.
   * libsm-dev uses versioned depends on libice-dev from X11R7.
 Closes: #372129.
Files: 
 0a8449fabe8f2bade08cd2a3d50ec5b1 861 x11 optional libsm_1.0.1-3.dsc
 8a91e2fd0a618e776e60299b0ab9f07f 17696 x11 optional libsm_1.0.1-3.diff.gz
 6a09046a0feeb0aa6c33f377b39791b0 18016 x11 optional libsm6_1.0.1-3_i386.deb
 bb2d8da8446745e62ee2c5ea8e751003 32436 x11 extra libsm6-dbg_1.0.1-3_i386.deb
 a9e8c6eb038cc200101326b2b0ec29a9 21008 x11 optional libsm-dev_1.0.1-3_i386.deb

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

iD8DBQFFE8v9ts5wQWQSTkoRAhszAJ0fsJyk/tOpSAez3mrD3t1SA50AUgCffLUH
B6sMZIEKfNIlKEaFCtoAiWM=
=jRSQ
-END PGP SIGNATURE-

---End Message---


Bug#372129: marked as done (libsm-dev: Should have a versioned dependency to libice-dev)

2006-09-22 Thread Debian Bug Tracking System
Your message dated Fri, 22 Sep 2006 04:48:24 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#372129: fixed in libsm 1:1.0.1-3
has caused the attached Bug report to be marked as done.

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

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: libsm-dev
Version: 1:1.0.0-4
Severity: normal

Hello,

I was trying to recompile gkrellm in testing and I received the
following error:

$ dpkg-buildpackage -us -uc -rfakeroot
dpkg-buildpackage: source package is gkrellm
dpkg-buildpackage: source version is 2.2.9-1
dpkg-buildpackage: source changed by Cai Qian [EMAIL PROTECTED]
dpkg-buildpackage: host architecture i386
dpkg-buildpackage: source version without epoch 2.2.9-1
 fakeroot debian/rules clean

[...]

cc -Wall -O2 -I.. `pkg-config --cflags gtk+-2.0 gthread-2.0`   -DENABLE_NLS 
-DLOCALEDIR=\/usr/share/locale\-c -o utils.o utils.c
cc -Wall -O2 -I.. `pkg-config --cflags gtk+-2.0 gthread-2.0`   -DENABLE_NLS 
-DLOCALEDIR=\/usr/share/locale\-c -o winops-x11.o winops-x11.c
In file included from winops-x11.c:35:
/usr/include/X11/SM/SMlib.h:37:28: error: X11/ICE/ICElib.h: Aucun fichier ou 
répertoire de ce type
In file included from winops-x11.c:35:
/usr/include/X11/SM/SMlib.h:44: error: syntax error before 'SmPointer'
/usr/include/X11/SM/SMlib.h:61: error: syntax error before 'SmPointer'
/usr/include/X11/SM/SMlib.h:68: error: syntax error before 'SmPropValue'
/usr/include/X11/SM/SMlib.h:91: error: syntax error before 'SmPointer'
/usr/include/X11/SM/SMlib.h:100: error: syntax error before 'SmPointer'
/usr/include/X11/SM/SMlib.h:105: error: syntax error before 'SmPointer'
/usr/include/X11/SM/SMlib.h:110: error: syntax error before 'SmPointer'
/usr/include/X11/SM/SMlib.h:115: error: syntax error before 'SmPointer'
/usr/include/X11/SM/SMlib.h:120: error: syntax error before 'SmPointer'
/usr/include/X11/SM/SMlib.h:125: error: syntax error before 'SmPointer'
/usr/include/X11/SM/SMlib.h:139: error: syntax error before 'SmPointer'
/usr/include/X11/SM/SMlib.h:144: error: syntax error before 'SmPointer'
/usr/include/X11/SM/SMlib.h:149: error: syntax error before 'SmPointer'
/usr/include/X11/SM/SMlib.h:154: error: syntax error before 'SmPointer'
/usr/include/X11/SM/SMlib.h:157: error: syntax error before '}' token
/usr/include/X11/SM/SMlib.h:172: error: syntax error before 'SmPointer'
/usr/include/X11/SM/SMlib.h:178: error: syntax error before 'SmPointer'
/usr/include/X11/SM/SMlib.h:184: error: syntax error before 'SmPointer'
/usr/include/X11/SM/SMlib.h:190: error: syntax error before 'SmPointer'
/usr/include/X11/SM/SMlib.h:200: error: syntax error before 'SmPointer'
/usr/include/X11/SM/SMlib.h:205: error: syntax error before 'SmPointer'
/usr/include/X11/SM/SMlib.h:211: error: syntax error before 'SmPointer'
/usr/include/X11/SM/SMlib.h:218: error: syntax error before 'SmPointer'
/usr/include/X11/SM/SMlib.h:225: error: syntax error before 'SmPointer'
/usr/include/X11/SM/SMlib.h:232: error: syntax error before 'SmPointer'
/usr/include/X11/SM/SMlib.h:244: error: syntax error before 'SmPointer'
/usr/include/X11/SM/SMlib.h:249: error: syntax error before 'SmPointer'
/usr/include/X11/SM/SMlib.h:254: error: syntax error before 'SmPointer'
/usr/include/X11/SM/SMlib.h:259: error: syntax error before 'SmPointer'
/usr/include/X11/SM/SMlib.h:264: error: syntax error before 'SmPointer'
/usr/include/X11/SM/SMlib.h:269: error: syntax error before 'SmPointer'
/usr/include/X11/SM/SMlib.h:274: error: syntax error before 'SmPointer'
/usr/include/X11/SM/SMlib.h:279: error: syntax error before 'SmPointer'
/usr/include/X11/SM/SMlib.h:284: error: syntax error before 'SmPointer'
/usr/include/X11/SM/SMlib.h:289: error: syntax error before 'SmPointer'
/usr/include/X11/SM/SMlib.h:292: error: syntax error before '}' token
/usr/include/X11/SM/SMlib.h:310: error: syntax error before 'SmPointer'
/usr/include/X11/SM/SMlib.h:329: error: syntax error before 'SmPointer'
/usr/include/X11/SM/SMlib.h:339: error: syntax error before 'SmPointer'
/usr/include/X11/SM/SMlib.h:352: error: syntax error before 'SmPointer'
/usr/include/X11/SM/SMlib.h:372: error: syntax error before 'SmcCallbacks'
/usr/include/X11/SM/SMlib.h:378: error: syntax error before 'SmProp'
/usr/include/X11/SM/SMlib.h:390: error: syntax error before 'SmPointer'
/usr/include/X11/SM/SMlib.h:397: error: syntax error before 'SmPointer'
/usr/include/X11/SM/SMlib.h:417: error: syntax error before 'SmPointer'
/usr/include/X11/SM/SMlib.h:445: error: syntax error before 
'SmcGetIceConnection'
/usr/include/X11/SM/SMlib.h:453: error: syntax error before 'SmPointer'

Bug#387917: xserver-xorg: xkb-data 0.8-12exp2 (experimental) crashes radeon ibook X server

2006-09-22 Thread Wolfgang Pfeiffer
Denis

On Thu, Sep 21, 2006 at 11:22:02PM +0200, Denis Barbier wrote:
 On Thu, Sep 21, 2006 at 01:56:14PM +0200, Wolfgang Pfeiffer wrote:
  *** 2:
  
  xkbcomp :0
  
  result from last command is attached. Please note that my keyboard
  settings at the time of this command should have been set by the local
  ~/.xmodmap, if everything went as I expect. ... :)
 
 Great, I can reproduce this crash with your file, thanks.
 BTW, why do you have an .xmodmap file?

Several reasons:

One, because I need stability on a keyboard. I'm on unstable. This
means I have to take into account that my keyboard is changed if I
pull the wrong upgrade, which means lots of work if I don't have a
usable ~/.xmodmap ... :)

Second: This Mac keyboard here, and I'm talking about the hardware,
seems to be a sick joke - at best: I have two ENTER keys, the real
one that probably nearly everyone has anywhere and the one left of the
Left arrow key. I.e. both are set not very far from each other. Such
hardware might be nice for a Macintosh junkie who simply wants to be
some sort of special - even if that means to become completely
retarded .. and there's more to rant about, I'll just stop here .. :)

With ~/.xmodmap I'm basically trying to get the best out of a notebook
keyboard that has, different to the big PC105 (?) keyboards, a smaller
number of keys: f.e. I don't have a numeric keypad. This means I try
to get every character/key value mapping just once, not 2 or 3 times
...

Thinking a bit more it might also be because I don't like the idea
Jobs' RDF would take over the way I type ... :)

Thanks, Colin, also for your new xkb-data version ... With your new
version it seems I can safely test the settings here, especially the
-- how you you call that? 2nd and 3rd level keys? That is @, ¥, ®, |,
€ etc. ...

Please holler if you need me testing your software.

Nice Weekend
Wolfgang

-- 
Wolfgang Pfeiffer: /ICQ: 286585973/ + + +  /AIM: crashinglinux/
http://profiles.yahoo.com/wolfgangpfeiffer

Key ID: E3037113
http://keyserver.mine.nu/pks/lookup?search=0xE3037113fingerprint=on


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



[bts-link] source package xorg

2006-09-22 Thread bts-link-upstream
#
# bts-link upstream status pull for source package xorg
# see http://lists.debian.org/debian-devel-announce/2006/05/msg1.html
#

user [EMAIL PROTECTED]

# remote status report for #355843
#  * https://bugs.freedesktop.org/show_bug.cgi?id=4847
#  * remote status changed: NEEDINFO - RESOLVED
#  * remote resolution changed: (?) - FIXED
#  * closed upstream
tags 355843 + fixed-upstream
usertags 355843 - status-NEEDINFO
usertags 355843 + status-RESOLVED resolution-FIXED

thanks



Bug#388807: libxcomposite1: Please can we have 0.3?

2006-09-22 Thread Jonathan McDowell
Package: libxcomposite1
Version: 1:0.2.2.2-3
Severity: wishlist

Are there any plans to upload libXcomposite 0.3 to the archive? My
understanding is that this is part of what's required to take advantage
of the shiny new composite extension present in 7.1 that's recently hit
unstable.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

Versions of packages libxcomposite1 depends on:
ii  libc62.3.6.ds1-4 GNU C Library: Shared libraries
ii  libx11-6 2:1.0.0-9   X11 client-side library
ii  libxext6 1:1.0.1-2   X11 miscellaneous extension librar
ii  libxfixes3   1:4.0.1-4   X11 miscellaneous 'fixes' extensio
ii  x11-common   1:7.1.0-1   X Window System (X.Org) infrastruc

libxcomposite1 recommends no packages.

-- no debconf information


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



Re: X Strike Force X.Org X11 SVN commit: r3393 - in trunk/app/compiz: debian debian/patches gnome/window-decorator include plugins src

2006-09-22 Thread Thierry Reding
* Frans Pop wrote:
 On Friday 22 September 2006 12:33, Thierry Reding wrote:
   $@ requires double quotes to DTRT:
  
   /usr/bin/compiz.real --strict-binding --indirect-rendering --use-cow
   $@ gconf
 
  What exactly is the difference? I've just run some tests with and
  without double quotes, but the result is always the same.
 
 See this analysis of a similar bug in grub:
 http://bugs.debian.org/388277
 
 Without quotes $@ gives exactly the same output as $* (the first example).

Okay, I'm convinced and will change the wrapper. Thanks Aaron and Frans.

 - Thierry



signature.asc
Description: Digital signature


X Strike Force X.Org X11 SVN commit: r3442 - trunk/app/compiz/debian

2006-09-22 Thread X Strike Force SVN Repository Admin
Author: beatle
Date: 2006-09-22 12:54:12 -0400 (Fri, 22 Sep 2006)
New Revision: 3442

Modified:
   trunk/app/compiz/debian/compiz.wrapper
Log:
Make the compiz wrapper Do The Right Thing with command-line parameters.


Modified: trunk/app/compiz/debian/compiz.wrapper
===
--- trunk/app/compiz/debian/compiz.wrapper  2006-09-22 12:00:36 UTC (rev 
3441)
+++ trunk/app/compiz/debian/compiz.wrapper  2006-09-22 16:54:12 UTC (rev 
3442)
@@ -6,5 +6,5 @@
 fi
 
 # always load the gconf plugin
-/usr/bin/compiz.real --strict-binding --indirect-rendering --use-cow $@ gconf
+/usr/bin/compiz.real --strict-binding --indirect-rendering --use-cow $@ gconf
 


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



Bug#388811: xlibmesa-dri: upgrade to xorg 7.1 causes savage opengl stop working

2006-09-22 Thread Thibault Mondary
Package: xlibmesa-dri
Version: 1:7.1.0-1
Severity: critical
Justification: breaks unrelated software

An upgrade from xorg 7.0 to xorg 7.1 causes 3d stop working with savage
dri driver (with a mobile Prosavage KN133 twister).

glxinfo report direct rendering=yes but glxgears and any other opengl
app are just displaying black screen, without crashing the whole system.

I think this bug is the same as described in 
https://bugs.freedesktop.org/show_bug.cgi?id=6357


Thibault

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)


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



Bug#56179: Qu ote, R ef: roger

2006-09-22 Thread Jennifer
Hey,

Evelyn  has reciviied your filled app.

Jean  shall  then   Re-confirm   yo ur  info.

http://ECBFC8.ssr.be

For roger evans  

and your Cr.  R ating is not  a factor.

All re  financetypes have been aproved  for you  roger evans

Regards,

Jennifer




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



Bug#116507: Message for jessica fox

2006-09-22 Thread Lance
Hello,

Rachelle  has re cei evi ed your  fill ed app lication.

Leola  shall  then   Re-confirm   yo ur  info.

http://D71199.n0.be

For jessica fox  

and your Cr.  R ating is not an iss ue.

All H0me   Eq uitytypes have been aproved  for you  jessica fox

Thank you,

Lance




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



Bug#116507: To: paul vanwaardenburg

2006-09-22 Thread Refugio
Hey,

Johnie  has rece iveied your form app lied.

Jarrett  shall  then   Re-confirm   yo ur data .

http://A91206.ssr.be

For paul vanwaardenburg  

and your past   Track  Record is not an iss ue.

All  H0me  Equitytypes have been  approoved  for you  paul
vanwaardenburg

Thank you,

Refugio




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



Processed: reassign 388811 to mesa, severity of 388811 is important

2006-09-22 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.9.21
 reassign 388811 mesa
Bug#388811: xlibmesa-dri: upgrade to xorg 7.1 causes savage opengl stop working
Bug reassigned from package `xlibmesa-dri' to `mesa'.

 severity 388811 important
Bug#388811: xlibmesa-dri: upgrade to xorg 7.1 causes savage opengl stop working
Severity set to `important' from `critical'


End of message, stopping processing here.

Please contact me if you need assistance.

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


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



Bug#388699: (no subject)

2006-09-22 Thread Soenke Huels
I can confirm this problem on Samsung X05 XTC 1400c, also with i855GM
graphics chip. Wake up works fine with xorg 7.0, doesn't work at all
after update.


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



Ivtv X driver

2006-09-22 Thread Ian Campbell
Hi David, 

I gather that you took off on a house move the day I sent this first
time so I guess you missed it. I hope the move went relatively smoothly!

I'm flying back from the travels I mention below tomorrow so I hope to
have some spare time next week to work on this.

Cheers,

Ian.


Original message:
Hi David,

You suggested that you wouldn't mind sponsoring my IVTV X driver
packages.

Branden has setup my access to the XSF SVN repository but I thought I'd
just confirm everything laid out right before I started checking stuff
in... I've appended some details of where the files will end up, if
that's ok I'll check them in.

I've also stuck the packages on my website if you'd like to look them
over. You can find them at http://www.hellion.org.uk/ivtv/debian/. If
anyone else fancies having a test please feel free.

I'm away all weekend and travelling next week so there's no rush...

Cheers
Ian.

$ pwd
/home/ijc/development/debian/pkg-xorg/driver/xserver-xorg-video-ivtvdev
$ svn info
Path: .
URL: 
svn+ssh://necrotic.deadbeast.net/var/lib/svn/xorg-x11/trunk/driver/xserver-xorg-video-ivtvdev
Repository Root: svn+ssh://necrotic.deadbeast.net/var/lib/svn/xorg-x11
Revision: 0
Node Kind: directory
Schedule: add

$ svn status
A  .
A  mkinstalldirs
A  configure
A  Makefile.in
X  debian/xsfbs
A  debian
A  debian/control
A  debian/compat
A  debian/changelog
A  debian/copyright
A  debian/rules
A  debian/xserver-xorg-video-ivtv.install
A  src
A  src/Makefile.in
A  src/configure.ac
A  src/TODO
A  src/ivtv_xv.c
A  src/ivtvdev.c
A  src/ivtvhw.c
A  src/Makefile.am
A  src/ivtvdev.h
A  src/ivtvhw.h
A  ChangeLog
A  depcomp
A  config.guess
A  config.sub
A  ltmain.sh
A  config.h.in
A  configure.ac
A  COPYING
A  missing
A  Makefile.am
A  man
A  man/ivtvdev.man
A  man/Makefile.in
A  man/Makefile.am
A  aclocal.m4
A  install-sh

Performing status on external item at 'debian/xsfbs'

-- 
Ian Campbell

 my program works if i take out the bugs.


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



Bug#326666: marked as done (xorg-x11: Line scrambling in some X man pages, due to the groff .ds request)

2006-09-22 Thread Debian Bug Tracking System
Your message dated Fri, 22 Sep 2006 22:18:05 +0200
with message-id [EMAIL PROTECTED]
and subject line Bug#32: xorg-x11: Line scrambling in some X man pages, due 
to the groff .ds request
has caused the attached Bug report to be marked as done.

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

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: xorg-x11
Severity: minor
Tags: patch

Hello,

I mentionned this on the debian-x mailing list [0] [1].

I choose to fix it the hard way: inlining most of the .ds requests.
(I found some other kinds of issue: sometime the construct with the .ds put
2 spaces, put a space before a coma, or put 2 dots at the end of a line)
I did not remove the .ds defined in the headers, which I found mostly
harmless.

So please, find attached 3 files:
 * dot_ds.patch
   It does most of the work.
 * dot_ds_bonus.patch
   It removes some other reference to strings (but there wer no .ds for
   those). Please, review it more carefully.
 * check
   I used this script to check that I did not remove a .ds definition and
   let a reference to that string.

[0] http://lists.debian.org/debian-x/2005/08/msg00751.html
[1] http://lists.debian.org/debian-x/2005/09/msg00023.html

Thanks in advance,
-- 
Nekral


dot_ds.patch.bz2
Description: Binary data


dot_ds_bonus.patch.bz2
Description: Binary data


check.bz2
Description: Binary data
---End Message---
---BeginMessage---
Hello,

I consider the following commit closed this bug:
http://webcvs.freedesktop.org/xorg/xc/doc/man/X11/XClrArea.man?view=log

Kind Regards,
-- 
Nekral
---End Message---


Processing of xkeyboard-config_0.8-12exp4_i386.changes

2006-09-22 Thread Archive Administrator
xkeyboard-config_0.8-12exp4_i386.changes uploaded successfully to localhost
along with the files:
  xkeyboard-config_0.8-12exp4.dsc
  xkeyboard-config_0.8-12exp4.diff.gz
  xkb-data_0.8-12exp4_all.deb

Greetings,

Your Debian queue daemon


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



libxfontcache 1.0.2-1 MIGRATED to testing

2006-09-22 Thread Debian testing watch
FYI: The status of the libxfontcache source package
in Debian's testing distribution has changed.

  Previous version: (not in testing)
  Current version:  1.0.2-1

-- 
This email is automatically generated; [EMAIL PROTECTED] is responsible.
See http://people.debian.org/~henning/trille/ for more information.


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



X Strike Force X.Org X11 SVN commit: r3443 - in trunk/data/xkb-data/debian: . patches

2006-09-22 Thread X Strike Force SVN Repository Admin
Author: barbier
Date: 2006-09-22 19:22:12 -0400 (Fri, 22 Sep 2006)
New Revision: 3443

Added:
   trunk/data/xkb-data/debian/patches/clean.diff
   trunk/data/xkb-data/debian/patches/fix_xkbcomp_crash.diff
   trunk/data/xkb-data/debian/patches/fr.po.diff
   trunk/data/xkb-data/debian/patches/mac-gb-euro.diff
   trunk/data/xkb-data/debian/patches/mac_poweroff.diff
   trunk/data/xkb-data/debian/patches/macbook_layouts.diff
Removed:
   trunk/data/xkb-data/debian/patches/cvs_revert.diff
   trunk/data/xkb-data/debian/patches/generic_symbols_pc.diff
   trunk/data/xkb-data/debian/patches/inet.diff
   trunk/data/xkb-data/debian/patches/mac_fnkeys.diff
   trunk/data/xkb-data/debian/patches/mac_level3.diff
   trunk/data/xkb-data/debian/patches/mac_nodeadkeys.diff
   trunk/data/xkb-data/debian/patches/mac_swap_kp.diff
   trunk/data/xkb-data/debian/patches/macbook_keycodes.diff
   trunk/data/xkb-data/debian/patches/macintosh-gb.diff
   trunk/data/xkb-data/debian/patches/macintosh.diff
Modified:
   trunk/data/xkb-data/debian/README.Debian
   trunk/data/xkb-data/debian/changelog
   trunk/data/xkb-data/debian/geometry.dir
   trunk/data/xkb-data/debian/keycodes.dir
   trunk/data/xkb-data/debian/patches/cvs.diff
   trunk/data/xkb-data/debian/patches/resync_rules_base.diff
   trunk/data/xkb-data/debian/patches/series
   trunk/data/xkb-data/debian/rules
   trunk/data/xkb-data/debian/symbols.dir
   trunk/data/xkb-data/debian/types.dir
Log:
  * Sync to CVS 2006-09-18.
Support for Macintosh keyboards has been fully reworked, deeply
tested by debian-powerpc readers and merged upstream.  Macintosh
layouts can now be as customized as PC ones with options.
Closes: #121297, #111905, #166478, #234113, #319423, #256442

  * These patches are removed because they are obsolete:
+ debian/patches/cvs_revert.diff
+ debian/patches/inet.diff
+ debian/patches/mac_fnkeys.diff
+ debian/patches/macintosh.diff
+ debian/patches/macintosh-gb.diff
+ debian/patches/mac_swap_kp.diff
+ debian/patches/mac_nodeadkeys.diff

  * debian/README.Debian: Replace its obsolete content by informations 
to powerpc users.

  * debian/patches/fix_xkbcomp_crash.diff: New patch to fix an
xkbcomp crash introduced in CVS and not fixed yet.
Closes: #387917 Thanks Helge Kreutzmann and Wolfgang Pfeiffer.

  * debian/patches/mac_poweroff.diff: Add the power key to Apple
laptops.  Thanks J?\195?\182rg Sommer.

  * debian/patches/macbook_layouts.diff: For MacBook models, load
symbols from symbols/macintosh_vndr/* instead of symbols/*.

  * debian/patches/mac-gb-euro.diff: New patch to add the Euro sign
on key 2 for the Macintosh gb layout.

  * debian/patches/fr.po.diff: Fix po/fr.po, the version currently
in CVS is broken.


Including diff would make mail exceed size limit of 10 bytes.
Use svn diff -r 3442:3443 http://necrotic.deadbeast.net/svn/xorg-x11/;
to view diff.


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



X Strike Force X.Org X11 SVN commit: r3444 - tags/data/xkb-data

2006-09-22 Thread X Strike Force SVN Repository Admin
Author: barbier
Date: 2006-09-22 19:38:30 -0400 (Fri, 22 Sep 2006)
New Revision: 3444

Added:
   tags/data/xkb-data/0.8-13/
Log:
Tagging xkeyboard-config 0.8-13

Copied: tags/data/xkb-data/0.8-13 (from rev 3443, trunk/data/xkb-data)


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



X Strike Force X.Org X11 SVN commit: r3445 - trunk/driver/xserver-xorg-input-keyboard/debian

2006-09-22 Thread X Strike Force SVN Repository Admin
Author: dparsons
Date: 2006-09-22 19:44:20 -0400 (Fri, 22 Sep 2006)
New Revision: 3445

Modified:
   trunk/driver/xserver-xorg-input-keyboard/debian/changelog
Log:
* Upload to unstable (X11R7.1 transition).


Modified: trunk/driver/xserver-xorg-input-keyboard/debian/changelog
===
--- trunk/driver/xserver-xorg-input-keyboard/debian/changelog   2006-09-22 
23:38:30 UTC (rev 3444)
+++ trunk/driver/xserver-xorg-input-keyboard/debian/changelog   2006-09-22 
23:44:20 UTC (rev 3445)
@@ -1,8 +1,9 @@
-xserver-xorg-input-keyboard (1:1.1.0-2) UNRELEASED; urgency=low
+xserver-xorg-input-keyboard (1:1.1.0-2) unstable; urgency=low
 
   * Build-Depends: xserver-xorg-dev (= 2:1.1.1-4). Closes: #387146.
+  * Upload to unstable (X11R7.1 transition).
 
- -- Drew Parsons [EMAIL PROTECTED]  Wed, 13 Sep 2006 19:38:48 +1000
+ -- Drew Parsons [EMAIL PROTECTED]  Sat, 23 Sep 2006 09:40:57 +1000
 
 xserver-xorg-input-keyboard (1:1.1.0-1) experimental; urgency=low
 


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



xkeyboard-config_0.8-13_i386.changes ACCEPTED

2006-09-22 Thread Debian Installer

Accepted:
xkb-data_0.8-13_all.deb
  to pool/main/x/xkeyboard-config/xkb-data_0.8-13_all.deb
xkeyboard-config_0.8-13.diff.gz
  to pool/main/x/xkeyboard-config/xkeyboard-config_0.8-13.diff.gz
xkeyboard-config_0.8-13.dsc
  to pool/main/x/xkeyboard-config/xkeyboard-config_0.8-13.dsc


Override entries for your package:
xkb-data_0.8-13_all.deb - extra x11
xkeyboard-config_0.8-13.dsc - source x11

Announcing to debian-devel-changes@lists.debian.org
Closing bugs: 111905 121297 166478 234113 256442 319423 387917 


Thank you for your contribution to Debian.


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



X Strike Force X.Org X11 SVN commit: r3446 - trunk/driver/xserver-xorg-input-mouse/debian

2006-09-22 Thread X Strike Force SVN Repository Admin
Author: dparsons
Date: 2006-09-22 19:57:17 -0400 (Fri, 22 Sep 2006)
New Revision: 3446

Modified:
   trunk/driver/xserver-xorg-input-mouse/debian/changelog
Log:
* Upload to unstable (X11R7.1 transition).


Modified: trunk/driver/xserver-xorg-input-mouse/debian/changelog
===
--- trunk/driver/xserver-xorg-input-mouse/debian/changelog  2006-09-22 
23:44:20 UTC (rev 3445)
+++ trunk/driver/xserver-xorg-input-mouse/debian/changelog  2006-09-22 
23:57:17 UTC (rev 3446)
@@ -1,8 +1,9 @@
-xserver-xorg-input-mouse (1:1.1.1-3) UNRELEASED; urgency=low
+xserver-xorg-input-mouse (1:1.1.1-3) unstable; urgency=low
 
   * xserver-xorg dependencies should be 2:1.1 not 1:1.1. Closes: #385028.
+  * Upload to unstable (X11R7.1 transition).
 
- -- Drew Parsons [EMAIL PROTECTED]  Wed, 13 Sep 2006 19:45:06 +1000
+ -- Drew Parsons [EMAIL PROTECTED]  Sat, 23 Sep 2006 09:55:27 +1000
 
 xserver-xorg-input-mouse (1:1.1.1-2) experimental; urgency=low
 


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



Bug#166478: marked as done (xlibs: [xkb] modification to macintosh/fr symbols for French PowerBook G4 support)

2006-09-22 Thread Debian Bug Tracking System
Your message dated Fri, 22 Sep 2006 16:47:19 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#166478: fixed in xkeyboard-config 0.8-13
has caused the attached Bug report to be marked as done.

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

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: xlibs
Version: 4.2.1-3
Severity: normal
File: /etc/X11/xkb/symbols/macintosh/fr
Tags: patch

Hi Branden,

Here is a keymap for french Tibooks. Do you think you could include it
in your package ?

Here it is :

// $XConsortium: macintosh /main/10 1996/01/29 19:54:54 kaleb $
// $XFree86: xc/programs/xkbcomp/symbols/macintosh/fr,v 1.2 2000/09/26 15:5=
7:25 tsi Exp $
//

xkb_symbols extended {

name[Group1]=3D FR-1;

// Alphanumeric section
key LSGT {[less,greater   ]   };
key TLDE {[at,numbersign  ],
[   periodcentered  ]   };
key AE01 {[   ampersand,1 ],
[   dead_acute,   dead_acute] };
key AE02 {[  eacute,2 ]   };
key AE03 {[quotedbl,3 ]   };
key AE04 {[  quoteright,4 ],
[   quoteleft   ]   };
key AE05 {[   parenleft,5 ],
[   braceleft,bracketleft   ]   };
key AE06 {[ section,6 ],
[   paragraph   ]   };
key AE07 {[  egrave,7 ],
[ guillemotleft, guillemotright ]   };
key AE08 {[  exclam,8 ],
[  exclamdown,Ucircumflex   ]   };
key AE09 {[ccedilla,9 ],
[Ccedilla,Aacute]   };
key AE10 {[  agrave,0 ],
[  oslash,Ooblique  ]   };
key AE11 {[  parenright,degree],
[  braceright,bracketright  ]   };
key AE12 {[   minus,underscore]   };

key AD01 {[   a,  A   ],
[  ae,  AE  ]   };
key AD02 {[   z,  Z   ],
[ Acircumflex,  Aring   ]   };
key AD03 {[   e,  E   ],
[ ecircumflex,  Ecircumflex ]   };
key AD04 {[   r,  R   ],
[  registered,  currency]   };
key AD05 {[   t,  T   ]   };
key AD06 {[   y,  Y   ],
[  Uacute,  ydiaeresis  ]   };
key AD07 {[   u,  U   ]   };
key AD08 {[   i,  I   ],
[ icircumflex,  idiaeresis  ]   };
key AD09 {[   o,  O   ]   };
key AD10 {[   p,  P   ]   };
key AD11 {[ dead_circumflex,  dead_diaeresis  ],
[ ocircumflex,  Ocircumflex ]   };
key AD12 {[  dollar,  asterisk],
[   comma,  EuroSign ]  };
key BKSL {[   dead_grave,  sterling],
[  at,  numbersign  ]   };

key AC01 {[ q,Q   ]   ,
[ acircumflex,  Acircumflex ]   };
key AC02 {[ s,S   ],
[Ograve,S   ]   };
key AC03 {[ d,D   ]   };
key AC04 {[ f,F   ],
[ f,periodcentered  ]   };
key AC05 {[ g,G   ]   };
key AC06 {[ h,H   ],
[Igrave,Icircumflex ]   };
key AC07 {[ j,J   ],
[ Idiaeresis,   Iacute  ]   };
key AC08 {[ k,K   ],
[Egrave,Ediaeresis  ]   };
key AC09 {[ l,L   ],
[  

Bug#234113: marked as done (xlibs: AltGr doesn't work with xfree86/macintosh/fr_new//ctrl:nocaps)

2006-09-22 Thread Debian Bug Tracking System
Your message dated Fri, 22 Sep 2006 16:47:19 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#234113: fixed in xkeyboard-config 0.8-13
has caused the attached Bug report to be marked as done.

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

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: xlibs
Version: 4.3.0-2
Severity: important
Tags: sid

Hi,

I apt-get upgraded yesterday (Feb 20 2004) after 1 week without doing
so, and I noticed right after that I could not make any bracket nor
brace nor tilde nor pipe etc... any more. I don't know what to suspect
(the apple key has keycode 115 according to xev, is this wrong
?). Let me add that I did not change anything else apart the apt-get
upgrade (same kernel, no new applications installed): actually I only
did switch off the machine right after the apt-get upgrade and turned
it on again today with this nice surprise. My system is an ibook rev
2.2 (bought Feb. 2003).

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: powerpc (ppc)
Kernel: Linux 2.4.22-ben2
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED]

Versions of packages xlibs depends on:
ii  libice6   4.3.0-2Inter-Client Exchange library
ii  libsm64.3.0-2X Window System Session Management
ii  libx11-6  4.3.0-2X Window System protocol client li
ii  libxext6  4.3.0-2X Window System miscellaneous exte
ii  libxft1   4.3.0-2FreeType-based font drawing librar
ii  libxi64.3.0-2X Window System Input extension li
ii  libxmu6   4.3.0-2X Window System miscellaneous util
ii  libxmuu1  4.3.0-2lightweight X Window System miscel
ii  libxp64.3.0-2X Window System printing extension
ii  libxpm4   4.3.0-2X pixmap library
ii  libxrandr24.3.0-2X Window System Resize, Rotate and
ii  libxt64.3.0-2X Toolkit Intrinsics
ii  libxtrap6 4.3.0-2X Window System protocol-trapping 
ii  libxtst6  4.3.0-2X Window System event recording an
ii  xlibs-data4.3.0-2X Window System client data

-- no debconf information


---End Message---
---BeginMessage---
Source: xkeyboard-config
Source-Version: 0.8-13

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

xkb-data_0.8-13_all.deb
  to pool/main/x/xkeyboard-config/xkb-data_0.8-13_all.deb
xkeyboard-config_0.8-13.diff.gz
  to pool/main/x/xkeyboard-config/xkeyboard-config_0.8-13.diff.gz
xkeyboard-config_0.8-13.dsc
  to pool/main/x/xkeyboard-config/xkeyboard-config_0.8-13.dsc



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Denis Barbier [EMAIL PROTECTED] (supplier of updated xkeyboard-config package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 23 Sep 2006 00:18:38 +0200
Source: xkeyboard-config
Binary: xkb-data
Architecture: source all
Version: 0.8-13
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Denis Barbier [EMAIL PROTECTED]
Description: 
 xkb-data   - X Keyboard Extension (XKB) configuration data
Closes: 111905 121297 166478 234113 256442 319423 387917
Changes: 
 xkeyboard-config (0.8-13) unstable; urgency=low
 .
   * Sync to CVS 2006-09-18.
 Support for Macintosh keyboards has been fully reworked, deeply
 tested by debian-powerpc readers and merged upstream.  Macintosh
 layouts can now be as customized as PC ones with options.
 Closes: #121297, #111905, #166478, #234113, #319423, #256442
 .
   * These patches are removed because they are obsolete:
 + debian/patches/cvs_revert.diff
 + debian/patches/inet.diff
 + debian/patches/mac_fnkeys.diff
 + debian/patches/macintosh.diff
 + debian/patches/macintosh-gb.diff
 + debian/patches/mac_swap_kp.diff
 + debian/patches/mac_nodeadkeys.diff
 .
   * 

Bug#319423: marked as done (xlibs: hard use of square brackets keys)

2006-09-22 Thread Debian Bug Tracking System
Your message dated Fri, 22 Sep 2006 16:47:19 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#319423: fixed in xkeyboard-config 0.8-13
has caused the attached Bug report to be marked as done.

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

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: xlibs
Version: 6.8.2.dfsg.1-3
Severity: minor

With XFree86, to get [] on my ibook, i used to do alt+shift-( or alt+shift-).
- keep alt+shift then press ( or )

With Xorg, this doesn't work anymore as order matters.
That's alt (keep), then shift (keep), then press ( or ).
This is much harder to use.

Moreover, sometimes the key combo doesn't output anything, then ouput
many [[. This behaviour is weird.

A friend of mine who also has an ibook with SID Xorg told me that he has
exactly the same kind problems : harder use of square brackets and
strange [[.

Thanks.

-- Package-specific info:
Keyboard-related contents of X.Org X server log file
/var/log/Xorg.0.log:
(==) Using config file: /etc/X11/xorg.conf
(==) ServerLayout Default Layout
(**) |--Screen Default Screen (0)
(**) |   |--Monitor Apple iBook G4 LCD
(**) |   |--Device ATI Radeon Mobility 9200 M9+
(**) |--Input Device Generic Keyboard
(**) Option XkbRules xfree86
(**) XKB: rules: xfree86
(**) Option XkbModel macintosh
(**) XKB: model: macintosh
(**) Option XkbLayout fr_new
(**) XKB: layout: fr_new
(==) Keyboard: CustomKeycode disabled
(**) |--Input Device Configured Mouse
(**) |--Input Device Generic Mouse
(WW) The directory /usr/lib/X11/fonts/cyrillic does not exist.
Entry deleted from font path.
(WW) The directory /usr/lib/X11/fonts/CID does not exist.
--
(II) Loading /usr/X11R6/lib/modules/drivers/ati_drv.o
(II) Module ati: vendor=X.Org Foundation
compiled for 6.8.2, module version = 6.5.6
Module class: X.Org Video Driver
ABI class: X.Org Video Driver, version 0.7
(II) LoadModule: keyboard
(II) Loading /usr/X11R6/lib/modules/input/keyboard_drv.o
(II) Module keyboard: vendor=X.Org Foundation
compiled for 6.8.2, module version = 1.0.0
Module class: X.Org XInput Driver
ABI class: X.Org XInput driver, version 0.4
(II) LoadModule: mouse
(II) Loading /usr/X11R6/lib/modules/input/mouse_drv.o
--
(II) RADEON(0): Direct rendering disabled
(==) RandR enabled
(II) Initializing built-in extension MIT-SHM
(II) Initializing built-in extension XInputExtension
(II) Initializing built-in extension XTEST
(II) Initializing built-in extension XKEYBOARD
(II) Initializing built-in extension LBX
(II) Initializing built-in extension XC-APPGROUP
(II) Initializing built-in extension SECURITY
(II) Initializing built-in extension XINERAMA
(II) Initializing built-in extension XFIXES
--
(II) Initializing built-in extension RENDER
(II) Initializing built-in extension RANDR
(II) Initializing built-in extension COMPOSITE
(II) Initializing built-in extension DAMAGE
(II) Initializing built-in extension XEVIE
(**) Generic Keyboard: Core Keyboard
(**) Option Protocol standard
(**) Generic Keyboard: Protocol: standard
(**) Option AutoRepeat 500 30
(**) Option XkbRules xfree86
(**) Generic Keyboard: XkbRules: xfree86
(**) Option XkbModel macintosh
(**) Generic Keyboard: XkbModel: macintosh
(**) Option XkbLayout fr_new
(**) Generic Keyboard: XkbLayout: fr_new
(**) Option CustomKeycodes off
(**) Generic Keyboard: CustomKeycodes disabled
(**) Option Protocol ImPS/2
(**) Configured Mouse: Device: /dev/psaux
(**) Configured Mouse: Protocol: ImPS/2
(**) Option CorePointer
(**) Configured Mouse: Core Pointer
--
(**) Option ZAxisMapping 4 5
(**) Generic Mouse: ZAxisMapping: buttons 4 and 5
(**) Generic Mouse: Buttons: 5
(II) XINPUT: Adding extended input device Generic Mouse (type: MOUSE)
(II) XINPUT: Adding extended input device Configured Mouse (type: MOUSE)
(II) XINPUT: Adding extended input device Generic Keyboard (type: KEYBOARD)
(II) Configured Mouse: ps2EnableDataReporting: succeeded
(II) Generic Mouse: ps2EnableDataReporting: succeeded
Warning: font renderer for .pcf already registered at priority 0
Warning: font renderer for .pcf.Z already registered at priority 0
Warning: font renderer for .pcf.gz already registered at priority 0

X.Org X server log files on system:
-rw-r--r--  1 root root 35166 2005-07-20 08:06 /var/log/Xorg.0.log

Compiled XKB description for X server :0.0:
xkb_keymap {
xkb_keycodes xfree86+aliases(qwerty) {
minimum = 8;
maximum = 255;
 ESC = 9;
AE01 = 10;
AE02 = 11;
AE03 = 12;
AE04 = 13;
AE05 = 14;
AE06 = 15;
AE07 = 16;
AE08 = 17;
AE09 = 18;
AE10 = 19;
AE11 = 20;
AE12 = 

xserver-xorg-input-keyboard_1.1.0-2_i386.changes ACCEPTED

2006-09-22 Thread Debian Installer

Accepted:
xserver-xorg-input-kbd_1.1.0-2_i386.deb
  to 
pool/main/x/xserver-xorg-input-keyboard/xserver-xorg-input-kbd_1.1.0-2_i386.deb
xserver-xorg-input-keyboard_1.1.0-2.diff.gz
  to 
pool/main/x/xserver-xorg-input-keyboard/xserver-xorg-input-keyboard_1.1.0-2.diff.gz
xserver-xorg-input-keyboard_1.1.0-2.dsc
  to 
pool/main/x/xserver-xorg-input-keyboard/xserver-xorg-input-keyboard_1.1.0-2.dsc


Override entries for your package:
xserver-xorg-input-kbd_1.1.0-2_i386.deb - optional x11
xserver-xorg-input-keyboard_1.1.0-2.dsc - source x11

Announcing to debian-devel-changes@lists.debian.org
Closing bugs: 387146 


Thank you for your contribution to Debian.


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



Bug#387917: marked as done (xserver-xorg: xkb-data 0.8-12exp2 (experimental) crashes radeon ibook X server)

2006-09-22 Thread Debian Bug Tracking System
Your message dated Fri, 22 Sep 2006 16:47:19 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#387917: fixed in xkeyboard-config 0.8-13
has caused the attached Bug report to be marked as done.

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

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: xserver-xorg
Version: 1:7.0.22
Severity: normal

Denis Barbier currently works on correcting the keymaps for Macintosh
computers. I am one of the people testing his work. Previous versions
worked as expected (modulo some key misassignements, which is the
entire reason for testing, hence expected), but the current version
0.8-12exp2 kills my X server (see below for the output printed). To
ease testing, the following procedure is used:
a) The deb is extraced to a temporary directory with dpkg -x
b) I run startx (as ordinary user), ssh to root and switch to the
   appropriate temporary directory ($tmp/usr/share/X11/xkb)
c) For some reason, root does not have a permission to write to the
   display (previously worked), hence I issue xhost + from my
   ordinary account and export DISPLAY=:0.0 from the root account
d) To actually set the keyboard, I run as root
   setxkbmap -print | xkbcomp - :0.0

In previous versions the keyboard would be reconfigured and I could
test the new layout. Now, every time I run d) X crashes. Pressing
Ctrl-Z I get a console, pressing Ctrl-Left the machine does not
respond to any keyboard input anymore (I have to ssh in from remote
and reboot). When X crashes, it prints out the following lines:

Backtrace:
0: /usr/bin/X11/X(xf86SigHandler+0xa8) [0x10080c78]
1: [0x100374]
2: /lib/tls/libc.so.6 [0xfcc5b50]
3: /lib/tls/libc.so.6(malloc+0xc4) [0xfcc7944]
4: /usr/bin/X11/X(Xalloc+0x34) [0x10192bd8]
5: /usr/bin/X11/X(Xcalloc+0x1c) [0x10192f4c]
6: /usr/bin/X11/X(SrvXkbResizeKeyActions+0x180) [0x1017a9e0]
7: /usr/bin/X11/X(SrvXkbApplyCompatMapToKey+0x4e4) [0x10175a88]
8: /usr/bin/X11/X(XkbUpdateDescActions+0x64) [0x1015a164]
9: /usr/bin/X11/X(XkbUpdateActions+0xa4) [0x1015a444]
10: /usr/bin/X11/X(ProcXkbSetMap+0x19ac) [0x10157340]
11: /usr/bin/X11/X [0x1015891c]
12: /usr/bin/X11/X(Dispatch+0x21c) [0x100438e0]
13: /usr/bin/X11/X(main+0x47c) [0x10025770]
14: /lib/tls/libc.so.6 [0xfc6a9d4]
15: /lib/tls/libc.so.6(__libc_start_main+0xb0) [0xfc6ab10]

Fatal server error:
Caught signal 11.  Server aborting

(**) RADEON(0): RADEONLeaveVT
(**) RADEON(0): RADEONRestore
(**) RADEON(0): RADEONRestoreMode()
(**) RADEON(0): RADEONRestoreMode(0x10217648)
(**) RADEON(0): RADEONRestoreMemMapRegisters() :
(**) RADEON(0):   MC_FB_LOCATION   : 0x7fff
(**) RADEON(0):   MC_AGP_LOCATION  : 0xe000
(**) RADEON(0):   Map Changed ! Applying ...
(**) RADEON(0):   Map applied, resetting engine ...
(**) RADEON(0): Updating display base addresses...
(**) RADEON(0): Memory map updated.
(**) RADEON(0): Programming CRTC2, offset: 0x01008000
(**) RADEON(0): Wrote: 0x000c 0x000700a1 0x (0xbf00)
(**) RADEON(0): Wrote: rd=12, fd=161, pd=7
(**) RADEON(0): Programming CRTC1, offset: 0x
(**) RADEON(0): Ok, leaving now...

Please tell me what kind of information you'll need to debug this
further. (I'll be offline for most of the remaining month, though).

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing'), (500, 'stable')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17.7-grsec-cz01
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages xserver-xorg depends on:
ii  debconf   1.5.3  Debian configuration management sy
ii  x11-common1:7.0.22   X Window System (X.Org) infrastruc
ii  xbase-clients 1:7.1.ds-3 miscellaneous X clients
ii  xkb-data  0.8-7  X Keyboard Extension (XKB) configu
ii  xserver-xorg-core 1:1.0.2-9  X.Org X server -- core server
ii  xserver-xorg-input-ev 1:1.0.0.5-2X.Org X server -- evdev input driv
ii  xserver-xorg-input-kb 1:1.0.1.3-2X.Org X server -- keyboard input d
ii  xserver-xorg-input-mo 1:1.0.4-3  X.Org X server -- mouse input driv
ii  xserver-xorg-video-al 1:7.0.22   the X.Org X server -- output drive
ii  xserver-xorg-video-at 1:6.5.8.0-1X.Org X server -- ATI display driv
ii  xserver-xorg-video-ch 1:1.0.1.3-3X.Org X server -- Chips display dr
ii  xserver-xorg-video-fb 1:0.1.0.5-2X.Org X server -- fbdev display dr
ii  xserver-xorg-video-gl 1:1.0.1.3-3X.Org X server -- Glint display dr
ii  xserver-xorg-video-im 1:1.0.0.5-2

Bug#256442: marked as done (xlibs: want new gb_new symbols file for 2004 iBook G4 British keymap)

2006-09-22 Thread Debian Bug Tracking System
Your message dated Fri, 22 Sep 2006 16:47:19 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#256442: fixed in xkeyboard-config 0.8-13
has caused the attached Bug report to be marked as done.

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

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: xlibs
Version: 4.3.0.dfsg.1-5

it would appear Apple are using new designs for the british keyboards on iBooks
and Powerbooks.

i save the attached file as /usr/X11R6/lib/X11/xkb/symbols/macintosh/gb_new

an annoying thing about this new Apple keyboard is that the # key is not marked
physically on any of the keys. it is bound in MacOS to AltGr+3 (even though
AltGr is marked as alt physically on the keyboard)

i have had this setup working in all X applications for extended Latin-9
characters (such as §±¤)

in MacOS, every key seems to have an AltGr binding... i did not have time to
create the full table for all the keys. this is just created from the keys which
are physically marked on the keyboard, plus ¢ and #.

i have sent an accompanying file to the console-data package for console
support.


gb_new
Description: Binary data


pgpvjmxiqZxHJ.pgp
Description: PGP signature
---End Message---
---BeginMessage---
Source: xkeyboard-config
Source-Version: 0.8-13

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

xkb-data_0.8-13_all.deb
  to pool/main/x/xkeyboard-config/xkb-data_0.8-13_all.deb
xkeyboard-config_0.8-13.diff.gz
  to pool/main/x/xkeyboard-config/xkeyboard-config_0.8-13.diff.gz
xkeyboard-config_0.8-13.dsc
  to pool/main/x/xkeyboard-config/xkeyboard-config_0.8-13.dsc



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Denis Barbier [EMAIL PROTECTED] (supplier of updated xkeyboard-config package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 23 Sep 2006 00:18:38 +0200
Source: xkeyboard-config
Binary: xkb-data
Architecture: source all
Version: 0.8-13
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Denis Barbier [EMAIL PROTECTED]
Description: 
 xkb-data   - X Keyboard Extension (XKB) configuration data
Closes: 111905 121297 166478 234113 256442 319423 387917
Changes: 
 xkeyboard-config (0.8-13) unstable; urgency=low
 .
   * Sync to CVS 2006-09-18.
 Support for Macintosh keyboards has been fully reworked, deeply
 tested by debian-powerpc readers and merged upstream.  Macintosh
 layouts can now be as customized as PC ones with options.
 Closes: #121297, #111905, #166478, #234113, #319423, #256442
 .
   * These patches are removed because they are obsolete:
 + debian/patches/cvs_revert.diff
 + debian/patches/inet.diff
 + debian/patches/mac_fnkeys.diff
 + debian/patches/macintosh.diff
 + debian/patches/macintosh-gb.diff
 + debian/patches/mac_swap_kp.diff
 + debian/patches/mac_nodeadkeys.diff
 .
   * debian/README.Debian: Replace its obsolete content by informations
 to powerpc users.
 .
   * debian/patches/fix_xkbcomp_crash.diff: New patch to fix an
 xkbcomp crash introduced in CVS and not fixed yet.
 Closes: #387917 Thanks Helge Kreutzmann and Wolfgang Pfeiffer.
 .
   * debian/patches/mac_poweroff.diff: Add the power key to Apple
 laptops.  Thanks Jörg Sommer.
 .
   * debian/patches/macbook_layouts.diff: For MacBook models, load
 symbols from symbols/macintosh_vndr/* instead of symbols/*.
 .
   * debian/patches/mac-gb-euro.diff: New patch to add the Euro sign
 on key 2 for the Macintosh gb layout.
 .
   * debian/patches/fr.po.diff: Fix po/fr.po, the version currently
 in CVS is broken.
Files: 
 567c0ccbfb85a1e32e7d4cdbbd462af5 696 x11 extra xkeyboard-config_0.8-13.dsc
 bef496c1f2193e653fcc10bd1986e9be 177740 x11 extra 
xkeyboard-config_0.8-13.diff.gz
 5b58ca81ff629f2e0fefe8b1894b8e22 346994 x11 extra xkb-data_0.8-13_all.deb

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

iD8DBQFFFHMG8Ri1lR4WGvsRAl97AJ0TK5plCp3g3H6q1vouM7xmZl6DKACgu1c2
jElS+H7vXIUd2AcvpOb6xNo=
=QTbg
-END PGP SIGNATURE-

---End Message---


Bug#121297: marked as done (xlibs: [xkb] xfree86/macintosh/de users out in the cold with iBook keyboards; no AltGr key available)

2006-09-22 Thread Debian Bug Tracking System
Your message dated Fri, 22 Sep 2006 16:47:19 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#121297: fixed in xkeyboard-config 0.8-13
has caused the attached Bug report to be marked as done.

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

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: xlibs
Version: 4.1.0-9
Severity: normal


I've changed to the Linux_keycodes. The '@','~' and the '|' can't type in X.
I change the XkdMode from macintosh_old to macintosh and i#m realy using 
linux_keycodes.
This is shortly discussed on debian-powerpc. One said that there is a differenz 
in Keyboard Models.
I own a small one with following bottom keys

ctrl alt apple  space  apple  left up/down right block

I hope someone could fix this.
Meanwhile i switched back to ADB_Keycodes

-- System Information
Debian Release: testing/unstable
Architecture: powerpc
Kernel: Linux muffin 2.4.15-pre6 #1 Mon Nov 19 22:53:13 CET 2001 ppc
Locale: LANG=ISO-8859-1, LC_CTYPE=de_DE

Versions of packages xlibs depends on:
ii  libc6 2.2.4-6GNU C Library: Shared libraries an
ii  libfreetype6  2.0.5-2FreeType 2 font engine, shared lib
ii  xfree86-common4.1.0-9X Window System (XFree86) infrastr
ii  xlibs 4.1.0-9X Window System client libraries


---End Message---
---BeginMessage---
Source: xkeyboard-config
Source-Version: 0.8-13

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

xkb-data_0.8-13_all.deb
  to pool/main/x/xkeyboard-config/xkb-data_0.8-13_all.deb
xkeyboard-config_0.8-13.diff.gz
  to pool/main/x/xkeyboard-config/xkeyboard-config_0.8-13.diff.gz
xkeyboard-config_0.8-13.dsc
  to pool/main/x/xkeyboard-config/xkeyboard-config_0.8-13.dsc



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Denis Barbier [EMAIL PROTECTED] (supplier of updated xkeyboard-config package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 23 Sep 2006 00:18:38 +0200
Source: xkeyboard-config
Binary: xkb-data
Architecture: source all
Version: 0.8-13
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Denis Barbier [EMAIL PROTECTED]
Description: 
 xkb-data   - X Keyboard Extension (XKB) configuration data
Closes: 111905 121297 166478 234113 256442 319423 387917
Changes: 
 xkeyboard-config (0.8-13) unstable; urgency=low
 .
   * Sync to CVS 2006-09-18.
 Support for Macintosh keyboards has been fully reworked, deeply
 tested by debian-powerpc readers and merged upstream.  Macintosh
 layouts can now be as customized as PC ones with options.
 Closes: #121297, #111905, #166478, #234113, #319423, #256442
 .
   * These patches are removed because they are obsolete:
 + debian/patches/cvs_revert.diff
 + debian/patches/inet.diff
 + debian/patches/mac_fnkeys.diff
 + debian/patches/macintosh.diff
 + debian/patches/macintosh-gb.diff
 + debian/patches/mac_swap_kp.diff
 + debian/patches/mac_nodeadkeys.diff
 .
   * debian/README.Debian: Replace its obsolete content by informations
 to powerpc users.
 .
   * debian/patches/fix_xkbcomp_crash.diff: New patch to fix an
 xkbcomp crash introduced in CVS and not fixed yet.
 Closes: #387917 Thanks Helge Kreutzmann and Wolfgang Pfeiffer.
 .
   * debian/patches/mac_poweroff.diff: Add the power key to Apple
 laptops.  Thanks Jörg Sommer.
 .
   * debian/patches/macbook_layouts.diff: For MacBook models, load
 symbols from symbols/macintosh_vndr/* instead of symbols/*.
 .
   * debian/patches/mac-gb-euro.diff: New patch to add the Euro sign
 on key 2 for the Macintosh gb layout.
 .
   * debian/patches/fr.po.diff: Fix po/fr.po, the version currently
 in CVS is broken.
Files: 
 567c0ccbfb85a1e32e7d4cdbbd462af5 696 x11 extra xkeyboard-config_0.8-13.dsc
 bef496c1f2193e653fcc10bd1986e9be 177740 x11 extra 
xkeyboard-config_0.8-13.diff.gz
 5b58ca81ff629f2e0fefe8b1894b8e22 346994 x11 extra xkb-data_0.8-13_all.deb

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


Bug#111905: marked as done (xlibs: [xkb] apple/command key no longer works as alt key)

2006-09-22 Thread Debian Bug Tracking System
Your message dated Fri, 22 Sep 2006 16:47:19 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#111905: fixed in xkeyboard-config 0.8-13
has caused the attached Bug report to be marked as done.

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

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: xlibs
Version: 4.1.0-5
Severity: normal

This is a bad bug report, seeing as how I don't really understand the
problem:

I upgraded to the latest X in testing, and the apple key no longer
works as an alt key.  I have it mapped like so:

keycode 125 = Alt 

in my boottime.kmap, which should cause it to 'work', both in the
console and in X, like it was before.

Untill recently, all was working fine.  I've tried reconfiguring and
so on, but to no avail.

Thanks,
Dave

-- System Information
Debian Release: testing/unstable
Architecture: powerpc
Kernel: Linux ashland 2.4.4 #5 Tue May 29 17:05:40 CEST 2001 ppc
Locale: LANG=C, LC_CTYPE=C

Versions of packages xlibs depends on:
ii  libc6   2.2.4-1  GNU C Library: Shared libraries an
ii  libfreetype62.0.2.20010514-1 FreeType 2 font engine, shared lib
ii  xfree86-common  4.1.0-5  X Window System (XFree86) infrastr
ii  xlibs   4.1.0-5  X Window System client libraries


---End Message---
---BeginMessage---
Source: xkeyboard-config
Source-Version: 0.8-13

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

xkb-data_0.8-13_all.deb
  to pool/main/x/xkeyboard-config/xkb-data_0.8-13_all.deb
xkeyboard-config_0.8-13.diff.gz
  to pool/main/x/xkeyboard-config/xkeyboard-config_0.8-13.diff.gz
xkeyboard-config_0.8-13.dsc
  to pool/main/x/xkeyboard-config/xkeyboard-config_0.8-13.dsc



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Denis Barbier [EMAIL PROTECTED] (supplier of updated xkeyboard-config package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 23 Sep 2006 00:18:38 +0200
Source: xkeyboard-config
Binary: xkb-data
Architecture: source all
Version: 0.8-13
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Denis Barbier [EMAIL PROTECTED]
Description: 
 xkb-data   - X Keyboard Extension (XKB) configuration data
Closes: 111905 121297 166478 234113 256442 319423 387917
Changes: 
 xkeyboard-config (0.8-13) unstable; urgency=low
 .
   * Sync to CVS 2006-09-18.
 Support for Macintosh keyboards has been fully reworked, deeply
 tested by debian-powerpc readers and merged upstream.  Macintosh
 layouts can now be as customized as PC ones with options.
 Closes: #121297, #111905, #166478, #234113, #319423, #256442
 .
   * These patches are removed because they are obsolete:
 + debian/patches/cvs_revert.diff
 + debian/patches/inet.diff
 + debian/patches/mac_fnkeys.diff
 + debian/patches/macintosh.diff
 + debian/patches/macintosh-gb.diff
 + debian/patches/mac_swap_kp.diff
 + debian/patches/mac_nodeadkeys.diff
 .
   * debian/README.Debian: Replace its obsolete content by informations
 to powerpc users.
 .
   * debian/patches/fix_xkbcomp_crash.diff: New patch to fix an
 xkbcomp crash introduced in CVS and not fixed yet.
 Closes: #387917 Thanks Helge Kreutzmann and Wolfgang Pfeiffer.
 .
   * debian/patches/mac_poweroff.diff: Add the power key to Apple
 laptops.  Thanks Jörg Sommer.
 .
   * debian/patches/macbook_layouts.diff: For MacBook models, load
 symbols from symbols/macintosh_vndr/* instead of symbols/*.
 .
   * debian/patches/mac-gb-euro.diff: New patch to add the Euro sign
 on key 2 for the Macintosh gb layout.
 .
   * debian/patches/fr.po.diff: Fix po/fr.po, the version currently
 in CVS is broken.
Files: 
 567c0ccbfb85a1e32e7d4cdbbd462af5 696 x11 extra xkeyboard-config_0.8-13.dsc
 bef496c1f2193e653fcc10bd1986e9be 177740 x11 extra 
xkeyboard-config_0.8-13.diff.gz
 5b58ca81ff629f2e0fefe8b1894b8e22 346994 x11 extra xkb-data_0.8-13_all.deb

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


X Strike Force X.Org X11 SVN commit: r3447 - tags/driver/xserver-xorg-input-keyboard

2006-09-22 Thread X Strike Force SVN Repository Admin
Author: dparsons
Date: 2006-09-22 20:20:30 -0400 (Fri, 22 Sep 2006)
New Revision: 3447

Added:
   tags/driver/xserver-xorg-input-keyboard/1:1.1.0-2/
Log:
Tagging xserver-xorg-input-keyboard (1:1.1.0-2) in unstable.


Copied: tags/driver/xserver-xorg-input-keyboard/1:1.1.0-2 (from rev 3446, 
trunk/driver/xserver-xorg-input-keyboard)


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



xserver-xorg-input-mouse_1.1.1-3_i386.changes ACCEPTED

2006-09-22 Thread Debian Installer

Accepted:
xserver-xorg-input-mouse_1.1.1-3.diff.gz
  to 
pool/main/x/xserver-xorg-input-mouse/xserver-xorg-input-mouse_1.1.1-3.diff.gz
xserver-xorg-input-mouse_1.1.1-3.dsc
  to pool/main/x/xserver-xorg-input-mouse/xserver-xorg-input-mouse_1.1.1-3.dsc
xserver-xorg-input-mouse_1.1.1-3_i386.deb
  to 
pool/main/x/xserver-xorg-input-mouse/xserver-xorg-input-mouse_1.1.1-3_i386.deb


Override entries for your package:
xserver-xorg-input-mouse_1.1.1-3.dsc - source x11
xserver-xorg-input-mouse_1.1.1-3_i386.deb - optional x11

Announcing to debian-devel-changes@lists.debian.org
Closing bugs: 382979 385028 


Thank you for your contribution to Debian.


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



X Strike Force X.Org X11 SVN commit: r3448 - tags/driver/xserver-xorg-input-mouse

2006-09-22 Thread X Strike Force SVN Repository Admin
Author: dparsons
Date: 2006-09-22 20:31:43 -0400 (Fri, 22 Sep 2006)
New Revision: 3448

Added:
   tags/driver/xserver-xorg-input-mouse/1:1.1.1-3/
Log:
Tagging xserver-xorg-input-mouse (1:1.1.1-3) in unstable.


Copied: tags/driver/xserver-xorg-input-mouse/1:1.1.1-3 (from rev 3447, 
trunk/driver/xserver-xorg-input-mouse)


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



Bug#382979: marked as done (wrong dependancy for xserver-xorg-input-mouse=1:1.1.1-1)

2006-09-22 Thread Debian Bug Tracking System
Your message dated Fri, 22 Sep 2006 17:17:46 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#382979: fixed in xserver-xorg-input-mouse 1:1.1.1-3
has caused the attached Bug report to be marked as done.

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

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: xserver-xorg-input-mouse
Version: 1:1.1.1-1

This version requires the module ABI minor version 6.
It can howerver be installed with a server that only provides ABI minor
version 5.

ii  xserver-xorg-core 1.0.2-9X.Org X server -- core server
ii  xserver-xorg-input-mouse  1:1.1.1-1  X.Org X server -- mouse input driver

The dependancy should probably changed to xserver-xorg-core (= 1:1.1.1-1)
or whatever version fist introduced ABI minor version 6.

michael



---End Message---
---BeginMessage---
Source: xserver-xorg-input-mouse
Source-Version: 1:1.1.1-3

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

xserver-xorg-input-mouse_1.1.1-3.diff.gz
  to 
pool/main/x/xserver-xorg-input-mouse/xserver-xorg-input-mouse_1.1.1-3.diff.gz
xserver-xorg-input-mouse_1.1.1-3.dsc
  to pool/main/x/xserver-xorg-input-mouse/xserver-xorg-input-mouse_1.1.1-3.dsc
xserver-xorg-input-mouse_1.1.1-3_i386.deb
  to 
pool/main/x/xserver-xorg-input-mouse/xserver-xorg-input-mouse_1.1.1-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 [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Drew Parsons [EMAIL PROTECTED] (supplier of updated xserver-xorg-input-mouse 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 23 Sep 2006 09:55:27 +1000
Source: xserver-xorg-input-mouse
Binary: xserver-xorg-input-mouse
Architecture: source i386
Version: 1:1.1.1-3
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Drew Parsons [EMAIL PROTECTED]
Description: 
 xserver-xorg-input-mouse - X.Org X server -- mouse input driver
Closes: 382979 385028
Changes: 
 xserver-xorg-input-mouse (1:1.1.1-3) unstable; urgency=low
 .
   * xserver-xorg dependencies should be 2:1.1 not 1:1.1. Closes: #385028.
   * Upload to unstable (X11R7.1 transition).
 .
 xserver-xorg-input-mouse (1:1.1.1-2) experimental; urgency=low
 .
   * Updated dependencies to xserver-xorg (= 1:1.1.1-1). Closes: #382979.
 .
 xserver-xorg-input-mouse (1:1.1.1-1) experimental; urgency=low
 .
   * New upstream release (X11R7.1, xf86-input-mouse-1.1.1).
 - applies patch 01_stolen_fron_HEAD_spurious_mouse_events.diff.
   * Use debhelper v5.
   * Use dh_installman to install man page.
   * Exclude .la (and manpages) from dh_install.
 .
 xserver-xorg-input-mouse (1:1.0.4-4) UNRELEASED; urgency=low
 .
   * Test for obj-$(DEB_BUILD_GNU_TYPE) before creating it during build;
 idempotency fix.
Files: 
 23b9db05e02a6e992b79826b70a63c97 920 x11 optional 
xserver-xorg-input-mouse_1.1.1-3.dsc
 45d9dc1d448a64fd11db30363eb87ac4 18050 x11 optional 
xserver-xorg-input-mouse_1.1.1-3.diff.gz
 f2477147000923e1a0eb74a441c53fc8 37070 x11 optional 
xserver-xorg-input-mouse_1.1.1-3_i386.deb

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

iD8DBQFFFHkAts5wQWQSTkoRAm7BAJ4qdKRSR/JA9Kl4j0xPeOqcCM9C1wCfS014
LMTI5In38ZaV95PwT9tt47o=
=zP6i
-END PGP SIGNATURE-

---End Message---


Bug#387146: marked as done (xserver-xorg-input-keyboard: Should build-depend on xserver-xorg-dev (= 2:1.0.99.901))

2006-09-22 Thread Debian Bug Tracking System
Your message dated Fri, 22 Sep 2006 17:02:12 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#387146: fixed in xserver-xorg-input-keyboard 1:1.1.0-2
has caused the attached Bug report to be marked as done.

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

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: xserver-xorg-input-keyboard
Version: 1:1.1.0-1
Severity: normal

The configure script in xserver-xorg-input-keyboard barfs if xserver-xorg-dev
is less than version 1.0.99.901 anyway, so might as well enforce it with
versioned build-depends...

I imagine this sort of build-dependancy exists throughout the modules of the
7.1 modular release... I presume they haven't shown up on the autobuilders
before since the 7.0 release was compatible with the 6.9 release, and before
that we had a renaming instead...

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (990, 'unstable'), (950, 'unstable'), (900, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17-2-powerpc
Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8)

-- 
Paul TBBle Hampson, [EMAIL PROTECTED]

Shorter .sig for a more eco-friendly paperless office.


pgpMPPirNaSTm.pgp
Description: PGP signature
---End Message---
---BeginMessage---
Source: xserver-xorg-input-keyboard
Source-Version: 1:1.1.0-2

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

xserver-xorg-input-kbd_1.1.0-2_i386.deb
  to 
pool/main/x/xserver-xorg-input-keyboard/xserver-xorg-input-kbd_1.1.0-2_i386.deb
xserver-xorg-input-keyboard_1.1.0-2.diff.gz
  to 
pool/main/x/xserver-xorg-input-keyboard/xserver-xorg-input-keyboard_1.1.0-2.diff.gz
xserver-xorg-input-keyboard_1.1.0-2.dsc
  to 
pool/main/x/xserver-xorg-input-keyboard/xserver-xorg-input-keyboard_1.1.0-2.dsc



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Drew Parsons [EMAIL PROTECTED] (supplier of updated 
xserver-xorg-input-keyboard package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 23 Sep 2006 09:40:57 +1000
Source: xserver-xorg-input-keyboard
Binary: xserver-xorg-input-kbd
Architecture: source i386
Version: 1:1.1.0-2
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Drew Parsons [EMAIL PROTECTED]
Description: 
 xserver-xorg-input-kbd - X.Org X server -- keyboard input driver
Closes: 387146
Changes: 
 xserver-xorg-input-keyboard (1:1.1.0-2) unstable; urgency=low
 .
   * Build-Depends: xserver-xorg-dev (= 2:1.1.1-4). Closes: #387146.
   * Upload to unstable (X11R7.1 transition).
Files: 
 a78d3e570a043057ab8e38eb9a034af6 937 x11 optional 
xserver-xorg-input-keyboard_1.1.0-2.dsc
 7050a17ee77c90269b8e7f3f2514901e 17595 x11 optional 
xserver-xorg-input-keyboard_1.1.0-2.diff.gz
 15b8d1f82cefd1489f1caf41f2b61de9 12828 x11 optional 
xserver-xorg-input-kbd_1.1.0-2_i386.deb

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

iD8DBQFFFHZdts5wQWQSTkoRAqLnAJ43vLCrEzU3CguBPGj/G/iWaO/5RgCgloId
B82CRj3iCkQOpyJyoxVJqJ4=
=AtKX
-END PGP SIGNATURE-

---End Message---


Bug#385028: marked as done (xserver-xorg needs to depend on specific ABI)

2006-09-22 Thread Debian Bug Tracking System
Your message dated Fri, 22 Sep 2006 17:17:46 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#385028: fixed in xserver-xorg-input-mouse 1:1.1.1-3
has caused the attached Bug report to be marked as done.

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

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: xserver-xorg-input-mouse
Version: 1:1.1.1-2
Severity: grave
Justification: renders package unusable


upgrading xserver-xorg-input-mouse to 1:1.1.1-2 (experimental) breaks X display:
the mouse is not recognized (message driver mouse not found
xorg.conf section:
Section InputDevice
Identifier Mouse0
Driver mouse
Option Protocol auto
Option Device /dev/input/mice
Option ZAxisMapping 4 5 6 7
EndSection
There is most probably a trick while the mouse is still recognized in text mode
but this is not (enough) documented if there is something to change in xorg.conf


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'), (1, 
'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16-2-k7
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages xserver-xorg-input-mouse depends on:
ii  libc6   2.3.999.2-11 GNU C Library: Shared libraries
ii  xserver-xorg-core   2:1.0.2-10   X.Org X server -- core server

xserver-xorg-input-mouse recommends no packages.

-- no debconf information

---End Message---
---BeginMessage---
Source: xserver-xorg-input-mouse
Source-Version: 1:1.1.1-3

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

xserver-xorg-input-mouse_1.1.1-3.diff.gz
  to 
pool/main/x/xserver-xorg-input-mouse/xserver-xorg-input-mouse_1.1.1-3.diff.gz
xserver-xorg-input-mouse_1.1.1-3.dsc
  to pool/main/x/xserver-xorg-input-mouse/xserver-xorg-input-mouse_1.1.1-3.dsc
xserver-xorg-input-mouse_1.1.1-3_i386.deb
  to 
pool/main/x/xserver-xorg-input-mouse/xserver-xorg-input-mouse_1.1.1-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 [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Drew Parsons [EMAIL PROTECTED] (supplier of updated xserver-xorg-input-mouse 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 23 Sep 2006 09:55:27 +1000
Source: xserver-xorg-input-mouse
Binary: xserver-xorg-input-mouse
Architecture: source i386
Version: 1:1.1.1-3
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Drew Parsons [EMAIL PROTECTED]
Description: 
 xserver-xorg-input-mouse - X.Org X server -- mouse input driver
Closes: 382979 385028
Changes: 
 xserver-xorg-input-mouse (1:1.1.1-3) unstable; urgency=low
 .
   * xserver-xorg dependencies should be 2:1.1 not 1:1.1. Closes: #385028.
   * Upload to unstable (X11R7.1 transition).
 .
 xserver-xorg-input-mouse (1:1.1.1-2) experimental; urgency=low
 .
   * Updated dependencies to xserver-xorg (= 1:1.1.1-1). Closes: #382979.
 .
 xserver-xorg-input-mouse (1:1.1.1-1) experimental; urgency=low
 .
   * New upstream release (X11R7.1, xf86-input-mouse-1.1.1).
 - applies patch 01_stolen_fron_HEAD_spurious_mouse_events.diff.
   * Use debhelper v5.
   * Use dh_installman to install man page.
   * Exclude .la (and manpages) from dh_install.
 .
 xserver-xorg-input-mouse (1:1.0.4-4) UNRELEASED; urgency=low
 .
   * Test for obj-$(DEB_BUILD_GNU_TYPE) before creating it during build;
 idempotency fix.
Files: 
 23b9db05e02a6e992b79826b70a63c97 920 x11 optional 
xserver-xorg-input-mouse_1.1.1-3.dsc
 45d9dc1d448a64fd11db30363eb87ac4 18050 x11 optional 
xserver-xorg-input-mouse_1.1.1-3.diff.gz
 f2477147000923e1a0eb74a441c53fc8 37070 x11 optional 
xserver-xorg-input-mouse_1.1.1-3_i386.deb

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

iD8DBQFFFHkAts5wQWQSTkoRAm7BAJ4qdKRSR/JA9Kl4j0xPeOqcCM9C1wCfS014
LMTI5In38ZaV95PwT9tt47o=
=zP6i
-END PGP SIGNATURE-

---End Message---


Intel 945G DRI working

2006-09-22 Thread Miguel Filho

I'm off this list and just writing that with the version 1.6.5-3 in
unstable of xorg-video-i810 my intel 945G got DRI working again and
very nice!

Thank you guys for great work.

Miguel


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