Bug#648022: Uses deprecated libgnome-window-settings which is scheduled to be removed

2012-01-27 Thread Cyril Brulebois
Michael Biebl  (27/01/2012):
> Sean, any objections to apply this patch? If you are no longer
> interested in compiz / lack time I could offer to upload an NMU.

I think we're having a recurring lack of manpower for the compiz
packages, explaining why we're still stuck with 0.8 (and its bugs) in
unstable, while 0.9.x might be a better fit.

Mraw,
KiBi.


signature.asc
Description: Digital signature


xorg-server: Changes to 'ubuntu'

2012-01-27 Thread Christopher Halse Rogers
 debian/changelog   |   10 
 debian/control |2 
 debian/patches/500_pointer_barrier_thresholds.diff |  559 +
 debian/patches/series  |3 
 4 files changed, 573 insertions(+), 1 deletion(-)

New commits:
commit 775b75fe9b5f46ce437b89a27d106cf823508613
Author: Christopher James Halse Rogers 
Date:   Fri Jan 27 21:46:54 2012 +1100

Bump build-dep to ensure XFIXES 6.0 protocol headers are available

diff --git a/debian/changelog b/debian/changelog
index 3f74559..04c12a5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,6 +3,8 @@ xorg-server (2:1.11.3-0ubuntu9) precise; urgency=low
   * debian/patches/500_pointer_barrier_thresholds.diff:
 - Implement proposed XFIXES 6.0 protocol.  This protocol is subject to
   change, use at own risk!
+  * debian/control:
+- Bump build-dep on x11proto-fixes to pick up new protocol definition
 
  -- Christopher James Halse Rogers   Fri, 27 Jan 2012 
20:05:42 +1100
 
diff --git a/debian/control b/debian/control
index a80659e..88514fe 100644
--- a/debian/control
+++ b/debian/control
@@ -25,7 +25,7 @@ Build-Depends:
  x11proto-composite-dev (>= 1:0.4),
  x11proto-core-dev (>= 7.0.22),
  x11proto-damage-dev (>= 1.1),
- x11proto-fixes-dev (>= 1:5.0),
+ x11proto-fixes-dev (>= 1:5.0-2ubuntu1),
  x11proto-kb-dev (>= 1.0.3),
  x11proto-xinerama-dev,
  x11proto-randr-dev (>= 1.2.99.3),

commit cca89364a0a78fa66e423bb10eac3f23f4c5c809
Author: Christopher James Halse Rogers 
Date:   Fri Jan 27 21:40:17 2012 +1100

Add initial implementation of XFIXES 6.0 protocol

diff --git a/debian/changelog b/debian/changelog
index 31ee64a..3f74559 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+xorg-server (2:1.11.3-0ubuntu9) precise; urgency=low
+
+  * debian/patches/500_pointer_barrier_thresholds.diff:
+- Implement proposed XFIXES 6.0 protocol.  This protocol is subject to
+  change, use at own risk!
+
+ -- Christopher James Halse Rogers   Fri, 27 Jan 2012 
20:05:42 +1100
+
 xorg-server (2:1.11.3-0ubuntu8) precise; urgency=low
 
   * debian/patches/224_return_BadWindow_not_BadMatch.diff:
diff --git a/debian/patches/500_pointer_barrier_thresholds.diff 
b/debian/patches/500_pointer_barrier_thresholds.diff
new file mode 100644
index 000..b1e0859
--- /dev/null
+++ b/debian/patches/500_pointer_barrier_thresholds.diff
@@ -0,0 +1,559 @@
+Index: xorg-server/include/protocol-versions.h
+===
+--- xorg-server.orig/include/protocol-versions.h   2012-01-27 
20:49:26.085712305 +1100
 xorg-server/include/protocol-versions.h2012-01-27 20:53:59.721697695 
+1100
+@@ -122,7 +122,7 @@
+ #define SERVER_XF86VIDMODE_MINOR_VERSION  2
+ 
+ /* Fixes */
+-#define SERVER_XFIXES_MAJOR_VERSION   5
++#define SERVER_XFIXES_MAJOR_VERSION   6
+ #define SERVER_XFIXES_MINOR_VERSION   0
+ 
+ /* X Input */
+Index: xorg-server/mi/mipointer.c
+===
+--- xorg-server.orig/mi/mipointer.c2012-01-27 20:53:59.525697704 +1100
 xorg-server/mi/mipointer.c 2012-01-27 20:53:59.721697695 +1100
