Bug#616301: xserver-xorg-video-radeon:screen goes black, system hangs after 2sec:[youtube(FF/Opera)-reset req.]

2011-03-05 Thread Oliver Winker
Hi,

Same thing here ... with basically same constellation in terms of
packages and update timing.

For info:

Work around on Youtube: Disable HW accel in flashplayer (Right-click /
Settings on some none-crashing flashplayer instance (some other
web-site) using iceweasel e.g.).

So it might be maybe radeon, video HW accel related ... !?

G+, Oliver



-- 
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/4d71f48d.8010...@oli1170.net



libdrm: Changes to 'debian-experimental'

2011-03-05 Thread Christopher Halse Rogers
 configure.ac |5 
 debian/changelog |   33 +
 debian/control   |2 
 debian/libdrm-intel1.symbols |2 
 debian/libkms1.symbols   |1 
 debian/rules |2 
 include/drm/i915_drm.h   |   14 ++
 intel/intel_bufmgr.c |8 +
 intel/intel_bufmgr.h |2 
 intel/intel_bufmgr_gem.c |   51 +++--
 intel/intel_bufmgr_priv.h|4 
 libkms/Makefile.am   |4 
 libkms/internal.h|2 
 libkms/linux.c   |4 
 libkms/radeon.c  |  242 +++
 nouveau/Makefile.am  |2 
 nouveau/nouveau_channel.c|   37 +++---
 nouveau/nouveau_grobj.c  |   11 +
 nouveau/nouveau_pushbuf.h|   38 --
 nouveau/nouveau_reloc.c  |   34 --
 nouveau/nv04_pushbuf.h   |   66 +++
 nouveau/nvc0_pushbuf.h   |   92 
 tests/modeprint/Makefile.am  |4 
 tests/modeprint/modeprint.c  |4 
 tests/modetest/Makefile.am   |4 
 tests/modetest/modetest.c|  137 ++--
 26 files changed, 659 insertions(+), 146 deletions(-)

New commits:
commit a11ea35f4ffb32591da33dba6e242d246d58ad7d
Author: Christopher James Halse Rogers 
Date:   Fri Mar 4 12:56:52 2011 +1100

Add new radeon symbols to libkms

diff --git a/debian/changelog b/debian/changelog
index 9f791eb..9f5f54d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,6 +2,7 @@ libdrm (2.4.24-1) UNRELEASED; urgency=low
 
   * New upstream release.
 - Contains intel cherry-picks taken in 2.4.23-3.
+  * Add new internal radeon symbols to libkms1.symbols
 
  -- Christopher James Halse Rogers   Fri, 04 Mar 2011 
11:24:07 +1100
 
diff --git a/debian/libkms1.symbols b/debian/libkms1.symbols
index 0458f6e..bb782d1 100644
--- a/debian/libkms1.symbols
+++ b/debian/libkms1.symbols
@@ -11,4 +11,5 @@ libkms.so.1 libkms1 #MINVER#
  kms_get_prop@Base 0
  linux_create@Base 0 1
  nouveau_create@Base 0 1
+ radeon_create@Base 2.4.24 1
  vmwgfx_create@Base 0 1

commit 5be062e94c857e8c76b6e8a87ec5e0d5ceb0f9b6
Author: Christopher James Halse Rogers 
Date:   Fri Mar 4 12:53:37 2011 +1100

Changelog entry for new upstream

diff --git a/debian/changelog b/debian/changelog
index 9e5318e..9f791eb 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+libdrm (2.4.24-1) UNRELEASED; urgency=low
+
+  * New upstream release.
+- Contains intel cherry-picks taken in 2.4.23-3.
+
+ -- Christopher James Halse Rogers   Fri, 04 Mar 2011 
11:24:07 +1100
+
 libdrm (2.4.23-3) unstable; urgency=low
 
   * Cherry-pick from upstream:

commit d9f77af478d9d4b9225df97632701b18588a0bab
Author: Christopher James Halse Rogers 
Date:   Fri Mar 4 12:32:59 2011 +1100

Revert "intel: Fallback to old exec if no mrb_exec is available"

It seems git got confused by an upstream rebase and didn't merge this
cherry-pick with the original commit which causes the build to fail.

This reverts commit e4aa4696a44b2bb571bf7ba56ccdff921e562205.

diff --git a/intel/intel_bufmgr.c b/intel/intel_bufmgr.c
index a1d846b..e949ff2 100644
--- a/intel/intel_bufmgr.c
+++ b/intel/intel_bufmgr.c
@@ -147,10 +147,6 @@ drm_intel_bo_mrb_exec(drm_intel_bo *bo, int used,
return bo->bufmgr->bo_exec(bo, used,
   cliprects, num_cliprects, DR4);
 
-   if (ring_flag == 0)
-   return bo->bufmgr->bo_exec(bo, used,
-  cliprects, num_cliprects, DR4);
-
return -ENODEV;
 }
 

commit a926a043b8079a8e283aa231e3c2347f5ad5864f
Author: Chris Wilson 
Date:   Tue Mar 1 18:24:14 2011 +

configure: Bump version to 2.4.24

New kernel headers.

Signed-off-by: Chris Wilson 

diff --git a/configure.ac b/configure.ac
index 23ccedf..1998204 100644
--- a/configure.ac
+++ b/configure.ac
@@ -19,7 +19,7 @@
 #  CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
 AC_PREREQ(2.60)
-AC_INIT([libdrm], 2.4.23, [dri-de...@lists.sourceforge.net], libdrm)
+AC_INIT([libdrm], 2.4.24, [dri-de...@lists.sourceforge.net], libdrm)
 AC_USE_SYSTEM_EXTENSIONS
 AC_CONFIG_SRCDIR([Makefile.am])
 AM_INIT_AUTOMAKE([dist-bzip2])

commit 0209428b3918c4336018da9293cdcbf7f8fedfb6
Author: Chris Wilson 
Date:   Tue Mar 1 16:01:53 2011 +

intel: Add I915_PARAM_HAS_RELAXED_DELTA

Signed-off-by: Chris Wilson 

