Re: xserver-xorg-video-ati: Changes to 'debian-unstable'

2009-04-30 Thread Michel Dänzer
On Thu, 2009-04-30 at 01:19 +, David Nusinow wrote:
 debian/NEWS  |   10 ++
  debian/changelog |6 +-
  2 files changed, 15 insertions(+), 1 deletion(-)
 
 New commits:
 commit bc0bb3790d8858c9073a8adb6de4f4eb24a9abf7
 Author: David Nusinow dnusi...@debian.org
 Date:   Wed Apr 29 21:19:08 2009 -0400
 
 Add a note in NEWS.Debian about firmware-linux
 
 diff --git a/debian/NEWS b/debian/NEWS
 index 0d0674b..a0a35df 100644
 --- a/debian/NEWS
 +++ b/debian/NEWS
 @@ -1,3 +1,13 @@
 +xserver-xorg-video-ati (1:6.12.2-2) unstable; urgency=low
 +
 +  * The standard linux kernels in Debian as of version 2.6.29-1 do not
 +contain the firmware necessary to allow the radeon driver to use 3D
 +acceleration via DRI. This firmware has been moved to the
 +firmware-linux package in non-free, and must be installed to use
 +this feature.

As I pointed out on IRC before, it's important even for 2D and XVideo on
Radeons. See e.g. bugs #523467, #523724, #523585.


-- 
Earthling Michel Dänzer   |http://www.vmware.com
Libre software enthusiast |  Debian, X and DRI developer


--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



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

2009-04-30 Thread Brice Goglin
 configure.ac |2 +-
 src/evdev.c  |   25 +
 2 files changed, 18 insertions(+), 9 deletions(-)

New commits:
commit cf887a2b7cff9eb99c872a9cf5a9382ff6317899
Author: Peter Hutterer peter.hutte...@who-t.net
Date:   Thu Apr 30 16:39:15 2009 +1000

evdev 2.2.2

diff --git a/configure.ac b/configure.ac
index 52d892d..3f23d21 100644
--- a/configure.ac
+++ b/configure.ac
@@ -22,7 +22,7 @@
 
 AC_PREREQ(2.57)
 AC_INIT([xf86-input-evdev],
-2.2.1,
+2.2.2,
 [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
 xf86-input-evdev)
 

commit 1cc0651e1b44af505d7177b22c6083eae9b118cc
Author: Peter Hutterer peter.hutte...@who-t.net
Date:   Thu Apr 16 13:23:50 2009 +1000

Print read errors as X_NONE to avoid mallocs in the server.

Messages of type X_NONE are just passed down to the log files, everything 
else
gets the (EE) or (II) prefixed. Since this mallocs, we can't use it in the
signal handler.

Signed-off-by: Peter Hutterer peter.hutte...@who-t.net
(cherry picked from commit 220e2dfb8f6aa08bd5f59e81c6883c057b945721)

diff --git a/src/evdev.c b/src/evdev.c
index a05bd2c..9fc0663 100644
--- a/src/evdev.c
+++ b/src/evdev.c
@@ -577,15 +577,19 @@ EvdevReadInput(InputInfoPtr pInfo)
 pEvdev-reopen_timer = TimerSet(pEvdev-reopen_timer, 0, 
100, EvdevReopenTimer, pInfo);
 }
 } else if (errno != EAGAIN)
-xf86Msg(X_ERROR, %s: Read error: %s\n, pInfo-name,
+{
+/* We use X_NONE here because it doesn't alloc */
+xf86MsgVerb(X_NONE, 0, %s: Read error: %s\n, pInfo-name,
 strerror(errno));
+}
 break;
 }
 
+/* The kernel promises that we always only read a complete
+ * event, so len != sizeof ev is an error. */
 if (len % sizeof(ev[0])) {
-/* The kernel promises that we always only read a complete
- * event, so len != sizeof ev is an error. */
-xf86Msg(X_ERROR, %s: Read error: %s\n, pInfo-name, 
strerror(errno));
+/* We use X_NONE here because it doesn't alloc */
+xf86MsgVerb(X_NONE, 0, %s: Read error: %s\n, pInfo-name, 
strerror(errno));
 break;
 }
 

commit 48a747ea8603ece6bd25ba5b1ce92c2eb91a7c01
Author: Peter Hutterer peter.hutte...@who-t.net
Date:   Thu Apr 16 12:01:03 2009 +1000

Pre-allocate the reopen timer so we don't allocate during sigio handling.

Signed-off-by: Peter Hutterer peter.hutte...@who-t.net
(cherry picked from commit ddc126637404cb3d9356b7698779dcd8849f8718)

diff --git a/src/evdev.c b/src/evdev.c
index 3a60e7f..a05bd2c 100644
--- a/src/evdev.c
+++ b/src/evdev.c
@@ -571,8 +571,11 @@ EvdevReadInput(InputInfoPtr pInfo)
 xf86RemoveEnabledDevice(pInfo);
 close(pInfo-fd);
 pInfo-fd = -1;
-pEvdev-reopen_left = pEvdev-reopen_attempts;
-pEvdev-reopen_timer = TimerSet(NULL, 0, 100, 
EvdevReopenTimer, pInfo);
+if (pEvdev-reopen_timer)
+{
+pEvdev-reopen_left = pEvdev-reopen_attempts;
+pEvdev-reopen_timer = TimerSet(pEvdev-reopen_timer, 0, 
100, EvdevReopenTimer, pInfo);
+}
 } else if (errno != EAGAIN)
 xf86Msg(X_ERROR, %s: Read error: %s\n, pInfo-name,
 strerror(errno));
@@ -1226,7 +1229,7 @@ EvdevOn(DeviceIntPtr device)
 if (pInfo-fd == -1)
 {
 pEvdev-reopen_left = pEvdev-reopen_attempts;
-pEvdev-reopen_timer = TimerSet(NULL, 0, 100, EvdevReopenTimer, pInfo);
+pEvdev-reopen_timer = TimerSet(pEvdev-reopen_timer, 0, 100, 
EvdevReopenTimer, pInfo);
 } else
 {
 pEvdev-min_maj = EvdevGetMajorMinor(pInfo);
@@ -1237,6 +1240,8 @@ EvdevOn(DeviceIntPtr device)
 return !Success;
 }
 