+@@ -623,6 +623,9 @@
+   }
+   }
+ }
++if (pScreen->ConstrainCursorHarder)
++   pScreen->ConstrainCursorHarder(pDev, pScreen, mode, &x, &y);
++
+ /* Constrain the sprite to the current limits. */
+ if (x < pPointer->limits.x1)
+   x = pPointer->limits.x1;
+@@ -633,9 +636,6 @@
+ if (y >= pPointer->limits.y2)
+   y = pPointer->limits.y2 - 1;
+ 
+-if (pScreen->ConstrainCursorHarder)
+-   pScreen->ConstrainCursorHarder(pDev, pScreen, mode, &x, &y);
+-
+ if (pPointer->x != x || pPointer->y != y ||
+ pPointer->pScreen != pScreen)
+ miPointerMoveNoEvent(pDev, pScreen, x, y);
+Index: xorg-server/xfixes/cursor.c
+===
+--- xorg-server.orig/xfixes/cursor.c   2012-01-27 20:49:26.109712303 +1100
 xorg-server/xfixes/cursor.c2012-01-27 20:54:59.037694528 +1100
+@@ -61,6 +61,7 @@
+ static RESTYPECursorHideCountType;
+ static RESTYPECursorWindowType;
+ RESTYPE   PointerBarrierType;
++static RESTYPEPointerBarrierClientType;
+ static CursorPtr  CursorCurrent[MAXDEVICES];
+ 
+ static DevPrivateKeyRec CursorScreenPrivateKeyRec;
+@@ -129,6 +130,7 @@
+ ConstrainCursorHarderProcPtr ConstrainCursorHarder;
+ CursorHideCountPtr  pCursorHideCounts;
+ struct list barriers;
++struct list barrierClients;
+ } CursorScreenRec, *CursorScreenPtr;
+ 
+ #define GetCursorScreen(s) 
((CursorScreenPtr)dixLookupPrivate(&(s)->devPrivates, CursorScreenPrivateKey))
+@@ -1232,14 +1234,77 @@
+ }
+ 
+ static void
++SendBarrierEvent(CursorScreenPtr cs, struct PointerBarrier *barr

x11proto-fixes: Changes to 'ubuntu'

2012-01-27 Thread Christopher Halse Rogers
New branch 'ubuntu' available with the following commits:
commit 9e5041527c2f84820c54cddcfeb4ca434f1da304
Author: Christopher James Halse Rogers 
Date:   Fri Jan 27 18:21:54 2012 +1100

Add patchsys, and proposed XFIXES v6 protocol


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1rqjvp-00041w...@vasks.debian.org



libxfixes: Changes to 'ubuntu'

2012-01-27 Thread Christopher Halse Rogers
 debian/changelog |   38 --
 debian/control   |6 -
 debian/libxfixes3.symbols|3 
 debian/patches/01_fixesproto-v6.diff |  202 +++
 debian/patches/series|2 
 debian/rules |3 
 6 files changed, 239 insertions(+), 15 deletions(-)

New commits:
commit 9d8c5d44e669b7d921d825dd0c9ff12e87048552
Author: Christopher James Halse Rogers 
Date:   Fri Jan 27 18:56:19 2012 +1100

Add proposed fixesproto v6 support

diff --git a/debian/changelog b/debian/changelog
index ee46d5f..591188e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,15 @@
+libxfixes (1:5.0-4ubuntu1) precise; urgency=low
+
+  * debian/control:
+- Bump x11proto-fixes build dep to pick up v6 protocol.
+  * debian/patches/01_fixesproto-v6.diff:
+- Add support for proposed protocol.  This is LIKELY TO CHANGE before
+  12.04 release.
+  * debian/libxfixes3.symbols:
+- Add new symbols from proposed protocol
+
+ -- Christopher James Halse Rogers   Fri, 27 Jan 2012 
18:47:43 +1100
+
 libxfixes (1:5.0-4) unstable; urgency=low
 
   * Team upload.
diff --git a/debian/control b/debian/control
index a507388..b6f1585 100644
--- a/debian/control
+++ b/debian/control
@@ -1,13 +1,14 @@
 Source: libxfixes
 Section: x11
 Priority: optional
-Maintainer: Debian X Strike Force 
+Maintainer: Ubuntu Developers 
+XSBC-Original-Maintainer: Debian X Strike Force 
 Uploaders: Drew Parsons , Cyril Brulebois 

 Build-Depends:
  debhelper (>= 8.1.3),
  dh-autoreconf,
  libx11-dev (>= 2:1.3.3-2),
- x11proto-fixes-dev (>= 1:5.0),
+ x11proto-fixes-dev (>= 1:5.0-2ubuntu1~),
  pkg-config,
  quilt,
  xutils-dev (>= 1:7.5+4),
diff --git a/debian/libxfixes3.symbols b/debian/libxfixes3.symbols
index 2cedbeb..7dffb59 100644
--- a/debian/libxfixes3.symbols
+++ b/debian/libxfixes3.symbols
@@ -1,9 +1,11 @@
 libXfixes.so.3 libxfixes3 #MINVER#
+ XFixesBarrierReleasePointer@Base 1:5.0-4ubuntu1
  XFixesChangeCursor@Base 0
  XFixesChangeCursorByName@Base 0
  XFixesChangeSaveSet@Base 0
  XFixesCopyRegion@Base 0
  XFixesCreatePointerBarrier@Base 1:5.0
+ XFixesCreatePointerBarrierVelocity@Base 1:5.0-4ubuntu1
  XFixesCreateRegion@Base 0
  XFixesCreateRegionFromBitmap@Base 0
  XFixesCreateRegionFromGC@Base 0
@@ -25,6 +27,7 @@ libXfixes.so.3 libxfixes3 #MINVER#
  XFixesQueryExtension@Base 0
  XFixesQueryVersion@Base 0
  XFixesRegionExtents@Base 0
+ XFixesSelectBarrierInput@Base 1:5.0-4ubuntu1
  XFixesSelectCursorInput@Base 0
  XFixesSelectSelectionInput@Base 0
  XFixesSetCursorName@Base 0
diff --git a/debian/patches/01_fixesproto-v6.diff 
b/debian/patches/01_fixesproto-v6.diff
new file mode 100644
index 000..673c20b
--- /dev/null
+++ b/debian/patches/01_fixesproto-v6.diff
@@ -0,0 +1,202 @@
+commit 5251cfa60a123a73e8261ea654200eba1e653b33
+Author: Christopher James Halse Rogers 
+Date:   Fri Jan 27 18:32:45 2012 +1100
+
+libXFixes v6: Pointer barrier improvements
+
+diff --git a/include/X11/extensions/Xfixes.h b/include/X11/extensions/Xfixes.h
+index 8995d14..992bff1 100644
+--- a/include/X11/extensions/Xfixes.h
 b/include/X11/extensions/Xfixes.h
+@@ -259,11 +259,48 @@ XFixesCreatePointerBarrier(Display *dpy, Window w, int 
x1, int y1,
+  int x2, int y2, int directions,
+  int num_devices, int *devices);
+ 
++PointerBarrier
++XFixesCreatePointerBarrierVelocity(Display *dpy, Window w, int x1, int y1,
++ int x2, int y2, int directions, int velocity,
++ int num_devices, int *devices);
++
+ void
+ XFixesDestroyPointerBarrier(Display *dpy, PointerBarrier b);
+ 
+ #endif /* XFIXES_MAJOR >= 5 */
+ 
++#if XFIXES_MAJOR >= 6
++
++typedef int32_t BarrierEventID;
++
++typedef struct {
++int type; /* event base */
++int subtype;
++unsigned long serial;
++Bool send_event;
++Display *display;
++Window window;
++BarrierEventID event_id;
++int directions;
++PointerBarrier barrier;
++int x;
++int y;
++int velocity;
++Time timestamp;
++} XFixesBarrierNotifyEvent;
++
++void
++XFixesSelectBarrierInput (Display *dpy,
++   Window win,
++   unsigned long  eventMask);
++
++void
++XFixesBarrierReleasePointer(Display *dpy,
++  PointerBarrier b,
++  BarrierEventID event_id);
++
++#endif
++
+ _XFUNCPROTOEND
+ 
+ #endif /* _XFIXES_H_ */
+diff --git a/src/Cursor.c b/src/Cursor.c
+index b3dfed1..6053046 100644
+--- a/src/Cursor.c
 b/src/Cursor.c
+@@ -334,3 +334,84 @@ XFixesDestroyPointerBarrier(Display *dpy, PointerBarrier 
b)
+ UnlockDisplay (dpy);
+ SyncHandle();
+ }
++
++void
++XFixesSelectBarrierInput (Display *dpy, Window win, unsigned long eventMask)
++{
++XFixesExtDisplayInfo *info = XFixesFindDisplay (dpy);
++xXFixesSelectBarrierInputReq *req;
++
++XFixesSimpleC

Bug#657634: Backtrace

2012-01-27 Thread Claudius Hubig
I managed to create the attached backtrace by adding the -core option
to GDM’s Xorg call and then using

$ gdb -c corefile /usr/bin/xorg
(gdb) set logging on
(gdb) bt full
(gdb) quit

Best regards,

Claudius
#0  0x7f3c7ab9e405 in *__GI_raise (sig=) at 
../nptl/sysdeps/unix/sysv/linux/raise.c:64
pid = 
selftid = 
#1  0x7f3c7aba1680 in *__GI_abort () at abort.c:92
act = {__sigaction_handler = {sa_handler = 0x7f3c7ccedfd0, sa_sigaction 
= 0x7f3c7ccedfd0}, sa_mask = {__val = {52, 139897771117408, 139897768534885, 1, 
139897366892672, 
  139897733589920, 139897766757600, 32256, 4294967295, 0, 1, 
4108520, 0, 32256, 139897366924800, 139897766899712}}, sa_flags = 2089953090, 
sa_restorer = 0x7f3c0001}
sigs = {__val = {32, 0 }}
#2  0x7f3c7ccc11fe in OsAbort () at ../../os/utils.c:1230
No locals.
#3  0x7f3c7cbc3e9c in ddxGiveUp (error=EXIT_ERR_ABORT) at 
../../../../hw/xfree86/common/xf86Init.c:936
i = 
#4  0x7f3c7ccc60b2 in AbortServer () at ../../os/log.c:416
No locals.
#5  0x7f3c7ccc62b5 in FatalError (f=0x7f3c7ccebed0 "Caught signal %d (%s). 
Server aborting\n") at ../../os/log.c:547
args = {{gp_offset = 24, fp_offset = 48, overflow_arg_area = 
0x7fff34c3a820, reg_save_area = 0x7fff34c3a760}}
beenhere = 1
#6  0x7f3c7ccbf12e in OsSigHandler (sip=, signo=7, 
unused=) at ../../os/osinit.c:146
No locals.
#7  OsSigHandler (signo=7, sip=, unused=) at 
../../os/osinit.c:108
No locals.
#8  
No symbol table info available.
#9  __memcpy_ssse3_back () at 
../sysdeps/x86_64/multiarch/memcpy-ssse3-back.S:820
No locals.
#10 0x7f3c789687f6 in intel_uxa_pixmap_put_image (pixmap=, 
src=, src_pitch=32000, x=, y=, 
w=, h=8)
at ../../src/intel_uxa.c:752
dst = 
row_length = 32000
num_rows = 8
priv = 0x7f3c7faa4970
stride = 32256
cpp = 
ret = 0
#11 0x7f3c7896a4a7 in intel_uxa_put_image (pixmap=0x7f3c7faa62b0, x=0, y=0, 
w=, h=8, src=0x7f3c7faf1f28 "", src_pitch=32000) at 
../../src/intel_uxa.c:809
intel = 0x7f3c7acbaa50
tiling = 0
size = 
stride = 2
bo = 
screen = 
priv = 0x7f3c7faa4970
#12 0x7f3c7898a8d4 in uxa_do_put_image (src_stride=32000, 
bits=0x7f3c7faf1f28 "", format=2, h=8, w=8000, y=, x=, pGC=0x7f3c7faa5ae0, pDrawable=0x7f3c7faa62b0, 
depth=) at ../../uxa/uxa-accel.c:164
y1 = 0
x2 = 
ok = 
x1 = 0
y2 = 
src = 0x7f3c7faf1f28 ""
yoff = 0
uxa_screen = 0x0
pPix = 0x7f3c7faa62b0
pClip = 
pbox = 0x7f3c7faa57c0
nbox = 
xoff = 0
bpp = 
#13 uxa_put_image (pDrawable=0x7f3c7faa62b0, pGC=0x7f3c7faa5ae0, 
depth=, x=0, y=0, w=8000, h=8, leftPad=0, format=2, 
bits=0x7f3c7faf1f28 "") at ../../uxa/uxa-accel.c:202
No locals.
#14 0x7f3c7cc4f3fc in damagePutImage (pDrawable=0x7f3c7faa62b0, 
pGC=0x7f3c7faa5ae0, depth=24, x=0, y=0, w=8000, h=8, leftPad=0, format=2, 
pImage=0x7f3c7faf1f28 "")
at ../../../miext/damage/damage.c:830
pGCPriv = 0x7f3c7faa5ba8
oldFuncs = 0x7f3c7cf2b3e0
#15 0x7f3c7cb85c1e in ProcPutImage (client=) at 
../../dix/dispatch.c:1989
pGC = 0x7f3c7faa5ae0
pDraw = 0x7f3c7faa62b0
length = 
lengthProto = 
tmpImage = 0x7f3c7faf1f28 ""
stuff = 0x7f3c7faf1f10
#16 0x7f3c7cb88f81 in Dispatch () at ../../dix/dispatch.c:437
clientReady = 0x7f3c7f8c5730
result = 
client = 0x7f3c7fa60130
nready = 0
icheck = 0x7f3c7cf3dad0
start_tick = 1860
#17 0x7f3c7cb781aa in main (argc=11, argv=, envp=) at ../../dix/main.c:287
i = 
alwaysCheckForInput = {0, 1}


