mesa: Changes to 'upstream-unstable'

2008-04-11 Thread Brice Goglin
 Makefile |8 
 docs/news.html   |7 +++
 docs/relnotes-7.0.3.html |3 ++-
 src/mesa/drivers/fbdev/glfbdev.c |5 +
 src/mesa/main/state.c|2 +-
 src/mesa/main/version.h  |2 +-
 src/mesa/shader/arbprogram.c |4 ++--
 src/mesa/shader/arbprogram.syn   |6 +++---
 src/mesa/shader/arbprogram_syn.h |6 +++---
 9 files changed, 28 insertions(+), 15 deletions(-)

New commits:
commit 48616e71d219258c8ca07eb067214eb9eea277b4
Author: Brian <[EMAIL PROTECTED]>
Date:   Fri Apr 4 19:06:30 2008 -0600

final prep/changes for 7.0.3 release

diff --git a/Makefile b/Makefile
index 0f58f4b..f0134e2 100644
--- a/Makefile
+++ b/Makefile
@@ -167,10 +167,10 @@ ultrix-gcc:
 
 # Rules for making release tarballs
 
-DIRECTORY = Mesa-7.0.3-rc3
-LIB_NAME = MesaLib-7.0.3-rc3
-DEMO_NAME = MesaDemos-7.0.3-rc3
-GLUT_NAME = MesaGLUT-7.0.3-rc3
+DIRECTORY = Mesa-7.0.3
+LIB_NAME = MesaLib-7.0.3
+DEMO_NAME = MesaDemos-7.0.3
+GLUT_NAME = MesaGLUT-7.0.3
 
 MAIN_FILES = \
$(DIRECTORY)/Makefile*  \
diff --git a/docs/news.html b/docs/news.html
index 13e43f1..c68f186 100644
--- a/docs/news.html
+++ b/docs/news.html
@@ -11,6 +11,13 @@
 News
 
 
+April 4, 2008
+
+Mesa 7.0.3 is released.
+This is a bug-fix release.
+
+
+
 November 13, 2007
 
 
diff --git a/docs/relnotes-7.0.3.html b/docs/relnotes-7.0.3.html
index 0f365af..0b8a56f 100644
--- a/docs/relnotes-7.0.3.html
+++ b/docs/relnotes-7.0.3.html
@@ -8,7 +8,7 @@
 
 
 
-Mesa 7.0.3 Release Notes / March TBD, 2008
+Mesa 7.0.3 Release Notes / April 4, 2008
 
 
 Mesa 7.0.3 is a stable release with bug fixes since version 7.0.2.
diff --git a/src/mesa/main/version.h b/src/mesa/main/version.h
index ce6e202..0bf7557 100644
--- a/src/mesa/main/version.h
+++ b/src/mesa/main/version.h
@@ -31,7 +31,7 @@
 #define MESA_MAJOR 7
 #define MESA_MINOR 0
 #define MESA_PATCH 3
-#define MESA_VERSION_STRING "7.0.3-rc3"
+#define MESA_VERSION_STRING "7.0.3"
 
 /* To make version comparison easy */
 #define MESA_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))

commit 70d227ac624e4b1e6dfecfe8778ef77cbab355e7
Author: Brian <[EMAIL PROTECTED]>
Date:   Tue Apr 1 18:04:13 2008 -0600

7.0.3 release candidate 3

diff --git a/Makefile b/Makefile
index 025f223..0f58f4b 100644
--- a/Makefile
+++ b/Makefile
@@ -167,10 +167,10 @@ ultrix-gcc:
 
 # Rules for making release tarballs
 
-DIRECTORY = Mesa-7.0.3-rc2
-LIB_NAME = MesaLib-7.0.3-rc2
-DEMO_NAME = MesaDemos-7.0.3-rc2
-GLUT_NAME = MesaGLUT-7.0.3-rc2
+DIRECTORY = Mesa-7.0.3-rc3
+LIB_NAME = MesaLib-7.0.3-rc3
+DEMO_NAME = MesaDemos-7.0.3-rc3
+GLUT_NAME = MesaGLUT-7.0.3-rc3
 
 MAIN_FILES = \
$(DIRECTORY)/Makefile*  \
diff --git a/src/mesa/main/version.h b/src/mesa/main/version.h
index 12ca583..ce6e202 100644
--- a/src/mesa/main/version.h
+++ b/src/mesa/main/version.h
@@ -31,7 +31,7 @@
 #define MESA_MAJOR 7
 #define MESA_MINOR 0
 #define MESA_PATCH 3
-#define MESA_VERSION_STRING "7.0.3-rc2"
+#define MESA_VERSION_STRING "7.0.3-rc3"
 
 /* To make version comparison easy */
 #define MESA_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))

commit 7f2c4f96f502e5969fd251ad50a113c3a566686d
Author: Eric Anholt <[EMAIL PROTECTED]>
Date:   Tue Jan 15 15:08:34 2008 -0800

Bug #13492: Only call ProgramStringNotify if program parsing succeeded.

Wine intentionally tries some out-of-spec programs to test strictness, and
calling ProgramStringNotify on the results of a failed program parse 
resulted
in crashes in the 965 driver.
(cherry picked from commit 185320ae13163995ea61e38104ab5aeaeb28d8e5)