diff --git a/include/drm/i915_drm.h b/include/drm/i915_drm.h
index 98e1597..adc2392 100644
--- a/include/drm/i915_drm.h
+++ b/include/drm/i915_drm.h
@@ -281,6 +281,7 @@ typedef struct drm_i915_irq_wait {
 #define I915_PARAM_HAS_RELAXED_FENCING  12
 #define I915_PARAM_HAS_COHERENT_RINGS   13
 #define I915_PARAM_HAS_EXEC_CONSTANTS   14
+#define I915_PARAM_HAS_RELAXED_DELTA15
 
 typedef struct drm_i915_getparam {
int param;

commit e6018c25ca63fa6066d8fa6e57373030d07b0392
Author: Daniel Vetter 
Date:   Tue Feb 22 

libdrm: Changes to 'upstream-experimental'

2011-03-05 Thread Christopher Halse Rogers
 configure.ac|5 
 include/drm/i915_drm.h  |   14 ++
 intel/intel_bufmgr.c|8 +
 intel/intel_bufmgr.h|2 
 intel/intel_bufmgr_gem.c|   51 +++--
 intel/intel_bufmgr_priv.h   |4 
 libkms/Makefile.am  |4 
 libkms/internal.h   |2 
 libkms/linux.c  |4 
 libkms/radeon.c |  242 
 nouveau/Makefile.am |2 
 nouveau/nouveau_channel.c   |   37 +++---
 nouveau/nouveau_grobj.c |   11 +-
 nouveau/nouveau_pushbuf.h   |   38 --
 nouveau/nouveau_reloc.c |   34 --
 nouveau/nv04_pushbuf.h  |   66 
 nouveau/nvc0_pushbuf.h  |   92 
 tests/modeprint/Makefile.am |4 
 tests/modeprint/modeprint.c |4 
 tests/modetest/Makefile.am  |4 
 tests/modetest/modetest.c   |  137 ++--
 21 files changed, 623 insertions(+), 142 deletions(-)

New commits:
commit a926a043b8079a8e283aa231e3c2347f5ad5864f
Author: Chris Wilson 
Date:   Tue Mar 1 18:24:14 2011 +

configure: Bump version to 2.4.24

New kernel headers.

Signed-off-by: Chris Wilson 

diff --git a/configure.ac b/configure.ac
index 23ccedf..1998204 100644
--- a/configure.ac
+++ b/configure.ac
@@ -19,7 +19,7 @@
 #  CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
 AC_PREREQ(2.60)
-AC_INIT([libdrm], 2.4.23, [dri-de...@lists.sourceforge.net], libdrm)
+AC_INIT([libdrm], 2.4.24, [dri-de...@lists.sourceforge.net], libdrm)
 AC_USE_SYSTEM_EXTENSIONS
 AC_CONFIG_SRCDIR([Makefile.am])
 AM_INIT_AUTOMAKE([dist-bzip2])

commit 0209428b3918c4336018da9293cdcbf7f8fedfb6
Author: Chris Wilson 
Date:   Tue Mar 1 16:01:53 2011 +

intel: Add I915_PARAM_HAS_RELAXED_DELTA

Signed-off-by: Chris Wilson 

diff --git a/include/drm/i915_drm.h b/include/drm/i915_drm.h
index 98e1597..adc2392 100644
--- a/include/drm/i915_drm.h
+++ b/include/drm/i915_drm.h
@@ -281,6 +281,7 @@ typedef struct drm_i915_irq_wait {
 #define I915_PARAM_HAS_RELAXED_FENCING  12
 #define I915_PARAM_HAS_COHERENT_RINGS   13
 #define I915_PARAM_HAS_EXEC_CONSTANTS   14
+#define I915_PARAM_HAS_RELAXED_DELTA15
 
 typedef struct drm_i915_getparam {
int param;

commit e6018c25ca63fa6066d8fa6e57373030d07b0392
Author: Daniel Vetter 
Date:   Tue Feb 22 19:11:07 2011 +0100

intel: Fixup for the fix for relaxed tiling on gen2

This is Fail.

First patch to libdrm, and I've borked it up.

Noticed-by: Chris Wilson 
Signed-off-by: Daniel Vetter 

diff --git a/intel/intel_bufmgr_gem.c b/intel/intel_bufmgr_gem.c
index 9b324d9..f5ab0a6 100644
--- a/intel/intel_bufmgr_gem.c
+++ b/intel/intel_bufmgr_gem.c
@@ -767,7 +767,7 @@ drm_intel_gem_bo_alloc_tiled(drm_intel_bufmgr *bufmgr, 
const char *name,
else if (tiling == I915_TILING_Y)
height_alignment = 32;
/* i8xx has a interleaved 2-row tile layout */
-   if (IS_GEN2(bufmgr_gem))
+   if (IS_GEN2(bufmgr_gem) && tiling != I915_TILING_NONE)
height_alignment *= 2;
aligned_y = ALIGN(y, height_alignment);
 

commit 9a71ed93f48f4b319148913a6b56751f6341f078
Author: Daniel Vetter 
Date:   Tue Feb 22 18:53:56 2011 +0100

intel: fix relaxed tiling on gen2

Signed-off-by: Daniel Vetter 

diff --git a/intel/intel_bufmgr_gem.c b/intel/intel_bufmgr_gem.c
index 3cdffce..9b324d9 100644
--- a/intel/intel_bufmgr_gem.c
+++ b/intel/intel_bufmgr_gem.c
@@ -744,7 +744,7 @@ drm_intel_gem_bo_alloc_tiled(drm_intel_bufmgr *bufmgr, 
const char *name,
uint32_t tiling;
 
do {
-   unsigned long aligned_y;
+   unsigned long aligned_y, height_alignment;
 
tiling = *tiling_mode;
 
@@ -760,12 +760,16 @@ drm_intel_gem_bo_alloc_tiled(drm_intel_bufmgr *bufmgr, 
const char *name,
 * too so we try to be careful.
 */
aligned_y = y;
-   if (tiling == I915_TILING_NONE)
-   aligned_y = ALIGN(y, 2);
-   else if (tiling == I915_TILING_X)
-   aligned_y = ALIGN(y, 8);
+   height_alignment = 2;
+
+   if (tiling == I915_TILING_X)
+   height_alignment = 8;
else if (tiling == I915_TILING_Y)
-   aligned_y = ALIGN(y, 32);
+   height_alignment = 32;
+   /* i8xx has a interleaved 2-row tile layout */
+   if (IS_GEN2(bufmgr_gem))
+   height_alignment *= 2;
+   aligned_y = ALIGN(y, height_alignment);
 
stride = x * cpp;
stride = drm_intel_gem_bo_tile_pitch(bufmgr_gem, stride, 
tiling_mode);

commit a697fb6acad7992c3d23bb6a663663694782eb7b
Author: Benjamin Franzke 
Date:   Thu Feb 17 20:36:42 2011 +0100

modetest: Do no flip twice to a curre

mesa: Changes to 'debian-experimental'

2011-03-05 Thread Christopher Halse Rogers
 Makefile  |2 
 configs/autoconf.in   |3 
 configs/default   |5 
 configs/linux-dri |2 
 configs/linux-llvm|2 
 configure.ac  |   14 
 debian/changelog  |   84 
 debian/control|   32 
 debian/libgl1-mesa-dri-experimental.install   |1 
 debian/libgl1-mesa-dri.install|2 
 debian/libgl1-mesa-dri.install.linux  |5 
 debian/local/control  |1 
 debian/local/script   |   26 
 debian/not-installed  |6 
 debian/patches/10-fix-talloc-linking.diff |   45 
 debian/patches/11-hurd-ftbfs-again.diff   |   87 
 debian/patches/series |2 
 debian/rules  |   57 
 docs/envvars.html |  102 
 docs/news.html|   13 
 docs/relnotes-7.10.1.html |  375 +
 docs/relnotes-7.10.html   |   13 
 docs/relnotes-7.9.1.html  |6 
 docs/relnotes.html|3 
 docs/shading.html |2 
 docs/sourcetree.html  |1 
 include/GL/gl_mangle.h|  332 +
 src/gallium/auxiliary/cso_cache/cso_context.c |2 
 src/gallium/auxiliary/draw/draw_pt_vsplit_tmp.h   |3 
 src/gallium/auxiliary/gallivm/lp_bld_const.h  |   18 
 src/gallium/auxiliary/gallivm/lp_bld_format_aos.c |   54 
 src/gallium/drivers/llvmpipe/lp_setup.c   |4 
 src/gallium/drivers/nouveau/nouveau_winsys.h  |2 
 src/gallium/drivers/nv50/nv50_surface.c   |2 
 src/gallium/drivers/nv50/nv50_tgsi_to_nc.c|2 
 src/gallium/drivers/nvfx/nv04_2d.c|2 
 src/gallium/drivers/nvfx/nvfx_vbo.c   |3 
 src/gallium/drivers/softpipe/sp_setup.c   |2 
 src/gallium/state_trackers/dri/common/dri_context.c   |   10 
 src/gallium/state_trackers/dri/common/dri_drawable.c  |1 
 src/gallium/state_trackers/dri/common/dri_drawable.h  |3 
 src/gallium/state_trackers/dri/drm/dri2.c |2 
 src/gallium/targets/SConscript.dri|1 
 src/gallium/targets/libgl-gdi/SConscript  |1 
 src/gallium/targets/libgl-xlib/SConscript |1 
 src/gallium/winsys/radeon/drm/radeon_r300.c   |2 
 src/glsl/Makefile |5 
 src/glsl/SConscript   |7 
 src/glsl/ast.h|   21 
 src/glsl/ast_expr.cpp |4 
 src/glsl/ast_function.cpp |  129 
 src/glsl/ast_to_hir.cpp   |  230 -
 src/glsl/ast_type.cpp |5 
 src/glsl/builtin_function.cpp |8 
 src/glsl/builtin_types.h  |3 
 src/glsl/glcpp/glcpp-lex.c|   22 
 src/glsl/glcpp/glcpp-lex.l|   14 
 src/glsl/glcpp/glcpp-parse.c  |  412 -
 src/glsl/glcpp/glcpp-parse.y  |  200 
 src/glsl/glcpp/glcpp.c|   10 
 src/glsl/glcpp/glcpp.h|4 
 src/glsl/glcpp/pp.c   |   30 
 src/glsl/glsl_lexer.cpp   | 1983 
 src/glsl/glsl_lexer.lpp   |   23 
 src/glsl/glsl_parser.cpp  | 3067 +++--
 src/glsl/glsl_parser.h|  237 -
 src/glsl/glsl_parser.ypp  |  210 
 src/glsl/glsl_parser_extras.cpp   |   52 
 src/glsl/glsl_parser_extras.h |   46 
 src/glsl/glsl_symbol_table.cpp|   19 
 src/glsl/glsl_symbol_table.h  |   20 
 src/glsl/glsl_types.cpp   |   30 
 src/glsl/glsl_types.h |   26 
 src/glsl/ir.cpp   |   19 
 src/glsl/ir.h 

mesa: Changes to 'upstream-experimental'

2011-03-05 Thread Christopher Halse Rogers
 Makefile  |2 
 configs/autoconf.in   |3 
 configs/default   |5 
 configs/linux-dri |2 
 configs/linux-llvm|2 
 configure.ac  |   14 
 docs/envvars.html |  102 
 docs/news.html|   13 
 docs/relnotes-7.10.1.html |  375 +
 docs/relnotes-7.10.html   |   13 
 docs/relnotes-7.9.1.html  |6 
 docs/relnotes.html|3 
 docs/shading.html |2 
 docs/sourcetree.html  |1 
 include/GL/gl_mangle.h|  332 +
 src/SConscript|1 
 src/gallium/auxiliary/cso_cache/cso_context.c |2 
 src/gallium/auxiliary/draw/draw_pt_vsplit_tmp.h   |3 
 src/gallium/auxiliary/gallivm/lp_bld_const.h  |   18 
 src/gallium/auxiliary/gallivm/lp_bld_format_aos.c |   54 
 src/gallium/drivers/llvmpipe/lp_setup.c   |4 
 src/gallium/drivers/nv50/nv50_tgsi_to_nc.c|2 
 src/gallium/drivers/softpipe/sp_setup.c   |2 
 src/gallium/state_trackers/dri/common/dri_context.c   |   10 
 src/gallium/state_trackers/dri/common/dri_drawable.c  |1 
 src/gallium/state_trackers/dri/common/dri_drawable.h  |3 
 src/gallium/state_trackers/dri/drm/dri2.c |2 
 src/gallium/targets/SConscript.dri|1 
 src/gallium/targets/libgl-gdi/SConscript  |1 
 src/gallium/targets/libgl-xlib/SConscript |1 
 src/gallium/winsys/radeon/drm/radeon_r300.c   |2 
 src/glsl/Makefile |5 
 src/glsl/SConscript   |7 
 src/glsl/ast.h|   21 
 src/glsl/ast_expr.cpp |4 
 src/glsl/ast_function.cpp |  129 
 src/glsl/ast_to_hir.cpp   |  230 -
 src/glsl/ast_type.cpp |5 
 src/glsl/builtin_function.cpp |8 
 src/glsl/builtin_types.h  |3 
 src/glsl/builtins/tools/generate_builtins.py  |   10 
 src/glsl/glcpp/glcpp-lex.c|   22 
 src/glsl/glcpp/glcpp-lex.l|   14 
 src/glsl/glcpp/glcpp-parse.c  |  412 -
 src/glsl/glcpp/glcpp-parse.y  |  200 
 src/glsl/glcpp/glcpp.c|   10 
 src/glsl/glcpp/glcpp.h|4 
 src/glsl/glcpp/pp.c   |   30 
 src/glsl/glsl_lexer.cpp   | 1983 
 src/glsl/glsl_lexer.lpp   |   23 
 src/glsl/glsl_parser.cpp  | 3067 +++--
 src/glsl/glsl_parser.h|  237 -
 src/glsl/glsl_parser.ypp  |  210 
 src/glsl/glsl_parser_extras.cpp   |   52 
 src/glsl/glsl_parser_extras.h |   46 
 src/glsl/glsl_symbol_table.cpp|   19 
 src/glsl/glsl_symbol_table.h  |   20 
 src/glsl/glsl_types.cpp   |   30 
 src/glsl/glsl_types.h |   26 
 src/glsl/ir.cpp   |   19 
 src/glsl/ir.h |   20 
 src/glsl/ir_clone.cpp |2 
 src/glsl/ir_constant_expression.cpp   |   34 
 src/glsl/ir_expression_flattening.cpp |2 
 src/glsl/ir_import_prototypes.cpp |4 
 src/glsl/ir_reader.cpp|   24 
 src/glsl/ir_validate.cpp  |4 
 src/glsl/ir_variable_refcount.h   |4 
 src/glsl/link_functions.cpp   |   22 
 src/glsl/linker.cpp   |   94 
 src/glsl/list.h   |   28 
 src/glsl/loop_analysis.cpp|   14 
 src/glsl/loop_controls.cpp|6 
 src/glsl/loop_unroll.cpp  |4 
 src/glsl/lower

compiz-fusion-plugins-extra: Changes to 'debian-unstable'

2011-03-05 Thread Sean Finney
 debian/changelog |6 ++
 debian/control   |1 +
 2 files changed, 7 insertions(+)

New commits:
commit 9fa28ef1a21073eb31d387ad7d0b0daa5aad34ed
Author: Sean Finney 
Date:   Sat Mar 5 10:54:40 2011 +0100

prepare changelog

diff --git a/debian/changelog b/debian/changelog
index 70e500f..759f12d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+compiz-fusion-plugins-extra (0.9.2.1+git20110224.e621355c-2) experimental; 
urgency=low
+
+  * Fix an FTBFS by adding a Build-Dep on libglibmm-2.4-dev
+
+ -- Sean Finney   Sat, 05 Mar 2011 10:54:09 +0100
+
 compiz-fusion-plugins-extra (0.9.2.1+git20110224.e621355c-1) experimental; 
urgency=low
 
   [ Janos Guljas ]

commit 0be62af5e627a46f60425d33c7f55c22fedc2ef2
Author: Sean Finney 
Date:   Sat Mar 5 10:53:45 2011 +0100

Fix an FTBFS by adding a Build-Dep on libglibmm-2.4-dev

diff --git a/debian/control b/debian/control
index a340399..d43ef41 100644
--- a/debian/control
+++ b/debian/control
@@ -4,6 +4,7 @@ Maintainer: Debian X Strike Force 
 Uploaders: Sean Finney 
 Build-Depends: debhelper (>= 7.0.50~), cmake, pkg-config, xsltproc,
  compiz-dev (>= 0.9), libdecoration0-dev (>= 0.9), compiz-fusion-plugins-main 
(>= 0.9),
+ libglibmm-2.4-dev,
  librsvg2-dev, libcairo2-dev, libsm-dev, libdbus-1-dev, libjpeg62-dev,
  libxslt1-dev, libglu1-mesa-dev, libnotify-dev,
  libboost1.42-dev, libboost-serialization1.42-dev


-- 
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/e1pvohk-0007wm...@alioth.debian.org



compiz-fusion-plugins-extra: Changes to 'refs/tags/compiz-fusion-plugins-extra-0.9.2.1+git20110224.e621355c-2'

2011-03-05 Thread Sean Finney
Tag 'compiz-fusion-plugins-extra-0.9.2.1+git20110224.e621355c-2' created by 
Sean Finney  at 2011-03-05 09:59 +

Debian release 0.9.2.1+git20110224.e621355c-2

Changes since compiz-fusion-plugins-extra-0.9.2.1+git20110224.e621355c-1:
Sean Finney (2):
  Fix an FTBFS by adding a Build-Dep on libglibmm-2.4-dev
  prepare changelog

---
 debian/changelog |6 ++
 debian/control   |1 +
 2 files changed, 7 insertions(+)
---


-- 
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/e1pvoi4-00086a...@alioth.debian.org



compiz-fusion-plugins-unsupported: Changes to '07merge'

2011-03-05 Thread Sean Finney
New branch '07merge' available with the following commits:


-- 
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/e1pvowl-000851...@alioth.debian.org



compiz-fusion-plugins-unsupported: Changes to 'upstream-unstable'

2011-03-05 Thread Sean Finney
Rebased ref, commits from common ancestor:


-- 
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/e1pvowl-00084b...@alioth.debian.org



compiz-fusion-plugins-unsupported: Changes to 'debian-squeeze'

2011-03-05 Thread Sean Finney
New branch 'debian-squeeze' available with the following commits:


-- 
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/e1pvowl-00085q...@alioth.debian.org



compiz-fusion-plugins-unsupported: Changes to 'debian-unstable'

2011-03-05 Thread Sean Finney
 .gitmodules|   15 
 AUTHORS|8 
 CMakeLists.txt |   36 
 INSTALL|  236 -
 Makefile.am|9 
 NEWS   |8 
 VERSION|1 
 atlantis   |1 
 autogen.sh |   16 
 cmake/CompizFusion.cmake   |  680 ---
 cmake/addons.cmake |  171 
 compiz-elements.pc.in  |   12 
 configure.ac   |  167 
 cubemodel  |1 
 dev/null   |binary
 elements   |1 
 fakeargb   |1 
 images/Makefile.am |   25 
 images/fireflies1.svg  |   75 
 images/fireflies2.svg  |   75 
 include/Makefile.am|4 
 include/compiz-elements.h  |  148 
 metadata/Makefile.am   |   38 
 metadata/atlantis.xml.in   |  371 --
 metadata/cubemodel.xml.in  |  196 -
 metadata/elements.xml.in   |  320 -
 metadata/fakeargb.xml.in   |   18 
 metadata/mswitch.xml.in|   18 
 metadata/snow.xml.in   |  130 
 metadata/tile.xml.in   |  134 
 po/ChangeLog   |   12 
 po/LINGUAS |   30 
 po/Makefile.in.in  |  218 -
 po/Makevars|   43 
 po/POTFILES.in |7 
 po/ar.po   | 5718 -
 po/as.po   | 3941 --
 po/be.po   | 4561 --
 po/bn.po   | 5678 
 po/ca.po   | 6032 --
 po/cs.po   | 6009 --
 po/da.po   | 3941 --
 po/de.po   | 6328 
 po/el.po   | 6221 
 po/en_GB.po| 6028 --
 po/es.po   | 6345 
 po/eu.po   | 5877 --
 po/fa.po   | 5487 ---
 po/fi.po   | 5857 -
 po/fr.po   | 6168 ---
 po/gl.po   | 5243 --
 po/gu.po   | 6090 ---
 po/he.po   | 5864 -
 po/hi.po   | 6078 ---
 po/hr.po   | 3941 --
 po/hu.po   | 5978 --
 po/it.po   | 6308 
 po/ja.po   | 5212 --
 po/ko.po   | 5821 -
 po/ml_IN.po| 5457 ---
 po/nb.po   | 6108 ---
 po/nl.po   | 6203 ---
 po/or.po   | 4206 
 po/pl.po   | 6153 ---
 po/pt.po   | 4915 
 po/pt_BR.po| 6281 
 po/ru.po   | 6389 -
 po/sv.po   | 6061 ---
 po/tr.po   | 5922 --
 po/zh_CN.po| 5826 -
 po/zh_HK.po| 4206 
 src/Makefile.am|2 
 src/atlantis/CMakeLists.txt|3 
 src/atlantis/Makefile.am   |   61 
 src/atlantis/atlantis-internal.h   |  530 ---
 src/atlantis/atlantis.c| 1203 --
 src/atlantis/bfish.c   |  226 -
 src/atlantis/bfish.h   |  536 ---
 src/atlantis/bubble.c  |   74 
 src/atlantis/chromis.c |  200 -
 src/atlantis/chromis.h |  293 -
 src/atlantis/coral.c   |   75 
 src/atlantis/coral.h   | 4559 --
 src/atlantis/coral2.c  |   75 
 src/atlantis/coral2.h  | 5305 --
 src/atlantis/coral2_low.h

compiz-fusion-plugins-unsupported: Changes to 'upstream-squeeze'

2011-03-05 Thread Sean Finney
New branch 'upstream-squeeze' available with the following commits:


-- 
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/e1pvowq-000869...@alioth.debian.org



Bug#616511: xserver-xorg-video-vesa: Blank screen on ATI R580

2011-03-05 Thread Cyril Brulebois
Hi Tim,

Tim  (04/03/2011):
> I recently updated all packages and ran into X crashes with the
> radeon driver.  So, I fell back to vesa to see if I could at least
> get a GUI again.  No luck.  When starting X from the command line I
> just get a black screen.  I don't see anything in the logs that
> indicate what might be going on.

as in “X :0”? That's normal, you get a black background and no X
client by default. You could try:
  X :0 & sleep 5; DISPLAY=:0 xterm

Your log indeed looks fine. There's the fbdev driver you could try by
the way. Or disabling KMS to see if that helps with your radeon
issue. Is the bug you're having with radeon reported in the BTS?

KiBi.


signature.asc
Description: Digital signature


Processing of compiz-fusion-plugins-extra_0.9.2.1+git20110224.e621355c-2_i386.changes

2011-03-05 Thread Debian FTP Masters
compiz-fusion-plugins-extra_0.9.2.1+git20110224.e621355c-2_i386.changes 
uploaded successfully to localhost
along with the files:
  compiz-fusion-plugins-extra_0.9.2.1+git20110224.e621355c-2.dsc
  compiz-fusion-plugins-extra_0.9.2.1+git20110224.e621355c-2.debian.tar.gz
  compiz-fusion-plugins-extra_0.9.2.1+git20110224.e621355c-2_i386.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/e1pvooj-0007bu...@franck.debian.org



compiz-fusion-plugins-extra_0.9.2.1+git20110224.e621355c-2_i386.changes ACCEPTED into experimental

2011-03-05 Thread Debian FTP Masters



Accepted:
compiz-fusion-plugins-extra_0.9.2.1+git20110224.e621355c-2.debian.tar.gz
  to 
main/c/compiz-fusion-plugins-extra/compiz-fusion-plugins-extra_0.9.2.1+git20110224.e621355c-2.debian.tar.gz
compiz-fusion-plugins-extra_0.9.2.1+git20110224.e621355c-2.dsc
  to 
main/c/compiz-fusion-plugins-extra/compiz-fusion-plugins-extra_0.9.2.1+git20110224.e621355c-2.dsc
compiz-fusion-plugins-extra_0.9.2.1+git20110224.e621355c-2_i386.deb
  to 
main/c/compiz-fusion-plugins-extra/compiz-fusion-plugins-extra_0.9.2.1+git20110224.e621355c-2_i386.deb


Override entries for your package:
compiz-fusion-plugins-extra_0.9.2.1+git20110224.e621355c-2.dsc - source x11
compiz-fusion-plugins-extra_0.9.2.1+git20110224.e621355c-2_i386.deb - extra x11

Announcing to debian-devel-chan...@lists.debian.org


Thank you for your contribution to Debian.


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



xserver-xorg-video-nouveau: Changes to 'pristine-tar'

2011-03-05 Thread Sven Joachim
 xserver-xorg-video-nouveau_0.0.16+git20110305+92db2bc.orig.tar.gz.delta |binary
 xserver-xorg-video-nouveau_0.0.16+git20110305+92db2bc.orig.tar.gz.id|1 
+
 2 files changed, 1 insertion(+)

New commits:
commit e4bdd672983f4372099611984ec6a47dc45492c5
Author: Sven Joachim 
Date:   Sat Mar 5 10:07:40 2011 +0100

pristine-tar data for 
xserver-xorg-video-nouveau_0.0.16+git20110305+92db2bc.orig.tar.gz

diff --git 
a/xserver-xorg-video-nouveau_0.0.16+git20110305+92db2bc.orig.tar.gz.delta 
b/xserver-xorg-video-nouveau_0.0.16+git20110305+92db2bc.orig.tar.gz.delta
new file mode 100644
index 000..48f80d2
Binary files /dev/null and 
b/xserver-xorg-video-nouveau_0.0.16+git20110305+92db2bc.orig.tar.gz.delta differ
diff --git 
a/xserver-xorg-video-nouveau_0.0.16+git20110305+92db2bc.orig.tar.gz.id 
b/xserver-xorg-video-nouveau_0.0.16+git20110305+92db2bc.orig.tar.gz.id
new file mode 100644
index 000..30fad1d
--- /dev/null
+++ b/xserver-xorg-video-nouveau_0.0.16+git20110305+92db2bc.orig.tar.gz.id
@@ -0,0 +1 @@
+92db2bc192a074d4b7fc3e9c16e9aa62a8deaeb6


-- 
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/e1pvp7m-00070u...@alioth.debian.org



xserver-xorg-video-nouveau: Changes to 'upstream-experimental'

2011-03-05 Thread Sven Joachim
 configure.ac  |   15 
 man/nouveau.man   |3 
 src/Makefile.am   |3 
 src/drmmode_display.c |   42 -
 src/nouveau_class.h   |  975 
 src/nouveau_dri2.c|   20 
 src/nouveau_exa.c |   50 +-
 src/nouveau_local.h   |3 
 src/nouveau_wfb.c |5 
 src/nouveau_xv.c  |   59 +-
 src/nv04_exa.c|8 
 src/nv04_xv_blit.c|2 
 src/nv10_exa.c|1 
 src/nv30_exa.c|1 
 src/nv30_shaders.c|1 
 src/nv30_xv_tex.c |1 
 src/nv40_exa.c|1 
 src/nv40_xv_tex.c |1 
 src/nv50_accel.c  |   41 -
 src/nv50_accel.h  |   12 
 src/nv50_defs.xml.h   |  144 +
 src/nv50_exa.c|5 
 src/nv50_xv.c |  141 +
 src/nv_3ddefs.xml.h   |   93 +++
 src/nv_accel_common.c |   91 ++-
 src/nv_const.h|2 
 src/nv_dma.c  |   21 
 src/nv_driver.c   |   38 +
 src/nv_include.h  |2 
 src/nv_object.xml.h   |  246 ++
 src/nv_proto.h|   37 +
 src/nvc0_3d.xml.h | 1093 +
 src/nvc0_accel.c  |  731 ++
 src/nvc0_accel.h  |   83 +++
 src/nvc0_exa.c| 1204 ++
 src/nvc0_m2mf.xml.h   |  138 +
 src/nvc0_xv.c |  427 +
 37 files changed, 4629 insertions(+),  deletions(-)

New commits:
commit 92db2bc192a074d4b7fc3e9c16e9aa62a8deaeb6
Author: Christoph Bumiller 
Date:   Thu Mar 3 22:17:23 2011 +0100

nvc0/accel: allow nvc1,nvc3,nvc4 in 3D engine init and use 9097

diff --git a/src/nvc0_accel.c b/src/nvc0_accel.c
index aef8305..c37b30c 100644
--- a/src/nvc0_accel.c
+++ b/src/nvc0_accel.c
@@ -92,6 +92,9 @@ NVAccelInit3D_NVC0(ScrnInfoPtr pScrn)
 
switch (pNv->dev->chipset) {
case 0xc0:
+   case 0xc1:
+   case 0xc3:
+   case 0xc4:
tclClass = 0x9097;
break;
default:

commit ace98a492353e6de712f4f717e6d3f562e3591f0
Author: Ben Skeggs 
Date:   Tue Mar 1 13:54:38 2011 +1000

dri2: return an error rather than crashing if we can't allocate a buffer

Signed-off-by: Ben Skeggs 

diff --git a/src/nouveau_dri2.c b/src/nouveau_dri2.c
index d5afa8a..1a68ed3 100644
--- a/src/nouveau_dri2.c
+++ b/src/nouveau_dri2.c
@@ -29,6 +29,7 @@ nouveau_dri2_create_buffer(DrawablePtr pDraw, unsigned int 
attachment,
ScreenPtr pScreen = pDraw->pScreen;
NVPtr pNv = NVPTR(xf86Screens[pScreen->myNum]);
struct nouveau_dri2_buffer *nvbuf;
+   struct nouveau_pixmap *nvpix;
PixmapPtr ppix;
 
nvbuf = calloc(1, sizeof(*nvbuf));
@@ -70,7 +71,14 @@ nouveau_dri2_create_buffer(DrawablePtr pDraw, unsigned int 
attachment,
nvbuf->base.flags = 0;
nvbuf->ppix = ppix;
 
-   nouveau_bo_handle_get(nouveau_pixmap(ppix)->bo, &nvbuf->base.name);
+   nvpix = nouveau_pixmap(ppix);
+   if (!nvpix || !nvpix->bo ||
+   nouveau_bo_handle_get(nvpix->bo, &nvbuf->base.name)) {
+   pScreen->DestroyPixmap(nvbuf->ppix);
+   free(nvbuf);
+   return NULL;
+   }
+
return &nvbuf->base;
 }
 

commit bc5dec2ca7ca7edc340a99bd73946e228117dfd8
Author: Ben Skeggs 
Date:   Thu Feb 24 15:15:00 2011 +1000

dri2: disable page flipping if any crtc is rotated

Signed-off-by: Ben Skeggs 

diff --git a/src/nouveau_dri2.c b/src/nouveau_dri2.c
index 45add0f..d5afa8a 100644
--- a/src/nouveau_dri2.c
+++ b/src/nouveau_dri2.c
@@ -134,7 +134,16 @@ static Bool
 can_exchange(DrawablePtr draw, PixmapPtr dst_pix, PixmapPtr src_pix)
 {
ScrnInfoPtr scrn = xf86Screens[draw->pScreen->myNum];
+   xf86CrtcConfigPtr xf86_config = XF86_CRTC_CONFIG_PTR(scrn);
NVPtr pNv = NVPTR(scrn);
+   int i;
+
+   for (i = 0; i < xf86_config->num_crtc; i++) {
+   xf86CrtcPtr crtc = xf86_config->crtc[i];
+   if (crtc->enabled && crtc->rotatedData)
+   return FALSE;
+
+   }
 
return (!nouveau_exa_pixmap_is_onscreen(dst_pix) ||
(DRI2CanFlip(draw) && pNv->has_pageflip)) &&

commit c123618470b5ff32c6377a4cae0f148d4a518a5d
Author: Francesco Marella 
Date:   Thu Feb 17 03:48:16 2011 +0100

Fix gcc 4.6.0 set but unused variable warnings

Signed-off-by: Francesco Marella 
Signed-off-by: Ben Skeggs 

diff --git a/src/drmmode_display.c b/src/drmmode_display.c
index d14dd80..43a2672 100644
--- a/src/drmmode_display.c
+++ b/src/drmmode_display.c
@@ -1158,7 +1158,6 @@ static const xf86CrtcConfigFuncsRec 
drmmode_xf86crtc_config_funcs = {
 
 Bool drmmode_pre_init(ScrnInfoPtr pScrn, int fd, int cpp)
 {
-   xf86CrtcConfigPtr   xf86_config;
drmmode_ptr drmmode;
int i;
 
@@ -1167,7 +1166,6 @@ Bool drmmode_pre_init(ScrnInfoPtr pScrn, int fd, int cpp)
drmmode->fb_id = 0;
 
xf86CrtcConfigInit(pScrn, &drmmode_xf86crtc_config_funcs);
-   xf86_

xserver-xorg-video-nouveau: Changes to 'debian-experimental'

2011-03-05 Thread Sven Joachim
 ChangeLog  |  338 
 configure.ac   |   15 
 debian/NEWS.Debian |8 
 debian/README.Debian   |   23 
 debian/changelog   |   19 
 debian/control |2 
 debian/xorg.conf   |6 
 debian/xserver-xorg-video-nouveau.examples |1 
 man/nouveau.man|3 
 src/Makefile.am|3 
 src/drmmode_display.c  |   42 -
 src/nouveau_class.h|  975 ---
 src/nouveau_dri2.c |   20 
 src/nouveau_exa.c  |   50 +
 src/nouveau_local.h|3 
 src/nouveau_wfb.c  |5 
 src/nouveau_xv.c   |   59 +
 src/nv04_exa.c |8 
 src/nv04_xv_blit.c |2 
 src/nv10_exa.c |1 
 src/nv30_exa.c |1 
 src/nv30_shaders.c |1 
 src/nv30_xv_tex.c  |1 
 src/nv40_exa.c |1 
 src/nv40_xv_tex.c  |1 
 src/nv50_accel.c   |   41 
 src/nv50_accel.h   |   12 
 src/nv50_defs.xml.h|  144 +++
 src/nv50_exa.c |5 
 src/nv50_xv.c  |  141 +++
 src/nv_3ddefs.xml.h|   93 ++
 src/nv_accel_common.c  |   91 +-
 src/nv_const.h |2 
 src/nv_dma.c   |   21 
 src/nv_driver.c|   38 
 src/nv_include.h   |2 
 src/nv_object.xml.h|  246 +
 src/nv_proto.h |   37 
 src/nvc0_3d.xml.h  | 1093 ++
 src/nvc0_accel.c   |  731 +
 src/nvc0_accel.h   |   83 +
 src/nvc0_exa.c | 1204 +
 src/nvc0_m2mf.xml.h|  138 +++
 src/nvc0_xv.c  |  427 ++
 44 files changed, 5004 insertions(+), 1133 deletions(-)

New commits:
commit b9223f7471fb6ace5501ef7970d76f29439a0cb6
Author: Sven Joachim 
Date:   Sat Mar 5 11:46:21 2011 +0100

Remove the sample xorg.conf

It is not needed and may even be harmful because it prevents X from
falling back to fbdev in case of a DRM ABI mismatch between kernel and
userspace.

diff --git a/debian/changelog b/debian/changelog
index 0e91913..b7fc431 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -13,6 +13,7 @@ xserver-xorg-video-nouveau (1:0.0.16+git20110305+92db2bc-1) 
UNRELEASED; urgency=
   work as of Linux 2.6.35.
 - Don't mention nv anymore, it has been removed from Debian.
   * Drop unnecessary leading asterisk from NEWS.Debian.
+  * Drop the sample xorg.conf, no longer needed.
 
  -- Sven Joachim   Sat, 05 Mar 2011 10:13:42 +0100
 
diff --git a/debian/xorg.conf b/debian/xorg.conf
deleted file mode 100644
index 5cc6911..000
--- a/debian/xorg.conf
+++ /dev/null
@@ -1,6 +0,0 @@
-# Minimal xorg.conf for the Nouveau driver
-
-Section "Device"
-   Identifier  "Default screen"
-   Driver  "nouveau"
-EndSection
diff --git a/debian/xserver-xorg-video-nouveau.examples 
b/debian/xserver-xorg-video-nouveau.examples
deleted file mode 100644
index c28ba96..000
--- a/debian/xserver-xorg-video-nouveau.examples
+++ /dev/null
@@ -1 +0,0 @@
-debian/xorg.conf

commit 9c2b34c298f4b5785a3503058b40a3fda40bb298
Author: Sven Joachim 
Date:   Sat Mar 5 11:23:58 2011 +0100

Drop unnecessary leading asterisk from NEWS.Debian

Fixes a lintian informational warning.

diff --git a/debian/NEWS.Debian b/debian/NEWS.Debian
index 5df80f4..b585dd1 100644
--- a/debian/NEWS.Debian
+++ b/debian/NEWS.Debian
@@ -1,7 +1,7 @@
 xserver-xorg-video-nouveau (1:0.0.16+git20100518+4b8f1a0-1) experimental; 
urgency=low
-  
-  * This version of xserver-xorg-video-nouveau is linked against a newer
-libdrm-nouveau which breaks the ABI and is not compatible with kernels
-<= 2.6.33.  You need to upgrade the kernel to 2.6.34-rc1 or newer.
+
+  This version of xserver-xorg-video-nouveau is linked against a newer
+  libdrm-nouveau which breaks the ABI and is not compatible with kernels
+  <= 2.6.33.  You need to upgrade the kernel to 2.6.34-rc1 or newer.
 
  -- Sven Joachim   Sat, 22 May 2010 10:22:42 +0200
diff --git a/debian/changelog b/debian/changelog
index e37b178..0e91913 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -12,6 +12,7 @@ xserver-xorg-video-nouveau (1:0.0.16+git20110305+92db2bc-1) 
UNRELEASED;

Bug#609533: [xserver-xorg-video-radeon] Reproducible X crash when rotating images in GIMP with raster on

2011-03-05 Thread andreaf
>> I think this should be fixed in xserver-xorg-video-radeon 1:6.14.0-1 .
> Marking as such, we can reopen if the submitter can still reproduce.

Thanks! However, how can I test this? I'm on Squeeze, and the 1:6.14.0-1 
package from unstable does not install because of dependencies. Will 6.14.0 be 
migrated to Squeeze eventually?
-- 
Schon gehört? GMX hat einen genialen Phishing-Filter in die
Toolbar eingebaut! http://www.gmx.net/de/go/toolbar



-- 
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/20110305123457.27...@gmx.net



Bug#609533: [xserver-xorg-video-radeon] Reproducible X crash when rotating images in GIMP with raster on

2011-03-05 Thread Cyril Brulebois
Hi,

andr...@gmx.li  (05/03/2011):
> Thanks! However, how can I test this? I'm on Squeeze, and the
> 1:6.14.0-1 package from unstable does not install because of
> dependencies. Will 6.14.0 be migrated to Squeeze eventually?

only through backports, see first point in:
  http://blog.ikibiki.org/2011/03/04/DXN-7/

KiBi.


signature.asc
Description: Digital signature


Bug#592504: marked as done (Please provide a libxtst6 udeb)

2011-03-05 Thread Debian Bug Tracking System
Your message dated Sat, 05 Mar 2011 12:48:53 +
with message-id 
and subject line Bug#592504: fixed in libxtst 2:1.2.0-2
has caused the Debian Bug report #592504,
regarding Please provide a libxtst6 udeb
to be marked as done.

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

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


-- 
592504: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=592504
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libxtst6
Version: 2:1.1.0-3
Severity: wishlist
Tags: d-i patch

I'm currently working on Debian Installer for the FreeRunner, and, as it
doesn't have a physical keyboard, the graphical installer would be useless
without an on-screen keyboard.
I chose to use matchbox-keyboard to provide an on-screen keyboard, as it has
few dependencies and provides a GTK input method module (so the screen can pop
only when needed).
matchbox-keyboard depends on libxtst6 and libfakekey0 (which depends on
libxtst6 too), so please provide a libxtst6 udeb.



-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (120, 'unstable'), (105, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.35-rc3+ (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages libxtst6 depends on:
ii  libc6 2.11.2-2   Embedded GNU C Library: Shared lib
ii  libx11-6  2:1.3.3-3  X11 client-side library
ii  libxext6  2:1.1.2-1  X11 miscellaneous extension librar
ii  libxi62:1.3-4X11 Input extension library
ii  x11-common1:7.5+6X Window System (X.Org) infrastruc

libxtst6 recommends no packages.

libxtst6 suggests no packages.

-- no debconf information
diff -r affb9c86f505 libxtst-1.1.0/debian/control
--- a/libxtst-1.1.0/debian/control	Fri Aug 06 04:26:57 2010 +0200
+++ b/libxtst-1.1.0/debian/control	Tue Aug 10 17:47:47 2010 +0200
@@ -38,6 +38,14 @@
  This module can be found at
  git://anongit.freedesktop.org/git/xorg/lib/libXtst
 
+Package: libxtst6-udeb
+Section: debian-installer
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+XC-Package-Type: udeb
+Description: X11 Testing -- Record extension library
+ This is a udeb, or a microdeb, for the debian-installer.
+
 Package: libxtst6-dbg
 Architecture: any
 Section: debug
diff -r affb9c86f505 libxtst-1.1.0/debian/libxtst6-udeb.install
--- /dev/null	Thu Jan 01 00:00:00 1970 +
+++ b/libxtst-1.1.0/debian/libxtst6-udeb.install	Tue Aug 10 17:47:47 2010 +0200
@@ -0,0 +1,1 @@
+usr/lib/libXtst.so.6*
diff -r affb9c86f505 libxtst-1.1.0/debian/rules
--- a/libxtst-1.1.0/debian/rules	Fri Aug 06 04:26:57 2010 +0200
+++ b/libxtst-1.1.0/debian/rules	Tue Aug 10 17:47:47 2010 +0200
@@ -82,7 +82,7 @@
 	dh_strip --dbg-package=$(PACKAGE)-dbg
 	dh_compress
 	dh_fixperms
-	dh_makeshlibs
+	dh_makeshlibs --add-udeb=$(PACKAGE)-udeb
 	dh_shlibdeps
 	dh_installdeb
 	dh_gencontrol
--- End Message ---
--- Begin Message ---
Source: libxtst
Source-Version: 2:1.2.0-2

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

libxtst-dev_1.2.0-2_amd64.deb
  to main/libx/libxtst/libxtst-dev_1.2.0-2_amd64.deb
libxtst6-dbg_1.2.0-2_amd64.deb
  to main/libx/libxtst/libxtst6-dbg_1.2.0-2_amd64.deb
libxtst6-udeb_1.2.0-2_amd64.udeb
  to main/libx/libxtst/libxtst6-udeb_1.2.0-2_amd64.udeb
libxtst6_1.2.0-2_amd64.deb
  to main/libx/libxtst/libxtst6_1.2.0-2_amd64.deb
libxtst_1.2.0-2.diff.gz
  to main/libx/libxtst/libxtst_1.2.0-2.diff.gz
libxtst_1.2.0-2.dsc
  to main/libx/libxtst/libxtst_1.2.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 592...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Cyril Brulebois  (supplier of updated libxtst package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 24 Feb 2011 16:47:44 +0100
Source: libxtst
Binary: libxtst6 libxtst6-udeb libxtst6-dbg libxtst-dev
Architecture: source amd64
Version: 2:1.2.0-2
Distribution: experimental
Urgency: low
Maintainer: Debian X Strike Force 
Changed-By: Cyril Brulebois 
Description: 
 libxtst-dev - X11 Record extens

libxtst_1.2.0-2_amd64.changes ACCEPTED into experimental

2011-03-05 Thread Debian FTP Masters



Accepted:
libxtst-dev_1.2.0-2_amd64.deb
  to main/libx/libxtst/libxtst-dev_1.2.0-2_amd64.deb
libxtst6-dbg_1.2.0-2_amd64.deb
  to main/libx/libxtst/libxtst6-dbg_1.2.0-2_amd64.deb
libxtst6-udeb_1.2.0-2_amd64.udeb
  to main/libx/libxtst/libxtst6-udeb_1.2.0-2_amd64.udeb
libxtst6_1.2.0-2_amd64.deb
  to main/libx/libxtst/libxtst6_1.2.0-2_amd64.deb
libxtst_1.2.0-2.diff.gz
  to main/libx/libxtst/libxtst_1.2.0-2.diff.gz
libxtst_1.2.0-2.dsc
  to main/libx/libxtst/libxtst_1.2.0-2.dsc


Override entries for your package:
libxtst-dev_1.2.0-2_amd64.deb - optional libdevel
libxtst6-dbg_1.2.0-2_amd64.deb - extra debug
libxtst6-udeb_1.2.0-2_amd64.udeb - optional debian-installer
libxtst6_1.2.0-2_amd64.deb - optional libs
libxtst_1.2.0-2.dsc - source x11

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


Thank you for your contribution to Debian.


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



Bug#616301: xserver-xorg-video-radeon:screen goes black, system hangs after 2sec:[youtube(FF/Opera)-reset req.]

2011-03-05 Thread Herber Sylwester

Hi there.

W dniu 04.03.2011 22:44, Cyril Brulebois pisze:

Hi,

Herber Sylwester  (03/03/2011):

What I can tell from /var/log/apt/history.log
[…]


hmm, nothing seems related. Any chance you upgraded something in the
kernel/X stack before that, and only restarted your X or rebooted
lately?

KiBi.



Mayby the upgrade was just a time related coincidence.
After the upgrade i did niether reboot the machine nor restart the X-server.
I remeber that 2nd I've watched few Youtube videos and it was fine.
Don't know if attaching history.log for february will do any good.
I did not do any manual enhancements to the system especially the kernel 
part.

Regards,
Herber Sylwester.


history.log.1.gz
Description: GNU Zip compressed data


xserver-xorg-video-openchrome_0.2.904+svn916-2_amd64.changes ACCEPTED into experimental

2011-03-05 Thread Debian FTP Masters



Accepted:
xserver-xorg-video-openchrome-dbg_0.2.904+svn916-2_amd64.deb
  to 
main/x/xserver-xorg-video-openchrome/xserver-xorg-video-openchrome-dbg_0.2.904+svn916-2_amd64.deb
xserver-xorg-video-openchrome_0.2.904+svn916-2.diff.gz
  to 
main/x/xserver-xorg-video-openchrome/xserver-xorg-video-openchrome_0.2.904+svn916-2.diff.gz
xserver-xorg-video-openchrome_0.2.904+svn916-2.dsc
  to 
main/x/xserver-xorg-video-openchrome/xserver-xorg-video-openchrome_0.2.904+svn916-2.dsc
xserver-xorg-video-openchrome_0.2.904+svn916-2_amd64.deb
  to 
main/x/xserver-xorg-video-openchrome/xserver-xorg-video-openchrome_0.2.904+svn916-2_amd64.deb


Override entries for your package:
xserver-xorg-video-openchrome-dbg_0.2.904+svn916-2_amd64.deb - extra debug
xserver-xorg-video-openchrome_0.2.904+svn916-2.dsc - source x11
xserver-xorg-video-openchrome_0.2.904+svn916-2_amd64.deb - optional x11

Announcing to debian-devel-chan...@lists.debian.org


Thank you for your contribution to Debian.


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



Bug#616010: Is this normal behaviour for dexconf ?

2011-03-05 Thread bergerp

Hello,

Reading the previous messages, I am not sure I understand why this bug 
report should be closed. Is it normal that there is no way to generate 
xorg.conf for Xserver versions >= 1.7.4 ? I thought the purpose of 
dexconf was precisely to generate the xorg.conf for information or 
customization purposes in case the auto detection does not yield 
satisfactory results. Is there any other way the user can have access to 
or modify parameters such as the video driver ?


Maybe I get this wrong and I should proceed in some other way to get 
this information, but the silent dexconf failure does not seem very 
clean anyway, especially if you consider that the code returned by 
dexconf when this failure happens is 10 whereas the manpage indicates 
that 0 and 1 are the two only possible exit codes (see below) :


root@pierre:~# dexconf --output=xorg.test
root@pierre:~# echo $?
10

Thanks !

Pierre



--
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/4d723d00.90...@laposte.net



Bug#616010: Is this normal behaviour for dexconf ?

2011-03-05 Thread Cyril Brulebois
Hi,

bergerp  (05/03/2011):
> Reading the previous messages, I am not sure I understand why this
> bug report should be closed. Is it normal that there is no way to
> generate xorg.conf for Xserver versions >= 1.7.4 ?

yes. Xorg works without any configuration in almost all cases (and we
even removed dexconf in further versions of xorg packages). -configure
can generate a template if you really need something to start
from. There's the xorg.conf manpage, too.

And I said:
> I'm not sure we want to maintain an xorg.conf generator just for
> some corner cases.

KiBi.


signature.asc
Description: Digital signature


Bug#615959: happens more often

2011-03-05 Thread Johannes Berg
John,

> Johannes could you please tell me if you see this?  I'm unsure if my 
> mail is working.

Yes, seems fine :-)

> I had the problems you speak of at one time.  I had *thought* my gnome 
> were installed but infact the libs were not all installed correctly. 
> Was it an installer problem?  I don't remember - but the problem had too 
> many details to see in a glance.  I would guess someone already asked 
> you to recheck libs.

Interesting. Nobody has yet to ask me to check anything. Any libraries
in particular that I should be checking?

Thanks,
Johannes




-- 
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/1299334025.3826.7.ca...@jlt3.sipsolutions.net



Bug#615959: happens more often

2011-03-05 Thread Cyril Brulebois
Hi,

Johannes Berg  (04/03/2011):
> It seems that this problem isn't just confined to libreoffice. I've
> also had it happen with abiword and gimp now, with no particular
> special documents/images.

could you please tell us how it goes with vesa or fbdev instead of
nouveau? It might be nice to attach an (old) Xorg log, from a crash.

(I didn't reply yet since Sven is usually taking care of nouveau bugs,
but he might have missed it since it wasn't filed against the nouveau
driver. We'll see later if it has to be reassigned.)

KiBi.


signature.asc
Description: Digital signature


libxt: Changes to 'refs/tags/libxt-1_1.1.0-1'

2011-03-05 Thread Cyril Brulebois
Tag 'libxt-1_1.1.0-1' created by Cyril Brulebois  at 
2011-03-05 15:21 +

Tagging upload of libxt 1:1.1.0-1 to unstable.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iEYEABECAAYFAk1yVO0ACgkQeGfVPHR5Nd3h2QCfZunBFUkhsDGpdfvDsZ5MaR4I
hlsAn0JEf8Reym6VBPDyLHIzHyWjYKeX
=ETo/
-END PGP SIGNATURE-

Changes since libxt-1_1.0.9-2:
Alan Coopersmith (11):
  Remove non-USE_SNPRINTF case from src/Error.c
  Remove ancient #if defined(macII) hack for A/UX from makestrs.c
  config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
  config: AC_PROG_CC is provided by XORG_DEFAULT_OPTIONS now
  Convert some sprintf calls to snprintf
  Add XtAsprintf() as a new exported API
  Convert ResConfig.c to use XtAsprintf() instead of XtMalloc + sprintf
  Convert ALLOCATE_LOCAL + sprintf to XtAsprintf
  Remove unused #ifdef UNALIGNED version of Xt macros & functions
  GetResources: protect against underflow when type conversion fails
  Shell.c: TopLevelSetValues ignores iconic state if shell not yet realized

Cyril Brulebois (5):
  Merge branch 'upstream-unstable' into debian-unstable
  Bump changelogs.
  Update debian/copyright from upstream COPYING.
  Update symbols file (add XtAsprintf).
  Upload to unstable.

Gaetan Nadon (2):
  config: replace deprecated AC_HELP_STRING with AS_HELP_STRING
  config: comment, minor upgrade, quote and layout configure.ac

Jeremy Huddleston (2):
  darwin: Don't use poll() when expected to run on darwin10 and prior
  configure: Bump version to 1.1.0 for release

Julien Cristau (1):
  Delete libtool m4 files in clean.

walter harms (4):
  XtFree() can handle NULL , remove check
  src/Resource.c: Fix possible NULL access
  QueryEventMask: fix NULL check
  remove strcmp in src/ResConfig.c

---
 COPYING  |2 
 ChangeLog|  414 +++
 configure.ac |  123 +++--
 debian/changelog |   13 +
 debian/copyright |2 
 debian/libxt6.symbols|1 
 debian/rules |1 
 include/X11/Intrinsic.h  |9 +
 include/X11/IntrinsicI.h |   33 ---
 man/Makefile.am  |3 
 man/XtAsprintf.man   |1 
 man/XtMalloc.man |   18 ++
 src/Alloc.c  |   41 
 src/Error.c  |   18 --
 src/Initialize.c |   25 +-
 src/Keyboard.c   |   26 +-
 src/ResConfig.c  |   42 +---
 src/Resources.c  |   95 --
 src/Selection.c  |2 
 src/Shell.c  |9 -
 src/Varargs.c|5 
 util/makestrs.c  |3 
 22 files changed, 622 insertions(+), 264 deletions(-)
---


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



libxt: Changes to 'upstream-unstable'

2011-03-05 Thread Cyril Brulebois
 COPYING  |2 
 configure.ac |  123 ++-
 include/X11/Intrinsic.h  |9 +++
 include/X11/IntrinsicI.h |   33 
 man/Makefile.am  |3 -
 man/XtAsprintf.man   |1 
 man/XtMalloc.man |   18 ++
 src/Alloc.c  |   41 +++
 src/Error.c  |   18 --
 src/Initialize.c |   25 +++--
 src/Keyboard.c   |   26 +
 src/ResConfig.c  |   42 +++-
 src/Resources.c  |   95 +---
 src/Selection.c  |2 
 src/Shell.c  |9 ++-
 src/Varargs.c|5 -
 util/makestrs.c  |3 -
 17 files changed, 192 insertions(+), 263 deletions(-)

New commits:
commit 994443524ade46bad03eea0acbd1410d561c591d
Author: Jeremy Huddleston 
Date:   Fri Mar 4 16:30:58 2011 -0800

configure: Bump version to 1.1.0 for release

Signed-off-by: Jeremy Huddleston 

diff --git a/configure.ac b/configure.ac
index 2c35ea4..e268aa6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -22,7 +22,7 @@
 
 # Initialize Autoconf
 AC_PREREQ([2.60])
-AC_INIT([libXt], [1.0.99.1],
+AC_INIT([libXt], [1.1.0],
 [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [libXt])
 AC_CONFIG_SRCDIR([Makefile.am])
 AC_CONFIG_HEADERS([config.h])

commit c0a233895cc8270ec0ff0bd2abb88d3f6dd524c3
Author: Jeremy Huddleston 
Date:   Fri Mar 4 12:49:48 2011 -0800

darwin: Don't use poll() when expected to run on darwin10 and prior

Signed-off-by: Jeremy Huddleston 

diff --git a/configure.ac b/configure.ac
index 77ce341..2c35ea4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -67,11 +67,25 @@ AC_SUBST(LDFLAGS_FOR_BUILD)
 
 # Map function checks to old Imake #defines
 case $host_os in
-   # darwin has poll() but can't be used to poll character devices 
(atleast through SnowLeopard)
-   darwin*) ;;
+   # darwin through Snow Leopard has poll() but can't be used to poll 
character devices.
+   darwin@<:@789@:>@*|darwin10*) ;;
+   darwin*)
+   _ac_xorg_macosx_version_min=""
+   if echo $CPPFLAGS $CFLAGS | grep -q mmacosx-version-min ; then
+   _ac_xorg_macosx_version_min=`echo $CPPFLAGS $CFLAGS | 
sed 's/^.*-mmacosx-version-min=\(@<:@^ @:>@*\).*$/\1/'`
+   else
+   _ac_xorg_macosx_version_min=$MACOSX_DEPLOYMENT_TARGET
+   fi
+   case $_ac_xorg_macosx_version_min in
+   10.@<:@0123456@:>@|10.@<:@0123456@:>@.*) ;;
+   *)
+   AC_CHECK_FUNC(poll, [AC_DEFINE(USE_POLL, 1, 
[poll() function is available])], )
+   ;;
+   esac
+   unset _ac_xorg_macosx_version_min
+   ;;
*)
-   AC_CHECK_FUNC(poll, AC_DEFINE(USE_POLL,1,
-   [Define to 1 if you have the "poll" function.]))
+   AC_CHECK_FUNC(poll, [AC_DEFINE(USE_POLL, 1, [poll() function is 
available])], )
;;
 esac
 

commit abf6062715c7d1390e516261a31abde4ed7ea64e
Author: Alan Coopersmith 
Date:   Wed Feb 2 23:29:46 2011 -0800

Shell.c: TopLevelSetValues ignores iconic state if shell not yet realized

Fix originally created by Leo Binchy for Sun to fix Solaris bug
1243761 The XmNiconic resource doesn't work

Signed-off-by: Alan Coopersmith 

diff --git a/src/Shell.c b/src/Shell.c
index ef6dad2..8a44651 100644
--- a/src/Shell.c
+++ b/src/Shell.c
@@ -2482,6 +2482,10 @@ static Boolean TopLevelSetValues(
XFree((XPointer)icon_name.value);
}
 }
+else if (new->topLevel.iconic != old->topLevel.iconic) {
+   if (new->topLevel.iconic)
+   new->wm.wm_hints.initial_state = IconicState;
+}
 return False;
 }
 

commit b1eaa18835ec7c3a11e580340625b35c18edf7ca
Author: Alan Coopersmith 
Date:   Wed Feb 2 23:21:02 2011 -0800

GetResources: protect against underflow when type conversion fails

Fix originally created by Leo Binchy for Sun to fix Solaris bug 1211553:
 XtVaCreateManagedWidget with list of resources XtVaTypedArg cause core dump

Signed-off-by: Alan Coopersmith 

diff --git a/src/Resources.c b/src/Resources.c
index 304d3d5..dc0f563 100644
--- a/src/Resources.c
+++ b/src/Resources.c
@@ -857,7 +857,7 @@ static XtCacheRef *GetResources(
register XtTypedArg* arg = typed_args + typed[j] - 1;
register int i;
 
-   for (i = num_typed_args - typed[j]; i; i--, arg++) {
+   for (i = num_typed_args - typed[j]; i > 0; i--, arg++) {
*arg = *(arg+1);
}
num_typed_args--;

commit 21c1cc98d8210a3ce2a4bf62ecee9168fdd99dcb
Author: Alan Coopersmith 
Date:   Wed Feb 2 22:42:13 2011 -0800

Remove unused #ifdef UNALIGNED version of Xt macros

libxt: Changes to 'debian-unstable'

2011-03-05 Thread Cyril Brulebois
 COPYING  |2 
 ChangeLog|  414 +++
 configure.ac |  123 +++--
 debian/changelog |   11 +
 debian/copyright |2 
 debian/libxt6.symbols|1 
 include/X11/Intrinsic.h  |9 +
 include/X11/IntrinsicI.h |   33 ---
 man/Makefile.am  |3 
 man/XtAsprintf.man   |1 
 man/XtMalloc.man |   18 ++
 src/Alloc.c  |   41 
 src/Error.c  |   18 --
 src/Initialize.c |   25 +-
 src/Keyboard.c   |   26 +-
 src/ResConfig.c  |   42 +---
 src/Resources.c  |   95 --
 src/Selection.c  |2 
 src/Shell.c  |9 -
 src/Varargs.c|5 
 util/makestrs.c  |3 
 21 files changed, 617 insertions(+), 266 deletions(-)

New commits:
commit 7ac14fcdbdb97db0a145ba1bc974bd14434b5ace
Author: Cyril Brulebois 
Date:   Sat Mar 5 16:15:40 2011 +0100

Upload to unstable.

diff --git a/debian/changelog b/debian/changelog
index 26f3c40..90ad2c0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-libxt (1:1.1.0-1) UNRELEASED; urgency=low
+libxt (1:1.1.0-1) unstable; urgency=low
 
   [ Julien Cristau ]
   * Delete libtool m4 files in clean.
@@ -9,7 +9,7 @@ libxt (1:1.1.0-1) UNRELEASED; urgency=low
   * Update symbols file:
 + XtAsprintf
 
- -- Cyril Brulebois   Sat, 05 Mar 2011 16:07:40 +0100
+ -- Cyril Brulebois   Sat, 05 Mar 2011 16:15:27 +0100
 
 libxt (1:1.0.9-2) unstable; urgency=low
 

commit eb5345e813d55b8714451056f7676efe0b1b6de5
Author: Cyril Brulebois 
Date:   Sat Mar 5 16:15:24 2011 +0100

Update symbols file (add XtAsprintf).

diff --git a/debian/changelog b/debian/changelog
index c78008b..26f3c40 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -6,6 +6,8 @@ libxt (1:1.1.0-1) UNRELEASED; urgency=low
   [ Cyril Brulebois ]
   * New upstream release.
   * Update debian/copyright from upstream COPYING.
+  * Update symbols file:
++ XtAsprintf
 
  -- Cyril Brulebois   Sat, 05 Mar 2011 16:07:40 +0100
 
diff --git a/debian/libxt6.symbols b/debian/libxt6.symbols
index 9e8834c..3d3aaa0 100644
--- a/debian/libxt6.symbols
+++ b/debian/libxt6.symbols
@@ -185,6 +185,7 @@ libXt.so.6 libxt6 #MINVER#
  XtOpenApplication@Base 0
  XtConfigureWidget@Base 0
  XtAppWarningMsg@Base 0
+ XtAsprintf@Base 1:1.1.0
  XtInsertEventTypeHandler@Base 0
  transientShellClassRec@Base 0
  XtAppAddTimeOut@Base 0

commit 3f2dac2169cb96832c5e76e8c4ccb29ccf53744b
Author: Cyril Brulebois 
Date:   Sat Mar 5 16:10:02 2011 +0100

Update debian/copyright from upstream COPYING.

diff --git a/debian/changelog b/debian/changelog
index 05c5b52..c78008b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -5,6 +5,7 @@ libxt (1:1.1.0-1) UNRELEASED; urgency=low
 
   [ Cyril Brulebois ]
   * New upstream release.
+  * Update debian/copyright from upstream COPYING.
 
  -- Cyril Brulebois   Sat, 05 Mar 2011 16:07:40 +0100
 
diff --git a/debian/copyright b/debian/copyright
index 3f371d6..f69a7e4 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -22,7 +22,7 @@ DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE 
OR OTHER
 TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 PERFORMANCE OF THIS SOFTWARE.
 
-Copyright (c) 1993, Oracle and/or its affiliates. All rights reserved.
+Copyright (c) 1993, 2011, Oracle and/or its affiliates. All rights reserved.
 
 Permission is hereby granted, free of charge, to any person obtaining a
 copy of this software and associated documentation files (the "Software"),

commit c427b1cf8f3a6cff116a416b983218b16d78110d
Author: Cyril Brulebois 
Date:   Sat Mar 5 16:09:27 2011 +0100

Bump changelogs.

diff --git a/ChangeLog b/ChangeLog
index 484c7a2..dd53fef 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,417 @@
+commit 994443524ade46bad03eea0acbd1410d561c591d
+Author: Jeremy Huddleston 
+Date:   Fri Mar 4 16:30:58 2011 -0800
+
+configure: Bump version to 1.1.0 for release
+
+Signed-off-by: Jeremy Huddleston 
+
+commit c0a233895cc8270ec0ff0bd2abb88d3f6dd524c3
+Author: Jeremy Huddleston 
+Date:   Fri Mar 4 12:49:48 2011 -0800
+
+darwin: Don't use poll() when expected to run on darwin10 and prior
+
+Signed-off-by: Jeremy Huddleston 
+
+commit abf6062715c7d1390e516261a31abde4ed7ea64e
+Author: Alan Coopersmith 
+Date:   Wed Feb 2 23:29:46 2011 -0800
+
+Shell.c: TopLevelSetValues ignores iconic state if shell not yet realized
+
+Fix originally created by Leo Binchy for Sun to fix Solaris bug
+1243761 The XmNiconic resource doesn't work
+
+Signed-off-by: Alan Coopersmith 
+
+commit b1eaa18835ec7c3a11e580340625b35c18edf7ca
+Author: Alan Coopersmith 
+Date:   Wed Feb 2 23:21:02 2011 -0800
+
+GetResources: protect against underflow when type conversion fails
+
+Fix originally created by Leo Binchy for Sun to fix Solaris bug 1211553:
+ XtVaCreateManagedWidget with list 

Bug#616301: xserver-xorg-video-radeon:screen goes black, system hangs after 2sec:[youtube(FF/Opera)-reset req.]

2011-03-05 Thread Herber Sylwester

Hi there.
W dniu 04.03.2011 22:44, Cyril Brulebois pisze:

Hi,

Herber Sylwester  (03/03/2011):

What I can tell from /var/log/apt/history.log
[…]


hmm, nothing seems related. Any chance you upgraded something in the
kernel/X stack before that, and only restarted your X or rebooted
lately?

KiBi.


Todays update:

Start-Date: 2011-03-05  16:03:36
Commandline: apt-get dist-upgrade
Install: libglib2.0-bin:i386 (2.28.1-1+b1, automatic), gcc-4.5-base:i386 
(4.5.2-4, automatic), libboost-program-options1.42.0:i386 (1.42.0-4, 
automatic), libsoundtouch0:i386 (1.5.0-4, automatic)
Upgrade: browser-plugin-gnash:i386 (0.8.8-9, 0.8.9~git20110220-1), 
libjna-java:i386 (3.2.4-2, 3.2.7-1), libstdc++6:i386 (4.4.5-12, 
4.5.2-4), libwildmidi1:i386 (0.2.3.2-2, 0.2.3.4-1), rpm2cpio:i386 
(4.8.1-6, 4.8.1-7), librpmbuild1:i386 (4.8.1-6, 4.8.1-7), libmpfr4:i386 
(3.0.0-2, 3.0.0-7), python-mako:i386 (0.3.6-1, 0.4.0-1), 
libportaudio2:i386 (19+svn20071022-3.2, 19+svn20101113-3), xsane:i386 
(0.997-2+b1, 0.998-1), mobile-broadband-provider-info:i386 (20101106-1, 
20110218-1), libk3b6:i386 (2.0.2-1, 2.0.2-1+b1), libglib2.0-dev:i386 
(2.24.2-1, 2.28.1-1+b1), libutempter0:i386 (1.1.5-3, 1.1.5-4), 
hplip-cups:i386 (3.10.6-2, 3.11.1-2), libx11-data:i386 (1.4.1-4, 
1.4.1-5), libgfortran3:i386 (4.4.5-12, 4.5.2-4), iputils-ping:i386 
(20100418-3, 20101006-1), hpijs:i386 (3.10.6-2, 3.11.1-2), hplip:i386 
(3.10.6-2, 3.11.1-2), libsqlite3-dev:i386 (3.7.4-2, 3.7.5-1), 
librpmio1:i386 (4.8.1-6, 4.8.1-7), librpm1:i386 (4.8.1-6, 4.8.1-7), 
rpm-common:i386 (4.8.1-6, 4.8.1-7), libgomp1:i386 (4.4.5-12, 4.5.2-4), 
libpcre3:i386 (8.02-1.1, 8.12-3), libx11-xcb1:i386 (1.4.1-4, 1.4.1-5), 
libsqlite3-0:i386 (3.7.4-2, 3.7.5-1), k3b:i386 (2.0.2-1, 2.0.2-1+b1), 
libgcc1:i386 (4.4.5-12, 4.5.2-4), konqueror-plugin-gnash:i386 (0.8.8-9, 
0.8.9~git20110220-1), libhpmud0:i386 (3.10.6-2, 3.11.1-2), w3m:i386 
(0.5.3-1, 0.5.3-2), mozilla-plugin-gnash:i386 (0.8.8-9, 
0.8.9~git20110220-1), python-pysqlite2:i386 (2.6.0-1, 2.6.3-1), 
libglib2.0-data:i386 (2.24.2-1, 2.28.1-1), libfreetype6-dev:i386 
(2.4.2-2.1, 2.4.4-1), xdg-utils:i386 (1.1.0~rc1-1, 1.1.0~rc1-2), 
rpm:i386 (4.8.1-6, 4.8.1-7), gstreamer0.10-plugins-bad:i386 
(0.10.19-2+b2, 0.10.19-2.1), libgcc1-dbg:i386 (4.4.5-12, 4.5.2-4), 
xsane-common:i386 (0.997-2, 0.998-1), libemail-mime-perl:i386 (1.906-1, 
1.907-1), libfreetype6:i386 (2.4.2-2.1, 2.4.4-1), gnash:i386 (0.8.8-9, 
0.8.9~git20110220-1), libglib2.0-0:i386 (2.24.2-1, 2.28.1-1+b1), 
libk3b6-extracodecs:i386 (2.0.2-1, 2.0.2-1+b1), libsane-hpaio:i386 
(3.10.6-2, 3.11.1-2), libx11-6:i386 (1.4.1-4, 1.4.1-5), 
pkg-kde-tools:i386 (0.9.3, 0.9.5), klash:i386 (0.8.8-9, 
0.8.9~git20110220-1), libx11-dev:i386 (1.4.1-4, 1.4.1-5), libobjc2:i386 
(4.4.5-12, 4.5.2-4), gnash-common:i386 (0.8.8-9, 0.8.9~git20110220-1), 
sqlite3:i386 (3.7.4-2, 3.7.5-1), binfmt-support:i386 (2.0.2, 2.0.3), 
eject:i386 (2.1.5+deb1+cvs20081104-7.1, 2.1.5+deb1+cvs20081104-8), 
libmms0:i386 (0.6.2-1, 0.6.2-2), hplip-data:i386 (3.10.6-2, 3.11.1-2)

End-Date: 2011-03-05  16:06:20

Did not help either.
I'm starting to think it may be caussed by hardware malfunction. (wild 
goose chase?)
I've noticed that system does not hang - I'm able to go to a console 
login and reboot. The screen ends 10cm below the monitor so i have to 
gues some things. If it would be helpful I may try to record the incident.

Sincerely,
Herber Sylwester.




--
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/4d725587.5070...@oomkill.net



Bug#567264: xserver-xorg-core: 16 bpp display is very dim on powerpc

2011-03-05 Thread Cyril Brulebois
Hi,

Phil Armstrong  (05/03/2011):
> Having done some testing today this bug appears to be fixed in the
> Squeeze release of Xorg. Bpth 15bpp and 16bpp screens worked
> perfectly.

thanks for the follow-up!

KiBi.


signature.asc
Description: Digital signature


Processing of libxt_1.1.0-1_amd64.changes

2011-03-05 Thread Debian FTP Masters
libxt_1.1.0-1_amd64.changes uploaded successfully to localhost
along with the files:
  libxt_1.1.0-1.dsc
  libxt_1.1.0.orig.tar.gz
  libxt_1.1.0-1.diff.gz
  libxt6_1.1.0-1_amd64.deb
  libxt6-dbg_1.1.0-1_amd64.deb
  libxt-dev_1.1.0-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/e1pvtk5-00065t...@franck.debian.org



xserver-xorg-input-synaptics: Changes to 'debian-experimental'

2011-03-05 Thread Cyril Brulebois
 ChangeLog|   20 
 configure.ac |2 +-
 debian/changelog |   13 +
 src/psmcomm.c|4 ++--
 4 files changed, 36 insertions(+), 3 deletions(-)

New commits:
commit c57e23316eab90bc8d5ff6f2baecbfeacff9d739
Author: Cyril Brulebois 
Date:   Sat Mar 5 16:32:40 2011 +0100

Upload to experimental.

diff --git a/debian/changelog b/debian/changelog
index 40ca4ee..37731e3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+xserver-xorg-input-synaptics (1.4.0-1+exp1) experimental; urgency=low
+
+  * Rebuild in experimental against Xserver 1.10.
+
+ -- Cyril Brulebois   Sat, 05 Mar 2011 16:32:34 +0100
+
 xserver-xorg-input-synaptics (1.4.0-1) unstable; urgency=low
 
   * New upstream release:

commit 315794c3cd2e33795f5cd0096019c5ca7a740910
Author: Cyril Brulebois 
Date:   Sat Mar 5 16:26:07 2011 +0100

Upload to unstable.

diff --git a/debian/changelog b/debian/changelog
index 4fd7611..027a711 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,9 @@
-xserver-xorg-input-synaptics (1.4.0-1) UNRELEASED; urgency=low
+xserver-xorg-input-synaptics (1.4.0-1) unstable; urgency=low
 
   * New upstream release:
 + Fix the FTBFS on GNU/kFreeBSD.
 
- -- Cyril Brulebois   Sat, 05 Mar 2011 16:25:28 +0100
+ -- Cyril Brulebois   Sat, 05 Mar 2011 16:26:01 +0100
 
 xserver-xorg-input-synaptics (1.3.99.901-1) unstable; urgency=low
 

commit 86f0eac540b96671bb9c80eab182973d52f3c942
Author: Cyril Brulebois 
Date:   Sat Mar 5 16:25:58 2011 +0100

Bump changelogs.

diff --git a/ChangeLog b/ChangeLog
index cebefe8..8ae4090 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,23 @@
+commit de0dfb76444ad4160468d00515876c91a9fa20bf
+Author: Peter Hutterer 
+Date:   Fri Mar 4 12:36:24 2011 +1000
+
+synaptics 1.4.0
+
+Signed-off-by: Peter Hutterer 
+
+commit fefb3b63c589b0758c02777e652f05e537ba663f
+Author: Julien Cristau 
+Date:   Fri Feb 25 20:41:12 2011 +0100
+
+Fix build on BSD
+
+local was renamed to pInfo in 81ad2e389d11691d5c2687d83150e8e9033cfe76,
+but a couple places were missed.
+
+Signed-off-by: Julien Cristau 
+Signed-off-by: Peter Hutterer 
+
 commit 8ec84d1850fe801fa9a123ae70e09821a4358389
 Author: Peter Hutterer 
 Date:   Mon Feb 21 12:57:21 2011 +1000
diff --git a/debian/changelog b/debian/changelog
index a57be82..4fd7611 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+xserver-xorg-input-synaptics (1.4.0-1) UNRELEASED; urgency=low
+
+  * New upstream release:
++ Fix the FTBFS on GNU/kFreeBSD.
+
+ -- Cyril Brulebois   Sat, 05 Mar 2011 16:25:28 +0100
+
 xserver-xorg-input-synaptics (1.3.99.901-1) unstable; urgency=low
 
   * New upstream release.

commit de0dfb76444ad4160468d00515876c91a9fa20bf
Author: Peter Hutterer 
Date:   Fri Mar 4 12:36:24 2011 +1000

synaptics 1.4.0

Signed-off-by: Peter Hutterer 

diff --git a/configure.ac b/configure.ac
index ea66935..c057ffb 100644
--- a/configure.ac
+++ b/configure.ac
@@ -23,7 +23,7 @@
 # Initialize Autoconf
 AC_PREREQ([2.60])
 AC_INIT([xf86-input-synaptics],
-[1.3.99.901],
+[1.4.0],
 [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
 [xf86-input-synaptics])
 AC_CONFIG_SRCDIR([Makefile.am])

commit fefb3b63c589b0758c02777e652f05e537ba663f
Author: Julien Cristau 
Date:   Fri Feb 25 20:41:12 2011 +0100

Fix build on BSD

local was renamed to pInfo in 81ad2e389d11691d5c2687d83150e8e9033cfe76,
but a couple places were missed.

Signed-off-by: Julien Cristau 
Signed-off-by: Peter Hutterer 

diff --git a/src/psmcomm.c b/src/psmcomm.c
index 66e8d1e..741cd1d 100644
--- a/src/psmcomm.c
+++ b/src/psmcomm.c
@@ -147,7 +147,7 @@ PSMQueryHardware(InputInfoPtr pInfo)
 synhw = (struct SynapticsHwInfo*)priv->proto_data;
 
 /* is the synaptics touchpad active? */
-if (!PSMQueryIsSynaptics(local))
+if (!PSMQueryIsSynaptics(pInfo))
return FALSE;
 
 xf86Msg(X_PROBED, "%s synaptics touchpad found\n", pInfo->name);
@@ -167,7 +167,7 @@ PSMReadHwState(InputInfoPtr pInfo,
   struct SynapticsProtocolOperations *proto_ops,
   struct CommData *comm, struct SynapticsHwState *hwRet)
 {
-return psaux_proto_operations.ReadHwState(local, proto_ops, comm, hwRet);
+return psaux_proto_operations.ReadHwState(pInfo, proto_ops, comm, hwRet);
 }
 
 static Bool PSMAutoDevProbe(InputInfoPtr pInfo)


-- 
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/e1pvtd7-0007xg...@alioth.debian.org



xserver-xorg-input-synaptics: Changes to 'refs/tags/xserver-xorg-input-synaptics-1.4.0-1+exp1'

2011-03-05 Thread Cyril Brulebois
Tag 'xserver-xorg-input-synaptics-1.4.0-1+exp1' created by Cyril Brulebois 
 at 2011-03-05 15:43 +

Tagging upload of xserver-xorg-input-synaptics 1.4.0-1+exp1 to experimental.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iEYEABECAAYFAk1yWigACgkQeGfVPHR5Nd1AUwCfZetybiFxrtG3y86pcwUUuT1b
H2EAnA7COq4uFHLtmUfgqNVljvXMdlmQ
=FfMW
-END PGP SIGNATURE-

Changes since xserver-xorg-input-synaptics-1.3.99.901-1+exp1:
Cyril Brulebois (5):
  Merge branch 'upstream-unstable' into debian-unstable
  Bump changelogs.
  Upload to unstable.
  Merge branch 'debian-unstable' into debian-experimental
  Upload to experimental.

Julien Cristau (1):
  Fix build on BSD

Peter Hutterer (1):
  synaptics 1.4.0

---
 ChangeLog|   20 
 configure.ac |2 +-
 debian/changelog |   13 +
 src/psmcomm.c|4 ++--
 4 files changed, 36 insertions(+), 3 deletions(-)
---


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



xserver-xorg-input-synaptics: Changes to 'upstream-unstable'

2011-03-05 Thread Cyril Brulebois
 configure.ac  |2 +-
 src/psmcomm.c |4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

New commits:
commit de0dfb76444ad4160468d00515876c91a9fa20bf
Author: Peter Hutterer 
Date:   Fri Mar 4 12:36:24 2011 +1000

synaptics 1.4.0

Signed-off-by: Peter Hutterer 

diff --git a/configure.ac b/configure.ac
index ea66935..c057ffb 100644
--- a/configure.ac
+++ b/configure.ac
@@ -23,7 +23,7 @@
 # Initialize Autoconf
 AC_PREREQ([2.60])
 AC_INIT([xf86-input-synaptics],
-[1.3.99.901],
+[1.4.0],
 [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
 [xf86-input-synaptics])
 AC_CONFIG_SRCDIR([Makefile.am])

commit fefb3b63c589b0758c02777e652f05e537ba663f
Author: Julien Cristau 
Date:   Fri Feb 25 20:41:12 2011 +0100

Fix build on BSD

local was renamed to pInfo in 81ad2e389d11691d5c2687d83150e8e9033cfe76,
but a couple places were missed.

Signed-off-by: Julien Cristau 
Signed-off-by: Peter Hutterer 

diff --git a/src/psmcomm.c b/src/psmcomm.c
index 66e8d1e..741cd1d 100644
--- a/src/psmcomm.c
+++ b/src/psmcomm.c
@@ -147,7 +147,7 @@ PSMQueryHardware(InputInfoPtr pInfo)
 synhw = (struct SynapticsHwInfo*)priv->proto_data;
 
 /* is the synaptics touchpad active? */
-if (!PSMQueryIsSynaptics(local))
+if (!PSMQueryIsSynaptics(pInfo))
return FALSE;
 
 xf86Msg(X_PROBED, "%s synaptics touchpad found\n", pInfo->name);
@@ -167,7 +167,7 @@ PSMReadHwState(InputInfoPtr pInfo,
   struct SynapticsProtocolOperations *proto_ops,
   struct CommData *comm, struct SynapticsHwState *hwRet)
 {
-return psaux_proto_operations.ReadHwState(local, proto_ops, comm, hwRet);
+return psaux_proto_operations.ReadHwState(pInfo, proto_ops, comm, hwRet);
 }
 
 static Bool PSMAutoDevProbe(InputInfoPtr pInfo)


-- 
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/e1pvtd7-0007xn...@alioth.debian.org



xserver-xorg-input-synaptics: Changes to 'refs/tags/xserver-xorg-input-synaptics-1.4.0-1'

2011-03-05 Thread Cyril Brulebois
Tag 'xserver-xorg-input-synaptics-1.4.0-1' created by Cyril Brulebois 
 at 2011-03-05 15:43 +

Tagging upload of xserver-xorg-input-synaptics 1.4.0-1 to unstable.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iEYEABECAAYFAk1yWh4ACgkQeGfVPHR5Nd3P2gCgm6oyqRUkrGdqG99eDzoBzoVO
jEoAn1o2HKQdoJWg/t2UeLUQyCBq92+d
=lNDh
-END PGP SIGNATURE-

Changes since xserver-xorg-input-synaptics-1.3.99.901-1:
Cyril Brulebois (3):
  Merge branch 'upstream-unstable' into debian-unstable
  Bump changelogs.
  Upload to unstable.

Julien Cristau (1):
  Fix build on BSD

Peter Hutterer (1):
  synaptics 1.4.0

---
 ChangeLog|   20 
 configure.ac |2 +-
 debian/changelog |7 +++
 src/psmcomm.c|4 ++--
 4 files changed, 30 insertions(+), 3 deletions(-)
---


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



xserver-xorg-input-synaptics: Changes to 'debian-unstable'

2011-03-05 Thread Cyril Brulebois
 ChangeLog|   20 
 configure.ac |2 +-
 debian/changelog |7 +++
 src/psmcomm.c|4 ++--
 4 files changed, 30 insertions(+), 3 deletions(-)

New commits:
commit 315794c3cd2e33795f5cd0096019c5ca7a740910
Author: Cyril Brulebois 
Date:   Sat Mar 5 16:26:07 2011 +0100

Upload to unstable.

diff --git a/debian/changelog b/debian/changelog
index 4fd7611..027a711 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,9 @@
-xserver-xorg-input-synaptics (1.4.0-1) UNRELEASED; urgency=low
+xserver-xorg-input-synaptics (1.4.0-1) unstable; urgency=low
 
   * New upstream release:
 + Fix the FTBFS on GNU/kFreeBSD.
 
- -- Cyril Brulebois   Sat, 05 Mar 2011 16:25:28 +0100
+ -- Cyril Brulebois   Sat, 05 Mar 2011 16:26:01 +0100
 
 xserver-xorg-input-synaptics (1.3.99.901-1) unstable; urgency=low
 

commit 86f0eac540b96671bb9c80eab182973d52f3c942
Author: Cyril Brulebois 
Date:   Sat Mar 5 16:25:58 2011 +0100

Bump changelogs.

diff --git a/ChangeLog b/ChangeLog
index cebefe8..8ae4090 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,23 @@
+commit de0dfb76444ad4160468d00515876c91a9fa20bf
+Author: Peter Hutterer 
+Date:   Fri Mar 4 12:36:24 2011 +1000
+
+synaptics 1.4.0
+
+Signed-off-by: Peter Hutterer 
+
+commit fefb3b63c589b0758c02777e652f05e537ba663f
+Author: Julien Cristau 
+Date:   Fri Feb 25 20:41:12 2011 +0100
+
+Fix build on BSD
+
+local was renamed to pInfo in 81ad2e389d11691d5c2687d83150e8e9033cfe76,
+but a couple places were missed.
+
+Signed-off-by: Julien Cristau 
+Signed-off-by: Peter Hutterer 
+
 commit 8ec84d1850fe801fa9a123ae70e09821a4358389
 Author: Peter Hutterer 
 Date:   Mon Feb 21 12:57:21 2011 +1000
diff --git a/debian/changelog b/debian/changelog
index a57be82..4fd7611 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+xserver-xorg-input-synaptics (1.4.0-1) UNRELEASED; urgency=low
+
+  * New upstream release:
++ Fix the FTBFS on GNU/kFreeBSD.
+
+ -- Cyril Brulebois   Sat, 05 Mar 2011 16:25:28 +0100
+
 xserver-xorg-input-synaptics (1.3.99.901-1) unstable; urgency=low
 
   * New upstream release.

commit de0dfb76444ad4160468d00515876c91a9fa20bf
Author: Peter Hutterer 
Date:   Fri Mar 4 12:36:24 2011 +1000

synaptics 1.4.0

Signed-off-by: Peter Hutterer 

diff --git a/configure.ac b/configure.ac
index ea66935..c057ffb 100644
--- a/configure.ac
+++ b/configure.ac
@@ -23,7 +23,7 @@
 # Initialize Autoconf
 AC_PREREQ([2.60])
 AC_INIT([xf86-input-synaptics],
-[1.3.99.901],
+[1.4.0],
 [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
 [xf86-input-synaptics])
 AC_CONFIG_SRCDIR([Makefile.am])

commit fefb3b63c589b0758c02777e652f05e537ba663f
Author: Julien Cristau 
Date:   Fri Feb 25 20:41:12 2011 +0100

Fix build on BSD

local was renamed to pInfo in 81ad2e389d11691d5c2687d83150e8e9033cfe76,
but a couple places were missed.

Signed-off-by: Julien Cristau 
Signed-off-by: Peter Hutterer 

diff --git a/src/psmcomm.c b/src/psmcomm.c
index 66e8d1e..741cd1d 100644
--- a/src/psmcomm.c
+++ b/src/psmcomm.c
@@ -147,7 +147,7 @@ PSMQueryHardware(InputInfoPtr pInfo)
 synhw = (struct SynapticsHwInfo*)priv->proto_data;
 
 /* is the synaptics touchpad active? */
-if (!PSMQueryIsSynaptics(local))
+if (!PSMQueryIsSynaptics(pInfo))
return FALSE;
 
 xf86Msg(X_PROBED, "%s synaptics touchpad found\n", pInfo->name);
@@ -167,7 +167,7 @@ PSMReadHwState(InputInfoPtr pInfo,
   struct SynapticsProtocolOperations *proto_ops,
   struct CommData *comm, struct SynapticsHwState *hwRet)
 {
-return psaux_proto_operations.ReadHwState(local, proto_ops, comm, hwRet);
+return psaux_proto_operations.ReadHwState(pInfo, proto_ops, comm, hwRet);
 }
 
 static Bool PSMAutoDevProbe(InputInfoPtr pInfo)


-- 
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/e1pvtd7-0007xv...@alioth.debian.org



libxt_1.1.0-1_amd64.changes ACCEPTED into unstable

2011-03-05 Thread Debian FTP Masters



Accepted:
libxt-dev_1.1.0-1_amd64.deb
  to main/libx/libxt/libxt-dev_1.1.0-1_amd64.deb
libxt6-dbg_1.1.0-1_amd64.deb
  to main/libx/libxt/libxt6-dbg_1.1.0-1_amd64.deb
libxt6_1.1.0-1_amd64.deb
  to main/libx/libxt/libxt6_1.1.0-1_amd64.deb
libxt_1.1.0-1.diff.gz
  to main/libx/libxt/libxt_1.1.0-1.diff.gz
libxt_1.1.0-1.dsc
  to main/libx/libxt/libxt_1.1.0-1.dsc
libxt_1.1.0.orig.tar.gz
  to main/libx/libxt/libxt_1.1.0.orig.tar.gz


Override entries for your package:
libxt-dev_1.1.0-1_amd64.deb - optional libdevel
libxt6-dbg_1.1.0-1_amd64.deb - extra debug
libxt6_1.1.0-1_amd64.deb - optional libs
libxt_1.1.0-1.dsc - source x11

Announcing to debian-devel-chan...@lists.debian.org


Thank you for your contribution to Debian.


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



Processing of xserver-xorg-input-synaptics_1.4.0-1_amd64.changes

2011-03-05 Thread Debian FTP Masters
xserver-xorg-input-synaptics_1.4.0-1_amd64.changes uploaded successfully to 
localhost
along with the files:
  xserver-xorg-input-synaptics_1.4.0-1.dsc
  xserver-xorg-input-synaptics_1.4.0.orig.tar.gz
  xserver-xorg-input-synaptics_1.4.0-1.diff.gz
  xserver-xorg-input-synaptics_1.4.0-1_amd64.deb
  xserver-xorg-input-synaptics-dev_1.4.0-1_all.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/e1pvtdt-hq...@franck.debian.org



Processing of xserver-xorg-input-synaptics_1.4.0-1+exp1_amd64.changes

2011-03-05 Thread Debian FTP Masters
xserver-xorg-input-synaptics_1.4.0-1+exp1_amd64.changes uploaded successfully 
to localhost
along with the files:
  xserver-xorg-input-synaptics_1.4.0-1+exp1.dsc
  xserver-xorg-input-synaptics_1.4.0-1+exp1.diff.gz
  xserver-xorg-input-synaptics_1.4.0-1+exp1_amd64.deb
  xserver-xorg-input-synaptics-dev_1.4.0-1+exp1_all.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/e1pvtdt-gi...@franck.debian.org



xterm: Changes to 'pristine-tar'

2011-03-05 Thread Cyril Brulebois
 xterm_268.orig.tar.gz.delta |binary
 xterm_268.orig.tar.gz.id|1 +
 xterm_269.orig.tar.gz.delta |binary
 xterm_269.orig.tar.gz.id|1 +
 4 files changed, 2 insertions(+)

New commits:
commit 3a296014b0157fd59743398f79124cae0811bc09
Author: Cyril Brulebois 
Date:   Sat Mar 5 17:01:55 2011 +0100

pristine-tar data for xterm_269.orig.tar.gz

diff --git a/xterm_269.orig.tar.gz.delta b/xterm_269.orig.tar.gz.delta
new file mode 100644
index 000..fda8fe2
Binary files /dev/null and b/xterm_269.orig.tar.gz.delta differ
diff --git a/xterm_269.orig.tar.gz.id b/xterm_269.orig.tar.gz.id
new file mode 100644
index 000..360446e
--- /dev/null
+++ b/xterm_269.orig.tar.gz.id
@@ -0,0 +1 @@
+b0a490d98e4f25dd2ed3e3a660098f8fa3116769

commit 595c9a343009c378057d51a6ed1a9f00ff737460
Author: Cyril Brulebois 
Date:   Sat Mar 5 17:01:49 2011 +0100

pristine-tar data for xterm_268.orig.tar.gz

diff --git a/xterm_268.orig.tar.gz.delta b/xterm_268.orig.tar.gz.delta
new file mode 100644
index 000..9590d24
Binary files /dev/null and b/xterm_268.orig.tar.gz.delta differ
diff --git a/xterm_268.orig.tar.gz.id b/xterm_268.orig.tar.gz.id
new file mode 100644
index 000..1439ad0
--- /dev/null
+++ b/xterm_268.orig.tar.gz.id
@@ -0,0 +1 @@
+17adfe97bdb9be5917b071c96bd968c2dee765b9


-- 
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/e1pvu2w-00064e...@alioth.debian.org



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

2011-03-05 Thread Cyril Brulebois
Tag 'xterm-269-1' created by Cyril Brulebois  at 2011-03-05 
16:09 +

Tagging upload of xterm 269-1 to unstable.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iEYEABECAAYFAk1yYDoACgkQeGfVPHR5Nd3GQwCgmi1NLCnLGwTW99mpo4E6X5/w
FRIAnjF880cVh6HU2yReWSH9xf2wBY7F
=FnJh
-END PGP SIGNATURE-

Changes since xterm-268-1:
Cyril Brulebois (4):
  Import xterm 269
  Merge branch 'upstream-unstable' into debian-unstable
  Bump changelog.
  Upload to unstable.

---
 Imakefile|   12 
 MANIFEST |2 
 Makefile.in  |4 
 THANKS   |3 
 Tekproc.c|   12 
 aclocal.m4   |   51 +
 button.c |4 
 charproc.c   |  339 ++-
 config.guess |  172 ++---
 config.sub   |  109 ++-
 configure| 1415 ---
 ctlseqs.ms   |4 
 ctlseqs.txt  |2 
 data.c   |5 
 data.h   |9 
 debian/changelog |7 
 main.c   |   32 -
 menu.c   |  174 -
 misc.c   |   23 
 os2main.c|   99 +--
 package/debian/changelog |6 
 package/debian/copyright |2 
 package/xterm.spec   |4 
 ptyx.h   |   15 
 screen.c |  188 ++
 scrollbar.c  |4 
 trace.c  |   10 
 util.c   |   44 +
 version.h|6 
 xterm.h  |   27 
 xterm.log.html   |   57 +
 xterm.man|   58 +
 xtermcap.c   |6 
 33 files changed, 1696 insertions(+), 1209 deletions(-)
---


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



xterm: Changes to 'debian-unstable'

2011-03-05 Thread Cyril Brulebois
 Imakefile|   12 
 MANIFEST |2 
 Makefile.in  |4 
 THANKS   |3 
 Tekproc.c|   12 
 aclocal.m4   |   51 +
 button.c |4 
 charproc.c   |  339 ++-
 config.guess |  172 ++---
 config.sub   |  109 ++-
 configure| 1415 ---
 ctlseqs.ms   |4 
 ctlseqs.txt  |2 
 data.c   |5 
 data.h   |9 
 debian/changelog |7 
 main.c   |   32 -
 menu.c   |  174 -
 misc.c   |   23 
 os2main.c|   99 +--
 package/debian/changelog |6 
 package/debian/copyright |2 
 package/xterm.spec   |4 
 ptyx.h   |   15 
 screen.c |  188 ++
 scrollbar.c  |4 
 trace.c  |   10 
 util.c   |   44 +
 version.h|6 
 xterm.h  |   27 
 xterm.log.html   |   57 +
 xterm.man|   58 +
 xtermcap.c   |6 
 33 files changed, 1696 insertions(+), 1209 deletions(-)

New commits:
commit 8132cfa47e21be93330f5edd8058d57ce8e63c16
Author: Cyril Brulebois 
Date:   Sat Mar 5 17:05:08 2011 +0100

Upload to unstable.

diff --git a/debian/changelog b/debian/changelog
index 54463e7..0d3c056 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,9 @@
-xterm (269-1) UNRELEASED; urgency=low
+xterm (269-1) unstable; urgency=low
 
   * New upstream release:
 - Make the fullscreen feature configurable (Closes: #612978).
 
- -- Cyril Brulebois   Sat, 05 Mar 2011 17:03:22 +0100
+ -- Cyril Brulebois   Sat, 05 Mar 2011 17:05:05 +0100
 
 xterm (268-1) unstable; urgency=low
 

commit f67af9e000b0de289355880f1b5ddeabc8af1c9d
Author: Cyril Brulebois 
Date:   Sat Mar 5 17:04:32 2011 +0100

Bump changelog.

diff --git a/debian/changelog b/debian/changelog
index 5def055..54463e7 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+xterm (269-1) UNRELEASED; urgency=low
+
+  * New upstream release:
+- Make the fullscreen feature configurable (Closes: #612978).
+
+ -- Cyril Brulebois   Sat, 05 Mar 2011 17:03:22 +0100
+
 xterm (268-1) unstable; urgency=low
 
   [ Sven Joachim ]

commit b0a490d98e4f25dd2ed3e3a660098f8fa3116769
Author: Cyril Brulebois 
Date:   Sat Mar 5 16:52:54 2011 +0100

Import xterm 269

diff --git a/Imakefile b/Imakefile
index 57a7fd0..5bfaba7 100644
--- a/Imakefile
+++ b/Imakefile
@@ -1,4 +1,4 @@
-XCOMM $XTermId: Imakefile,v 1.102 2009/04/27 19:26:34 tom Exp $
+XCOMM $XTermId: Imakefile,v 1.103 2011/02/19 13:09:15 tom Exp $
 XCOMM
 XCOMM Attention xterm porters
 XCOMM
@@ -7,8 +7,6 @@ XCOMM Xterm assumes that bcopy can handle overlapping 
arguments.  If your
 XCOMM bcopy (or memcpy) cannot, write a routine called bcopy and link it in
 XCOMM or add -Dbcopy=mybcopy to the DEFINES list below.
 XCOMM
-XCOMM $XFree86: xc/programs/xterm/Imakefile,v 3.73 2006/04/10 00:34:36 dickey 
Exp $
-XCOMM
 
 /* Uncomment SCROLLBAR_RIGHT if you want the scroll bar to be on the right */
 SCROLLBAR_RIGHT = -DSCROLLBAR_RIGHT
@@ -144,6 +142,14 @@ module.o: ; $(CC) -c defines $(CFLAGS) module.c
  OSMAJORVERSION = OSMajorVersion
  OSMINORVERSION = OSMinorVersion
 
+#ifdefined(NTOArchitecture)|| \
+   defined(LinuxArchitecture)  || \
+   defined(OpenBSDArchitecture)|| \
+   defined(SGIArchitecture)|| \
+   defined(SunArchitecture)
+TERMCAPDEFINES=-DUSE_TERMINFO -DHAVE_TIGETSTR
+#endif
+
 #if !defined(OS2Architecture) && !defined(__GNU__)
 #if defined(UseUtempter)
 UTMPDEF = -DUSE_UTEMPTER
diff --git a/MANIFEST b/MANIFEST
index 3b01936..fe2ab6d 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -1,4 +1,4 @@
-MANIFEST for xterm-268, version xterm-268
+MANIFEST for xterm-269, version xterm-269
 

 MANIFESTthis file
 256colres.h resource-definitions for 256-color mode
diff --git a/Makefile.in b/Makefile.in
index 2a6a265..e0f8586 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,4 +1,4 @@
-## $XTermId: Makefile.in,v 1.174 2010/11/24 11:21:01 tom Exp $
+## $XTermId: Makefile.in,v 1.175 2011/02/13 18:17:55 tom Exp $
 # -
 # this file is part of xterm
 #
@@ -65,7 +65,7 @@ EXTRA_LOADFLAGS   = @IMAKE_LOADFLAGS@
 
 CPPFLAGS   = -I. -I$(srcdir) -DHAVE_CONFIG_H @CPPFLAGS@ $(EXTRA_CPPFLAGS)
 CFLAGS = @CFLAGS@ $(EXTRA_CFLAGS)
-LDFLAGS= @LDFLAGS@
+LDFLAGS= @LDFLAGS@ @EXTRA_LDFLAGS@
 LIBS   = @LIBS@
 
 prefix = @prefix@
diff --git a/THANKS b/THANKS
index 02cc710..97d533c 100644
--- a/THANKS
+++ b/THANKS
@@ -1,4 +1

xterm: Changes to 'upstream-unstable'

2011-03-05 Thread Cyril Brulebois
 Imakefile|   12 
 MANIFEST |2 
 Makefile.in  |4 
 THANKS   |3 
 Tekproc.c|   12 
 aclocal.m4   |   51 +
 button.c |4 
 charproc.c   |  339 ++-
 config.guess |  172 ++---
 config.sub   |  109 ++-
 configure| 1415 ---
 ctlseqs.ms   |4 
 ctlseqs.txt  |2 
 data.c   |5 
 data.h   |9 
 main.c   |   32 -
 menu.c   |  174 -
 misc.c   |   23 
 os2main.c|   99 +--
 package/debian/changelog |6 
 package/debian/copyright |2 
 package/xterm.spec   |4 
 ptyx.h   |   15 
 screen.c |  188 ++
 scrollbar.c  |4 
 trace.c  |   10 
 util.c   |   44 +
 version.h|6 
 xterm.h  |   27 
 xterm.log.html   |   57 +
 xterm.man|   58 +
 xtermcap.c   |6 
 32 files changed, 1689 insertions(+), 1209 deletions(-)

New commits:
commit b0a490d98e4f25dd2ed3e3a660098f8fa3116769
Author: Cyril Brulebois 
Date:   Sat Mar 5 16:52:54 2011 +0100

Import xterm 269

diff --git a/Imakefile b/Imakefile
index 57a7fd0..5bfaba7 100644
--- a/Imakefile
+++ b/Imakefile
@@ -1,4 +1,4 @@
-XCOMM $XTermId: Imakefile,v 1.102 2009/04/27 19:26:34 tom Exp $
+XCOMM $XTermId: Imakefile,v 1.103 2011/02/19 13:09:15 tom Exp $
 XCOMM
 XCOMM Attention xterm porters
 XCOMM
@@ -7,8 +7,6 @@ XCOMM Xterm assumes that bcopy can handle overlapping 
arguments.  If your
 XCOMM bcopy (or memcpy) cannot, write a routine called bcopy and link it in
 XCOMM or add -Dbcopy=mybcopy to the DEFINES list below.
 XCOMM
-XCOMM $XFree86: xc/programs/xterm/Imakefile,v 3.73 2006/04/10 00:34:36 dickey 
Exp $
-XCOMM
 
 /* Uncomment SCROLLBAR_RIGHT if you want the scroll bar to be on the right */
 SCROLLBAR_RIGHT = -DSCROLLBAR_RIGHT
@@ -144,6 +142,14 @@ module.o: ; $(CC) -c defines $(CFLAGS) module.c
  OSMAJORVERSION = OSMajorVersion
  OSMINORVERSION = OSMinorVersion
 
+#ifdefined(NTOArchitecture)|| \
+   defined(LinuxArchitecture)  || \
+   defined(OpenBSDArchitecture)|| \
+   defined(SGIArchitecture)|| \
+   defined(SunArchitecture)
+TERMCAPDEFINES=-DUSE_TERMINFO -DHAVE_TIGETSTR
+#endif
+
 #if !defined(OS2Architecture) && !defined(__GNU__)
 #if defined(UseUtempter)
 UTMPDEF = -DUSE_UTEMPTER
diff --git a/MANIFEST b/MANIFEST
index 3b01936..fe2ab6d 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -1,4 +1,4 @@
-MANIFEST for xterm-268, version xterm-268
+MANIFEST for xterm-269, version xterm-269
 

 MANIFESTthis file
 256colres.h resource-definitions for 256-color mode
diff --git a/Makefile.in b/Makefile.in
index 2a6a265..e0f8586 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,4 +1,4 @@
-## $XTermId: Makefile.in,v 1.174 2010/11/24 11:21:01 tom Exp $
+## $XTermId: Makefile.in,v 1.175 2011/02/13 18:17:55 tom Exp $
 # -
 # this file is part of xterm
 #
@@ -65,7 +65,7 @@ EXTRA_LOADFLAGS   = @IMAKE_LOADFLAGS@
 
 CPPFLAGS   = -I. -I$(srcdir) -DHAVE_CONFIG_H @CPPFLAGS@ $(EXTRA_CPPFLAGS)
 CFLAGS = @CFLAGS@ $(EXTRA_CFLAGS)
-LDFLAGS= @LDFLAGS@
+LDFLAGS= @LDFLAGS@ @EXTRA_LDFLAGS@
 LIBS   = @LIBS@
 
 prefix = @prefix@
diff --git a/THANKS b/THANKS
index 02cc710..97d533c 100644
--- a/THANKS
+++ b/THANKS
@@ -1,4 +1,4 @@
--- $XTermId: THANKS,v 1.3 2011/01/22 13:22:37 tom Exp $
+-- $XTermId: THANKS,v 1.4 2011/02/11 10:55:53 tom Exp $
 -- vile:txtmode fk=8bit
 There's no AUTHORS file in this distribution; it would be redundant since
 I (Thomas E. Dickey) have done more than 80% of the work on xterm since 1996.
@@ -51,6 +51,7 @@ David Yeo
 Denis Zaitsev
 Dennis Preiser
 Dennis Schneider
+Dimitrios Christidis
 Dr Werner Fink
 Ed Schouten
 Eddy De Greef
diff --git a/Tekproc.c b/Tekproc.c
index d124394..57eaa02 100644
--- a/Tekproc.c
+++ b/Tekproc.c
@@ -1,8 +1,7 @@
-/* $XTermId: Tekproc.c,v 1.185 2011/01/20 10:50:19 tom Exp $ */
+/* $XTermId: Tekproc.c,v 1.188 2011/02/20 00:55:33 tom Exp $ */
 
 /*
- *
- * Copyright 2001-2009,2010 by Thomas E. Dickey
+ * Copyright 2001-2010,2011 by Thomas E. Dickey
  *
  * All Rights Reserved
  *
@@ -398,7 +397,7 @@ TekPtyData(void)
 if (Tpushb == 0) {
if ((Tpushb = TypeMallocN(Char, 10)) == NULL
|| (Tline = TypeMallocN(XSegment, MAX_VTX)) == NULL) {
-   fprintf(stderr, "%s: Not enough core for Tek mode\n", xterm_name);
+   fprintf(stderr, "%s: Not enough core for Tek m

xserver-xorg-input-synaptics_1.4.0-1_amd64.changes ACCEPTED into unstable

2011-03-05 Thread Debian FTP Masters



Accepted:
xserver-xorg-input-synaptics-dev_1.4.0-1_all.deb
  to 
main/x/xserver-xorg-input-synaptics/xserver-xorg-input-synaptics-dev_1.4.0-1_all.deb
xserver-xorg-input-synaptics_1.4.0-1.diff.gz
  to 
main/x/xserver-xorg-input-synaptics/xserver-xorg-input-synaptics_1.4.0-1.diff.gz
xserver-xorg-input-synaptics_1.4.0-1.dsc
  to 
main/x/xserver-xorg-input-synaptics/xserver-xorg-input-synaptics_1.4.0-1.dsc
xserver-xorg-input-synaptics_1.4.0-1_amd64.deb
  to 
main/x/xserver-xorg-input-synaptics/xserver-xorg-input-synaptics_1.4.0-1_amd64.deb
xserver-xorg-input-synaptics_1.4.0.orig.tar.gz
  to 
main/x/xserver-xorg-input-synaptics/xserver-xorg-input-synaptics_1.4.0.orig.tar.gz


Override entries for your package:
xserver-xorg-input-synaptics-dev_1.4.0-1_all.deb - optional libdevel
xserver-xorg-input-synaptics_1.4.0-1.dsc - source x11
xserver-xorg-input-synaptics_1.4.0-1_amd64.deb - optional x11

Announcing to debian-devel-chan...@lists.debian.org


Thank you for your contribution to Debian.


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



xserver-xorg-input-synaptics_1.4.0-1+exp1_amd64.changes ACCEPTED into experimental

2011-03-05 Thread Debian FTP Masters



Accepted:
xserver-xorg-input-synaptics-dev_1.4.0-1+exp1_all.deb
  to 
main/x/xserver-xorg-input-synaptics/xserver-xorg-input-synaptics-dev_1.4.0-1+exp1_all.deb
xserver-xorg-input-synaptics_1.4.0-1+exp1.diff.gz
  to 
main/x/xserver-xorg-input-synaptics/xserver-xorg-input-synaptics_1.4.0-1+exp1.diff.gz
xserver-xorg-input-synaptics_1.4.0-1+exp1.dsc
  to 
main/x/xserver-xorg-input-synaptics/xserver-xorg-input-synaptics_1.4.0-1+exp1.dsc
xserver-xorg-input-synaptics_1.4.0-1+exp1_amd64.deb
  to 
main/x/xserver-xorg-input-synaptics/xserver-xorg-input-synaptics_1.4.0-1+exp1_amd64.deb


Override entries for your package:
xserver-xorg-input-synaptics-dev_1.4.0-1+exp1_all.deb - optional libdevel
xserver-xorg-input-synaptics_1.4.0-1+exp1.dsc - source x11
xserver-xorg-input-synaptics_1.4.0-1+exp1_amd64.deb - optional x11

Announcing to debian-devel-chan...@lists.debian.org


Thank you for your contribution to Debian.


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



Bug#616511: xserver-xorg-video-vesa: Blank screen on ATI R580

2011-03-05 Thread Tim
Hi Cyril,

Thanks for your prompt reply.

> as in “X :0”? That's normal, you get a black background and no X
> client by default. You could try:
>   X :0 & sleep 5; DISPLAY=:0 xterm

Ok, its been a long time since I ran X directly, as I normally use
xdm.  There have been so many different issues that have come up with
Xorg in general (window manager config changes, etc) after the last
upgrade that I've had a hard time narrowing down where the problem is.
So let me back up and show you what I'm seeing with xdm:

Currently, with both the radeon driver (with radeon kernel module
loaded) and with vesa (with radeon not loaded) I am able to get to the
xdm login screen.  However, once I log in, xdm reports that X crashes.
See the attached log.

In the case of radeon, when this happens my video is completely toast
and I have to reboot.  With vesa, at least I can recover and try
logging in again or stop xdm.  However, the console font becomes so
big after trying with vesa that it's very hard to use the console.

> Your log indeed looks fine. There's the fbdev driver you could try by
> the way. Or disabling KMS to see if that helps with your radeon
> issue. Is the bug you're having with radeon reported in the BTS?

I did try the fbdev driver with radeon loaded.  I have not tried
disabling KMS yet, but I'm starting to think this may not be directly
related to the video driver.

Let me know what you think.
thanks much,
tim



-- 
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/20110305161415.ga1...@sentinelchicken.org



xserver-xorg-video-intel: Changes to 'debian-unstable'

2011-03-05 Thread Cyril Brulebois
 debian/changelog  |6 ++
 debian/rules  |4 +++-
 debian/xserver-xorg-video-intel.lintian-overrides |1 +
 3 files changed, 10 insertions(+), 1 deletion(-)

New commits:
commit 2ee14511f3d72701aa2429095bad7a5616bf4cc2
Author: Cyril Brulebois 
Date:   Sat Mar 5 17:25:04 2011 +0100

Override lintian warning about the libXvMC shared objects.

diff --git a/debian/changelog b/debian/changelog
index ebb8829..a4c67d8 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -6,6 +6,7 @@ xserver-xorg-video-intel (2:2.14.901-1) UNRELEASED; urgency=low
 file (/etc/X11/XvMCConfig). Accordingly, remove extraneous symlinks:
 - /usr/lib/libI810XvMC.so
 - /usr/lib/libIntelXvMC.so
+  * Override lintian warning about the libXvMC shared objects.
 
  -- Cyril Brulebois   Wed, 02 Mar 2011 19:40:58 +0100
 
diff --git a/debian/xserver-xorg-video-intel.lintian-overrides 
b/debian/xserver-xorg-video-intel.lintian-overrides
new file mode 100644
index 000..bfbe798
--- /dev/null
+++ b/debian/xserver-xorg-video-intel.lintian-overrides
@@ -0,0 +1 @@
+package-name-doesnt-match-sonames libI810XvMC1 libIntelXvMC1

commit 42774b9ef0ff614c1a6024f05c53ab3b180f5257
Author: Cyril Brulebois 
Date:   Sat Mar 5 17:22:26 2011 +0100

Stop shipping libxvmc symlinks.

diff --git a/debian/changelog b/debian/changelog
index 4aa3720..ebb8829 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,11 @@
 xserver-xorg-video-intel (2:2.14.901-1) UNRELEASED; urgency=low
 
   * New upstream snapshot (2.15 rc1).
+  * Apparently, using libXvMC means adding the name of the library (like
+libI810XvMC.so.1 or libIntelXvMC.so.1) to the libXvMC configuration
+file (/etc/X11/XvMCConfig). Accordingly, remove extraneous symlinks:
+- /usr/lib/libI810XvMC.so
+- /usr/lib/libIntelXvMC.so
 
  -- Cyril Brulebois   Wed, 02 Mar 2011 19:40:58 +0100
 
diff --git a/debian/rules b/debian/rules
index d83fbc1..cfa32f5 100755
--- a/debian/rules
+++ b/debian/rules
@@ -4,9 +4,11 @@
 override_dh_auto_install:
dh_auto_install --destdir=debian/tmp
 
-# Kill *.la files, and forget no-one:
+# Kill *.la files, libxvmc symlinks, and forget no-one:
 override_dh_install:
find debian/tmp -name '*.la' -delete
+   rm -f debian/tmp/usr/lib/libI810XvMC.so
+   rm -f debian/tmp/usr/lib/libIntelXvMC.so
dh_install --fail-missing
 
 # Debug package:


-- 
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/e1pvuim-0005kz...@alioth.debian.org



Bug#615959: happens more often

2011-03-05 Thread Johannes Berg
Hi,

> could you please tell us how it goes with vesa or fbdev instead of
> nouveau? It might be nice to attach an (old) Xorg log, from a crash.

vesa isn't happy when I have my second monitor plugged in. Neither vesa
nor nouveau crash when I don't have my second monitor plugged in though.

Interestingly, nouveau also doesn't crash if I hotplug the second
monitor, it only crashes when the second monitor was already plugged in
at the start of the X server... Not that I can explain it, but it's what
happens.

I've attached a log, but there's no information about the crash there.
I'll try to gdb it via ssh.

> (I didn't reply yet since Sven is usually taking care of nouveau bugs,
> but he might have missed it since it wasn't filed against the nouveau
> driver. We'll see later if it has to be reassigned.)

Yeah, I guess it should be reassigned.

johannes 


Xorg.0.log.old
Description: application/trash


Bug#616511: xserver-xorg-video-vesa: Blank screen on ATI R580

2011-03-05 Thread Tim
Hi John,

> I'll restate the obvious.  note I'm not part of
> xserver-xorg-video-vesa team - so look for more answers.
> 
> make sure your linux kernel has radeon support.  make sure X loads
> the modules.  make sure X.org supports the chipset that is actually
> on the card.

Yes, as I mentioned I'm using the latest generic kernel which does
include the radeon module.  Normally I use a custom built kernel which
also has radeon+KMS, but I fell back to the generic in case I had
screwed up some build options.

As for support of the chipset... well the radeon kernel module doesn't
complain about anything.  It is an R580 which is well within the
series supported by the radeon team.

Thanks,
tim



-- 
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/20110305161654.gb1...@sentinelchicken.org



Bug#616511: xserver-xorg-video-vesa: Blank screen on ATI R580

2011-03-05 Thread Tim
figures... forgot to attach the log.

tim


Sat Mar  5 08:06:01 2011 xdm info (pid 1776): Starting
Sat Mar  5 08:06:01 2011 xdm info (pid 1776): Starting X server on :0

X.Org X Server 1.9.4
Release Date: 2011-02-04
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.32-5-amd64 x86_64 Debian
Current Operating System: Linux shannon 2.6.37-2-amd64 #1 SMP Sun Feb 27 
10:12:22 UTC 2011 x86_64
Kernel command line: root=UUID=2c3be234-03c7-470d-abe8-322c4b19df93 ro 
Build Date: 20 February 2011  04:48:15AM
xorg-server 2:1.9.4-3 (Cyril Brulebois ) 
Current version of pixman: 0.21.4
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Sat Mar  5 08:06:02 2011
(==) Using config file: "/etc/X11/xorg.conf"
(==) Using system config directory "/usr/share/X11/xorg.conf.d"
Sat Mar  5 08:06:05 2011 xdm info (pid 1790): sourcing /etc/X11/xdm/Xsetup
Sat Mar  5 08:06:09 2011 xdm info (pid 1790): sourcing /etc/X11/xdm/Xstartup
Sat Mar  5 08:06:09 2011 xdm info (pid 1799): executing session 
/etc/X11/xdm/Xsession

Backtrace:
0: /usr/bin/X (xorg_backtrace+0x28) [0x45ceb8]
1: /usr/bin/X (0x40+0x64cd9) [0x464cd9]
2: /lib/libpthread.so.0 (0x7f6165336000+0xef60) [0x7f6165344f60]
3: /usr/bin/X (0x40+0x37631) [0x437631]
4: /usr/bin/X (0x40+0x38b2d) [0x438b2d]
5: /usr/bin/X (ProcessWorkQueue+0x21) [0x43afa1]
6: /usr/bin/X (WaitForSomething+0x82) [0x4653f2]
7: /usr/bin/X (0x40+0x32b12) [0x432b12]
8: /usr/bin/X (0x40+0x2573b) [0x42573b]
9: /lib/libc.so.6 (__libc_start_main+0xfd) [0x7f6164098c4d]
10: /usr/bin/X (0x40+0x252c9) [0x4252c9]
Segmentation fault at address 0x14

Fatal server error:
Caught signal 11 (Segmentation fault). Server aborting


Please consult the The X.Org Foundation support 
 at http://wiki.x.org
 for help. 
Please also check the log file at "/var/log/Xorg.0.log" for additional 
information.

Sat Mar  5 08:06:10 2011 xdm error (pid 1776): Server for display :0 terminated 
unexpectedly: 1536
Sat Mar  5 08:06:10 2011 xdm info (pid 1790): sourcing /etc/X11/xdm/Xreset
Sat Mar  5 08:06:10 2011 xdm info (pid 1776): Starting X server on :0

X.Org X Server 1.9.4
Release Date: 2011-02-04
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.32-5-amd64 x86_64 Debian
Current Operating System: Linux shannon 2.6.37-2-amd64 #1 SMP Sun Feb 27 
10:12:22 UTC 2011 x86_64
Kernel command line: root=UUID=2c3be234-03c7-470d-abe8-322c4b19df93 ro 
Build Date: 20 February 2011  04:48:15AM
xorg-server 2:1.9.4-3 (Cyril Brulebois ) 
Current version of pixman: 0.21.4
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Sat Mar  5 08:06:10 2011
(==) Using config file: "/etc/X11/xorg.conf"
(==) Using system config directory "/usr/share/X11/xorg.conf.d"
Sat Mar  5 08:06:12 2011 xdm info (pid 1848): sourcing /etc/X11/xdm/Xsetup
Sat Mar  5 08:06:19 2011 xdm info (pid 1776): Shutting down
Sat Mar  5 08:06:19 2011 xdm info (pid 1776): display :0 is being disabled
Sat Mar  5 08:06:19 2011 xdm info (pid 1776): Exiting


Processing of xterm_269-1_amd64.changes

2011-03-05 Thread Debian FTP Masters
xterm_269-1_amd64.changes uploaded successfully to localhost
along with the files:
  xterm_269-1.dsc
  xterm_269.orig.tar.gz
  xterm_269-1.diff.gz
  xterm_269-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/e1pvu6i-0007ep...@franck.debian.org



Bug#616511: xserver-xorg-video-vesa: Blank screen on ATI R580

2011-03-05 Thread Cyril Brulebois
Hi,

Tim  (05/03/2011):
> Currently, with both the radeon driver (with radeon kernel module
> loaded) and with vesa (with radeon not loaded) I am able to get to
> the xdm login screen.  However, once I log in, xdm reports that X
> crashes.  See the attached log.

I wish I could. ;)

If there's a backtrace there, try attaching a full backtrace:
  http://pkg-xorg.alioth.debian.org/howto/use-gdb.html

KiBi.


signature.asc
Description: Digital signature


Bug#615959: happens more often

2011-03-05 Thread Johannes Berg
On Sat, 2011-03-05 at 17:23 +0100, Johannes Berg wrote:

> I'll try to gdb it via ssh.
> 
> > (I didn't reply yet since Sven is usually taking care of nouveau bugs,
> > but he might have missed it since it wasn't filed against the nouveau
> > driver. We'll see later if it has to be reassigned.)
> 
> Yeah, I guess it should be reassigned.

Or maybe not. The backtrace doesn't seem to have anything related to
nouveau, though of course I don't know where the event comes from. But
I'll let you judge for yourself -- attached.

johannes
GNU gdb (GDB) 7.2-debian
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later 
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-linux-gnu".
For bug reporting instructions, please see:
.
Attaching to process 6513
Reading symbols from /usr/bin/Xorg...Reading symbols from /usr/lib/debug/usr/bin/Xorg...done.
done.
Reading symbols from /lib/libudev.so.0...(no debugging symbols found)...done.
Loaded symbols for /lib/libudev.so.0
Reading symbols from /lib/libgcrypt.so.11...(no debugging symbols found)...done.
Loaded symbols for /lib/libgcrypt.so.11
Reading symbols from /lib/libdl.so.2...Reading symbols from /usr/lib/debug/lib/libdl-2.11.2.so...done.
done.
Loaded symbols for /lib/libdl.so.2
Reading symbols from /usr/lib/libpciaccess.so.0...(no debugging symbols found)...done.
Loaded symbols for /usr/lib/libpciaccess.so.0
Reading symbols from /lib/libpthread.so.0...Reading symbols from /usr/lib/debug/lib/libpthread-2.11.2.so...done.
[Thread debugging using libthread_db enabled]
done.
Loaded symbols for /lib/libpthread.so.0
Reading symbols from /usr/lib/libpixman-1.so.0...(no debugging symbols found)...done.
Loaded symbols for /usr/lib/libpixman-1.so.0
Reading symbols from /usr/lib/libXfont.so.1...(no debugging symbols found)...done.
Loaded symbols for /usr/lib/libXfont.so.1
Reading symbols from /usr/lib/libXau.so.6...(no debugging symbols found)...done.
Loaded symbols for /usr/lib/libXau.so.6
Reading symbols from /usr/lib/libXdmcp.so.6...(no debugging symbols found)...done.
Loaded symbols for /usr/lib/libXdmcp.so.6
Reading symbols from /lib/libaudit.so.0...(no debugging symbols found)...done.
Loaded symbols for /lib/libaudit.so.0
Reading symbols from /lib/libm.so.6...Reading symbols from /usr/lib/debug/lib/libm-2.11.2.so...done.
done.
Loaded symbols for /lib/libm.so.6
Reading symbols from /lib/librt.so.1...Reading symbols from /usr/lib/debug/lib/librt-2.11.2.so...done.
done.
Loaded symbols for /lib/librt.so.1
Reading symbols from /lib/libc.so.6...Reading symbols from /usr/lib/debug/lib/libc-2.11.2.so...done.
done.
Loaded symbols for /lib/libc.so.6
Reading symbols from /lib/libgpg-error.so.0...(no debugging symbols found)...done.
Loaded symbols for /lib/libgpg-error.so.0
Reading symbols from /lib64/ld-linux-x86-64.so.2...Reading symbols from /usr/lib/debug/lib/ld-2.11.2.so...done.
done.
Loaded symbols for /lib64/ld-linux-x86-64.so.2
Reading symbols from /usr/lib/libz.so.1...(no debugging symbols found)...done.
Loaded symbols for /usr/lib/libz.so.1
Reading symbols from /usr/lib/libfreetype.so.6...(no debugging symbols found)...done.
Loaded symbols for /usr/lib/libfreetype.so.6
Reading symbols from /lib/libbz2.so.1.0...(no debugging symbols found)...done.
Loaded symbols for /lib/libbz2.so.1.0
Reading symbols from /usr/lib/libfontenc.so.1...(no debugging symbols found)...done.
Loaded symbols for /usr/lib/libfontenc.so.1
Reading symbols from /lib/libgcc_s.so.1...(no debugging symbols found)...done.
Loaded symbols for /lib/libgcc_s.so.1
Reading symbols from /usr/lib/xorg/modules/extensions/libextmod.so...Reading symbols from /usr/lib/debug/usr/lib/xorg/modules/extensions/libextmod.so...done.
done.
Loaded symbols for /usr/lib/xorg/modules/extensions/libextmod.so
Reading symbols from /lib/libselinux.so.1...(no debugging symbols found)...done.
Loaded symbols for /lib/libselinux.so.1
Reading symbols from /usr/lib/xorg/modules/extensions/libdbe.so...Reading symbols from /usr/lib/debug/usr/lib/xorg/modules/extensions/libdbe.so...done.
done.
Loaded symbols for /usr/lib/xorg/modules/extensions/libdbe.so
Reading symbols from /usr/lib/xorg/modules/extensions/libglx.so...Reading symbols from /usr/lib/debug/usr/lib/xorg/modules/extensions/libglx.so...done.
done.
Loaded symbols for /usr/lib/xorg/modules/extensions/libglx.so
Reading symbols from /usr/lib/xorg/modules/extensions/librecord.so...Reading symbols from /usr/lib/debug/usr/lib/xorg/modules/extensions/librecord.so...done.
done.
Loaded symbols for /usr/lib/xorg/modules/extensions/librecord.so
Reading symbols from /usr/lib/xorg/modules/extensions/libdri.so...Reading symbols from /usr/lib/debug/usr/lib/xorg/modules/extensions/libdri.so...done.
done.
Loaded symbols for /usr/lib/xorg/mod

Bug#616511: xserver-xorg-video-vesa: Blank screen on ATI R580

2011-03-05 Thread Tim
> as in “X :0”? That's normal, you get a black background and no X
> client by default. You could try:
>   X :0 & sleep 5; DISPLAY=:0 xterm

I just tried this as well, as you suggested.  I fired up X with: 
  X :0 &

and was able two switch back and forth between the blank X window and
the console.  Note that unlike with xdm, the mouse cursor did not show
up.  Next I ran:

DISPLAY=:0 urxvt

And at that point X crashed, just like it does when spawning from xdm.

Let me know if there are other things I should try.

thanks,
tim



-- 
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/20110305163100.ga1...@sentinelchicken.org



Bug#612978: marked as done (xterm: Can't disable fullscreen key setting?)

2011-03-05 Thread Debian Bug Tracking System
Your message dated Sat, 05 Mar 2011 16:36:25 +
with message-id 
and subject line Bug#612978: fixed in xterm 269-1
has caused the Debian Bug report #612978,
regarding xterm: Can't disable fullscreen key setting?
to be marked as done.

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

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


-- 
612978: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=612978
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: xterm
Version: 268-1
Severity: normal

Hello,

After updating to xterm 268, trying to use alt-enter in mc suddenly made my
window fullscreen. That wouldn't be that bad if there was a way to disable
this, but I tried some settings in ~/..Xresources like

XTerm.*translations:#override Alt Return: ignore()

which all didn't help. I'm not sure what the problem is (it might just be
insufficient documentation), but it would be very nice if this fullscreen key
mapping was optional. At the moment I've downgraded to 266 again, but that is
not a good long-term solution.

Best regards,
Christian Ohm


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

Kernel: Linux 2.6.37-trunk-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages xterm depends on:
ii  libc6 2.11.2-11  Embedded GNU C Library: Shared lib
ii  libfontconfig12.8.0-2.1  generic font configuration library
ii  libice6   2:1.0.7-1  X11 Inter-Client Exchange library
ii  libncurses5   5.7+20100313-5 shared libraries for terminal hand
ii  libutempter0  1.1.5-3A privileged helper for utmp/wtmp 
ii  libx11-6  2:1.4.1-4  X11 client-side library
ii  libxaw7   2:1.0.9-2  X11 Athena Widget library
ii  libxft2   2.2.0-2FreeType-based font drawing librar
ii  libxmu6   2:1.1.0-1  X11 miscellaneous utility library
ii  libxt61:1.0.9-2  X11 toolkit intrinsics library
ii  xbitmaps  1.1.1-1Base X bitmaps

Versions of packages xterm recommends:
ii  x11-utils 7.6+1  X11 utilities

Versions of packages xterm suggests:
pn  xfonts-cyrillic(no description available)

-- no debconf information

-- 
Non-sequiturs make me eat lampshades.


--- End Message ---
--- Begin Message ---
Source: xterm
Source-Version: 269-1

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

xterm_269-1.diff.gz
  to main/x/xterm/xterm_269-1.diff.gz
xterm_269-1.dsc
  to main/x/xterm/xterm_269-1.dsc
xterm_269-1_amd64.deb
  to main/x/xterm/xterm_269-1_amd64.deb
xterm_269.orig.tar.gz
  to main/x/xterm/xterm_269.orig.tar.gz



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

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 612...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Cyril Brulebois  (supplier of updated xterm package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 05 Mar 2011 17:05:05 +0100
Source: xterm
Binary: xterm
Architecture: source amd64
Version: 269-1
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force 
Changed-By: Cyril Brulebois 
Description: 
 xterm  - X terminal emulator
Closes: 612978
Changes: 
 xterm (269-1) unstable; urgency=low
 .
   * New upstream release:
 - Make the fullscreen feature configurable (Closes: #612978).
Checksums-Sha1: 
 bb8dddac8eff85ed8f8b4f2909420690caf0d755 1354 xterm_269-1.dsc
 188696db138919a014b49c54d93f085c20e3b39f 958656 xterm_269.orig.tar.gz
 9fcd9373b17807a63d1044e482f55f45262507d9 90526 xterm_269-1.diff.gz
 062e2f5cef4165ae0d4b0061ba1698725f2b16f8 572186 xterm_269-1_amd64.deb
Checksums-Sha256: 
 f97d9017c99d410d6c3f6164de66aa1f7e63a290e1118bf4009f9dd4ac290d2e 1354 
xterm_269-1.dsc
 70e0bb1b53948bdf589db1821f69af39b0f308fbb2173cc396db70a375ca0c22 958656 
xterm_269.orig.tar.gz
 9c5bdc6d56b23725c83e4e59c2ec660f9b38e0d359bb1a6b9610c82f87db5ae2 90526 
xterm_269-1.diff.gz
 7e459d8150ba4baf5a746fff1ce56e35a45af20

Bug#613645: marked as done (xterm: Alt-Enter (M-RET) doesn't work)

2011-03-05 Thread Debian Bug Tracking System
Your message dated Sat, 05 Mar 2011 16:36:25 +
with message-id 
and subject line Bug#612978: fixed in xterm 269-1
has caused the Debian Bug report #612978,
regarding xterm: Alt-Enter (M-RET) doesn't work
to be marked as done.

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

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


-- 
612978: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=612978
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: xterm
Version: 268-1
Severity: normal

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

As a emacs org-mode user, I heavily depend on the M-RET key binding.
When you type Alt-Enter xterm should send ^[^J then emacs will
interpreters it as M-RET, but with this version of xterm this key
binding no longer works.

You can also use `cat` to check the key as cat will print them
literally. For example:

   $ cat
   ^[h^[h^[h

shows that I've typed three Alt-h combination. But Alt-Enter sends
nothing.

Regards,
Kanru

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

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

Versions of packages xterm depends on:
ii  libc6 2.11.2-11  Embedded GNU C Library: Shared lib
ii  libfontconfig12.8.0-2.1  generic font configuration library
ii  libice6   2:1.0.7-1  X11 Inter-Client Exchange library
ii  libncurses5   5.7+20100313-5 shared libraries for terminal hand
ii  libutempter0  1.1.5-3A privileged helper for utmp/wtmp 
ii  libx11-6  2:1.4.1-4  X11 client-side library
ii  libxaw7   2:1.0.9-2  X11 Athena Widget library
ii  libxft2   2.2.0-2FreeType-based font drawing librar
ii  libxmu6   2:1.1.0-1  X11 miscellaneous utility library
ii  libxt61:1.0.9-2  X11 toolkit intrinsics library
ii  xbitmaps  1.1.1-1Base X bitmaps

Versions of packages xterm recommends:
ii  x11-utils 7.6+1  X11 utilities

Versions of packages xterm suggests:
pn  xfonts-cyrillic(no description available)

- -- no debconf information

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

iEYEARECAAYFAk1bthMACgkQsbdbXzZcx6LvrACfUjs6jCfZ/5an47ocek0fFhNX
FLIAnjnYnFrdo7/pe4NCfQ811eyKJG5Y
=YfFJ
-END PGP SIGNATURE-


--- End Message ---
--- Begin Message ---
Source: xterm
Source-Version: 269-1

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

xterm_269-1.diff.gz
  to main/x/xterm/xterm_269-1.diff.gz
xterm_269-1.dsc
  to main/x/xterm/xterm_269-1.dsc
xterm_269-1_amd64.deb
  to main/x/xterm/xterm_269-1_amd64.deb
xterm_269.orig.tar.gz
  to main/x/xterm/xterm_269.orig.tar.gz



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

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 612...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Cyril Brulebois  (supplier of updated xterm package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 05 Mar 2011 17:05:05 +0100
Source: xterm
Binary: xterm
Architecture: source amd64
Version: 269-1
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force 
Changed-By: Cyril Brulebois 
Description: 
 xterm  - X terminal emulator
Closes: 612978
Changes: 
 xterm (269-1) unstable; urgency=low
 .
   * New upstream release:
 - Make the fullscreen feature configurable (Closes: #612978).
Checksums-Sha1: 
 bb8dddac8eff85ed8f8b4f2909420690caf0d755 1354 xterm_269-1.dsc
 188696db138919a014b49c54d93f085c20e3b39f 958656 xterm_269.orig.tar.gz
 9fcd9373b17807a63d1044e482f55f45262507d9 90526 xterm_269-1.diff.gz
 062e2f5cef4165ae0d4b0061ba1698725f2b16f8 572186 xterm_269-1_amd64.deb
Checksums-Sha256: 
 f97d9017c99d410d6c3f6164de66aa1f7e63a290e1118bf4009f9dd4ac290d2e 1354 
xterm_269-1.dsc
 70e0bb1b53948bdf589db1821f69af39b0f308fbb2173cc396db70a375ca0c22 958656 
xterm_269.orig.tar.gz
 9c5bdc6d56b23725c83e4e59c2ec660f9b38e0d359bb1a6b9610c82f87db5ae2 90526 
xterm_269-1.d

xterm_269-1_amd64.changes ACCEPTED into unstable

2011-03-05 Thread Debian FTP Masters



Accepted:
xterm_269-1.diff.gz
  to main/x/xterm/xterm_269-1.diff.gz
xterm_269-1.dsc
  to main/x/xterm/xterm_269-1.dsc
xterm_269-1_amd64.deb
  to main/x/xterm/xterm_269-1_amd64.deb
xterm_269.orig.tar.gz
  to main/x/xterm/xterm_269.orig.tar.gz


Override entries for your package:
xterm_269-1.dsc - source x11
xterm_269-1_amd64.deb - optional x11

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


Thank you for your contribution to Debian.


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



Bug#615959: happens more often

2011-03-05 Thread Cyril Brulebois
Hi,

Johannes Berg  (05/03/2011):
> Or maybe not. The backtrace doesn't seem to have anything related to
> nouveau, though of course I don't know where the event comes
> from. But I'll let you judge for yourself -- attached.

it seems calloc is failing, which I find a bit dubious. It might be an
ongoing memory corruption having later side effects, maybe? You may
want to check what happens with X server 1.10 from experimental (this
will require you to update those packages, mostly: xserver-xorg-core
plus xserver-xorg-{input,video}-$driver).

KiBi.


signature.asc
Description: Digital signature


Bug#616511: xserver-xorg-video-vesa: Blank screen on ATI R580

2011-03-05 Thread Cyril Brulebois
Hi Tim.

Tim  (05/03/2011):
> I just tried this as well, as you suggested.  I fired up X with:
>   X :0 &
> 
> and was able two switch back and forth between the blank X window and
> the console.  Note that unlike with xdm, the mouse cursor did not show
> up.

Alright, at least X works. I think the pointer only appears when the
first client comes up.

>  Next I ran:
> 
> DISPLAY=:0 urxvt
> 
> And at that point X crashed, just like it does when spawning from xdm.
> 
> Let me know if there are other things I should try.

Don't bother, I think I know what fails. Try to remove those lines
from your config:
| Section "Files"
| FontPath"unix/:7100"# local font server
| FontPath"unix/:7101"# local font server
| EndSection

IIRC, the xfs-related bug upstream is that one:
  https://bugs.freedesktop.org/show_bug.cgi?id=31501

KiBi.


signature.asc
Description: Digital signature


Bug#615959: happens more often

2011-03-05 Thread Johannes Berg
Hi,

> it seems calloc is failing, which I find a bit dubious. 

Well, actually, the only message I could extract wasn't that it was
failing, it was reporting malloc corruption.

> It might be an
> ongoing memory corruption having later side effects, maybe? 

Hmm, that reminds me -- I also had random kernel crashes recently, and
this is 2.6.38-rc6. Yes, it's possible, but it could also just be a
double-free or so I guess.

OTOH, this also happens when I boot 2.6.37, which had no issues prior to
updating the Xserver packages.

> You may
> want to check what happens with X server 1.10 from experimental (this
> will require you to update those packages, mostly: xserver-xorg-core
> plus xserver-xorg-{input,video}-$driver).

Still happens with

$ apt-show-versions |grep xserver-xorg
xserver-xorg/unstable uptodate 1:7.6+4
xserver-xorg-core/experimental uptodate 2:1.9.99.903-1
xserver-xorg-core-dbg/experimental uptodate 2:1.9.99.903-1
xserver-xorg-dev/unstable uptodate 2:1.9.4-3
xserver-xorg-input-evdev/experimental uptodate 1:2.6.0-3
xserver-xorg-input-kbd/experimental uptodate 1:1.5.99.901-1+exp1
xserver-xorg-input-mouse/experimental uptodate 1:1.6.99.901-1+exp1
xserver-xorg-input-synaptics/experimental uptodate 1.3.99.901-1+exp1
xserver-xorg-video-nouveau/experimental uptodate 
1:0.0.16+git20101210+8bb8231-2+exp2
xserver-xorg-video-nouveau-dbg/experimental uptodate 
1:0.0.16+git20101210+8bb8231-2+exp2
xserver-xorg-video-vesa/experimental uptodate 1:2.3.0-5+exp2


Thanks,
Johannes




-- 
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/1299344477.29845.3.ca...@jlt3.sipsolutions.net



Bug#615959: happens more often

2011-03-05 Thread Cyril Brulebois
Hi,

Johannes Berg  (05/03/2011):
> OTOH, this also happens when I boot 2.6.37, which had no issues
> prior to updating the Xserver packages.

OK, thanks for mentioning kernel versions.

> > You may want to check what happens with X server 1.10 from
> > experimental (this will require you to update those packages,
> > mostly: xserver-xorg-core plus
> > xserver-xorg-{input,video}-$driver).
> 
> Still happens with […]

OK, could you please file a bug upstream then? We're mostly up-to-date
WRT 1.10 (see 5th point on http://blog.ikibiki.org/2011/03/04/DXN-7/)
so that'd be the next move I think.

  http://bugs.freedesktop.org/ product xorg, component Server/general.

You're welcome to Cc me while submitting, and/or to give the URL/bug
number in the Debian bug report afterwards.

KiBi.


signature.asc
Description: Digital signature


Plans for xorg-server 1.9.5rc1

2011-03-05 Thread Cyril Brulebois
Cyril Brulebois  (04/03/2011):
> […] so that we have a reference version built against 1.9 in testing
> (once the kernel/nouveau saga permits the move to testing…).

xorg-server 1.9.5rc1 has been released, I've prepared it in git, and I
don't really expect any breakage if we were to upgrade from the
version in sid to this one. Maybe worth an upload to sid while the
kernel situation is settling down?

KiBi.


signature.asc
Description: Digital signature


xorg-server: Changes to 'debian-unstable'

2011-03-05 Thread Cyril Brulebois
 ChangeLog|  198 

 Xext/xselinux_ext.c  |6 
 configure.ac |4 
 debian/changelog |7 
 debian/patches/20-update-gpu-pitch.diff  |   27 
 debian/patches/series|1 
 exa/exa_mixed.c  |9 
 glx/glxcmds.c|2 
 hw/xfree86/modes/xf86Crtc.c  |   12 
 hw/xquartz/X11Application.h  |3 
 hw/xquartz/X11Application.m  |   29 
 hw/xquartz/bundle/Info.plist.cpp |2 
 hw/xquartz/bundle/Resources/English.lproj/Localizable.strings|binary
 hw/xquartz/bundle/Resources/French.lproj/locversion.plist|4 
 hw/xquartz/bundle/Resources/French.lproj/main.nib/designable.nib |  441 
++
 hw/xquartz/bundle/Resources/French.lproj/main.nib/keyedobjects.nib   |binary
 hw/xquartz/bundle/Resources/German.lproj/locversion.plist|4 
 hw/xquartz/bundle/Resources/German.lproj/main.nib/designable.nib |  360 
++--
 hw/xquartz/bundle/Resources/German.lproj/main.nib/keyedobjects.nib   |binary
 hw/xquartz/bundle/Resources/Japanese.lproj/locversion.plist  |4 
 hw/xquartz/bundle/Resources/Japanese.lproj/main.nib/designable.nib   |  323 
++-
 hw/xquartz/bundle/Resources/Japanese.lproj/main.nib/keyedobjects.nib |binary
 hw/xquartz/pbproxy/x-selection.h |2 
 hw/xquartz/quartz.c  |2 
 hw/xquartz/quartz.h  |2 
 hw/xquartz/quartzRandR.c |   27 
 hw/xquartz/xpr/xprAppleWM.c  |2 
 hw/xquartz/xpr/xprFrame.c|4 
 hw/xquartz/xpr/xprScreen.c   |   34 
 record/record.c  |6 
 30 files changed, 1218 insertions(+), 297 deletions(-)

New commits:
commit 9e52e206f1fc700c76fbb20a0dda8cde8372777e
Author: Cyril Brulebois 
Date:   Sat Mar 5 18:44:35 2011 +0100

Drop patch: 20-update-gpu-pitch.diff (merged upstream).

diff --git a/debian/changelog b/debian/changelog
index 8a4c3c3..d6a467d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,7 @@
 xorg-server (2:1.9.4.901-1) UNRELEASED; urgency=low
 
   * New upstream release (1.9.5 rc1).
+  * Drop patch: 20-update-gpu-pitch.diff (merged upstream).
 
  -- Cyril Brulebois   Sat, 05 Mar 2011 18:42:43 +0100
 
diff --git a/debian/patches/20-update-gpu-pitch.diff 
b/debian/patches/20-update-gpu-pitch.diff
deleted file mode 100644
index d63a1e9..000
--- a/debian/patches/20-update-gpu-pitch.diff
+++ /dev/null
@@ -1,27 +0,0 @@
-diff --git a/exa/exa_mixed.c b/exa/exa_mixed.c
-index 606f1e1..fd1afb2 100644
 a/exa/exa_mixed.c
-+++ b/exa/exa_mixed.c
-@@ -175,8 +175,10 @@ exaModifyPixmapHeader_mixed(PixmapPtr pPixmap, int width, 
int height, int depth,
-   depth != pPixmap->drawable.depth ||
-   bitsPerPixel != pPixmap->drawable.bitsPerPixel) {
-   if (pExaPixmap->driverPriv) {
--exaSetFbPitch(pExaScr, pExaPixmap,
--  width, height, bitsPerPixel);
-+  if (devKind > 0)
-+  pExaPixmap->fb_pitch = devKind;
-+  else
-+  exaSetFbPitch(pExaScr, pExaPixmap, width, height, bitsPerPixel);
- 
- exaSetAccelBlock(pExaScr, pExaPixmap,
-  width, height, bitsPerPixel);
-@@ -187,8 +189,7 @@ exaModifyPixmapHeader_mixed(PixmapPtr pPixmap, int width, 
int height, int depth,
-   if (has_gpu_copy && pExaPixmap->sys_ptr) {
-   free(pExaPixmap->sys_ptr);
-   pExaPixmap->sys_ptr = NULL;
--  pExaPixmap->sys_pitch = devKind > 0 ? devKind :
--  PixmapBytePad(width, depth);
-+  pExaPixmap->sys_pitch = PixmapBytePad(width, depth);
-   DamageUnregister(&pPixmap->drawable, pExaPixmap->pDamage);
-   DamageDestroy(pExaPixmap->pDamage);
-   pExaPixmap->pDamage = NULL;
diff --git a/debian/patches/series b/debian/patches/series
index be478a7..f850345 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -6,4 +6,3 @@
 #13_debian_add_xkbpath_env_variable.diff
 15-nouveau.diff
 16-xaa-fbcomposite-fix-negative-size.diff
-20-update-gpu-pitch.diff

commit ba365308de41d9db55fe20ee7472cfb262e880ba
Author: Cyril Brulebois 
Date:   Sat Mar 5 18:43:09 2011 +0100

Bump changelogs.

diff --git a/ChangeLog b/ChangeLog
index 2231f67..309e

xorg-server: Changes to 'upstream-unstable'

2011-03-05 Thread Cyril Brulebois
 Xext/xselinux_ext.c  |6 
 configure.ac |4 
 exa/exa_mixed.c  |9 
 glx/glxcmds.c|2 
 hw/xfree86/modes/xf86Crtc.c  |   12 
 hw/xquartz/X11Application.h  |3 
 hw/xquartz/X11Application.m  |   29 
 hw/xquartz/bundle/Info.plist.cpp |2 
 hw/xquartz/bundle/Resources/English.lproj/Localizable.strings|binary
 hw/xquartz/bundle/Resources/French.lproj/locversion.plist|4 
 hw/xquartz/bundle/Resources/French.lproj/main.nib/designable.nib |  441 
++
 hw/xquartz/bundle/Resources/French.lproj/main.nib/keyedobjects.nib   |binary
 hw/xquartz/bundle/Resources/German.lproj/locversion.plist|4 
 hw/xquartz/bundle/Resources/German.lproj/main.nib/designable.nib |  360 
++--
 hw/xquartz/bundle/Resources/German.lproj/main.nib/keyedobjects.nib   |binary
 hw/xquartz/bundle/Resources/Japanese.lproj/locversion.plist  |4 
 hw/xquartz/bundle/Resources/Japanese.lproj/main.nib/designable.nib   |  323 
++-
 hw/xquartz/bundle/Resources/Japanese.lproj/main.nib/keyedobjects.nib |binary
 hw/xquartz/pbproxy/x-selection.h |2 
 hw/xquartz/quartz.c  |2 
 hw/xquartz/quartz.h  |2 
 hw/xquartz/quartzRandR.c |   27 
 hw/xquartz/xpr/xprAppleWM.c  |2 
 hw/xquartz/xpr/xprFrame.c|4 
 hw/xquartz/xpr/xprScreen.c   |   34 
 record/record.c  |6 
 26 files changed, 1013 insertions(+), 269 deletions(-)

New commits:
commit 424a31f93e0aa1bb394c6ade7ae029f90f70
Author: Jeremy Huddleston 
Date:   Fri Mar 4 13:42:45 2011 -0800

1.9.4.901 (1.9.5 RC1)

Signed-off-by: Jeremy Huddleston 

diff --git a/configure.ac b/configure.ac
index b2fbb5f..76bf2c3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -26,8 +26,8 @@ dnl
 dnl Process this file with autoconf to create configure.
 
 AC_PREREQ(2.57)
-AC_INIT([xorg-server], 1.9.4, 
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], xorg-server)
-RELEASE_DATE="2011-02-04"
+AC_INIT([xorg-server], 1.9.4.901, 
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], xorg-server)
+RELEASE_DATE="2011-03-04"
 AC_CONFIG_SRCDIR([Makefile.am])
 AM_INIT_AUTOMAKE([foreign dist-bzip2])
 AM_MAINTAINER_MODE

commit 457728d723a7d93cd88691dd920bf42a7540616a
Author: Julien Cristau 
Date:   Sat Jul 3 19:42:26 2010 +0100

glx: make sure screen is non-negative in validGlxScreen

Reviewed-by: Adam Jackson 
Reviewed-by: Kristian Høgsberg 
Reviewed-by: Daniel Stone 
Signed-off-by: Julien Cristau 
(cherry picked from commit 3f0d3f4d97bce75c1828635c322b6560a45a037f)

diff --git a/glx/glxcmds.c b/glx/glxcmds.c
index 8d13c15..9e32d6c 100644
--- a/glx/glxcmds.c
+++ b/glx/glxcmds.c
@@ -57,7 +57,7 @@ validGlxScreen(ClientPtr client, int screen, __GLXscreen 
**pGlxScreen, int *err)
 /*
 ** Check if screen exists.
 */
-if (screen >= screenInfo.numScreens) {
+if (screen < 0 || screen >= screenInfo.numScreens) {
client->errorValue = screen;
*err = BadValue;
return FALSE;

commit 8a18d18bb31933d8dd0fe63cd293d7ae6711abcc
Author: Evan Broder 
Date:   Tue Feb 1 16:09:50 2011 -0800

xfree86/modes: Be sure to only use new EDID for physical output dimensions

The EDID processing regards physical dimensions of 0mm x 0mm as
invalid. Previously the old values for height and width would be
preserved if none of the physical dimension specifications in the new
EDID were considered valid.

This will come up in particular if first a monitor is connected to an
output, and then a projector is connected. Since projectors generally
report physical dimensions of 0mm x 0mm, this would result in the
projector claiming to have the physical dimensions of the monitor.

Signed-off-by: Evan Broder 
Reviewed-by: Adam Jackson 
Signed-off-by: Keith Packard 
(cherry picked from commit 12b0f7df2caa78d68b453aaa91248bb3577fd724)

diff --git a/hw/xfree86/modes/xf86Crtc.c b/hw/xfree86/modes/xf86Crtc.c
index dd8ccad..30742ff 100644
--- a/hw/xfree86/modes/xf86Crtc.c
+++ b/hw/xfree86/modes/xf86Crtc.c
@@ -2976,6 +2976,8 @@ xf86OutputSetEDID (xf86OutputPtr output, xf86MonPtr 
edid_mon)
free(output->MonInfo);
 
 output->MonInfo = edid_mon;
+output->mm_width = 0;
+output->mm_height = 0;
 

Processed: bug 615959 is forwarded to https://bugs.freedesktop.org/show_bug.cgi?id=35037

2011-03-05 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> forwarded 615959 https://bugs.freedesktop.org/show_bug.cgi?id=35037
Bug #615959 [xserver-xorg] xserver-xorg: crashes with libreoffice: malloc 
memory corruption
Set Bug forwarded-to-address to 
'https://bugs.freedesktop.org/show_bug.cgi?id=35037'.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
615959: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=615959
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.129934724426110.transcr...@bugs.debian.org



Bug#616578: xserver-xorg-core: X crashes when most programs attach to :0 / :0.0

2011-03-05 Thread Cyril Brulebois
severity  616578 important
forwarded 616578 https://bugs.freedesktop.org/show_bug.cgi?id=31501
retitle   616578 Server crash when a font server is used
thanks

Hi again.

Tim  (05/03/2011):
> Justification: renders package unusable

Not really, downgrading severity.

> I originally began reporting this issue under bug #616511 but I am
> now pretty sure the issue is not vesa-specific.

As already said in that other bug report, get rid of this:

> Section "Files"
> FontPath"unix/:7100"# local font server
> FontPath"unix/:7101"# local font server
> EndSection

KiBi.


signature.asc
Description: Digital signature


Processed: Re: Bug#616578: xserver-xorg-core: X crashes when most programs attach to :0 / :0.0

2011-03-05 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> severity  616578 important
Bug #616578 [xserver-xorg-core] xserver-xorg-core: X crashes when most programs 
attach to :0 / :0.0
Severity set to 'important' from 'grave'

> forwarded 616578 https://bugs.freedesktop.org/show_bug.cgi?id=31501
Bug #616578 [xserver-xorg-core] xserver-xorg-core: X crashes when most programs 
attach to :0 / :0.0
Set Bug forwarded-to-address to 
'https://bugs.freedesktop.org/show_bug.cgi?id=31501'.
> retitle   616578 Server crash when a font server is used
Bug #616578 [xserver-xorg-core] xserver-xorg-core: X crashes when most programs 
attach to :0 / :0.0
Changed Bug title to 'Server crash when a font server is used' from 
'xserver-xorg-core: X crashes when most programs attach to :0 / :0.0'
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
616578: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=616578
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.12993500115233.transcr...@bugs.debian.org



Bug#616511: xserver-xorg-video-vesa: Blank screen on ATI R580

2011-03-05 Thread Tim
> Don't bother, I think I know what fails. Try to remove those lines
> from your config:
> | Section "Files"
> | FontPath"unix/:7100"# local font server
> | FontPath"unix/:7101"# local font server
> | EndSection
> 
> IIRC, the xfs-related bug upstream is that one:
>   https://bugs.freedesktop.org/show_bug.cgi?id=31501


Oh, cheesh, that works.
Sorry, I didn't see your replies right away because they got stuffed
in my spam bucket.

So yeah, I am able to use X fine now with radeon and everything.
Hopefully that patch makes it downstream soon.

Sorry for posting that extra bug, didn't see your solution at that
point.

Thanks much,
tim



-- 
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/20110305184128.gc1...@sentinelchicken.org



Bug#616511: xserver-xorg-video-vesa: Blank screen on ATI R580

2011-03-05 Thread Cyril Brulebois
Tim  (05/03/2011):
> Oh, cheesh, that works.

Great.

> Sorry, I didn't see your replies right away because they got stuffed
> in my spam bucket.

D'oh. :D

> Sorry for posting that extra bug, didn't see your solution at that
> point.

I guess I might use it as the “main” XFS bug and merge other ones with
it, no worries.

KiBi.


signature.asc
Description: Digital signature


Bug#616578: Acknowledgement (xserver-xorg-core: X crashes when most programs attach to :0 / :0.0)

2011-03-05 Thread Tim

I didn't notice Cyril's reply right away to my initial issue.  As it
turns out the bug is probably this one:
  https://bugs.freedesktop.org/show_bug.cgi?id=31501

Disabling my font server config at least allows me to use X again.
Let me know if/when the patch makes it downstream.

Thanks,
tim



-- 
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/20110305184304.ga2...@sentinelchicken.org



Bug#531755: libdrm-intel1: OpenGL do not survive suspend

2011-03-05 Thread Cyril Brulebois
Hi,

Erich Schubert  (04/06/2009):
> > This is most probably not a libdrm bug.  Why are you filing it
> > here?
> 
> It used to work (before the latest intel driver upgrades, 2.7.x), so
> it's either libdrm-intel1 or xserver-xorg-video-intel.  Since it
> only applies to OpenGL apps (other screensavers work fine), I
> assumed that libdrm might be the appropriate place. Feel free to
> reassign this to xserver-xorg-video-intel

before possibly reassigning, what's the status with squeeze or sid or
experimental?

KiBi.


signature.asc
Description: Digital signature


Bug#524558: Occasional X hangs where drmCommandWrite() never returns

2011-03-05 Thread Cyril Brulebois
Hi,

Sami Liedes  (18/04/2009):
> Package: libdrm2
> Version: 2.4.9-1
> Severity: normal
> 
> Hi,
> 
> I saw this sometimes on KDE 3, now it happens many times a day on
> KDE 4 from unstable, so I spent some time figuring out what actually
> happens (backtrace attached). I think I've also seen it both on an
> Intel graphics card and a Radeon (with the libre driver), although
> lately I've only been using the Intel card, and this backtrace is
> from that setup.
[…]

what's the status with an X stack from squeeze, or sid, or
experimental?

KiBi.


signature.asc
Description: Digital signature


Bug#567952: X.org restarts after NetBeans launch

2011-03-05 Thread Cyril Brulebois
Hi,

Oleksandr Natalenko  (01/02/2010):
> Package: libdrm2
> Version: 2.4.17-1
> 
> After upgrading these packages:
> 
> libdrm2 (2.4.17-1)
> libdrm-intel1 (2.4.17-1)
> libdrm-radeon1 (2.4.17-1)
> libdrm-dev (2.4.17-1)
> 
> X server restarts suddenly after NetBeans 6.8 launch.

what's the status with squeeze, or sid, or experimental?

KiBi.


signature.asc
Description: Digital signature


libdrm: Changes to 'debian-experimental'

2011-03-05 Thread Cyril Brulebois
 debian/changelog |   11 ---
 1 file changed, 8 insertions(+), 3 deletions(-)

New commits:
commit 6c26ff465e0f680800864db026da6a98723a8412
Author: Cyril Brulebois 
Date:   Sat Mar 5 20:27:33 2011 +0100

Upload to experimental.

diff --git a/debian/changelog b/debian/changelog
index 375199f..b9229e2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-libdrm (2.4.24-1) UNRELEASED; urgency=low
+libdrm (2.4.24-1) experimental; urgency=low
 
   [ Christopher James Halse Rogers ]
   * New upstream release.
@@ -9,7 +9,7 @@ libdrm (2.4.24-1) UNRELEASED; urgency=low
 warning, since patches were sent upstream to stop exporting private
 symbols: symbols-declares-dependency-on-other-package
 
- -- Christopher James Halse Rogers   Fri, 04 Mar 2011 
11:24:07 +1100
+ -- Cyril Brulebois   Sat, 05 Mar 2011 20:27:23 +0100
 
 libdrm (2.4.23-3) unstable; urgency=low
 

commit 80190376c877b3cc1fbd9888e225071f4d2bf1bd
Author: Cyril Brulebois 
Date:   Sat Mar 5 20:27:07 2011 +0100

No need to mention previous cherry-picks.

diff --git a/debian/changelog b/debian/changelog
index 886c938..375199f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,7 +2,6 @@ libdrm (2.4.24-1) UNRELEASED; urgency=low
 
   [ Christopher James Halse Rogers ]
   * New upstream release.
-- Contains intel cherry-picks taken in 2.4.23-3.
   * Add new internal radeon symbols to libkms1.symbols
 
   [ Cyril Brulebois ]

commit fefbe7bcf96610372f6344ecd626d8b54b369b4a
Author: Cyril Brulebois 
Date:   Sat Mar 5 20:17:49 2011 +0100

Add a reminder for lintian warning.

diff --git a/debian/changelog b/debian/changelog
index 9f5f54d..886c938 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,15 @@
 libdrm (2.4.24-1) UNRELEASED; urgency=low
 
+  [ Christopher James Halse Rogers ]
   * New upstream release.
 - Contains intel cherry-picks taken in 2.4.23-3.
   * Add new internal radeon symbols to libkms1.symbols
 
+  [ Cyril Brulebois ]
+  * Just as a reminder, not adding a lintian override for the following
+warning, since patches were sent upstream to stop exporting private
+symbols: symbols-declares-dependency-on-other-package
+
  -- Christopher James Halse Rogers   Fri, 04 Mar 2011 
11:24:07 +1100
 
 libdrm (2.4.23-3) unstable; urgency=low


-- 
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/e1pvxcb-00029v...@alioth.debian.org



libdrm: Changes to 'refs/tags/libdrm-2.4.24-1'

2011-03-05 Thread Cyril Brulebois
Tag 'libdrm-2.4.24-1' created by Cyril Brulebois  at 
2011-03-05 19:31 +

Tagging upload of libdrm 2.4.24-1 to experimental.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iEYEABECAAYFAk1yj5YACgkQeGfVPHR5Nd2bzwCfTkA9rrnsR1x8tSbzSjXhgX/q
DlUAnRrZ3gRPWiy/IomKHOiiNWWHbybP
=c8q2
-END PGP SIGNATURE-

Changes since libdrm-2.4.23-3:
Ben Skeggs (3):
  nouveau: nvc0 drm has no concept of "notifier block"
  nouveau: split pushbuf macros specific to nv04-nv50 out, and add nvc0
  nouveau: fix up reloc_emit() to accept NULL target buffer

Benjamin Franzke (5):
  configure.ac: ac_define HAVE_RADEON
  modetest: Create buffers using libkms
  tests/modeprint: Remove needless dependency on drm_intel
  tests/modeprint: Output masks as hex numbers
  modetest: Do no flip twice to a current front buffer

Chris Wilson (7):
  intel: Export CONSTANT_BUFFER addressing mode
  intel: Fallback to old exec if no mrb_exec is available
  intel: compile fix for previous commit after rebasing
  intel: Set the public handle after opening by name
  intel: Remember named bo
  intel: Add I915_PARAM_HAS_RELAXED_DELTA
  configure: Bump version to 2.4.24

Christopher James Halse Rogers (4):
  Merge branch 'upstream-experimental' into debian-experimental
  Revert "intel: Fallback to old exec if no mrb_exec is available"
  Changelog entry for new upstream
  Add new radeon symbols to libkms

Cyril Brulebois (3):
  Add a reminder for lintian warning.
  No need to mention previous cherry-picks.
  Upload to experimental.

Daniel Vetter (2):
  intel: fix relaxed tiling on gen2
  intel: Fixup for the fix for relaxed tiling on gen2

nobled (1):
  libkms/radeon: Add backend

---
 configure.ac|5 
 debian/changelog|   13 ++
 debian/libkms1.symbols  |1 
 include/drm/i915_drm.h  |   14 ++
 intel/intel_bufmgr.c|6 -
 intel/intel_bufmgr.h|2 
 intel/intel_bufmgr_gem.c|   22 ++--
 intel/intel_bufmgr_priv.h   |4 
 libkms/Makefile.am  |4 
 libkms/internal.h   |2 
 libkms/linux.c  |4 
 libkms/radeon.c |  242 
 nouveau/Makefile.am |2 
 nouveau/nouveau_channel.c   |   37 +++---
 nouveau/nouveau_grobj.c |   11 +-
 nouveau/nouveau_pushbuf.h   |   38 --
 nouveau/nouveau_reloc.c |   34 --
 nouveau/nv04_pushbuf.h  |   66 
 nouveau/nvc0_pushbuf.h  |   92 
 tests/modeprint/Makefile.am |4 
 tests/modeprint/modeprint.c |4 
 tests/modetest/Makefile.am  |4 
 tests/modetest/modetest.c   |  137 ++--
 23 files changed, 605 insertions(+), 143 deletions(-)
---


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



Processing of libdrm_2.4.24-1_amd64.changes

2011-03-05 Thread Debian FTP Masters
libdrm_2.4.24-1_amd64.changes uploaded successfully to localhost
along with the files:
  libdrm_2.4.24-1.dsc
  libdrm_2.4.24.orig.tar.gz
  libdrm_2.4.24-1.diff.gz
  libdrm-dev_2.4.24-1_amd64.deb
  libdrm2_2.4.24-1_amd64.deb
  libdrm2-dbg_2.4.24-1_amd64.deb
  libdrm-intel1_2.4.24-1_amd64.deb
  libdrm-intel1-dbg_2.4.24-1_amd64.deb
  libdrm-nouveau1a_2.4.24-1_amd64.deb
  libdrm-nouveau1a-dbg_2.4.24-1_amd64.deb
  libdrm-radeon1_2.4.24-1_amd64.deb
  libdrm-radeon1-dbg_2.4.24-1_amd64.deb
  libkms1_2.4.24-1_amd64.deb
  libkms1-dbg_2.4.24-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/e1pvxf0-00022t...@franck.debian.org



Bug#376666: xutils-dev: [Patch] Support M32R target

2011-03-05 Thread Cyril Brulebois
tag 37 upstream
thanks

Hi,

Kazuhiro Inaoka  (04/07/2006):
> Could you please apply the following patch?
> This patch to support M32R target.

upstream is apparently waiting for an updated patch?
  https://bugs.freedesktop.org/show_bug.cgi?id=10020#c10

KiBi.


signature.asc
Description: Digital signature


Processed: Re: Bug#376666: xutils-dev: [Patch] Support M32R target

2011-03-05 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tag 37 upstream
Bug #37 [xutils-dev] xutils-dev: [Patch] Support M32R target
Bug #404650 [xutils-dev] xutils-dev:[Patch] Support M32R target
Added tag(s) upstream.
Added tag(s) upstream.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
37: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=37
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.129935515326528.transcr...@bugs.debian.org



Bug#613674: Subject: xutils-dev: Can't get have_xmlto_text unless I add some content to the conftest.xml

2011-03-05 Thread Cyril Brulebois
Hi Peter,

Julien Cristau  (16/02/2011):
> On Wed, Feb 16, 2011 at 11:24:36 -0500, Gaetan Nadon wrote:
> > I get the same output but the return code is zero.
> > That is why the test passes in the macro.
> > 
> You're right, I get a 0 return code as well.  Peter?

ping?

KiBi.


signature.asc
Description: Digital signature


Bug#480620: xutils-dev: bashism in /bin/sh script

2011-03-05 Thread Cyril Brulebois
Hi,

Andres Mejia  (01/12/2008):
> Attached is a patch that could fix this issue.

thanks. Feel free to forward it upstream (product xorg, component
“* Other” I guess):
  http://bugs.freedesktop.org/

(Didn't check the patch itself though.)

KiBi.


signature.asc
Description: Digital signature


Bug#584281: xutils-dev: cannot handle include files a/foo.h and b/foo.h (at least in some cases)

2011-03-05 Thread Cyril Brulebois
Hi Jorgen,

Jorgen Grahn  (02/06/2010):
> If you let makedepend generate dependencies for multiple .c files in
> different directories, and two of them do
> […]
> This bug seems to exist in all makedepends I have tried. I suppose
> it comes from the optimizations mentioned in the manual page. I
> really don't like it, because it will silently generate Makefiles
> with bogus dependency graphs in them for what (to me at least) looks
> like pretty normal source code. Such Makefiles are dangerous --
> especially when you trust them, because you let the standard tool
> makedepend generate them.
> 
> If it cannot be fixed, this bug should be mentioned in the
> makedepend(1) man page.

wow, a makedepend user. :)

Feel free to forward that upstream, product xorg, component Other:
  http://bugs.freedesktop.org/

KiBi.


signature.asc
Description: Digital signature


libdrm_2.4.24-1_amd64.changes ACCEPTED into experimental

2011-03-05 Thread Debian FTP Masters



Accepted:
libdrm-dev_2.4.24-1_amd64.deb
  to main/libd/libdrm/libdrm-dev_2.4.24-1_amd64.deb
libdrm-intel1-dbg_2.4.24-1_amd64.deb
  to main/libd/libdrm/libdrm-intel1-dbg_2.4.24-1_amd64.deb
libdrm-intel1_2.4.24-1_amd64.deb
  to main/libd/libdrm/libdrm-intel1_2.4.24-1_amd64.deb
libdrm-nouveau1a-dbg_2.4.24-1_amd64.deb
  to main/libd/libdrm/libdrm-nouveau1a-dbg_2.4.24-1_amd64.deb
libdrm-nouveau1a_2.4.24-1_amd64.deb
  to main/libd/libdrm/libdrm-nouveau1a_2.4.24-1_amd64.deb
libdrm-radeon1-dbg_2.4.24-1_amd64.deb
  to main/libd/libdrm/libdrm-radeon1-dbg_2.4.24-1_amd64.deb
libdrm-radeon1_2.4.24-1_amd64.deb
  to main/libd/libdrm/libdrm-radeon1_2.4.24-1_amd64.deb
libdrm2-dbg_2.4.24-1_amd64.deb
  to main/libd/libdrm/libdrm2-dbg_2.4.24-1_amd64.deb
libdrm2_2.4.24-1_amd64.deb
  to main/libd/libdrm/libdrm2_2.4.24-1_amd64.deb
libdrm_2.4.24-1.diff.gz
  to main/libd/libdrm/libdrm_2.4.24-1.diff.gz
libdrm_2.4.24-1.dsc
  to main/libd/libdrm/libdrm_2.4.24-1.dsc
libdrm_2.4.24.orig.tar.gz
  to main/libd/libdrm/libdrm_2.4.24.orig.tar.gz
libkms1-dbg_2.4.24-1_amd64.deb
  to main/libd/libdrm/libkms1-dbg_2.4.24-1_amd64.deb
libkms1_2.4.24-1_amd64.deb
  to main/libd/libdrm/libkms1_2.4.24-1_amd64.deb


Override entries for your package:
libdrm-dev_2.4.24-1_amd64.deb - optional libdevel
libdrm-intel1-dbg_2.4.24-1_amd64.deb - extra debug
libdrm-intel1_2.4.24-1_amd64.deb - optional libs
libdrm-nouveau1a-dbg_2.4.24-1_amd64.deb - extra debug
libdrm-nouveau1a_2.4.24-1_amd64.deb - optional libs
libdrm-radeon1-dbg_2.4.24-1_amd64.deb - extra debug
libdrm-radeon1_2.4.24-1_amd64.deb - optional libs
libdrm2-dbg_2.4.24-1_amd64.deb - extra debug
libdrm2_2.4.24-1_amd64.deb - optional libs
libdrm_2.4.24-1.dsc - source libs
libkms1-dbg_2.4.24-1_amd64.deb - extra debug
libkms1_2.4.24-1_amd64.deb - optional libs

Announcing to debian-devel-chan...@lists.debian.org


Thank you for your contribution to Debian.


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



Bug#616033: xutils-dev: circular build-dep

2011-03-05 Thread Cyril Brulebois
Hi Steve,

Steve Langasek  (01/03/2011):
> The xutils-dev package recently had a Build-Depends: xutils-dev added with
> the explanation:
> 
>   * Add build-dep on xutils-dev for lndir.
> 
> I haven't been able to figure out why this is, as nothing in the build
> system appears to invoke lndir.  Hopefully there's a better way to
> accomplish the goal here, since circular build-deps are a problem for port
> bootstrapping.

I added that because of the following part in the lndir/configure.ac diff:
| +AC_USE_SYSTEM_EXTENSIONS
| +
| +# Require X.Org macros 1.8 or later for MAN_SUBSTS set by 
XORG_MANPAGE_SECTIONS
| +m4_ifndef([XORG_MACROS_VERSION],
| +   [m4_fatal([must install xorg-macros 1.8 or later before running 
autoconf/autogen])])
| +XORG_MACROS_VERSION(1.8)
| +XORG_DEFAULT_OPTIONS

(BTW, it's needed for:
  $ grep -l xorg-macros */configure.ac
  imake/configure.ac
  lndir/configure.ac
  makedepend/configure.ac
  util-macros/configure.ac
  xorg-cf-files/configure.ac
but I tend to look more closely on upstream diffs.)

As Julien said, removing xutils-dev from B-D still results in a
successful build, but I'm not very keen on removing that package, we
might need it “harder” later.

Maybe we should just add a Build-Depends-Bootstrap… field (without
that package in B-D), if the proposal[1] mentioned on dda@[2] gets
accepted?

 1. http://wiki.debian.org/DebianBootstrap/EmdebianSprint2011
 2. http://lists.debian.org/debian-devel-announce/2011/03/msg0.html

KiBi.


signature.asc
Description: Digital signature


Bug#524558: marked as done (Occasional X hangs where drmCommandWrite() never returns)

2011-03-05 Thread Debian Bug Tracking System
Your message dated Sat, 5 Mar 2011 22:29:48 +0100
with message-id <20110305212948.gg19...@debian.org>
and subject line Re: Bug#524558: Occasional X hangs where drmCommandWrite() 
never returns
has caused the Debian Bug report #524558,
regarding Occasional X hangs where drmCommandWrite() never returns
to be marked as done.

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

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


-- 
524558: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=524558
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libdrm2
Version: 2.4.9-1
Severity: normal

Hi,

I saw this sometimes on KDE 3, now it happens many times a day on KDE
4 from unstable, so I spent some time figuring out what actually
happens (backtrace attached). I think I've also seen it both on an
Intel graphics card and a Radeon (with the libre driver), although
lately I've only been using the Intel card, and this backtrace is from
that setup.

The symptoms:

X hangs in such a way that only the mouse pointer moves, but nothing
else ever happens. X does not respond to keyboard events (caps lock
led does not toggle, ctrl-alt-backspace does not zap server). Even
changing to a different vt with ctrl-alt-F1 does not work. The only
way out seems to be to kill the X server with the magic sysrq SAK
(alt-sysrq-k) command or to kill X from a remote console. Even this
usually leaves the screen in a broken state. There is nothing special
in dmesg.

Killing X clients while the server is hung has no effect. Nothing
changes on the screen, except the mouse pointer can be moved.

The details:

I don't seem to have a script of that now here, but I seem to remember
that the innermost function that never returns is drmIoctl(), but at
least drmCommandWrite() never returns. I don't know anything about the
functions, but my guess about the cause is the size parameter of
drmCommandWrite() that seems to me to be totally bogus
(18446744073709551615). See the backtraces (short and full) below.

Please mention if there's something more I can do to help debug this,
or if you think I should rather report this upstream.

Sami



GNU gdb 6.8-debian
Copyright (C) 2008 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later 
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-linux-gnu"...
Attaching to program: /usr/bin/Xorg, process 5152
Reading symbols from /usr/lib/libpciaccess.so.0...done.
Loaded symbols for /usr/lib/libpciaccess.so.0
Reading symbols from /lib/libdl.so.2...Reading symbols from 
/usr/lib/debug/lib/libdl-2.9.so...done.
done.
Loaded symbols for /lib/libdl.so.2
Reading symbols from /lib/libpthread.so.0...Reading symbols from 
/usr/lib/debug/lib/libpthread-2.9.so...done.
[Thread debugging using libthread_db enabled]
[New Thread 0x7f4269e5b790 (LWP 5152)]
done.
Loaded symbols for /lib/libpthread.so.0
Reading symbols from /usr/lib/libXfont.so.1...done.
Loaded symbols for /usr/lib/libXfont.so.1
Reading symbols from /usr/lib/libXau.so.6...done.
Loaded symbols for /usr/lib/libXau.so.6
Reading symbols from /usr/lib/libfontenc.so.1...done.
Loaded symbols for /usr/lib/libfontenc.so.1
Reading symbols from /usr/lib/libpixman-1.so.0...done.
Loaded symbols for /usr/lib/libpixman-1.so.0
Reading symbols from /usr/lib/libhal.so.1...done.
Loaded symbols for /usr/lib/libhal.so.1
Reading symbols from /usr/lib/libdbus-1.so.3...done.
Loaded symbols for /usr/lib/libdbus-1.so.3
Reading symbols from /usr/lib/libXdmcp.so.6...done.
Loaded symbols for /usr/lib/libXdmcp.so.6
Reading symbols from /usr/lib/libgcrypt.so.11...done.
Loaded symbols for /usr/lib/libgcrypt.so.11
Reading symbols from /lib/libaudit.so.0...done.
Loaded symbols for /lib/libaudit.so.0
Reading symbols from /lib/libselinux.so.1...done.
Loaded symbols for /lib/libselinux.so.1
Reading symbols from /lib/libm.so.6...Reading symbols from 
/usr/lib/debug/lib/libm-2.9.so...done.
done.
Loaded symbols for /lib/libm.so.6
Reading symbols from /lib/librt.so.1...Reading symbols from 
/usr/lib/debug/lib/librt-2.9.so...done.
done.
Loaded symbols for /lib/librt.so.1
Reading symbols from /lib/libc.so.6...Reading symbols from 
/usr/lib/debug/lib/libc-2.9.so...done.
done.
Loaded symbols for /lib/libc.so.6
Reading symbols from /usr/lib/libz.so.1...done.
Loaded symbols for /usr/lib/libz.so.1
Reading symbols from /lib/ld-linux-x86-64.so.2...Reading symbols from 
/usr/lib/debug/lib/ld-2.9.so...do

Bug#531755: marked as done (libdrm-intel1: OpenGL do not survive suspend)

2011-03-05 Thread Debian Bug Tracking System
Your message dated Sat, 5 Mar 2011 22:33:20 +0100
with message-id <20110305213320.ga11...@debian.org>
and subject line Re: Bug#531755: libdrm-intel1: OpenGL do not survive suspend
has caused the Debian Bug report #531755,
regarding libdrm-intel1: OpenGL do not survive suspend
to be marked as done.

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

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


-- 
531755: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=531755
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libdrm-intel1
Version: 2.4.11+git+20090519+f355ad8-1
Severity: important

OpenGL applications freeze after suspend (taking 100% CPU), in particular
OpenGL screensavers. I then have to switch to the console and kill the affected
application to be able to log in again in Xorg.

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

Kernel: Linux 2.6.29-2-686 (SMP w/2 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages libdrm-intel1 depends on:
ii  libc6  2.9-13GNU C Library: Shared libraries
ii  libdrm22.4.11+git+20090519+f355ad8-1 Userspace interface to kernel rend

libdrm-intel1 recommends no packages.

libdrm-intel1 suggests no packages.

-- no debconf information


--- End Message ---
--- Begin Message ---
Cyril Brulebois  (05/03/2011):
> before possibly reassigning, what's the status with squeeze or sid
> or experimental?

Submitter's mail is still bouncing, closing…

KiBi.


signature.asc
Description: Digital signature
--- End Message ---


Bug#567952: X.org restarts after NetBeans launch

2011-03-05 Thread Oleksandr Natalenko
Hi.

Sorry, no idea, I've switched to Arch. But in November, 2010 it was OK in sid.

2011/3/5 Cyril Brulebois :
> Hi,
>
> Oleksandr Natalenko  (01/02/2010):
>> Package: libdrm2
>> Version: 2.4.17-1
>>
>> After upgrading these packages:
>>
>> libdrm2 (2.4.17-1)
>> libdrm-intel1 (2.4.17-1)
>> libdrm-radeon1 (2.4.17-1)
>> libdrm-dev (2.4.17-1)
>>
>> X server restarts suddenly after NetBeans 6.8 launch.
>
> what's the status with squeeze, or sid, or experimental?
>
> KiBi.
>
> -BEGIN PGP SIGNATURE-
> Version: GnuPG v1.4.10 (GNU/Linux)
>
> iEYEARECAAYFAk1yjccACgkQeGfVPHR5Nd1B1ACeJ7ShxtqmheC4VLaUBPgW8vml
> +gUAoKC8CutMTaGMb8xPlhN8Vl5+TgYi
> =cmU8
> -END PGP SIGNATURE-
>
>



-- 
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/aanlktik1mnh_eoifanbut-qtwgtkybzs1bifhcsca...@mail.gmail.com



Processing of compiz-fusion-plugins-unsupported_0.9.2.1+git20110224.4d704607-1_i386.changes

2011-03-05 Thread Debian FTP Masters
compiz-fusion-plugins-unsupported_0.9.2.1+git20110224.4d704607-1_i386.changes 
uploaded successfully to localhost
along with the files:
  compiz-fusion-plugins-unsupported_0.9.2.1+git20110224.4d704607-1.dsc
  compiz-fusion-plugins-unsupported_0.9.2.1+git20110224.4d704607.orig.tar.gz
  compiz-fusion-plugins-unsupported_0.9.2.1+git20110224.4d704607-1.debian.tar.gz
  compiz-fusion-plugins-unsupported_0.9.2.1+git20110224.4d704607-1_i386.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/e1pvz7f-00079r...@franck.debian.org



compiz-fusion-plugins-unsupported: Changes to 'debian-unstable'

2011-03-05 Thread Sean Finney
 debian/changelog|   17 +
 debian/compat   |2 
 debian/control  |   13 +
 debian/copyright|  191 
 debian/docs |1 
 debian/install  |6 
 debian/patches/series   |1 
 debian/patches/upstream_git_set-include-order.patch |  146 ---
 debian/rules|   96 --
 debian/source/format|1 
 debian/source/local-options |2 
 debian/watch|4 
 12 files changed, 233 insertions(+), 247 deletions(-)

New commits:
commit c70a43fd2f49849582a557c53539da0d144afc86
Author: Sean Finney 
Date:   Sat Mar 5 11:48:03 2011 +

Okay no, really prepare it this time.

diff --git a/debian/changelog b/debian/changelog
index 1be4062..2f84405 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -11,8 +11,9 @@ compiz-fusion-plugins-unsupported 
(0.9.2.1+git20110224.4d704607-1) experimental;
   [ Sean Finney ]
   * Add common 3.0 format local-options
   * Add Build-Dep on libglibmm-2.4-dev
+  * Update copyright information
 
- -- Sean Finney   Sat, 05 Mar 2011 10:30:08 +
+ -- Sean Finney   Sat, 05 Mar 2011 11:47:28 +
 
 compiz-fusion-plugins-unsupported (0.8.4-4) UNRELEASED; urgency=low
 

commit df7781e81db3a54bf9062d3667bcc86bf2846c33
Author: Sean Finney 
Date:   Sat Mar 5 11:47:00 2011 +

Update copyright information

diff --git a/debian/copyright b/debian/copyright
index 7e8a439..49786dc 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -17,3 +17,194 @@ License:
 
 The Debian packaging is (C) 2007, sean finney  and
 is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
+
+Copyright:
+
+./atlantis/models/ObjToC.config: * Copyright : (C) 2007 by Dennis Kasprzyk
+./atlantis/models/ObjToC.config: * Copyright : (C) 2007-2008 by David Mikos
+./atlantis/models/ObjToC.java: * Copyright : (C) 2007-2008 by David Mikos
+./atlantis/src/atlantis.cpp: * (c) Copyright 1993, 1994, Silicon Graphics, Inc.
+./atlantis/src/atlantis.cpp: * Copyright : (C) 2007 by Dennis Kasprzyk
+./atlantis/src/atlantis.cpp: * Copyright : (C) 2007-2008 by David Mikos
+./atlantis/src/atlantis.cpp:/* Copyright (c) E. Lassauge, 1998. */
+./atlantis/src/atlantis.h: * (c) Copyright 1993, 1994, Silicon Graphics, Inc.
+./atlantis/src/atlantis.h: * Copyright : (C) 2007 by Dennis Kasprzyk
+./atlantis/src/atlantis.h: * Copyright : (C) 2007-2008 by David Mikos
+./atlantis/src/atlantis.h:/* Copyright (c) E. Lassauge, 1998. */
+./atlantis/src/bfish.cpp: * Copyright : (C) 2007 by Dennis Kasprzyk
+./atlantis/src/bfish.cpp: * Copyright : (C) 2007-2008 by David Mikos
+./atlantis/src/bubble.cpp: * Copyright : (C) 2007 by Dennis Kasprzyk
+./atlantis/src/bubble.cpp: * Copyright : (C) 2007-2008 by David Mikos
+./atlantis/src/chromis.cpp: * Copyright : (C) 2007 by Dennis Kasprzyk
+./atlantis/src/chromis.cpp: * Copyright : (C) 2007-2008 by David Mikos
+./atlantis/src/coral.cpp: * Copyright : (C) 2007 by Dennis Kasprzyk
+./atlantis/src/coral.cpp: * Copyright : (C) 2007-2008 by David Mikos
+./atlantis/src/coral2.cpp: * Copyright : (C) 2007 by Dennis Kasprzyk
+./atlantis/src/coral2.cpp: * Copyright : (C) 2007-2008 by David Mikos
+./atlantis/src/crab.cpp: * Copyright : (C) 2007 by Dennis Kasprzyk
+./atlantis/src/crab.cpp: * Copyright : (C) 2007-2008 by David Mikos
+./atlantis/src/dolphin.cpp: * (c) Copyright 1993, 1994, Silicon Graphics, Inc.
+./atlantis/src/dolphin.cpp: * Copyright : (C) 2007 by Dennis Kasprzyk
+./atlantis/src/dolphin.cpp: * Copyright : (C) 2007-2008 by David Mikos
+./atlantis/src/dolphin.cpp:/* Copyright (c) E. Lassauge, 1998. */
+./atlantis/src/fish.cpp: * Copyright : (C) 2007 by Dennis Kasprzyk
+./atlantis/src/fish.cpp: * Copyright : (C) 2007-2008 by David Mikos
+./atlantis/src/fish2.cpp: * Copyright : (C) 2007 by Dennis Kasprzyk
+./atlantis/src/fish2.cpp: * Copyright : (C) 2007-2008 by David Mikos
+./atlantis/src/float.cpp: * Copyright : (C) 2007 by Dennis Kasprzyk
+./atlantis/src/float.cpp: * Copyright : (C) 2007-2008 by David Mikos
+./atlantis/src/scuttle.cpp: * Copyright : (C) 2007 by Dennis Kasprzyk
+./atlantis/src/scuttle.cpp: * Copyright : (C) 2007-2008 by David Mikos
+./atlantis/src/shark.cpp: * (c) Copyright 1993, 1994, Silicon Graphics, Inc.
+./atlantis/src/shark.cpp: * Copyright : (C) 2007 by Dennis Kasprzyk
+./atlantis/src/shark.cpp: * Copyright : (C) 2007-2008 by David Mikos
+./atlantis/src/shark.cpp:/* Copyright (c) E. Lassauge, 1998. */
+./atlantis/src/swim.cpp: * (c) Copyright 1993, 1994, Silicon Graphics, Inc.
+./atlantis/src/swim.cpp: * Copyright : (C) 2007 by Dennis Kasprzyk
+./atlantis/src/swim.cpp: * Copyright : (C) 2007-2008 by David Mikos
+./atlantis/src/swim.cpp:/* Copyright (

compiz-fusion-plugins-unsupported: Changes to 'refs/tags/0.9.0'

2011-03-05 Thread Sean Finney
Tag '0.9.0' created by Guillaume Seguin  at 2010-07-04 08:42 
+

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

iEYEABECAAYFAkwwSX0ACgkQFGCg8MK49G55CQCgppbIoBfP9KZO1hh3qF7JaALD
MscAnjHE5InyzQSGTroABevML46zJ9+e
=4dd8
-END PGP SIGNATURE-

Changes since the dawn of time:
Guillaume Seguin (2):
  Initial import
  Add atlantis and cubemodel

Repos Merger (24):
  Automatic submodules references update
  Automatic submodules references update
  Automatic submodules references update
  Automatic submodules references update
  Automatic submodules references update
  Automatic submodules references update
  Automatic submodules references update
  Automatic submodules references update
  Automatic submodules references update
  Automatic submodules references update
  Automatic submodules references update
  Automatic submodules references update
  Automatic submodules references update
  Automatic submodules references update
  Automatic submodules references update
  Automatic submodules references update
  Automatic submodules references update
  Automatic submodules references update
  Automatic submodules references update
  Automatic submodules references update
  Automatic submodules references update
  Automatic submodules references update
  Automatic submodules references update
  Automatic submodules references update

Sam Spilsbury (1):
  Add git-dist target


-- 
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/e1pvznb-0007v0...@alioth.debian.org



compiz-fusion-plugins-unsupported: Changes to 'refs/tags/compiz-fusion-plugins-unsupported-0.9.2.1+git20110224.4d704607-1'

2011-03-05 Thread Sean Finney
Tag 'compiz-fusion-plugins-unsupported-0.9.2.1+git20110224.4d704607-1' created 
by Sean Finney  at 2011-03-05 11:51 +

Debian release 0.9.2.1+git20110224.4d704607-1

Changes since 0.9.0:
C-F Language team (16):
  translation updates
  translation update
  emerald translation updates
  translation updates
  translation updates
  translation updates
  new translations and updates
  new translations and updates
  l10n updates
  l10n updates
  l10n updates
  l10n updates
  l10n updates
  l10n updates
  l10n updates
  l10n updates

C-F language team (1):
  translation updates

Compiz Fusion l10n team (1):
  Translations update

Cyril Brulebois (4):
  Add Vcs-* fields.
  Tighten dependencies on compiz-core.
  Upload to unstable.
  Add Homepage field.

Danny Baumann (86):
  Also damage screen on the last animation step.
  Solve some animation weirdnesses.
  Fix tiling animation multihead issues by using the fullscreen output.
  printf -> compLogMessage
  Remove unneeded hint.
  Dummy commit.
  Dummy commit.
  Indention fixes.
  Update file list.
  Update file list.
  Update to include -main plugin translatable strings.
  More German translation updates.
  Even more German translations.
  Fix typo.
  Fixed a few typos and added some more translations.
  Slight optimization.
  Remove superflous file.
  Update file list.
  Update template.
  Updated German translation for gotovp.
  Translation update by Forlong.
  Update file list.
  Indention fix.
  Compiz indention style.
  Fix typo.
  Update with intltool-update
  Added translations for scalefilter.
  Some updates to German translation.
  Some more minor German translation updates.
  Update file list.
  More German translation updates.
  Update file list.
  Fix indention.
  Load snow after image loaders.
  Update file list.
  Update template.
  Compiz indention style and some smaller cleanup.
  Added default snowflake image.
  Added images to build system.
  po/Makefile.in.in is autogenerated.
  Set DATADIR define to $DATADIR/compiz.
  Update file list.
  Some German translation updates.
  Update file list.
  Only include present XML files.
  Added mswitch to build system.
  Remove gotovp metadata.
  Update German translation to reflect vpswitch changes.
  Some German translation updates.
  Tile vertically and horizontally are keys, too.
  Track core changes.
  Track core changes.
  Track core changes.
  Track core changes.
  Track core changes.
  Track core changes.
  Remove unneeded includes.
  Remove useless includes.
  Remove useless includes.
  Dummy commit.
  Dummy commit.
  xml -> xml.in
  Added build system for 3D and atlantis.
  Simplify window size calculations.
  Properly terminate 3D usage after ending cube rotation.
  Fix typo.
  Fix typo.
  Compiz indention style.
  Use core matrix functions.
  Use CompVector.
  Track checkOrientation API changes.
  Fix whitespace.
  Don't define VERSION twice.
  Remove useless check.
  Fix another typo.
  Fix division-by-zero when snow speed is 100.
  Remove 3D from build system.
  Send out sync request when changing window size.
  Combine bring_to_front and highlight_selected options into one option, 
making them mutually exclusive.
  Track core changes.
  Add hu to LINGUAS file.
  Also add ko to LINGUAS file.
  Added CMake build file.
  Added build system for elements & cubemodel, update atlantis file list.
  Added missing Makefile.
  Dummy commit

David Mikos (7):
  Neaten up getline usage and split code into separate file.
  Faster loading by custom tokenizer instead of getLine.
  Fix broken loading animations so that frames checked right to left.
  Additional fix so that correct number of zeros in animation are found.
  Document ObjToC.java and make it easier to use.
  Fix stretching on rescale for multiple monitors.
  Fix stretching on rescaling for multiple monitors.

Dennis Kasprzyk (39):
  Makefile update
  Makefile update
  Makefile update
  Makefile update
  build system
  build without showdesktop
  don't install showdesktop.xml
  Applied lastest core changes
  Applied lastest core changes
  Rename to Compiz fusion
  xml->xml.in
  dummy commit
  xml->xml.in
  xml->xml.in
  Added translation support.
  Added translation support.
  Remove obsolete deps/features from vtable
  Remove obsolete deps/features from vtable
  Remove obsolete deps/features from vtable
  Added polish translation.
  Fix schema build.
  Require right bcop version.
  New action system

Bug#524558: Occasional X hangs where drmCommandWrite() never returns

2011-03-05 Thread Sami Liedes
On Sat, Mar 05, 2011 at 08:24:59PM +0100, Cyril Brulebois wrote:
> what's the status with an X stack from squeeze, or sid, or
> experimental?

I'm nowadays using UXA with X from sid. As this bug only occured with
EXA, hard to say. I haven't seen freezes lately. I guess UXA will be
the long term solution anyway.

Sami


signature.asc
Description: Digital signature


Bug#613593: xserver-xorg-video-radeon: [regression] X fails to start

2011-03-05 Thread Stephen Kitt
On Thu, 03 Mar 2011 10:27:31 +0100, Michel Dänzer  wrote:
> On Die, 2011-03-01 at 22:22 +0100, Stephen Kitt wrote: 
> > How about the attached patches (against current unstable)? On the server
> > side, they add an EXA_REQUIRES_UPLOAD_DOWNLOAD flag, which ignores options
> > deactivating UTS and DFS with a warning in the logs; on the driver side,
> > they state that r600 requires UTS and DFS. I imagine radeon_exa_funcs.c
> > and evergreen_exa.c would need a similar patch, [...]
> 
> Indeed, they would.
> 
> I can't help feeling this is overkill. Why did you set these options in
> the first place?

According to my VCS logs I must have set them while investigating the
corruption problem which I ended up reporting as
http://bugs.debian.org/573231 (which was a kernel bug). Unfortunately I
forgot to remove them...

> A simpler solution might be to put a warning in the log file if any of
> these options are used, reminding of the manpage bit about them only
> being intended for debugging purposes, and adding that they might cause
> any kind of problems.

Right, that would be simpler and more generic. I do know though that if I
have the choice between a system which crashes (even with a helpful log
message) and one which doesn't, I prefer the former! I realise that given
that these options aren't meant to be used in general, handling them
specifically can seem overkill; but I've seen them mentioned a lot in various
forums, so who knows how many users have them in their configuration file...

> Anyway, some technical comments on the patches below. If you still feel
> they are necessary, please post them individually (e.g. as a series with
> git send-email) to the xorg-de...@lists.freedesktop.org list for review.

OK, I'll do that, thanks for the review!

Regards,

Stephen


signature.asc
Description: PGP signature


Bug#616485: libgl1-mesa-dri/radeon: [amd64] iceweasel segfault from flashplugin-nonfree inside libgl-mesa-*

2011-03-05 Thread Yann Dirson
On Fri, Mar 04, 2011 at 10:30:52PM +0100, Cyril Brulebois wrote:
> Hi Yann,
> 
> Yann Dirson  (04/03/2011):
> > My main iceweasel session started yesterday to crash the browser.
> > It has many tabs open (read ~100), so locating the precise page will
> > unfortunately take some time (I'll keep the session for further
> > investigation anyway).  Running it under -debug, I got different
> > backtraces, but the common point is:
> > 
> > * the crash occurs in libgl1-mesa-* (the
> >   numerous initial debug sessions without -dbg package installed
> >   pointed to -dri, but afterwards I got other trace involving -glx)
> > * the libgl* functions are called from flashplugin-nonfree
> > 
> > Note that I had upgraded mesalibs to unstable the same day, but it was
> > after the first crashes, in the hope that they would be fixed:
> > 
> > [UPGRADE] libgl1-mesa-dev 7.7.1-4 -> 7.10-4
> > [UPGRADE] libgl1-mesa-dri 7.7.1-4 -> 7.10-4
> > [UPGRADE] libgl1-mesa-glx 7.7.1-4 -> 7.10-4
> > [UPGRADE] mesa-common-dev 7.7.1-4 -> 7.10-4
> 
> what if you try 7.10-2 from snapshot.d.o?

Still crashes, even after restart X (for the 3rd backtrace here only),
but different traces:

#0  _math_matrix_analyse (mat=0x0) at math/m_matrix.c:1372
#1  0x7fffa76ead98 in _mesa_update_modelview_project (ctx=0x7fffa7102000, 
new_state=) at main/matrix.c:624
#2  0x7fffa7715823 in _mesa_update_state_locked (ctx=0x7fffa7102000) at 
main/state.c:585
#3  0x7fffa7715d21 in _mesa_update_state (ctx=0x7fffa7102000) at 
main/state.c:674
#4  0x7fffa7693fdc in radeonMakeCurrent (driContextPriv=, driDrawPriv=0x7fffa2205e80, driReadPriv=0x7fffa2205e80) at 
radeon_common_context.c:839
#5  0x7fffa76544e7 in driBindContext (pcp=0x7fffa58ccd80, pdp=0x14e1007, 
prp=0x7fffa2205e80) at ../common/dri_util.c:196
#6  0x7fffa7feeb2f in dri2_bind_context (context=0x7fffb9190da0, old=, draw=, read=) at 
dri2_glx.c:149
#7  0x7fffa7fc8453 in MakeContextCurrent (dpy=0x76d72000, 
draw=41960380, read=41960380, gc_user=) at glxcurrent.c:263
#8  0x7fffaf5ea51c in ?? () from 
/usr/lib/flashplugin-nonfree/libflashplayer.so
[...]

#0  _mesa_lock_context_textures (ctx=0x0) at main/texobj.c:1242
#1  0x7fffa2eb7d19 in _mesa_update_state (ctx=0x0) at main/state.c:673
#2  0x7fffa2e35fdc in radeonMakeCurrent (driContextPriv=, driDrawPriv=0x7fffd0791c40, driReadPriv=0x7fffd0791c40) at 
radeon_common_context.c:839
#3  0x7fffa2df64e7 in driBindContext (pcp=0x7fffcecaff80, 
pdp=0x7fffa37963d0, prp=0x7fffd0791c40) at ../common/dri_util.c:196
#4  0x7fffa3790b2f in dri2_bind_context (context=0x7fffca0abfc0, old=, draw=, read=) at 
dri2_glx.c:149
#5  0x7fffa376a453 in MakeContextCurrent (dpy=0x76d72000, 
draw=41966645, read=41966645, gc_user=) at glxcurrent.c:263
#6  0x7fffaa8f851c in ?? () from 
/usr/lib/flashplugin-nonfree/libflashplayer.so
[...]

#0  0x7fffafb8d837 in _math_matrix_viewport (m=0x7fffaf511b18, x=0, y=0, 
width=0, height=0, zNear=0, zFar=, depthMax=65535) at 
math/m_matrix.c:1121
#1  0x7fffafb7fcd7 in _mesa_set_viewport (ctx=0x7fffaf502000, x=0, y=0, 
width=0, height=0) at main/viewport.c:90
#2  0x7fffafb01515 in _mesa_check_init_viewport (ctx=0x7fffaf511b18, 
width=640, height=390) at main/context.c:1378
#3  0x7fffafb018db in _mesa_make_current (newCtx=0x7fffaf502000, 
drawBuffer=0x7fffa9a4e800, readBuffer=0x7fffa9a4e800) at main/context.c:1511
#4  0x7fffafaddfcf in radeonMakeCurrent (driContextPriv=, driDrawPriv=0x7fffa8279480, driReadPriv=0x7fffa8279480) at 
radeon_common_context.c:835
#5  0x7fffafa9e4e7 in driBindContext (pcp=0x7fffde814840, pdp=0x0, 
prp=0x7fffa8279480) at ../common/dri_util.c:196
#6  0x7fffb0438b2f in dri2_bind_context (context=0x7fffb9b2f300, old=, draw=, read=) at 
dri2_glx.c:149
#7  0x7fffb0412453 in MakeContextCurrent (dpy=0x76d72000, 
draw=52440619, read=52440619, gc_user=) at glxcurrent.c:263
#8  0x7fffb66f851c in ?? () from 
/usr/lib/flashplugin-nonfree/libflashplayer.so
[...]

> Maybe r600c instead of r600g
> will help. See 3rd bullet on: http://blog.ikibiki.org/2011/02/21/DXN-6/

Ah, so that's planned for 7.10-5 or so ?  But then 7.10-2 would have
made things better, if I understand well.

I also note that I still have the old 7.7.1 glu packages.  Not being
sure about the effect of any mismatch here...

Should I try to downgrade any other packages ?  Or to another specific
version ?



-- 
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/20110305215609.ge2...@home.lan



Bug#567952: marked as done (X.org restarts after NetBeans launch)

2011-03-05 Thread Debian Bug Tracking System
Your message dated Sat, 5 Mar 2011 22:58:13 +0100
with message-id <20110305215813.gc11...@debian.org>
and subject line Re: Bug#567952: X.org restarts after NetBeans launch
has caused the Debian Bug report #567952,
regarding X.org restarts after NetBeans launch
to be marked as done.

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

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


-- 
567952: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=567952
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libdrm2
Version: 2.4.17-1

After upgrading these packages:

libdrm2 (2.4.17-1)
libdrm-intel1 (2.4.17-1)
libdrm-radeon1 (2.4.17-1)
libdrm-dev (2.4.17-1)

X server restarts suddenly after NetBeans 6.8 launch. The backtrace is:

0: /usr/bin/X (xorg_backtrace+0x3b) [0x80e68cb]
1: /usr/bin/X (0x8048000+0x60ad5) [0x80a8ad5]
2: (vdso) (__kernel_rt_sigreturn+0x0) [0xe40c]
3: /usr/bin/X (dixLookupPrivate+0x44) [0x808c844]
4: /usr/lib/xorg/modules/extensions/libdri2.so (0xb7704000+0xe8c) [0xb7704e8c]
5: /usr/lib/xorg/modules/extensions/libdri2.so (DRI2DestroyDrawable+0x28) 
[0xb7704ee8]
6: /usr/lib/xorg/modules/extensions/libglx.so (0xb730+0x42228) 
[0xb7342228]
7: /usr/lib/xorg/modules/extensions/libglx.so (0xb730+0x36bd8) 
[0xb7336bd8]
8: /usr/bin/X (FreeClientResources+0xdf) [0x808fa4f]
9: /usr/bin/X (CloseDownClient+0x6f) [0x806d1cf]
10: /usr/bin/X (0x8048000+0x2ae38) [0x8072e38]
11: /usr/bin/X (0x8048000+0x1e95a) [0x806695a]
12: /lib/i686/cmov/libc.so.6 (__libc_start_main+0xe5) [0xb742db55]
13: /usr/bin/X (0x8048000+0x1e541) [0x8066541]
Segmentation fault at address 0xc5b9fad0


--- End Message ---
--- Begin Message ---
Hi,

Oleksandr Natalenko  (05/03/2011):
> Sorry, no idea, I've switched to Arch. But in November, 2010 it was
> OK in sid.

thanks for the follow-up, closing accordingly.

KiBi.


signature.asc
Description: Digital signature
--- End Message ---


Bug#569613: marked as done (Bug in libdrm-intel1 - Xorg crashes)

2011-03-05 Thread Debian Bug Tracking System
Your message dated Sat, 5 Mar 2011 22:58:13 +0100
with message-id <20110305215813.gc11...@debian.org>
and subject line Re: Bug#567952: X.org restarts after NetBeans launch
has caused the Debian Bug report #567952,
regarding Bug in libdrm-intel1 - Xorg crashes
to be marked as done.

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

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


-- 
567952: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=567952
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libdrm-intel1
Version: 2.4.17-1
Severity: important

Launching an allegro program causes X to crash.
I use the driver "intel" in my xorg.conf.
Xorg.0.log :
Segmentation fault at address 0xc7fa5ef0

It's due to version 2.4.17-1 of libdrm-intel1 (with version 2.4.15-1
everything works fine).


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

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

Versions of packages libdrm-intel1 depends on:
ii  libc6 2.10.2-2   GNU C Library: Shared libraries
ii  libdrm2   2.4.17-1   Userspace interface to kernel
DRM
--- End Message ---
--- Begin Message ---
Hi,

Oleksandr Natalenko  (05/03/2011):
> Sorry, no idea, I've switched to Arch. But in November, 2010 it was
> OK in sid.

thanks for the follow-up, closing accordingly.

KiBi.


signature.asc
Description: Digital signature
--- End Message ---


compiz-fusion-plugins-unsupported_0.9.2.1+git20110224.4d704607-1_i386.changes ACCEPTED into experimental

2011-03-05 Thread Debian FTP Masters



Accepted:
compiz-fusion-plugins-unsupported_0.9.2.1+git20110224.4d704607-1.debian.tar.gz
  to 
main/c/compiz-fusion-plugins-unsupported/compiz-fusion-plugins-unsupported_0.9.2.1+git20110224.4d704607-1.debian.tar.gz
compiz-fusion-plugins-unsupported_0.9.2.1+git20110224.4d704607-1.dsc
  to 
main/c/compiz-fusion-plugins-unsupported/compiz-fusion-plugins-unsupported_0.9.2.1+git20110224.4d704607-1.dsc
compiz-fusion-plugins-unsupported_0.9.2.1+git20110224.4d704607-1_i386.deb
  to 
main/c/compiz-fusion-plugins-unsupported/compiz-fusion-plugins-unsupported_0.9.2.1+git20110224.4d704607-1_i386.deb
compiz-fusion-plugins-unsupported_0.9.2.1+git20110224.4d704607.orig.tar.gz
  to 
main/c/compiz-fusion-plugins-unsupported/compiz-fusion-plugins-unsupported_0.9.2.1+git20110224.4d704607.orig.tar.gz


Override entries for your package:
compiz-fusion-plugins-unsupported_0.9.2.1+git20110224.4d704607-1.dsc - source 
x11
compiz-fusion-plugins-unsupported_0.9.2.1+git20110224.4d704607-1_i386.deb - 
extra x11

Announcing to debian-devel-chan...@lists.debian.org


Thank you for your contribution to Debian.


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



Bug#89887: marked as done (xterm: want program to not ignore SendEvents by default)

2011-03-05 Thread Debian Bug Tracking System
Your message dated Sat, 5 Mar 2011 23:24:20 +0100
with message-id <20110305222420.ga16...@debian.org>
and subject line Re: Bug#89887: xterm: resize not handled by both primary and 
alternate screens)
has caused the Debian Bug report #89887,
regarding xterm: want program to not ignore SendEvents by default
to be marked as done.

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

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


-- 
89887: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=89887
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: xterm
Version: 3.3.6-10

>From xterm(1x):

   allowSendEvents (class AllowSendEvents)
   Specifies whether or not synthetic key and  button
   events  (generated  using the X protocol SendEvent
   request) should be interpreted or discarded.   The
   default  is  ``false'' meaning they are discarded.
   Note that allowing  such  events  creates  a  very
   large security hole.

This last sentence is false.  Honouring synthetic events could only be
a problem if another application on your X display was not trusted.
However, other applications on your X display can already:

* Send mouse and keyboard events to your window manager, Emacs,
etc. to instruct them to do whatever they want.

* Use the Tk `send' mechanism to take control of any Tcl program
connected to the display.

* Spy on (nearly) all keystrokes, including passwords.

* Reconfigure X resources stored in the X server to change the startup
behaviour of nearly every traditional X program, including xterm.

* Use the Xt protocol extensions to reconfigure an xterm via the X
server so that it allows synthetic events and then send appropriate
events.  (This is easy to do interactively with `editres'.)

So if untrusted applications are connected to your X server you are
thoroughly doomed anyway.  There is no point in xterm disabling a
piece of useful functionality (I already have at least one useful
program in development which depends on XSendEvent).  The default for
this option should be changed to `true', and the manual corrected.

Ian.

--- End Message ---
--- Begin Message ---
Hi,

Cyril Brulebois  (04/04/2010):
> still working on that trivial patch? It's been 5+ years now. :)

it's been almost an extra year now, closing this bug report for now;
feel free to reopen with a patch later.

KiBi.


signature.asc
Description: Digital signature
--- End Message ---


  1   2   >