mesa: Changes to 'debian-experimental'

2012-01-27 Thread Robert Hooker
 debian/changelog   |6 ++--
 debian/control |   46 +
 debian/libxatracker-dev.install.in |5 
 debian/libxatracker1.install.in|1 
 debian/libxatracker1.symbols   |   31 
 5 files changed, 86 insertions(+), 3 deletions(-)

New commits:
commit 4638a150878f746370c5c114dc75cefec061d028
Author: Robert Hooker 
Date:   Fri Jan 27 10:48:07 2012 -0500

Add libxatracker packaging.

To be consumed by xserver-xorg-video-vmware.

diff --git a/debian/changelog b/debian/changelog
index 9c9c154..979aed1 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -20,14 +20,14 @@ mesa (8.0~rc1-1) UNRELEASED; urgency=low
 separate source package.
   * libegl-mesa.symbols, libgles2-mesa.symbols: Add new symbols.
   * rules: Drop obsolete configure options.
-  * Enable vmwgfx gallium driver & xatracker.
-TODO: decide where to ship libxatracker files
+  * Enable vmwgfx gallium driver & xatracker. (Closes: #652501).
 
   [ Robert Hooker ]
   * Bump libdrm build dep to 2.4.30, x11proto-gl-dev to 1.4.14, and
 x11proto-dri2-dev to 2.6.
+  * Add libxatracker packaging.
 
- -- Robert Hooker   Tue, 24 Jan 2012 17:17:04 -0500
+ -- Robert Hooker   Fri, 27 Jan 2012 10:45:34 -0500
 
 mesa (7.11.2-1) unstable; urgency=low
 
diff --git a/debian/control b/debian/control
index c198364..4c5ee41 100644
--- a/debian/control
+++ b/debian/control
@@ -142,6 +142,52 @@ Description: free implementation of the OpenGL API -- 
development files
  a direct rendering-capable library, or one which uses GLX.  For that,
  please see libgl1-mesa-dev.
 
+Package: libxatracker1
+Section: libs
+Architecture: linux-any 
+Depends:
+ ${shlibs:Depends},
+ ${misc:Depends},
+Pre-Depends: ${misc:Pre-Depends}
+Multi-Arch: same
+Description: X acceleration library -- runtime
+ This package contains the XA (X acceleration) library.  It is used exclusively
+ by the X server to do render, copy and video acceleration.
+ .
+ XA is intended to be used by the vmware driver for virtualized X acceleration.
+
+Package: libxatracker1-dbg
+Section: debug
+Priority: extra
+Architecture: linux-any
+Depends:
+ libxatracker1 (= ${binary:Version}),
+ ${misc:Depends},
+Pre-Depends: ${misc:Pre-Depends}
+Multi-Arch: same
+Description: X acceleration library -- debugging symbols
+ This package contains the XA (X acceleration) library.  It is used exclusively
+ by the X server to do render, copy and video acceleration.
+ .
+ XA is intended to be used by the vmware driver for virtualized X acceleration.
+ .
+ This package contains the debugging symbols for the xatracker library.
+
+Package: libxatracker-dev
+Section: libdevel
+Architecture: linux-any
+Depends:
+ libxatracker1 (= ${binary:Version}),
+ ${misc:Depends},
+Description: X acceleration library -- development files
+ This package contains the XA (X acceleration) library.  It is used exclusively
+ by the X server to do render, copy and video acceleration.
+ .
+ XA is intended to be used by the vmware driver for virtualized X acceleration.
+ .
+ This package provides the development environment for compiling programs
+ against the xatracker library.
+
 Package: libgbm1
 Section: libs
 Architecture: linux-any
diff --git a/debian/libxatracker-dev.install.in 
b/debian/libxatracker-dev.install.in
new file mode 100644
index 000..ff99489
--- /dev/null
+++ b/debian/libxatracker-dev.install.in
@@ -0,0 +1,5 @@
+dri/usr/lib/${DEB_HOST_MULTIARCH}/libxatracker.so usr/lib/${DEB_HOST_MULTIARCH}
+dri/usr/lib/${DEB_HOST_MULTIARCH}/pkgconfig/xatracker.pc 
usr/lib/${DEB_HOST_MULTIARCH}/pkgconfig
+dri/usr/include/xa_composite.h usr/include
+dri/usr/include/xa_context.h usr/include
+dri/usr/include/xa_tracker.h usr/include
diff --git a/debian/libxatracker1.install.in b/debian/libxatracker1.install.in
new file mode 100644
index 000..add171f
--- /dev/null
+++ b/debian/libxatracker1.install.in
@@ -0,0 +1 @@
+dri/usr/lib/${DEB_HOST_MULTIARCH}/libxatracker.so.1* 
usr/lib/${DEB_HOST_MULTIARCH}
diff --git a/debian/libxatracker1.symbols b/debian/libxatracker1.symbols
new file mode 100644
index 000..d36a9e7
--- /dev/null
+++ b/debian/libxatracker1.symbols
@@ -0,0 +1,31 @@
+libxatracker.so.1 libxatracker1 #MINVER#
+ xa_composite_allocation@Base 0
+ xa_composite_check_accelerated@Base 0
+ xa_composite_done@Base 0
+ xa_composite_prepare@Base 0
+ xa_composite_rect@Base 0
+ xa_context_create@Base 0
+ xa_context_default@Base 0
+ xa_context_destroy@Base 0
+ xa_copy@Base 0
+ xa_copy_done@Base 0
+ xa_copy_prepare@Base 0
+ xa_fence_destroy@Base 0
+ xa_fence_get@Base 0
+ xa_fence_wait@Base 0
+ xa_format_check_supported@Base 0
+ xa_solid@Base 0
+ xa_solid_done@Base 0
+ xa_solid_prepare@Base 0
+ xa_surface_create@Base 0
+ xa_surface_destroy@Base 0
+ xa_surface_dma@Base 0
+ xa_surface_format@Base 0
+ xa_surface_handle@Base 0
+ xa_surface_map@Base 0
+ xa_surface_redefine@Base 0
+ xa_surface_unmap@Base 0
+ xa_tracker_create@Base 0

Bug#648022: Uses deprecated libgnome-window-settings which is scheduled to be removed

2012-01-27 Thread Michael Biebl
Hi Sean,

On 27.01.2012 06:38, Michael Biebl wrote:
> 
> Sean, any objections to apply this patch? If you are no longer
> interested in compiz / lack time I could offer to upload an NMU.
> 

I went ahead and uploaded an NMU to DELAYED/10. Just let me know if you
are not ok with the proposed patch and I'll cancel the NMU.

Cheers,
Michael

-- 
Why is it that all of the instruments seeking intelligent life in the
universe are pointed away from Earth?



signature.asc
Description: OpenPGP digital signature


Processing of compiz_0.8.4-5.1_amd64.changes

2012-01-27 Thread Debian FTP Masters
compiz_0.8.4-5.1_amd64.changes uploaded successfully to localhost
along with the files:
  compiz_0.8.4-5.1.dsc
  compiz_0.8.4-5.1.diff.gz
  compiz_0.8.4-5.1_all.deb
  compiz-core_0.8.4-5.1_amd64.deb
  compiz-dev_0.8.4-5.1_amd64.deb
  compiz-gtk_0.8.4-5.1_amd64.deb
  compiz-kde_0.8.4-5.1_amd64.deb
  compiz-plugins_0.8.4-5.1_amd64.deb
  libdecoration0_0.8.4-5.1_amd64.deb
  libdecoration0-dev_0.8.4-5.1_amd64.deb

Greetings,

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


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



Bug#657634: X crashes when viewing huge images with Caught signal 7 (Bus error)

2012-01-27 Thread Julien Cristau
On Fri, Jan 27, 2012 at 15:49:42 +0100, Claudius Hubig wrote:

> Package: xserver-xorg
> Version: 1:7.6+10
> Severity: normal
> 
> X crashes/restarts when I am trying to view a huge file in eog or iceweasel
> (both current from testing). Viewing the same file in Opera 11.61 is no
> problem.
> 
Looks like a dupe of #646393, fwiw.

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#657634: X crashes when viewing huge images with Caught signal 7 (Bus error)

2012-01-27 Thread Julien Cristau
On Fri, Jan 27, 2012 at 20:41:33 +0100, Claudius Hubig wrote:

> Julien Cristau  wrote:
> >On Fri, Jan 27, 2012 at 15:49:42 +0100, Claudius Hubig wrote:
> >> X crashes/restarts when I am trying to view a huge file in eog or iceweasel
> >> (both current from testing). Viewing the same file in Opera 11.61 is no
> >> problem.
> >> 
> >Looks like a dupe of #646393, fwiw.
> 
> Ouch, yes. Sorry about that. Is the backtrace I provided of any help?
> 
Yes, thanks for that.

> I also tried the new packages in experimental (xserver-xorg-core
> 2:1.11.99.901-1 and xserver-xorg-video-intel 2:2.17.0+git20120115-1),
> but the problem persists.
> 
Thanks for testing.
Can you report that upstream according to
http://intellinuxgraphics.org/how_to_report_bug.html?
Let us know the bug number for tracking.

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#657634: X crashes when viewing huge images with Caught signal 7 (Bus error)

2012-01-27 Thread Claudius Hubig
Julien Cristau  wrote:
>Can you report that upstream according to
>http://intellinuxgraphics.org/how_to_report_bug.html?
>Let us know the bug number for tracking.

https://bugs.freedesktop.org/show_bug.cgi?id=45323

I would like to ask you to have a look at said bug report, just to
make sure I didn’t make an obvious mistake. :)