+pEvdev-reopen_timer = TimerSet(pEvdev-reopen_timer, 0, 0, NULL, 
NULL);
+
 xf86FlushInput(pInfo-fd);
 xf86AddEnabledDevice(pInfo);
 EvdevMBEmuOn(pInfo);

commit aa58eb609617beb5d3199dab262f96003f57ab97
Author: Peter Hutterer peter.hutte...@who-t.net
Date:   Mon Apr 6 10:22:25 2009 +1000

Trigger read error handling if len is = 0.

Red Hat Bug 494245 https://bugzilla.redhat.com/show_bug.cgi?id=494245

Reported-by: David Woodhouse dw...@infradead.org
Signed-off-by: Peter Hutterer peter.hutte...@who-t.net
(cherry picked from commit 98ecb5233bb3b899bd696a90d2733c6a345676dd)

diff --git a/src/evdev.c b/src/evdev.c
index 482f7fd..3a60e7f 100644
--- a/src/evdev.c
+++ b/src/evdev.c
@@ -564,7 +564,7 @@ EvdevReadInput(InputInfoPtr pInfo)
 while (len == sizeof(ev))
 {
 len = read(pInfo-fd, ev, sizeof(ev));
-if (len == 0)
+if (len = 0)
 {
 if (errno == ENODEV) /* May happen after resume */
   

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

2009-04-30 Thread Brice Goglin
 ChangeLog|   40 
 configure.ac |2 +-
 debian/changelog |7 +++
 debian/control   |2 +-
 src/evdev.c  |   25 +
 5 files changed, 66 insertions(+), 10 deletions(-)

New commits:
commit c518e5808a14ad601bcd40c2f67aca7a875facb5
Author: Brice Goglin bgog...@debian.org
Date:   Thu Apr 30 09:00:15 2009 +0200

Prepare changelog for upload

diff --git a/debian/changelog b/debian/changelog
index e5eec19..e6b2121 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,9 @@
-xserver-xorg-input-evdev (1:2.2.2-1) UNRELEASED; urgency=low
+xserver-xorg-input-evdev (1:2.2.2-1) unstable; urgency=low
 
   * New upstream release.
+  * Add myself to Uploaders.
 
- -- Brice Goglin bgog...@debian.org  Thu, 30 Apr 2009 08:59:13 +0200
+ -- Brice Goglin bgog...@debian.org  Thu, 30 Apr 2009 08:59:58 +0200
 
 xserver-xorg-input-evdev (1:2.2.1-1) unstable; urgency=low
 
diff --git a/debian/control b/debian/control
index 910bf2b..2bcc7fe 100644
--- a/debian/control
+++ b/debian/control
@@ -2,7 +2,7 @@ Source: xserver-xorg-input-evdev
 Section: x11
 Priority: optional
 Maintainer: Debian X Strike Force debian-x@lists.debian.org
-Uploaders: David Nusinow dnusi...@debian.org, Drew Parsons 
dpars...@debian.org, Julien Cristau jcris...@debian.org
+Uploaders: David Nusinow dnusi...@debian.org, Drew Parsons 
dpars...@debian.org, Julien Cristau jcris...@debian.org, Brice Goglin 
bgog...@debian.org
 Build-Depends:
  debhelper (= 5.0.0),
  pkg-config,

commit 322e4a95cc2e4c9f5b5aaaca5154ba4ce678ed79
Author: Brice Goglin bgog...@debian.org
Date:   Thu Apr 30 08:59:39 2009 +0200

New upstream release

diff --git a/ChangeLog b/ChangeLog
index ef9111a..70c7df3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,43 @@
+commit cf887a2b7cff9eb99c872a9cf5a9382ff6317899
+Author: Peter Hutterer peter.hutte...@who-t.net
+Date:   Thu Apr 30 16:39:15 2009 +1000
+
+evdev 2.2.2
+
+commit 1cc0651e1b44af505d7177b22c6083eae9b118cc
+Author: Peter Hutterer peter.hutte...@who-t.net
+Date:   Thu Apr 16 13:23:50 2009 +1000
+
+Print read errors as X_NONE to avoid mallocs in the server.
+
+Messages of type X_NONE are just passed down to the log files, everything 
else
+gets the (EE) or (II) prefixed. Since this mallocs, we can't use it in the
+signal handler.
+
+Signed-off-by: Peter Hutterer peter.hutte...@who-t.net
+(cherry picked from commit 220e2dfb8f6aa08bd5f59e81c6883c057b945721)
+
+commit 48a747ea8603ece6bd25ba5b1ce92c2eb91a7c01
+Author: Peter Hutterer peter.hutte...@who-t.net
+Date:   Thu Apr 16 12:01:03 2009 +1000
+
+Pre-allocate the reopen timer so we don't allocate during sigio handling.
+
+Signed-off-by: Peter Hutterer peter.hutte...@who-t.net
+(cherry picked from commit ddc126637404cb3d9356b7698779dcd8849f8718)
+
+commit aa58eb609617beb5d3199dab262f96003f57ab97
+Author: Peter Hutterer peter.hutte...@who-t.net
+Date:   Mon Apr 6 10:22:25 2009 +1000
+
+Trigger read error handling if len is = 0.
+
+Red Hat Bug 494245 https://bugzilla.redhat.com/show_bug.cgi?id=494245
+
+Reported-by: David Woodhouse dw...@infradead.org
+Signed-off-by: Peter Hutterer peter.hutte...@who-t.net
+(cherry picked from commit 98ecb5233bb3b899bd696a90d2733c6a345676dd)
+
 commit aff7228d972eedd556b13f06d8db0b5ffb622b46
 Author: Peter Hutterer peter.hutte...@who-t.net
 Date:   Tue Mar 24 15:13:23 2009 +1000
diff --git a/debian/changelog b/debian/changelog
index c6a606e..e5eec19 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+xserver-xorg-input-evdev (1:2.2.2-1) UNRELEASED; urgency=low
+
+  * New upstream release.
+
+ -- Brice Goglin bgog...@debian.org  Thu, 30 Apr 2009 08:59:13 +0200
+
 xserver-xorg-input-evdev (1:2.2.1-1) unstable; urgency=low
 
   * New upstream release.

commit cf887a2b7cff9eb99c872a9cf5a9382ff6317899
Author: Peter Hutterer peter.hutte...@who-t.net
Date:   Thu Apr 30 16:39:15 2009 +1000

evdev 2.2.2

diff --git a/configure.ac b/configure.ac
index 52d892d..3f23d21 100644
--- a/configure.ac
+++ b/configure.ac
@@ -22,7 +22,7 @@
 
 AC_PREREQ(2.57)
 AC_INIT([xf86-input-evdev],
-2.2.1,
+2.2.2,
 [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
 xf86-input-evdev)
 

commit 1cc0651e1b44af505d7177b22c6083eae9b118cc
Author: Peter Hutterer peter.hutte...@who-t.net
Date:   Thu Apr 16 13:23:50 2009 +1000

Print read errors as X_NONE to avoid mallocs in the server.

Messages of type X_NONE are just passed down to the log files, everything 
else
gets the (EE) or (II) prefixed. Since this mallocs, we can't use it in the
signal handler.

Signed-off-by: Peter Hutterer peter.hutte...@who-t.net
(cherry picked from commit 220e2dfb8f6aa08bd5f59e81c6883c057b945721)

diff --git a/src/evdev.c b/src/evdev.c
index a05bd2c..9fc0663 100644
--- a/src/evdev.c
+++ b/src/evdev.c
@@ -577,15 +577,19 @@ 

xserver-xorg-input-evdev: Changes to 'refs/tags/xserver-xorg-input-evdev-1_2.2.2-1'

2009-04-30 Thread Brice Goglin
Tag 'xserver-xorg-input-evdev-1_2.2.2-1' created by Brice Goglin 
bgog...@debian.org at 2009-04-30 07:15 +

Tagging upload of xserver-xorg-input-evdev 1:2.2.2-1 to unstable.

Changes since xserver-xorg-input-evdev-1_2.2.1-1:
Brice Goglin (3):
  Merge tag 'xf86-input-evdev-2.2.2' into debian-unstable
  New upstream release
  Prepare changelog for upload

Julien Cristau (7):
  xsfbs.mk: fix the prepare target for parallel make
  xsfbs.mk: more parallel make fixing
  xsfbs.mk: update the list of releases, and drop some unused code
  xsfbs.mk: make 'log' a separate target
  xsfbs: add a repack script for uscan
  xsfbs.sh: kill {,de}register_x_lib_dir_with_ld_so
  Merge branch 'debian-unstable' of git.debian.org:/git/pkg-xorg/xsfbs into 
debian-unstable

Peter Hutterer (4):
  Trigger read error handling if len is = 0.
  Pre-allocate the reopen timer so we don't allocate during sigio handling.
  Print read errors as X_NONE to avoid mallocs in the server.
  evdev 2.2.2

---
 ChangeLog  |   40 +
 configure.ac   |2 -
 debian/changelog   |7 +
 debian/control |2 -
 debian/xsfbs/repack.sh |   32 +++
 debian/xsfbs/xsfbs.mk  |   29 -
 debian/xsfbs/xsfbs.sh  |   66 -
 src/evdev.c|   25 --
 8 files changed, 109 insertions(+), 94 deletions(-)
---


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Processing of xserver-xorg-input-evdev_2.2.2-1_i386.changes

2009-04-30 Thread Archive Administrator
xserver-xorg-input-evdev_2.2.2-1_i386.changes uploaded successfully to localhost
along with the files:
  xserver-xorg-input-evdev_2.2.2-1.dsc
  xserver-xorg-input-evdev_2.2.2.orig.tar.gz
  xserver-xorg-input-evdev_2.2.2-1.diff.gz
  xserver-xorg-input-evdev_2.2.2-1_i386.deb

Greetings,

Your Debian queue daemon


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#515214: hal for Recommends:, not Depends:

2009-04-30 Thread Artem Chuprina
Let me also vote for demoting HAL to Recommends.

So novice users will have it automatically because by default
recommeneded packages are installed, but users whose systems suffer from
HAL (there are very many such users) will not need to install it and
search how to disable it.



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-input-evdev_2.2.2-1_i386.changes ACCEPTED

2009-04-30 Thread Debian Installer

Accepted:
xserver-xorg-input-evdev_2.2.2-1.diff.gz
  to 
pool/main/x/xserver-xorg-input-evdev/xserver-xorg-input-evdev_2.2.2-1.diff.gz
xserver-xorg-input-evdev_2.2.2-1.dsc
  to pool/main/x/xserver-xorg-input-evdev/xserver-xorg-input-evdev_2.2.2-1.dsc
xserver-xorg-input-evdev_2.2.2-1_i386.deb
  to 
pool/main/x/xserver-xorg-input-evdev/xserver-xorg-input-evdev_2.2.2-1_i386.deb
xserver-xorg-input-evdev_2.2.2.orig.tar.gz
  to 
pool/main/x/xserver-xorg-input-evdev/xserver-xorg-input-evdev_2.2.2.orig.tar.gz


Override entries for your package:
xserver-xorg-input-evdev_2.2.2-1.dsc - source x11
xserver-xorg-input-evdev_2.2.2-1_i386.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



Bug#526260: xorg: cursor appears on all displays

2009-04-30 Thread Jakob
Package: xorg
Version: 1:7.4+1
Severity: normal


I have X configured with two screens (without Xinerama) like this:

  Section ServerLayout
Identifier Default Layout
Screen 0 Screen0 0 0
Screen 1 Screen1 RightOf Screen0
...

Previously, the mouse cursor worked seamlessly across displays.  After
upgrading to the newest xorg version, though, the cursor persists on the
inactive screen after moving across the display boundary.  It's as if
the last displayed position on the previous screen isn't erased when it
hops to the next screen.

This doesn't interfere with normal operations, it's just annoying :-).

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

Kernel: Linux 2.6.29-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 xorg depends on:
ii  libgl1-mesa-glx [libgl1]  7.4-2  A free implementation of the OpenG
ii  libglu1-mesa  7.4-2  The OpenGL utility library (GLU)
ii  rxvt-unicode [x-terminal-emul 9.06-1 RXVT-like terminal emulator with U
ii  x11-apps  7.3+4  X applications
ii  x11-session-utils 7.3+1  X session utilities
ii  x11-utils 7.4+1  X11 utilities
ii  x11-xfs-utils 7.4+1  X font server utilities
ii  x11-xkb-utils 7.4+2  X11 XKB utilities
ii  x11-xserver-utils 7.4+2  X server utilities
ii  xauth 1:1.0.3-2  X authentication utility
ii  xfonts-100dpi 1:1.0.0-4  100 dpi fonts for X
ii  xfonts-75dpi  1:1.0.0-4  75 dpi fonts for X
ii  xfonts-base   1:1.0.0-6  standard fonts for X
ii  xfonts-scalable   1:1.0.0-6  scalable fonts for X
ii  xfonts-utils  1:7.4+1X Window System font utility progr
ii  xinit 1.1.1-1X server initialisation tool
ii  xkb-data  1.5-2  X Keyboard Extension (XKB) configu
ii  xserver-xorg  1:7.4+1the X.Org X server
ii  xterm [x-terminal-emulator]   242-1  X terminal emulator

Versions of packages xorg recommends:
ii  xorg-docs 1:1.4-4Miscellaneous documentation for th

xorg suggests no packages.

-- debconf-show failed



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#526169: can't even read the login screen

2009-04-30 Thread jidanni
found 526169 2:2.7.99.1-1
severity 526169 grave
retitle 526169 can't even read the login screen
thanks
2:2.7.99.1-1 is a little better. At least the Debian logo is readable
on the xdm login screen, but still not any other words.



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#526169: can't even read the login screen

2009-04-30 Thread Brice Goglin
jida...@jidanni.org wrote:
 found 526169 2:2.7.99.1-1
 severity 526169 grave
 retitle 526169 can't even read the login screen
 thanks
 2:2.7.99.1-1 is a little better. At least the Debian logo is readable
 on the xdm login screen, but still not any other words.
   


We need your full X log, as usual... Make sure you're using 2.6.29 or
even 2.6.30-rc since recent intel drivers like recent kernels (2.7.99.1
enforces UXA which requires GEM  anyway).

Brice




-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#526169: can't even read the login screen

2009-04-30 Thread jidanni
Brice Goglin brice.gog...@ens-lyon.org writes:
 We need your full X log, as usual... Make sure you're using 2.6.29
Roger. Here you go my man. .old is the unhappy new run.

Don't worry about 'dlopen of /usr/lib/dri/swrast_dri.so failed'. I
purged that package momentarily but it didn't make any difference.


Xorg.0.log.bz2
Description: 2.6.1-1 good run


Xorg.0.log.old.bz2
Description: 2.7.99.1-1, bad run


Bug#526317: video-intel: UXA kills display and input on startup

2009-04-30 Thread Michal Suchanek hramr...@centrum.cz
Package: xserver-xorg-video-intel
Version: 2:2.7.0-1
Severity: important
File: video-intel


Hello,

I tried switching to UXA as it worked on the other system but here it
locks up the graphics and keyboard on X start.

The system is running and it is possible to kill the X server remotely
but even keyboard input does not recover.

EXA worked fine with xorg 1.4


-- 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 2008-11-27 09:58 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1695356 2009-04-15 13:47 /usr/bin/Xorg

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

VGA-compatible devices on PCI bus:
00:02.0 VGA compatible controller: Intel Corporation Mobile 945GM/GMS, 
943/940GML Express Integrated Graphics Controller (rev 03)

/var/lib/x11/xorg.conf.md5sum does not exist.

Xorg X server configuration file status:
-rw-r--r-- 1 root root 1157 2009-04-20 10:49 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
# xorg.conf (X.Org 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 InputDevice
Identifier  Generic Keyboard
Driver  kbd
Option  XkbRules  xorg
Option  XkbModel  pc104
Option  XkbLayout us
EndSection

Section InputDevice
Identifier  Configured Mouse
Driver  mouse
EndSection

Section Device
Identifier  Configured Video Device
Option AccelMethod UXA
EndSection

Section Monitor
Identifier  Configured Monitor
EndSection

Section Screen
Identifier  Default Screen
Monitor Configured Monitor
EndSection

Section ServerFlags
Option DontZap
EndSection


Xorg X server log files on system:
-rw-r--r-- 1 root root  2698 2008-12-03 13:08 /var/log/Xorg.1.log
-rw-r--r-- 1 root root 20533 2009-04-30 12:24 /var/log/Xorg.0.log

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

X.Org X Server 1.6.1
Release Date: 2009-4-14
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.26-1-amd64 x86_64 Package files:  100 
/var/lib/dpkg/status  release a=now  500 http://ftp.debian.org sid/main 
Packages  release o=Debian,a=unstable,l=Debian,c=main  origin 
ftp.debian.org Pinned packages:
Current Operating System: Linux uvt316-2 2.6.28-macmini #1 SMP Fri Jan 16 
14:33:57 CET 2009 i686
Build Date: 15 April 2009  11:46:22AM
xorg-server 2:1.6.1-1 (bgog...@debian.org) 
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: Thu Apr 30 12:24:12 2009
(==) Using config file: /etc/X11/xorg.conf
(==) No Layout section.  Using the first Screen section.
(**) |--Screen Default Screen (0)
(**) |   |--Monitor Configured Monitor
(==) No device specified for screen Default Screen.
Using the first device section listed.
(**) |   |--Device Configured Video Device
(**) Option DontZap
(==) Automatically adding devices
(==) Automatically enabling devices
(WW) The directory /usr/share/fonts/X11/cyrillic does not exist.
Entry deleted from font path.
(WW) The directory /usr/share/fonts/X11/100dpi/ does not exist.
Entry deleted from font path.
(WW) The directory /usr/share/fonts/X11/75dpi/ does not exist.
Entry deleted from font path.
(WW) The directory /usr/share/fonts/X11/100dpi does not exist.
Entry deleted from font path.
(WW) The directory /usr/share/fonts/X11/75dpi does not exist.
Entry deleted from font path.
(==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/Type1,
/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType,
built-ins
(==) ModulePath set to /usr/lib/xorg/modules
(II) Cannot locate a core pointer device.
(II) Cannot locate a core keyboard device.
(II) The server relies on HAL to provide the list of input devices.
If no devices become available, reconfigure HAL or disable 
AllowEmptyInput.
(II) Loader magic: 0xe40
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.4
X.Org Video Driver: 5.0
X.Org XInput driver : 4.0
X.Org 

Bug#526269: An afterimage occurs

2009-04-30 Thread Jonny
Package: xserver-xorg-video-siliconmotion
Version: 1:1.7.1-1

A screen becomes full of afterimages. It does not generate in 1:1.7.0-2.

It seems that this commitment is the cause:
http://cgit.freedesktop.org/xorg/driver/xf86-video-siliconmotion/commit/?id=abf1ba79f2bfe61f24cfa43deb0400d7c5f95bd5

When this patch was removed, the afterimage disappeared.

lspci -v:
00:02.0 VGA compatible controller: Silicon Motion, Inc. SM712 LynxEM+ (rev a0) 
(prog-if 00 [VGA controller])
Subsystem: IBM Device 01a4
Flags: bus master, 66MHz, medium devsel, latency 32, IRQ 10
Memory at 0e00 (32-bit, non-prefetchable) [size=16M]
Expansion ROM at unassigned [disabled]
Capabilities: [40] Power Management version 1

xorg.conf:
Section Device
Identifier  Card0
Driver  siliconmotion
Option  UseBIOS   false
Option  AccelMethod   exa
EndSection



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Processed: Re: Bug#525515: xorg: uninstallable on GNU/kFreeBSD, hurd

2009-04-30 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 block 525515 by 515214
Bug#515214: X can run perfectly well (or even better) without HAL. Please make 
this a Recommends: at most
Bug#525515: xorg: uninstallable on GNU/kFreeBSD and hurd due to depends on hal, 
console-setup
Was blocked by: 524477
Blocking bugs of 525515 added: 515214


End of message, stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#524794: libgl1-mesa-dri: OpenGL apps redraw over any other window

2009-04-30 Thread Michel Dänzer
On Wed, 2009-04-29 at 22:23 +0200, GSR wrote: 
 Hi,
 daen...@debian.org (2009-04-29 at 1716.10 +0200):
  On Tue, 2009-04-28 at 22:07 +0200, GSR wrote:
   Hi,
   daen...@debian.org (2009-04-28 at 1105.49 +0200):
 I have been also trying other 3D apps, like Supertuxkart, and found
 out the one running via PLib/SDL does not cause stacking issues, just
 that in screenshots I get black pixels in zones covered by other
 windows and the 3D content in non covered parts. STK from SVN does not
 use SDL anymore... and the full bug appears.

Does running the affected apps with

XLIB_SKIP_ARGB_VISUALS=1

work around the problem?
   
   With that glxgears just prints:
   
   ---8---
   Error: couldn't get an RGB, Double-buffered visual
   ---8---

Hmm, actually I can reproduce this... I'll get it fixed upstream.
While your problem probably isn't directly related to this,
XLIB_SKIP_ARGB_VISUALS=1 should serve as a workaround for it if it
wasn't for this other problem.


 My logs have been reporting for some time that both DRI and DRI2 are
 being loaded, but at the same time it shows:
 
 ---8---
 (II) AIGLX: Screen 0 is not DRI2 capable
 ---8---
 
 And xdpyinfo shows DRI2 and XFree86-DRI. A bit confusing.

These just mean the X server extensions are available, not that the
drivers actually support DRI2. DRI2 support for the Radeon drivers is
being worked on, but it'll probably be a while before it shows up in end
user releases.


   There is also a 2D app that causes black zones in similar fashion than
   3D ones (its pixels which are covered by others appear as black).
  
  That's expected, obscured parts of windows are not usually preserved in
  X11.
 
 I know, but no idea how that applies. To make it clear, the weird 2D
 window is below the others. I can get screenshots of it if uncovered,
 and I can get screenshots of other 2D windows. When a 2D window is
 placed over the funny one, then the overlapping pixels appear black
 in captures, while monitor shows the contents of all windows fine.
 
 3D case is the same... it is like if some kind of censor went over
 pixels looking for where 3D or the weird 2D are behind others and
 set black the pixels delivered to the capture process. What I expected
 is to see whatever is on top, thus preserving (or not) things that are
 behind should not matter. See attached screenshot and mockup of what
 it should show.

Hmm, not sure what's going on then. However, the Mesa driver isn't
involved for 2D windows, so this is probably a separate issue.


-- 
Earthling Michel Dänzer   |http://www.vmware.com
Libre software enthusiast |  Debian, X and DRI developer



--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Processed: can't even read the login screen

2009-04-30 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 found 526169 2:2.7.99.1-1
Bug#526169: even xdm login screen becomes unreadable rectangular chunks
Bug marked as found in version 2:2.7.99.1-1.

 severity 526169 grave
Bug#526169: even xdm login screen becomes unreadable rectangular chunks
Severity set to `grave' from `serious'

 retitle 526169 can't even read the login screen
Bug#526169: even xdm login screen becomes unreadable rectangular chunks
Changed Bug title to `can't even read the login screen' from `even xdm login 
screen becomes unreadable rectangular chunks'.

 thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#526269: An afterimage occurs

2009-04-30 Thread Brice Goglin
Jonny wrote:
 Package: xserver-xorg-video-siliconmotion
 Version: 1:1.7.1-1

 A screen becomes full of afterimages. It does not generate in 1:1.7.0-2.

 It seems that this commitment is the cause:
 http://cgit.freedesktop.org/xorg/driver/xf86-video-siliconmotion/commit/?id=abf1ba79f2bfe61f24cfa43deb0400d7c5f95bd5

 When this patch was removed, the afterimage disappeared.
   

Would you mind reporting this upstream at bugzilla.freedesktop.org or
directly to the author of the above commit? Very few people have
siliconmotion hardware so you guys could probably discuss this directly.

Brice




-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Processed: Re: Bug#525515: xorg: uninstallable on GNU/kFreeBSD, hurd (fwd)

2009-04-30 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 block 525515 by 523960
Bug#523960: X can run perfectly well without console-setup. Please make it an 
Recommends.
Bug#525515: xorg: uninstallable on GNU/kFreeBSD and hurd due to depends on hal, 
console-setup
Was blocked by: 515214 524477
Blocking bugs of 525515 added: 523960


End of message, stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#526334: [xterm] New upstream release

2009-04-30 Thread Gabriele 'LightKnight' Stilli
Package: xterm
Version: 242-1
Severity: normal

--- Please enter the report below this line. ---
Hi,

xterm 243 is available; this solves #520405 among others, so it would be
quite nice to have it in Debian :-)

Hope I didn't disturb you.

Cheers,
Gabriele :-)

--- System information. ---
Architecture: i386
Kernel:   Linux 2.6.29.2

Debian Release: squeeze/sid
  500 testing security.debian.org 
  500 testing ftp.it.debian.org 

--- Package information. ---
Depends  (Version) | Installed
==-+-
xbitmaps   | 1.0.1-2
libc6   (= 2.3.4) | 2.9-4
libfontconfig1  (= 2.4.0) | 2.6.0-3
libice6   (= 1:1.0.0) | 2:1.0.5-1
libncurses5(= 5.6+20071006-3) | 5.7+20090404-1
libx11-6   | 2:1.2.1-1
libxaw7| 2:1.0.5-2
libxft2 ( 2.1.1) | 2.1.13-3
libxmu6| 2:1.0.4-1
libxt6 | 1:1.0.5-3


Recommends  (Version) | Installed
=-+-===
x11-utils | 7.4+1
 OR xutils| 1:7.3+18


Suggests (Version) | Installed
==-+-===
xfonts-cyrillic| 

-- 
http://poisson.phc.unipi.it/~stilli/   ICQ UIN: 159169930
[HT] Lothlorien F.C. (51042, V.192)   #156 Club dei Mille
Meglio essere ottimisti e avere torto, che pessimisti e avere ragione
[Albert Einstein]


signature.asc
Description: Digital signature


Bug#526317: video-intel: xorg 1.6 does not work on the system at all

2009-04-30 Thread Michal Suchanek hramr...@centrum.cz
Package: xserver-xorg-video-intel
Followup-For: Bug #526317


I tried both EXA and UXA and upgraded my kernel to 2.6.29 but the result
is the same: I get blank screen when X starts and I have to kill it with
SIGKILL and reboot to get display and keyboard back.

Downgrading to X server 1.4 and disabling GEM mode in the kernel
resolves the problem.

It seems that the 2.6.29 kernel finally allows tiled allocation, and it
even works when modesetting is disabled.


-- 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 2008-11-27 09:58 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1718516 2009-03-15 16:30 /usr/bin/Xorg

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

VGA-compatible devices on PCI bus:
00:02.0 VGA compatible controller: Intel Corporation Mobile 945GM/GMS, 
943/940GML Express Integrated Graphics Controller (rev 03)

/var/lib/x11/xorg.conf.md5sum does not exist.

Xorg X server configuration file status:
-rw-r--r-- 1 root root 1182 2009-04-30 15:44 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
# xorg.conf (X.Org 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 InputDevice
Identifier  Generic Keyboard
Driver  kbd
Option  XkbRules  xorg
Option  XkbModel  pc104
Option  XkbLayout us
EndSection

Section InputDevice
Identifier  Configured Mouse
Driver  mouse
EndSection

Section Device
Identifier  Configured Video Device
#Option AccelMethod EXA
#Option Tiling off
EndSection

Section Monitor
Identifier  Configured Monitor
EndSection

Section Screen
Identifier  Default Screen
Monitor Configured Monitor
EndSection

Section ServerFlags
Option DontZap
EndSection


Xorg X server log files on system:
-rw-r--r-- 1 root root  2698 2008-12-03 13:08 /var/log/Xorg.1.log
-rw-r--r-- 1 root root 38116 2009-04-30 15:48 /var/log/Xorg.0.log

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

X.Org X Server 1.4.2
Release Date: 11 June 2008
X Protocol Version 11, Revision 0
Build Operating System: Linux Debian (xorg-server 2:1.4.2-10.lenny1)
Current Operating System: Linux uvt316-2 2.6.29-macmini #1 SMP Thu Apr 30 
13:59:51 CEST 2009 i686
Build Date: 15 March 2009  03:18:10PM
 
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: Thu Apr 30 15:48:33 2009
(==) Using config file: /etc/X11/xorg.conf
(==) No Layout section.  Using the first Screen section.
(**) |--Screen Default Screen (0)
(**) |   |--Monitor Configured Monitor
(==) No device specified for screen Default Screen.
Using the first device section listed.
(**) |   |--Device Configured Video Device
(==) |--Input Device Configured Mouse
(==) |--Input Device Generic Keyboard
(==) The core pointer device wasn't specified explicitly in the layout.
Using the first mouse device.
(==) The core keyboard device wasn't specified explicitly in the layout.
Using the first keyboard device.
(**) Option DontZap
(==) Automatically adding devices
(==) Automatically enabling devices
(==) No FontPath specified.  Using compiled-in default.
(WW) The directory /usr/share/fonts/X11/cyrillic does not exist.
Entry deleted from font path.
(WW) The directory /usr/share/fonts/X11/100dpi/ does not exist.
Entry deleted from font path.
(WW) The directory /usr/share/fonts/X11/75dpi/ does not exist.
Entry deleted from font path.
(WW) The directory /usr/share/fonts/X11/100dpi does not exist.
Entry deleted from font path.
(WW) The directory /usr/share/fonts/X11/75dpi does not exist.
Entry deleted from font path.
(==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/Type1,
/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType
(==) RgbPath set to /etc/X11/rgb
(==) ModulePath set to /usr/lib/xorg/modules
(II) Open ACPI successful (/var/run/acpid.socket)
(II) Loader magic: 0x81e38c0
(II) Module ABI versions:

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

2009-04-30 Thread David Nusinow
 debian/NEWS |   11 ++-
 1 file changed, 6 insertions(+), 5 deletions(-)

New commits:
commit 29213f24669e5f511bff15643036a96dd95ff6a0
Author: David Nusinow dnusi...@debian.org
Date:   Thu Apr 30 10:14:09 2009 -0400

Update NEWS entry to mention 2d and Xvideo

diff --git a/debian/NEWS b/debian/NEWS
index a0a35df..40580e9 100644
--- a/debian/NEWS
+++ b/debian/NEWS
@@ -1,10 +1,11 @@
 xserver-xorg-video-ati (1:6.12.2-2) unstable; urgency=low
 
-  * The standard linux kernels in Debian as of version 2.6.29-1 do not
-contain the firmware necessary to allow the radeon driver to use 3D
-acceleration via DRI. This firmware has been moved to the
-firmware-linux package in non-free, and must be installed to use
-this feature.
+  * The standard linux kernels in Debian as of version 2.6.29-1 do not contain
+the firmware necessary to allow the radeon driver to use 3D acceleration
+via DRI. In addition, the driver will pay significant performance
+penalties for 2D and Xvideo usage when the firmware is absent. This
+firmware has been moved to the firmware-linux package in non-free, and
+must be installed to use this feature.
 
  -- David Nusinow dnusi...@debian.org  Wed, 29 Apr 2009 21:14:53 -0400
 


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#526260: xorg: cursor appears on all displays

2009-04-30 Thread Julien Cristau
On Thu, Apr 30, 2009 at 00:52:47 -0700, Jakob wrote:

 Package: xorg
 Version: 1:7.4+1
 Severity: normal
 
 
 I have X configured with two screens (without Xinerama) like this:
 
   Section ServerLayout
 Identifier Default Layout
 Screen 0 Screen0 0 0
 Screen 1 Screen1 RightOf Screen0
 ...
 
 Previously, the mouse cursor worked seamlessly across displays.  After
 upgrading to the newest xorg version, though, the cursor persists on the
 inactive screen after moving across the display boundary.  It's as if
 the last displayed position on the previous screen isn't erased when it
 hops to the next screen.
 
 This doesn't interfere with normal operations, it's just annoying :-).
 
Please send your full X log and config.

Cheers,
Julien



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#526169: can't even read the login screen

2009-04-30 Thread Julien Cristau
On Thu, Apr 30, 2009 at 11:52:53 +0200, Brice Goglin wrote:

 We need your full X log, as usual... Make sure you're using 2.6.29 or
 even 2.6.30-rc since recent intel drivers like recent kernels (2.7.99.1
 enforces UXA which requires GEM  anyway).
 
UXA has supposedly been fixed to work without GEM.

Cheers,
Julien



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#526317: video-intel: xorg 1.6 does not work on the system at all

2009-04-30 Thread Julien Cristau
On Thu, Apr 30, 2009 at 15:56:02 +0200, Michal Suchanek hramr...@centrum.cz 
wrote:

 I tried both EXA and UXA and upgraded my kernel to 2.6.29 but the result
 is the same: I get blank screen when X starts and I have to kill it with
 SIGKILL and reboot to get display and keyboard back.
 
 Downgrading to X server 1.4 and disabling GEM mode in the kernel
 resolves the problem.
 
Could you file this upstream at bugs.freedesktop.org, so there's a
chance intel will fix this?

Thanks,
Julien



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: xserver-xorg-video-intel_2.7.99.1-1_i386.changes ACCEPTED

2009-04-30 Thread Stefano Avallone
Just to say thanks for promptly packaging new Xorg libraries and drivers 
snapshots.

This update seems to solve a couple of issues for me on GM965 with KMS/DRI2.

Stefano


 Accepted:
 xserver-xorg-video-intel-dbg_2.7.99.1-1_i386.deb
   to pool/main/x/xserver-xorg-video-intel/xserver-xorg-video-intel-
dbg_2.7.99.1-1_i386.deb
 xserver-xorg-video-intel_2.7.99.1-1.diff.gz
  to pool/main/x/xserver-xorg-video-intel/xserver-xorg-video-
intel_2.7.99.1-1.diff.gz
 xserver-xorg-video-intel_2.7.99.1-1.dsc
  to pool/main/x/xserver-xorg-video-intel/xserver-xorg-video-
intel_2.7.99.1-1.dsc
 xserver-xorg-video-intel_2.7.99.1-1_i386.deb
  to pool/main/x/xserver-xorg-video-intel/xserver-xorg-video-
intel_2.7.99.1-1_i386.deb
 xserver-xorg-video-intel_2.7.99.1.orig.tar.gz
  to pool/main/x/xserver-xorg-video-intel/xserver-xorg-video-
intel_2.7.99.1.orig.tar.gz


 Override entries for your package:
 xserver-xorg-video-intel-dbg_2.7.99.1-1_i386.deb - extra debug
 xserver-xorg-video-intel_2.7.99.1-1.dsc - source x11
 xserver-xorg-video-intel_2.7.99.1-1_i386.deb - optional x11
 
 Announcing to debian-devel-chan...@lists.debian.org
 Closing bugs: 524334 524336 


 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



Bug#418932: (no subject)

2009-04-30 Thread Anthony DeRobertis
FYI, I ran into this (or a similar bug) again, and upping the
-dMaxBitmap=1000 ghostscript option (by adding another 0) seems to
have fixed it...

Error this time was:

Error: /unknownerror in --fill--
Operand stack:
   --nostringval--
Execution stack:
   %interp_exit   .runexec2   --nostringval--   --nostringval--   
--nostringval--   2   %stopped_push   --nostringval--   --nostringval--   
--nostringval--   false   1   %stopped_push   1862   1   3   %oparray_pop   
1861   1   3   %oparray_pop   --nostringval--   1845   1   3   %oparray_pop   
1739   1   3   %oparray_pop   --nostringval--   %errorexec_pop   .runexec2   
--nostringval--   --nostringval--   --nostringval--   2   %stopped_push   
--nostringval--
Dictionary stack:
   --dict:1151/1684(ro)(G)--   --dict:0/20(G)--   --dict:75/200(L)--   
--dict:50/200(L)--
Current allocation mode is local
Last OS error: 11
Current file position is 4121
GPL Ghostscript 8.64: Unrecoverable error, exit code 1


-- 



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#526394: Fails to install using apt-get install xvfb

2009-04-30 Thread Brendan M. Sleight
Package: xvfb
Version: 2:1.4.2-10.lenny1
Severity: important

*** Please type your report below this line U**

b...@brum:~$ sudo apt-get install xvfb
Reading package lists... Done
Building dependency tree   
Reading state information... Done
The following NEW packages will be installed
  xvfb
0 upgraded, 1 newly installed, 0 to remove and 704 not upgraded.
Need to get 1887kB of archives.
After this operation, 4231kB of additional disk space will be used.
Err http://ftp.uk.debian.org testing/main xvfb 2:1.4.2-10
  404 Not Found
Failed to fetch 
http://ftp.uk.debian.org/debian/pool/main/x/xorg-server/xvfb_1.4.2-10_i386.deb  
404 Not Found
E: Unable to fetch some archives, maybe run apt-get update or try with 
--fix-missing?
b...@brum:~$ sudo apt-get install xvfb --fix-missing
Reading package lists... Done
Building dependency tree   
Reading state information... Done
The following NEW packages will be installed
  xvfb
0 upgraded, 1 newly installed, 0 to remove and 704 not upgraded.
Need to get 1887kB of archives.
After this operation, 4231kB of additional disk space will be used.
Err http://ftp.uk.debian.org testing/main xvfb 2:1.4.2-10
  404 Not Found
Failed to fetch 
http://ftp.uk.debian.org/debian/pool/main/x/xorg-server/xvfb_1.4.2-10_i386.deb  
404 Not Found
b...@brum:~$ 

However from:-
 http://packages.debian.org/lenny/i386/xvfb/download

The uri is:-
 
http://ftp.uk.debian.org/debian/pool/main/x/xorg-server/xvfb_1.4.2-10.lenny1_i386.deb

(Correct filename xvfb_1.4.2-10.lenny1_i386.deb not xvfb_1.4.2-10_i386.deb)


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

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



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#526394: marked as done (Fails to install using apt-get install xvfb)

2009-04-30 Thread Debian Bug Tracking System

Your message dated Thu, 30 Apr 2009 23:52:23 +0200
with message-id 49fa1d97.9090...@ens-lyon.org
and subject line Re: Bug#526394: Fails to install using apt-get install xvfb
has caused the Debian Bug report #526394,
regarding Fails to install using apt-get install xvfb
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.)


-- 
526394: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=526394
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: xvfb
Version: 2:1.4.2-10.lenny1
Severity: important

*** Please type your report below this line U**

b...@brum:~$ sudo apt-get install xvfb
Reading package lists... Done
Building dependency tree   
Reading state information... Done
The following NEW packages will be installed
  xvfb
0 upgraded, 1 newly installed, 0 to remove and 704 not upgraded.
Need to get 1887kB of archives.
After this operation, 4231kB of additional disk space will be used.
Err http://ftp.uk.debian.org testing/main xvfb 2:1.4.2-10
  404 Not Found
Failed to fetch 
http://ftp.uk.debian.org/debian/pool/main/x/xorg-server/xvfb_1.4.2-10_i386.deb  
404 Not Found
E: Unable to fetch some archives, maybe run apt-get update or try with 
--fix-missing?
b...@brum:~$ sudo apt-get install xvfb --fix-missing
Reading package lists... Done
Building dependency tree   
Reading state information... Done
The following NEW packages will be installed
  xvfb
0 upgraded, 1 newly installed, 0 to remove and 704 not upgraded.
Need to get 1887kB of archives.
After this operation, 4231kB of additional disk space will be used.
Err http://ftp.uk.debian.org testing/main xvfb 2:1.4.2-10
  404 Not Found
Failed to fetch 
http://ftp.uk.debian.org/debian/pool/main/x/xorg-server/xvfb_1.4.2-10_i386.deb  
404 Not Found
b...@brum:~$ 

However from:-
 http://packages.debian.org/lenny/i386/xvfb/download

The uri is:-
 
http://ftp.uk.debian.org/debian/pool/main/x/xorg-server/xvfb_1.4.2-10.lenny1_i386.deb

(Correct filename xvfb_1.4.2-10.lenny1_i386.deb not xvfb_1.4.2-10_i386.deb)


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

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


---End Message---
---BeginMessage---
Brendan M. Sleight wrote:
 Package: xvfb
 Version: 2:1.4.2-10.lenny1
 Severity: important

 *** Please type your report below this line U**

 b...@brum:~$ sudo apt-get install xvfb
 Reading package lists... Done
 Building dependency tree   
 Reading state information... Done
 The following NEW packages will be installed
   xvfb
 0 upgraded, 1 newly installed, 0 to remove and 704 not upgraded.
 Need to get 1887kB of archives.
 After this operation, 4231kB of additional disk space will be used.
 Err http://ftp.uk.debian.org testing/main xvfb 2:1.4.2-10
   404 Not Found
 Failed to fetch 
 http://ftp.uk.debian.org/debian/pool/main/x/xorg-server/xvfb_1.4.2-10_i386.deb
   404 Not Found
   

You need apt-get update
xvfb is either 2:1.4.2-10.lenny1 or 2:1.4.2-11 now.

Brice


---End Message---