diff --git a/src/mesa/shader/arbprogram.c b/src/mesa/shader/arbprogram.c
index 4b5f63e..ee75be3 100644
--- a/src/mesa/shader/arbprogram.c
+++ b/src/mesa/shader/arbprogram.c
@@ -229,7 +229,7 @@ _mesa_ProgramStringARB(GLenum target, GLenum format, 
GLsizei len,
   struct gl_vertex_program *prog = ctx->VertexProgram.Current;
   _mesa_parse_arb_vertex_program(ctx, target, string, len, prog);
   
-  if (ctx->Driver.ProgramStringNotify)
+  if (ctx->Program.ErrorPos == -1 && ctx->Driver.ProgramStringNotify)
 ctx->Driver.ProgramStringNotify( ctx, target, &prog->Base );
}
else if (target == GL_FRAGMENT_PROGRAM_ARB
@@ -237,7 +237,7 @@ _mesa_ProgramStringARB(GLenum target, GLenum format, 
GLsizei len,
   struct gl_fragment_program *prog = ctx->FragmentProgram.Current;
   _mesa_parse_arb_fragment_program(ctx, target, string, len, prog);
 
-  if (ctx->Driver.ProgramStringNotify)
+  if (ctx->Program.ErrorPos == -1 && ctx->Driver.ProgramStringNotify)
 ctx->Driver.ProgramStringNotify( ctx, target, &prog->Base );
}
else {

commit 667f0f60fc4f3f043449bbf98769d478d90f7b4e
Author: Roland Scheidegger <[EMAIL PROTECTED]>
Date:   Tue Apr 1 23:25:04 2008 +0200

fix mistakenly set ATIFragmentShader._Enabled bit (bug 15269)

diff --

mesa: Changes to 'debian-unstable'

2008-04-11 Thread Brice Goglin
 Makefile |8 
 debian/changelog |8 
 docs/news.html   |7 +++
 docs/relnotes-7.0.3.html |3 ++-
 src/mesa/drivers/fbdev/glfbdev.c |5 +
 src/mesa/main/state.c|2 +-
 src/mesa/main/version.h  |2 +-
 src/mesa/shader/arbprogram.c |4 ++--
 src/mesa/shader/arbprogram.syn   |6 +++---
 src/mesa/shader/arbprogram_syn.h |6 +++---
 10 files changed, 36 insertions(+), 15 deletions(-)

New commits:
commit 59c9c40c010ac815668ee4c411003f93aeff857d
Author: Brice Goglin <[EMAIL PROTECTED]>
Date:   Fri Apr 11 08:42:55 2008 +0200

Prepare changelog for upload

diff --git a/debian/changelog b/debian/changelog
index fb53586..c1262a9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,10 +1,10 @@
-mesa (7.0.3-1) UNRELEASED; urgency=low
+mesa (7.0.3-1) unstable; urgency=low
 
   * New upstream release.
   * Only call ProgramStringNotify if program parsing succeeded,
 closes: #473551.
 
- -- Brice Goglin <[EMAIL PROTECTED]>  Fri, 11 Apr 2008 08:40:42 +0200
+ -- Brice Goglin <[EMAIL PROTECTED]>  Fri, 11 Apr 2008 08:42:37 +0200
 
 mesa (7.0.3~rc2-2) unstable; urgency=low
 

commit 666e0635da4e14e2f41e1883093079fd013d2b89
Author: Brice Goglin <[EMAIL PROTECTED]>
Date:   Fri Apr 11 08:41:32 2008 +0200

New upstream release

diff --git a/debian/changelog b/debian/changelog
index a332e6f..fb53586 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+mesa (7.0.3-1) UNRELEASED; urgency=low
+
+  * New upstream release.
+  * Only call ProgramStringNotify if program parsing succeeded,
+closes: #473551.
+
+ -- Brice Goglin <[EMAIL PROTECTED]>  Fri, 11 Apr 2008 08:40:42 +0200
+
 mesa (7.0.3~rc2-2) unstable; urgency=low
 
   * Pull from mesa_7_0_branch (1e83d70b).

commit 48616e71d219258c8ca07eb067214eb9eea277b4
Author: Brian <[EMAIL PROTECTED]>
Date:   Fri Apr 4 19:06:30 2008 -0600

final prep/changes for 7.0.3 release

diff --git a/Makefile b/Makefile
index 0f58f4b..f0134e2 100644
--- a/Makefile
+++ b/Makefile
@@ -167,10 +167,10 @@ ultrix-gcc:
 
 # Rules for making release tarballs
 
-DIRECTORY = Mesa-7.0.3-rc3
-LIB_NAME = MesaLib-7.0.3-rc3
-DEMO_NAME = MesaDemos-7.0.3-rc3
-GLUT_NAME = MesaGLUT-7.0.3-rc3
+DIRECTORY = Mesa-7.0.3
+LIB_NAME = MesaLib-7.0.3
+DEMO_NAME = MesaDemos-7.0.3
+GLUT_NAME = MesaGLUT-7.0.3
 
 MAIN_FILES = \
$(DIRECTORY)/Makefile*  \
diff --git a/docs/news.html b/docs/news.html
index 13e43f1..c68f186 100644
--- a/docs/news.html
+++ b/docs/news.html
@@ -11,6 +11,13 @@
 News
 
 
+April 4, 2008
+
+Mesa 7.0.3 is released.
+This is a bug-fix release.
+
+
+
 November 13, 2007
 
 
diff --git a/docs/relnotes-7.0.3.html b/docs/relnotes-7.0.3.html
index 0f365af..0b8a56f 100644
--- a/docs/relnotes-7.0.3.html
+++ b/docs/relnotes-7.0.3.html
@@ -8,7 +8,7 @@
 
 
 
-Mesa 7.0.3 Release Notes / March TBD, 2008
+Mesa 7.0.3 Release Notes / April 4, 2008
 
 
 Mesa 7.0.3 is a stable release with bug fixes since version 7.0.2.
diff --git a/src/mesa/main/version.h b/src/mesa/main/version.h
index ce6e202..0bf7557 100644
--- a/src/mesa/main/version.h
+++ b/src/mesa/main/version.h
@@ -31,7 +31,7 @@
 #define MESA_MAJOR 7
 #define MESA_MINOR 0
 #define MESA_PATCH 3
-#define MESA_VERSION_STRING "7.0.3-rc3"
+#define MESA_VERSION_STRING "7.0.3"
 
 /* To make version comparison easy */
 #define MESA_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))

commit 70d227ac624e4b1e6dfecfe8778ef77cbab355e7
Author: Brian <[EMAIL PROTECTED]>
Date:   Tue Apr 1 18:04:13 2008 -0600

7.0.3 release candidate 3

diff --git a/Makefile b/Makefile
index 025f223..0f58f4b 100644
--- a/Makefile
+++ b/Makefile
@@ -167,10 +167,10 @@ ultrix-gcc:
 
 # Rules for making release tarballs
 
-DIRECTORY = Mesa-7.0.3-rc2
-LIB_NAME = MesaLib-7.0.3-rc2
-DEMO_NAME = MesaDemos-7.0.3-rc2
-GLUT_NAME = MesaGLUT-7.0.3-rc2
+DIRECTORY = Mesa-7.0.3-rc3
+LIB_NAME = MesaLib-7.0.3-rc3
+DEMO_NAME = MesaDemos-7.0.3-rc3
+GLUT_NAME = MesaGLUT-7.0.3-rc3
 
 MAIN_FILES = \
$(DIRECTORY)/Makefile*  \
diff --git a/src/mesa/main/version.h b/src/mesa/main/version.h
index 12ca583..ce6e202 100644
--- a/src/mesa/main/version.h
+++ b/src/mesa/main/version.h
@@ -31,7 +31,7 @@
 #define MESA_MAJOR 7
 #define MESA_MINOR 0
 #define MESA_PATCH 3
-#define MESA_VERSION_STRING "7.0.3-rc2"
+#define MESA_VERSION_STRING "7.0.3-rc3"
 
 /* To make version comparison easy */
 #define MESA_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))

commit 7f2c4f96f502e5969fd251ad50a113c3a566686d
Author: Eric Anholt <[EMAIL PROTECTED]>
Date:   Tue Jan 15 15:08:34 2008 -0800

Bug #13492: Only call ProgramStringNotify if program parsing succeeded.

Wine intentionally tries some out-of-spec programs to test strictness, and
calling ProgramStringNotify on the results of a failed program parse 
resulted
in crashes in the 965 driver.
(cherry pi

mesa: Changes to 'refs/tags/mesa-7.0.3-1'

2008-04-11 Thread Brice Goglin
Tag 'mesa-7.0.3-1' created by Brice Goglin <[EMAIL PROTECTED]> at 2008-04-11 
08:19 +

Tagging upload of mesa 7.0.3-1 to unstable.

Changes since mesa-7.0.3-rc2-2:
Brian (4):
  fix ARB f/v program comment parsing bug
  added some missing calls to _mesa_enable_x_y_extensions()
  7.0.3 release candidate 3
  final prep/changes for 7.0.3 release

Brice Goglin (3):
  Merge tag 'mesa_7_0_3' into debian-unstable
  New upstream release
  Prepare changelog for upload

Eric Anholt (1):
  Bug #13492: Only call ProgramStringNotify if program parsing succeeded.

Markus Amsler (1):
  fix parsing bug involving comments at the end of ARB v/f programs

Roland Scheidegger (1):
  fix mistakenly set ATIFragmentShader._Enabled bit (bug 15269)

---
 Makefile |8 
 debian/changelog |8 
 docs/news.html   |7 +++
 docs/relnotes-7.0.3.html |3 ++-
 src/mesa/drivers/fbdev/glfbdev.c |5 +
 src/mesa/main/state.c|2 +-
 src/mesa/main/version.h  |2 +-
 src/mesa/shader/arbprogram.c |4 ++--
 src/mesa/shader/arbprogram.syn   |6 +++---
 src/mesa/shader/arbprogram_syn.h |6 +++---
 10 files changed, 36 insertions(+), 15 deletions(-)
---


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



Processing of mesa_7.0.3-1_i386.changes

2008-04-11 Thread Archive Administrator
mesa_7.0.3-1_i386.changes uploaded successfully to localhost
along with the files:
  mesa_7.0.3-1.dsc
  mesa_7.0.3.orig.tar.gz
  mesa_7.0.3-1.diff.gz
  libgl1-mesa-dev_7.0.3-1_all.deb
  mesa-common-dev_7.0.3-1_all.deb
  mesa-swx11-source_7.0.3-1_all.deb
  libgl1-mesa-swx11_7.0.3-1_i386.deb
  libgl1-mesa-swx11-dbg_7.0.3-1_i386.deb
  libgl1-mesa-swx11-i686_7.0.3-1_i386.deb
  libgl1-mesa-swx11-dev_7.0.3-1_i386.deb
  libgl1-mesa-glx_7.0.3-1_i386.deb
  libgl1-mesa-glx-dbg_7.0.3-1_i386.deb
  libgl1-mesa-dri_7.0.3-1_i386.deb
  libgl1-mesa-dri-dbg_7.0.3-1_i386.deb
  libosmesa6_7.0.3-1_i386.deb
  libosmesa6-dev_7.0.3-1_i386.deb
  libglu1-mesa_7.0.3-1_i386.deb
  libglu1-mesa-dev_7.0.3-1_i386.deb
  libglw1-mesa_7.0.3-1_i386.deb
  libglw1-mesa-dev_7.0.3-1_i386.deb
  mesa-utils_7.0.3-1_i386.deb

Greetings,

Your Debian queue daemon


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



Bug#456153: setting package to xserver-xorg-video-ati ...

2008-04-11 Thread Marcus Better
# Automatically generated email from bts, devscripts version 2.10.20
package xserver-xorg-video-ati
# clarify X needs to be restarted
retitle 456153 [radeon] external display corrupted after restarting X [Xpress 
200M]




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



Processed: setting package to xserver-xorg-video-ati, found 456153 in 1:6.8.1~git20080320.5e3b2128-1

2008-04-11 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.10.20
> package xserver-xorg-video-ati
Ignoring bugs not assigned to: xserver-xorg-video-ati

> found 456153 1:6.8.1~git20080320.5e3b2128-1
Bug#456153: [radeon] external display corrupted after exiting X [Xpress 200M]
Bug marked as found in version 1:6.8.1~git20080320.5e3b2128-1.

>
End of message, stopping processing here.

Please contact me if you need assistance.

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


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



Processed: setting package to xserver-xorg-video-ati ...

2008-04-11 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.10.20
> package xserver-xorg-video-ati
Ignoring bugs not assigned to: xserver-xorg-video-ati

> # clarify X needs to be restarted
> retitle 456153 [radeon] external display corrupted after restarting X [Xpress 
> 200M]
Bug#456153: [radeon] external display corrupted after exiting X [Xpress 200M]
Changed Bug title to `[radeon] external display corrupted after restarting X 
[Xpress 200M]' from `[radeon] external display corrupted after exiting X 
[Xpress 200M]'.

>
End of message, stopping processing here.

Please contact me if you need assistance.

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


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



mesa_7.0.3-1_i386.changes ACCEPTED

2008-04-11 Thread Debian Installer

Accepted:
libgl1-mesa-dev_7.0.3-1_all.deb
  to pool/main/m/mesa/libgl1-mesa-dev_7.0.3-1_all.deb
libgl1-mesa-dri-dbg_7.0.3-1_i386.deb
  to pool/main/m/mesa/libgl1-mesa-dri-dbg_7.0.3-1_i386.deb
libgl1-mesa-dri_7.0.3-1_i386.deb
  to pool/main/m/mesa/libgl1-mesa-dri_7.0.3-1_i386.deb
libgl1-mesa-glx-dbg_7.0.3-1_i386.deb
  to pool/main/m/mesa/libgl1-mesa-glx-dbg_7.0.3-1_i386.deb
libgl1-mesa-glx_7.0.3-1_i386.deb
  to pool/main/m/mesa/libgl1-mesa-glx_7.0.3-1_i386.deb
libgl1-mesa-swx11-dbg_7.0.3-1_i386.deb
  to pool/main/m/mesa/libgl1-mesa-swx11-dbg_7.0.3-1_i386.deb
libgl1-mesa-swx11-dev_7.0.3-1_i386.deb
  to pool/main/m/mesa/libgl1-mesa-swx11-dev_7.0.3-1_i386.deb
libgl1-mesa-swx11-i686_7.0.3-1_i386.deb
  to pool/main/m/mesa/libgl1-mesa-swx11-i686_7.0.3-1_i386.deb
libgl1-mesa-swx11_7.0.3-1_i386.deb
  to pool/main/m/mesa/libgl1-mesa-swx11_7.0.3-1_i386.deb
libglu1-mesa-dev_7.0.3-1_i386.deb
  to pool/main/m/mesa/libglu1-mesa-dev_7.0.3-1_i386.deb
libglu1-mesa_7.0.3-1_i386.deb
  to pool/main/m/mesa/libglu1-mesa_7.0.3-1_i386.deb
libglw1-mesa-dev_7.0.3-1_i386.deb
  to pool/main/m/mesa/libglw1-mesa-dev_7.0.3-1_i386.deb
libglw1-mesa_7.0.3-1_i386.deb
  to pool/main/m/mesa/libglw1-mesa_7.0.3-1_i386.deb
libosmesa6-dev_7.0.3-1_i386.deb
  to pool/main/m/mesa/libosmesa6-dev_7.0.3-1_i386.deb
libosmesa6_7.0.3-1_i386.deb
  to pool/main/m/mesa/libosmesa6_7.0.3-1_i386.deb
mesa-common-dev_7.0.3-1_all.deb
  to pool/main/m/mesa/mesa-common-dev_7.0.3-1_all.deb
mesa-swx11-source_7.0.3-1_all.deb
  to pool/main/m/mesa/mesa-swx11-source_7.0.3-1_all.deb
mesa-utils_7.0.3-1_i386.deb
  to pool/main/m/mesa/mesa-utils_7.0.3-1_i386.deb
mesa_7.0.3-1.diff.gz
  to pool/main/m/mesa/mesa_7.0.3-1.diff.gz
mesa_7.0.3-1.dsc
  to pool/main/m/mesa/mesa_7.0.3-1.dsc
mesa_7.0.3.orig.tar.gz
  to pool/main/m/mesa/mesa_7.0.3.orig.tar.gz


Override entries for your package:
libgl1-mesa-dev_7.0.3-1_all.deb - optional libdevel
libgl1-mesa-dri-dbg_7.0.3-1_i386.deb - extra libdevel
libgl1-mesa-dri_7.0.3-1_i386.deb - optional libs
libgl1-mesa-glx-dbg_7.0.3-1_i386.deb - extra libdevel
libgl1-mesa-glx_7.0.3-1_i386.deb - optional libs
libgl1-mesa-swx11-dbg_7.0.3-1_i386.deb - extra libdevel
libgl1-mesa-swx11-dev_7.0.3-1_i386.deb - extra libdevel
libgl1-mesa-swx11-i686_7.0.3-1_i386.deb - extra libs
libgl1-mesa-swx11_7.0.3-1_i386.deb - extra libs
libglu1-mesa-dev_7.0.3-1_i386.deb - optional libdevel
libglu1-mesa_7.0.3-1_i386.deb - optional libs
libglw1-mesa-dev_7.0.3-1_i386.deb - optional libdevel
libglw1-mesa_7.0.3-1_i386.deb - optional libs
libosmesa6-dev_7.0.3-1_i386.deb - optional libdevel
libosmesa6_7.0.3-1_i386.deb - optional libs
mesa-common-dev_7.0.3-1_all.deb - optional libdevel
mesa-swx11-source_7.0.3-1_all.deb - optional libdevel
mesa-utils_7.0.3-1_i386.deb - optional x11
mesa_7.0.3-1.dsc - source libs

Announcing to [EMAIL PROTECTED]
Closing bugs: 473551 


Thank you for your contribution to Debian.


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



xserver-xorg-video-radeonhd_1.2.0-1_i386.changes ACCEPTED

2008-04-11 Thread Debian Installer

Accepted:
xserver-xorg-video-radeonhd-dbg_1.2.0-1_i386.deb
  to 
pool/main/x/xserver-xorg-video-radeonhd/xserver-xorg-video-radeonhd-dbg_1.2.0-1_i386.deb
xserver-xorg-video-radeonhd_1.2.0-1.diff.gz
  to 
pool/main/x/xserver-xorg-video-radeonhd/xserver-xorg-video-radeonhd_1.2.0-1.diff.gz
xserver-xorg-video-radeonhd_1.2.0-1.dsc
  to 
pool/main/x/xserver-xorg-video-radeonhd/xserver-xorg-video-radeonhd_1.2.0-1.dsc
xserver-xorg-video-radeonhd_1.2.0-1_i386.deb
  to 
pool/main/x/xserver-xorg-video-radeonhd/xserver-xorg-video-radeonhd_1.2.0-1_i386.deb
xserver-xorg-video-radeonhd_1.2.0.orig.tar.gz
  to 
pool/main/x/xserver-xorg-video-radeonhd/xserver-xorg-video-radeonhd_1.2.0.orig.tar.gz


Override entries for your package:
xserver-xorg-video-radeonhd-dbg_1.2.0-1_i386.deb - extra x11
xserver-xorg-video-radeonhd_1.2.0-1.dsc - source x11
xserver-xorg-video-radeonhd_1.2.0-1_i386.deb - optional x11

Announcing to [EMAIL PROTECTED]
Closing bugs: 457426 


Thank you for your contribution to Debian.


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



Bug#457426: marked as done (xserver-xorg-video-radeonhd: upstream changelog stops at version 1.0.0)

2008-04-11 Thread Debian Bug Tracking System

Your message dated Fri, 11 Apr 2008 12:05:07 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#457426: fixed in xserver-xorg-video-radeonhd 1.2.0-1
has caused the Debian Bug report #457426,
regarding xserver-xorg-video-radeonhd: upstream changelog stops at version 1.0.0
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 [EMAIL PROTECTED]
immediately.)


-- 
457426: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=457426
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: xserver-xorg-video-radeonhd
Version: 1.1.0-1
Severity: minor

Hi,

$subject basically says it all, I was looking for a detailed changelog but the
upstream changelog stops at 1.0.0...

JB.

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

Kernel: Linux 2.6.23-hrt1 (SMP w/2 CPU cores)
Locale: LANG=C, [EMAIL PROTECTED] (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages xserver-xorg-video-radeonhd depends on:
ii  libc6  2.7-5 GNU C Library: Shared libraries
ii  xserver-xorg-core  2:1.4.1~git20071212-1 Xorg X server - core server

xserver-xorg-video-radeonhd recommends no packages.

-- no debconf information


--- End Message ---
--- Begin Message ---
Source: xserver-xorg-video-radeonhd
Source-Version: 1.2.0-1

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

xserver-xorg-video-radeonhd-dbg_1.2.0-1_i386.deb
  to 
pool/main/x/xserver-xorg-video-radeonhd/xserver-xorg-video-radeonhd-dbg_1.2.0-1_i386.deb
xserver-xorg-video-radeonhd_1.2.0-1.diff.gz
  to 
pool/main/x/xserver-xorg-video-radeonhd/xserver-xorg-video-radeonhd_1.2.0-1.diff.gz
xserver-xorg-video-radeonhd_1.2.0-1.dsc
  to 
pool/main/x/xserver-xorg-video-radeonhd/xserver-xorg-video-radeonhd_1.2.0-1.dsc
xserver-xorg-video-radeonhd_1.2.0-1_i386.deb
  to 
pool/main/x/xserver-xorg-video-radeonhd/xserver-xorg-video-radeonhd_1.2.0-1_i386.deb
xserver-xorg-video-radeonhd_1.2.0.orig.tar.gz
  to 
pool/main/x/xserver-xorg-video-radeonhd/xserver-xorg-video-radeonhd_1.2.0.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 [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Brice Goglin <[EMAIL PROTECTED]> (supplier of updated 
xserver-xorg-video-radeonhd package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 11 Apr 2008 08:24:17 +0200
Source: xserver-xorg-video-radeonhd
Binary: xserver-xorg-video-radeonhd xserver-xorg-video-radeonhd-dbg
Architecture: source i386
Version: 1.2.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force 
Changed-By: Brice Goglin <[EMAIL PROTECTED]>
Description: 
 xserver-xorg-video-radeonhd - X.Org X server -- AMD/ATI r5xx, r6xx display 
driver
 xserver-xorg-video-radeonhd-dbg - X.Org X server -- AMD/ATI r5xx, r6xx display 
driver
Closes: 457426
Changes: 
 xserver-xorg-video-radeonhd (1.2.0-1) unstable; urgency=low
 .
   * New upstream release.
   * Update the upstream ChangeLog, closes: #457426.
   * Bump Standards-Version to 3.7.3.
   * Drop the XS- prefix from Vcs-* control fields.
Checksums-Sha1: 
 a9ca73d6e1565e2576eebe7f5b25bab693ddd934 1573 
xserver-xorg-video-radeonhd_1.2.0-1.dsc
 c557116dbefae984e696dd2986a0205b2905467f 653309 
xserver-xorg-video-radeonhd_1.2.0.orig.tar.gz
 098593523314fc9030ca6b776203988c9f163445 17405 
xserver-xorg-video-radeonhd_1.2.0-1.diff.gz
 0e0a8ae3555cfeec0e3276016b060fe2eb7e0a44 180716 
xserver-xorg-video-radeonhd_1.2.0-1_i386.deb
 c756a875fab3d68d4a72477ffcb4a9523eb646ec 413528 
xserver-xorg-video-radeonhd-dbg_1.2.0-1_i386.deb
Checksums-Sha256: 
 2634316436d8cb478d82725c4d510b9c26645247cf2e882d54b4912682478575 1573 
xserver-xorg-video-radeonhd_1.2.0-1.dsc
 7da6c3f01a46c4ec39bc3796336f7a5d783e8b97019b383feb7452eb09cb2a15 653309 
xserver-xorg-video-radeonhd_1.2.0.orig.tar.gz
 3df3d6857d368857424391f5a6973eb324a878cf8ac2a63f712a1f7dcd348e4e 17405 
xserver-xorg-video-radeonhd_1.2.0-1.diff.gz
 8e29e042d615e4bcbde2871afd97825bf2f7bb488ff29d9b2e5739b4090b16bd 180716 
xserver-xorg-video-radeonhd_1.2.0-1_i386.deb
 8d61d9c98799f046f8c1ee00cf7e295f9f3f377f7051a827a38ac

Bug#473551: marked as done (libgl1-mesa-dri: Crashes the X server when starting Valve's Portal under Wine on i965)

2008-04-11 Thread Debian Bug Tracking System

Your message dated Fri, 11 Apr 2008 12:04:18 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#473551: fixed in mesa 7.0.3-1
has caused the Debian Bug report #473551,
regarding libgl1-mesa-dri: Crashes the X server when starting Valve's Portal 
under Wine on i965
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 [EMAIL PROTECTED]
immediately.)


-- 
473551: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=473551
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: libgl1-mesa-dri
Version: 7.0.3~rc2-1
Severity: important

I don't really know if this belongs here, but the stacktrace in the
crashed X server logs seem to indicate that somehow i965_dri.so might be
responsible for this crash.

The stacktrace is the following:
Backtrace:
0: /usr/bin/X(xf86SigHandler+0x6a) [0x4755da]
1: /lib/libc.so.6 [0x2b86ec0f2240]
2: /usr/lib/dri/i965_dri.so [0x2b86feed4239]
3: /usr/lib/xorg/modules/extensions//libglx.so(DoRender+0xcc) [0x2b86ed1ba92c]
4: /usr/lib/xorg/modules/extensions//libglx.so [0x2b86ed1be72c]
5: /usr/bin/X(Dispatch+0x2e0) [0x44e300]
6: /usr/bin/X(main+0x47d) [0x436add]
7: /lib/libc.so.6(__libc_start_main+0xf4) [0x2b86ec0df1c4]
8: /usr/bin/X(FontFileCompleteXLFD+0x281) [0x435e19]

I'm sorry I can't provide a better one, because the X server will just
get stuck at 100% CPU usage whenever I try to attach gdb to it :(

Note this crash appear both when starting Portal or when starting Steam
to try to download the Portal demo. while the game itself is supposed to
work on any chip, the demo is limited for nvidia owners, so I wonder if
there is not some code trying to detect whether the chip is an nvidia
one or not, and that would cause the crash. This is obviously only an
hypothesis.

I also haven't tested if that is amd64 related or not.

Anyways, if you want to reproduce the bug, you can try the following
steps:
- Run wine iexplore http://winehq.org/ and click the install button.
  That will install the Gecko engine that is necessary for Steam. You
  can then close the window (note that if you have libnss-mdns
  installed, you should install lib32nss-mdns ; lacking that, DNS
  resolutions under wine will fail).
- Download the Steam installer from 
http://steampowered.com/download/SteamInstall.msi
- Install Steam: wine msiexec /i SteamInstall.msi. This will install and
  then run steam.
- Login to an existing account that you may own, or create a new one.
- Leave Steam opened (or not, as you wish), go to
  $HOME/.wine/drive_c/Program Files/Steam, then run
  wine Steam.exe steam://hardwarepromo/609. Click a few times on Next,
  and *bam*.

Mike

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

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

Versions of packages libgl1-mesa-dri depends on:
ii  libc62.7-10  GNU C Library: Shared libraries
ii  libdrm2  2.3.0-4 Userspace interface to kernel DRM 
ii  libexpat11.95.8-4XML parsing C library - runtime li
ii  libgl1-mesa-glx  7.0.3~rc2-1 A free implementation of the OpenG

libgl1-mesa-dri recommends no packages.

-- no debconf information


--- End Message ---
--- Begin Message ---
Source: mesa
Source-Version: 7.0.3-1

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

libgl1-mesa-dev_7.0.3-1_all.deb
  to pool/main/m/mesa/libgl1-mesa-dev_7.0.3-1_all.deb
libgl1-mesa-dri-dbg_7.0.3-1_i386.deb
  to pool/main/m/mesa/libgl1-mesa-dri-dbg_7.0.3-1_i386.deb
libgl1-mesa-dri_7.0.3-1_i386.deb
  to pool/main/m/mesa/libgl1-mesa-dri_7.0.3-1_i386.deb
libgl1-mesa-glx-dbg_7.0.3-1_i386.deb
  to pool/main/m/mesa/libgl1-mesa-glx-dbg_7.0.3-1_i386.deb
libgl1-mesa-glx_7.0.3-1_i386.deb
  to pool/main/m/mesa/libgl1-mesa-glx_7.0.3-1_i386.deb
libgl1-mesa-swx11-dbg_7.0.3-1_i386.deb
  to pool/main/m/mesa/libgl1-mesa-swx11-dbg_7.0.3-1_i386.deb
libgl1-mesa-swx11-dev_7.0.3-1_i386.deb
  to pool/main/m/mesa/libgl1-mesa-swx11-dev_7.0.3-1_i386.deb
libgl1-mesa-swx11-i686_7.0.3-1_i386.deb
  to pool/main/m/mesa/libgl1-mesa-swx11-i686_7.0.3-1_i386.deb
libgl1-mesa-swx11_7.0.3-1_i386.deb
  to pool/main/m/mesa/libgl1-mesa-swx11_7.0.3-1_i386.deb
libglu1-mesa-dev_7.0.3-1_i386.deb
  to pool/main/m/mesa/libglu1-mesa-dev_7.0.3-1_i386.deb
libglu1-mesa_7.0.3-1_i386.deb
  to pool/main/m/mesa/libglu1-mesa_7.0.3-1_i386.deb
libglw1-mesa-dev_7.0.3-1_i386.deb
  to p

Bug#475534: x11-apps: oclock fails to show updated time, apparently because repainting hands in wrong colour

2008-04-11 Thread Edward Welbourne
Package: x11-apps
Version: 7.3+1
Severity: normal

A power-cut just forced me to reboot into 2.6.24-1-686, having
previously been on a 2.6.18.  Most X-related things were restarted
within the last two weeks when I did an /etc/init.d/xdm restart, but
some have doubtless been updated since.

After the power-cut, my oclock has always been stopped.
Its hands don't move, although they do change colour
I find that an xclock works fine.

My fvwm init.hook fires off oclock using
+ I Exec exec oclock -transparent -geometry -0+0
and post.hook sets
Style * SloppyFocus
Style oclockNeverFocus, NoTitle, Sticky, NoHandles, StaysOnTop

I've started a separate X session, startx -- :1, running fvwm with
nothing but an xterm and the xplanet root window (that somehow knew to
start up, despite my having moved aside my default config), from which
I started oclock -transparent; I see the oclock's hands in their
initial position mostly painted black; or, when I had to clear
xscreensaver, the green that xscreensaver was doing; so it looks like
a failure to repaint.  It looks as if the part that remains yellow is
the intersection of the initial position of the hands and the position
they should currently be in; but the current position is not otherwise
drawn.

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

Kernel: Linux 2.6.24-1-686 (SMP w/2 CPU cores)
Locale: LANG=en_GB.ISO-8859-15, LC_CTYPE=en_GB.ISO-8859-15 (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages x11-apps depends on:
ii  cpp   4:4.2.2-2  The GNU C preprocessor (cpp)
ii  libc6 2.7-10 GNU C Library: Shared libraries
ii  libfontconfig12.5.0-2generic font configuration library
ii  libice6   2:1.0.4-1  X11 Inter-Client Exchange library
ii  libpng12-01.2.15~beta5-3 PNG library - runtime
ii  libsm62:1.0.3-1+b1   X11 Session Management library
ii  libx11-6  2:1.0.3-7  X11 client-side library
ii  libxaw7   2:1.0.4-1  X11 Athena Widget library
ii  libxcursor1   1:1.1.9-1  X cursor management library
ii  libxext6  2:1.0.4-1  X11 miscellaneous extension librar
ii  libxft2   2.1.12-2   FreeType-based font drawing librar
ii  libxkbfile1   1:1.0.5-1  X11 keyboard file manipulation lib
ii  libxmu6   2:1.0.4-1  X11 miscellaneous utility library
ii  libxmuu1  2:1.0.4-1  X11 miscellaneous micro-utility li
ii  libxrender1   1:0.9.4-1  X Rendering Extension client libra
ii  libxt61:1.0.5-3  X11 toolkit intrinsics library
ii  x11-common1:7.2-5X Window System (X.Org) infrastruc
ii  fvwm  1:2.5.25-1 F(?) Virtual Window Manager, 
version 2.5

x11-apps recommends no packages.

-- no debconf information



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



Bug#475576: alt keys get stuck, reprise

2008-04-11 Thread Francois-Denis Gonthier
Package: xserver-xorg-core
Version: 2:1.4.1~git20080131-2
Severity: normal

I seem to be experimenting bug #462441, despite the bug is said to be
fixed.  The symptoms are very similar.

The ALT key, or another key, seems to get badly stuck, which badly
fsck up my window manager OpenBox.  I've seen the same problem with
Awesome.

Reloading the window-manager fixes the problem in both case.

-- Package-specific info:
Contents of /var/lib/x11/X.roster:
xserver-xorg

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

X server symlink status:
lrwxrwxrwx 1 root root 13 2007-03-30 05:43 /etc/X11/X -> /usr/bin/Xorg
-rwxr-xr-x 1 root root 1674780 2008-03-14 10:34 /usr/bin/Xorg

Contents of /var/lib/x11/xorg.conf.roster:
xserver-xorg

VGA-compatible devices on PCI bus:
00:05.0 VGA compatible controller: nVidia Corporation C51 [GeForce 6150 LE] 
(rev a2)

/etc/X11/xorg.conf does not match checksum in /var/lib/x11/xorg.conf.md5sum.

Xorg X server configuration file status:
-rw-r--r-- 1 root root 1590 2008-04-11 14:19 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
# xorg.conf (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section "Files"
EndSection

Section "InputDevice"
Identifier  "Generic Keyboard"
Driver  "kbd"
Option  "CoreKeyboard"
Option  "XkbRules"  "xorg"
Option  "XkbModel"  "pc105"
Option  "XkbLayout" "ca"
Option  "XkbVariant""fr"
EndSection

Section "InputDevice"
Identifier  "Configured Mouse"
Driver  "mouse"
Option  "CorePointer"
Option  "Device""/dev/input/mice"
Option  "Protocol"  "ImPS/2"
EndSection

Section "Device"
Identifier  "NVIDIA"
Driver  "nvidia"
BusID   "PCI:0:5:0"
EndSection

Section "Monitor"
Identifier  "Generic Monitor"
Option  "DPMS"
HorizSync   30-65
VertRefresh 50-75
EndSection

Section "Screen"
Identifier  "Default Screen"
Device  "NVIDIA"
Monitor "Generic Monitor"
DefaultDepth24
SubSection "Display"
Modes   "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
EndSection

Section "ServerLayout"
Identifier  "Default Layout"
Screen  "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
EndSection


Xorg X server log files on system:
-rw-r--r-- 1 root root 24899 2008-02-05 10:00 /var/log/Xorg.1.log
-rw-r--r-- 1 root root 23550 2008-04-11 14:43 /var/log/Xorg.0.log

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

This is a pre-release version of the X server from The X.Org Foundation.
It is not supported in any way.
Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/.
Select the "xorg" product for bugs you find in this release.
Before reporting bugs in pre-release versions please check the
latest version in the X.Org Foundation git repository.
See http://wiki.x.org/wiki/GitPage for git access instructions.

X.Org X Server 1.4.0.90
Release Date: 5 September 2007
X Protocol Version 11, Revision 0
Build Operating System: Linux Debian (xorg-server 2:1.4.1~git20080131-2)
Current Operating System: Linux moka 2.6.23.9systemtap-moka0 #2 PREEMPT Mon Jan 
14 10:02:04 EST 2008 i686
Build Date: 14 March 2008  03:20:12PM
 
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Module Loader present
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: Fri Apr 11 14:42:46 2008
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "Default Layout"
(**) |-->Screen "Default Screen" (0)
(**) |   |-->Monitor "Generic Monitor"
(**) |   |-->Device "NVIDIA"
(**) |-->Input Device "Generic Keyboard"
(**) |-->Input Device "Configured Mouse"
(==) Automatically adding devices
(==) Automatically enabling devices
(WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
Entry deleted from font path.
(==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/1

Bug#471738: compiz-core: does not start gtk-window-decorator on XFCE

2008-04-11 Thread David Witbrodt
I just upgraded from Etch to Sid, and was playing with
the same version of 'compiz' as the OP.  I also prefer
XFCE, and ran into the same problem with 'compiz
--replace' not being able to run
'gtk-window-decorator' (from pkg 'compiz-gtk') because
the script requires an environment variable that will
only exist if the user is running Gnome.  (Some of)
the offending code is near the end of the script:

  # start the gtk-window-decorator if present
  if [ -x ${COMPIZ_BIN_PATH}emerald ] &&
[ "$USE_EMERALD" = "yes" ]; then
  verbose "Starting emerald\n"
  ${COMPIZ_BIN_PATH}emerald --replace &
  elif [ -x ${COMPIZ_BIN_PATH}gtk-window-decorator ]
 && [ -n "$GNOME_DESKTOP_SESSION_ID" ]; then
  verbose "Starting gtk-window-decorator\n"
  ${COMPIZ_BIN_PATH}gtk-window-decorator \
   --replace &
  elif [ -x ${COMPIZ_BIN_PATH}kde-window-decorator ]
 && [ -n "$KDE_FULL_SESSION" ]; then
  verbose "Starting kde-window-decorator\n"
  ${COMPIZ_BIN_PATH}kde-window-decorator \
   --replace &
  FALLBACKWM="${KWIN}"
  fi

XFCE users will not have GNOME_SESSION_DESKTOP_ID in
their environment, so the '/usr/bin/compiz' script
packaged with 'compiz-core' will not work for them.

Another problem for XFCE users, adding insult to
injury, is that the script does not provide a fall
back window manager in the event that it fails:

  KWIN="/usr/bin/kwin"
  METACITY="/usr/bin/metacity"
[...]
  FALLBACKWM="${METACITY}"

This is a purely Gnome-centric assumption, and a hack
provided for KDE users is clearly visible in the
"elif" block above.  Unfortunately, XFCE users have
neither '/usr/bin/metacity' nor '/usr/bin/kwin'
installed, so after running 'compiz --replace &' they
are left with decoration-less windows and no window
manager!

The OP provided a diff with a fix like this:

  +elif [ -x ${COMPIZ_BIN_PATH}gtk-window-decorator ]\
&& [ "$DESKTOP_SESSION" = "xfce4" ]; then
  +verbose "Starting gtk-window-decorator\n"
  +${COMPIZ_BIN_PATH}gtk-window-decorator \
--replace &

I don't see any DESKTOP_SESSION variable in my
environment, but I _do_ see GNOME_SESSION_DESKTOP_ID
in my user environment on my other box, so this fix
cannot work unless DESKTOP_SESSION is temporarily
defined as "xfce4" in the scripts that start XFCE.

I didn't see a clear way to allow the script to
determine that XFCE was running except to grep for
'xfce' in the output of 'ps -A'.  Since I know what I
have on my own machine, I hacked the 'compiz' script
to work temporarily -- since I'm just temporarily
taking 'compiz' for a test-drive, and will probably
uninstall all of it pretty soon.  I have attached a
diff for my own temporary hack.

Maybe 3 separate scripts -- 'compiz.gnome',
'compiz.kde', and 'compiz.xfce' -- would server users
better?  Possibly, they could be provided by 3 small
virtual packages which drag in only those dependencies
needed for each kind of desktop environment?


HTH,
Dave Witbrodt
*** compiz.orig	2008-04-09 09:39:32.0 -0400
--- compiz	2008-04-09 09:58:24.0 -0400
***
*** 47,53 
  # For detecting what driver is in use, the + is for one or more /'s
  XORG_DRIVER_PATH="/usr/lib/xorg/modules/drivers/+"
  
! FALLBACKWM="${METACITY}"
  FALLBACKWM_OPTIONS="--replace $@"
  
  # Driver whitelist
--- 47,54 
  # For detecting what driver is in use, the + is for one or more /'s
  XORG_DRIVER_PATH="/usr/lib/xorg/modules/drivers/+"
  
! # FALLBACKWM="${METACITY}"
! FALLBACKWM="/usr/bin/xfwm4"
  FALLBACKWM_OPTIONS="--replace $@"
  
  # Driver whitelist
***
*** 382,394 
  	verbose "Dry run finished: everything should work with regards to Compiz and 3D.\n"
  	exit 0;
  fi
! # start the gtk-window-decorator if present
  if [ -x ${COMPIZ_BIN_PATH}emerald ] && [ "$USE_EMERALD" = "yes" ]; then
  	verbose "Starting emerald\n"
  	${COMPIZ_BIN_PATH}emerald --replace &
! elif [ -x ${COMPIZ_BIN_PATH}gtk-window-decorator ] && [ -n "$GNOME_DESKTOP_SESSION_ID" ]; then
  	verbose "Starting gtk-window-decorator\n"
  	${COMPIZ_BIN_PATH}gtk-window-decorator --replace &
  elif [ -x ${COMPIZ_BIN_PATH}kde-window-decorator ] && [ -n "$KDE_FULL_SESSION" ]; then
  	verbose "Starting kde-window-decorator\n"
  	${COMPIZ_BIN_PATH}kde-window-decorator --replace &
--- 383,400 
  	verbose "Dry run finished: everything should work with regards to Compiz and 3D.\n"
  	exit 0;
  fi
! 
! # start emerald if present
  if [ -x ${COMPIZ_BIN_PATH}emerald ] && [ "$USE_EMERALD" = "yes" ]; then
  	verbose "Starting emerald\n"
  	${COMPIZ_BIN_PATH}emerald --replace &
! 
! # start the gtk-window-decorator if present
! elif [ -x ${COMPIZ_BIN_PATH}gtk-window-decorator ]; then
  	verbose "Starting gtk-window-decorator\n"
  	${COMPIZ_BIN_PATH}gtk-window-decorator --replace &
+ 
+ # start the kde-window-decorator if present
  elif [ -x ${COMPIZ_BIN_PATH}kde-window-de

Bug#475576: alt keys get stuck, reprise

2008-04-11 Thread Brice Goglin
Francois-Denis Gonthier wrote:
> Package: xserver-xorg-core
> Version: 2:1.4.1~git20080131-2
> Severity: normal
>
> I seem to be experimenting bug #462441, despite the bug is said to be
> fixed.  The symptoms are very similar.
>
> The ALT key, or another key, seems to get badly stuck, which badly
> fsck up my window manager OpenBox.  I've seen the same problem with
> Awesome.
>   


What about xserver-xorg-core 2:1.4.1~git20080131-3 ?

Brice




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



Processed: found 475576 in 2:1.4.1~git20080131-3

2008-04-11 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.10.20
> found 475576 2:1.4.1~git20080131-3
Bug#475576: alt keys get stuck, reprise
Bug marked as found in version 2:1.4.1~git20080131-3.

>
End of message, stopping processing here.

Please contact me if you need assistance.

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


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



Bug#475576: alt keys get stuck, reprise

2008-04-11 Thread Francois-Denis Gonthier

- KRYPTIVA PACKAGED MESSAGE -
PACKAGING TYPE: SIGNED
Brice Goglin wrote:
> Francois-Denis Gonthier wrote:
>> Package: xserver-xorg-core Version: 2:1.4.1~git20080131-2 Severity:
>> normal
>>
>> I seem to be experimenting bug #462441, despite the bug is said to
>> be fixed.  The symptoms are very similar.
>>
>> The ALT key, or another key, seems to get badly stuck, which badly
>> fsck up my window manager OpenBox.  I've seen the same problem with
>>  Awesome.
>>
>
>
> What about xserver-xorg-core 2:1.4.1~git20080131-3 ?
>

Sorry.  Forgot to mention that the problems happened with -3.  I
downgraded to -2 to see what would happen, and the same thing happens.

I've just ruled out hardware problem.  I've switched keyboard and the
thing just happened as I write this.

I've recently switched to another kernel, after having used 2.6.22 for a
while.  I'll try to boot back to 2.6.22 to see if the problem happens again.
- KRYPTIVA SIGNED MESSAGE -
This email claims to have been packaged by Kryptiva.
To process this email and authenticate its origin, get
the free plugin from:
http://www.kryptiva.com/downloads

- KRYPTIVA SIGNATURE START -
AvWVqAIBTiACAQC3AQAIBAECABS3FuvxegTt63v7UWCF
iSdtKgVqvAMAFNtYnPf/czq1EyEfvnKRBT4kXaMpBAAUWtSukk7HSARcK2IBYRNoJKqLkJcF
ABTootXxsxwQJcdIqRpBjV6QaeTIQgYAFBjW8Gpm0GMV5SGRJtlLDKDptyj0BwAUz/O990m3
0FQp5zIXUfeSED9qdkQRABgAAABOIEf/vwoABLvFPW4TAAQAggQA
qQb7DaJgxS8E7LBgwct2KbyISF5zbmzxNGk7eRb5d078yDKcbyQSnPCNbeOcdqFU+FSguwXD
x8uWl0RB7xpDwDa8JnU91Z/gj2n75wg0yvc94YAgZnYeQixHBaQM6CLd0sXg45VSp/KNsvWK
ilHwIa+dyDqjbcM8W+b5utpBeb0=
- KRYPTIVA SIGNATURE END -



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



mesa 7.0.3~rc2-2 MIGRATED to testing

2008-04-11 Thread Debian testing watch
FYI: The status of the mesa source package
in Debian's testing distribution has changed.

  Previous version: 7.0.3~rc2-1
  Current version:  7.0.3~rc2-2

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


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



Re: next steps?

2008-04-11 Thread dann frazier
On Thu, Apr 10, 2008 at 08:43:27PM +0200, Julien Cristau wrote:
> On Mon, Apr  7, 2008 at 19:44:32 +0200, Holger Levsen wrote:
> 
> > Xorg driver (none yet). 
> 
> I just uploaded xserver-xorg-video-nv 2.0.3-1 to proposed-updates.  This
> has support for Geforce 8 series GPUs, and as far as I can tell from the
> diff shouldn't regress anything for older hardware (there's a new
> rudimentary dual-head support, which is only enabled with Option
> "Dualhead" in xorg.conf, and disabled by default).  I tested it on my
> work machine (NV18GL) and didn't notice any problem, but wider testing
> would be appreciated :)

Thanks Julien!

Did this already go through SRM review on debian-release? Since this
is an update to an existing package (vs. a new one) that needs to be
done, if it hasn't already, before it can be approved.

-- 
dann frazier


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