Best regards,

Claudius
-- 
Spreading peanut butter reminds me of opera!!  I wonder why?
Please use GPG: ECB0C2C7 4A4C4046 446ADF86 C08112E5 D72CDBA4
http://chubig.net/ http://nightfall.org



--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20120127213754.074f8...@ares.home.chubig.net



Processed: reassign 657634 to xserver-xorg-video-intel, severity of 657634 is important, merging 646393 657634 ...

2012-01-27 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> reassign 657634 xserver-xorg-video-intel
Bug #657634 [xserver-xorg] X crashes when viewing huge images with Caught 
signal 7 (Bus error)
Bug reassigned from package 'xserver-xorg' to 'xserver-xorg-video-intel'.
Bug No longer marked as found in versions xorg/1:7.6+10.
> severity 657634 important
Bug #657634 [xserver-xorg-video-intel] X crashes when viewing huge images with 
Caught signal 7 (Bus error)
Severity set to 'important' from 'normal'

> merge 646393 657634
Bug#646393: X crashes: Caught signal 7 (Bus error)
Bug#657634: X crashes when viewing huge images with Caught signal 7 (Bus error)
Merged 646393 657634.

> found 657634 2:2.17.0+git20120115-1
Bug #657634 [xserver-xorg-video-intel] X crashes when viewing huge images with 
Caught signal 7 (Bus error)
Bug #646393 [xserver-xorg-video-intel] X crashes: Caught signal 7 (Bus error)
Bug Marked as found in versions xserver-xorg-video-intel/2:2.17.0+git20120115-1.
Bug Marked as found in versions xserver-xorg-video-intel/2:2.17.0+git20120115-1.
> forwarded 657634 https://bugs.freedesktop.org/show_bug.cgi?id=45323
Bug #657634 [xserver-xorg-video-intel] X crashes when viewing huge images with 
Caught signal 7 (Bus error)
Bug #646393 [xserver-xorg-video-intel] X crashes: Caught signal 7 (Bus error)
Set Bug forwarded-to-address to 
'https://bugs.freedesktop.org/show_bug.cgi?id=45323'.
Set Bug forwarded-to-address to 
'https://bugs.freedesktop.org/show_bug.cgi?id=45323'.
> found 657634 2:2.17.0-1
Bug #657634 [xserver-xorg-video-intel] X crashes when viewing huge images with 
Caught signal 7 (Bus error)
Bug #646393 [xserver-xorg-video-intel] X crashes: Caught signal 7 (Bus error)
Bug Marked as found in versions xserver-xorg-video-intel/2:2.17.0-1.
Bug Marked as found in versions xserver-xorg-video-intel/2:2.17.0-1.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
657634: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=657634
646393: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=646393
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



compizconfig-settings-manager

2012-01-27 Thread Michael Hall
There has been some discussion in Ubuntu lately about whether the 
accidental problems users cause when using compizconfig-settings-manager 
justify the remove of the package from our archives all together.


One of our community contributors, who wants to keep ccsm around, has 
proposed this patch[1] so that users scrolling through the ccsm window 
won't accidentally change values, and I was wondering if there was any 
interest upstream in adopting these changes.  We're still early enough 
in the 12.04 cycle to have these changes made in debian then pulled into 
ubuntu, if it is something you would accept.


[1] 
https://code.launchpad.net/~alanbell/ubuntu/precise/compizconfig-settings-manager/safetyfirst/+merge/90389


--
Michael Hall
mhall...@ubuntu.com


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



Bug#657556: X.org crash all the time unexpected

2012-01-27 Thread Michelle Konzack
OK, now after some testing I have encountered a weird problem:

I have 8 Workstains base on the AsusTek A7V600-X Mainboard with  CPUs of
AMD Sempron, Athlon and Geode.  All Workstations running with  2/3 GByte
DDR400 memory.

I use mainly the Matrox G45+MDHA16D/OE6 (VGA Dual-Head, AGP) which works
perfectly on all machines runing Lenny.

Now some machines are upgraded to Squeeze and I have  encountered  tonns
of XTerm bugs.  I have several 100 cores laying around inm my ${HOME}.

OK, since mainly xterm aps are closing (xterm  crashs)  and  X  restarts
unexpected, I now have  have  removed  the  Matrox  G45+MDHA16D/OE6  und
inserted an Matrox G45FMDVP32DB (DVI/VGA Dual-Head, PCI) and now X  does
not more crash.

Hmm, broken grafikcard?

I am wondering, since I have bought 10 of them original NEW!

Checed the Card in another Workstation (same Mainboard Type,  Soundcard)
and it works perfectly without crashing under Lenny and Squeeze.

Can someone of you Guys and Girls explain this?

More weird stuff:

FOr 2 years I had bougth 20 mainboards, 80 1 GByte  memory  modules,  20
graficcards, 20 2"5 SATA drives and 20 DVD-RW drives.   When  assembled,
some of the graficcards wont work with Debian Lenny and if  I  put  them
into another Computer it just works...

It is NOT THE FIRST TIME, I have such sick fault which droved  my  crazy
for more then one week!

Thanks, Greetings and nice Day/Evening
Michelle Konzack

-- 
# Debian GNU/Linux Consultant ##
   Development of Intranet and Embedded Systems with Debian GNU/Linux

itsystems@tdnet Tel: +49-176-86004575 office
Owner Michelle Konzack  Tel: +49-177-9351947  mobil Germany
Tel: +33-6-61925193   mobil France
Gewerbe Strasse 3
77694 Kehl/Germany  Jabber: linux4miche...@jabber.ccc.de



Linux-User #280138 with the Linux Counter, http://counter.li.org/


signature.pgp
Description: Digital signature


Bug#657416: xinit: startx does not start window manager

2012-01-27 Thread Adrian Kieß
Der Julien,

I'm sorry for this false bug report. I have a somewhat complex .xinitrc and
the behaviour of gnome-settings-daemon changed with the release of GNOME
3.0 so i had to background it and that fixed it.

Please excuse the inconvenience.

You can delete this bug report.

Sincerely,

Adrian Kiess

On Thu, Jan 26, 2012 at 9:03 PM, Julien Cristau  wrote:

> On Thu, Jan 26, 2012 at 05:30:28 +0100, root wrote:
>
> > Package: xinit
> > Version: 1.3.1-1
> > Severity: normal
> >
> > Dear Maintainer,
> >
> > startx does not start the window manager in debian/testing. It boots to
> the default background image and then hangs. Same sign when starting System
> Session through GDM.
> > Selecting GNOME or KDE session through GDM though works fine.
> >
> Please attach:
> - ~/.xinitrc
> - ~/.xsessionrc
> - ~/.xsession
> - ~/.xsession-errors
>
> And the full output from startx.
>
> Cheers,
> Julien
>



-- 
Adrian Immanuel Kieß (adrian at immanuelK.net)