Bug#370088: x11-common: Should also conflicts with gv (=1:3.5.8-26.1)

2006-11-11 Thread Witold Baryluk
Package: x11-common
Version: 1:7.0.22
Followup-For: Bug #370088

gv 3.5.8-26.1 contain /usr/X11R6/bin/gv , so similary this package
should conflicts (so upgrade will be easier).



signature.asc
Description: Digital signature


Bug#398067: xserver-xorg-video-vesa segfaults with Cirrus Logic GD 7543 [Viking] since upgrade to X.org 7.1

2006-11-11 Thread Axel Beckert
Subject: xserver-xorg-video-vesa segfaults with Cirrus Logic GD 7543 [Viking] 
since upgrade to X.org 7.1
Package: xserver-xorg-video-vesa
Version: 1:1.2.1-3
Severity: important

Since upgrading xserver-xorg from 1:7.0.22 - 1:7.1.0-5 and
xserver-xorg-video-vesa from 1:1.0.1.3-2 to 1:1.2.1-3 in testing, X.org
segfaults on my testing machine, with the previously working config file
as well as with a manually adapted one. Using it with startx and the
following configuration (my original one from 7.0, just with three
modules not supported by the graphics card commented out):

-xorg.conf-
Section Files
FontPathunix/:7100# local font server
# if the local font server has problems, we can fall back on these
FontPath/usr/lib/X11/fonts/misc
FontPath/usr/lib/X11/fonts/cyrillic
FontPath/usr/lib/X11/fonts/100dpi/:unscaled
FontPath/usr/lib/X11/fonts/75dpi/:unscaled
FontPath/usr/lib/X11/fonts/Type1
FontPath/usr/lib/X11/fonts/CID
FontPath/usr/lib/X11/fonts/Speedo
FontPath/usr/lib/X11/fonts/100dpi
FontPath/usr/lib/X11/fonts/75dpi
EndSection

Section Module
#   LoadGLcore
Loadbitmap
Loaddbe
Loadddc
#   Loaddri
Loadextmod
Loadfreetype
#   Loadglx
Loadint10
Loadrecord
#   Loadspeedo
Loadtype1
Loadvbe
EndSection

Section InputDevice
Identifier  Generic Keyboard
Driver  keyboard
Option  CoreKeyboard
Option  XkbRules  xorg
Option  XkbModel  pc102
Option  XkbLayout de_CH
Option  XkbVariantnodeadkeys
Option  XkbOptionsctrl:nocaps
EndSection

Section InputDevice
Identifier  Configured Mouse
Driver  mouse
Option  CorePointer
Option  Device/dev/gpmdata
Option  Protocol  IntelliMouse
Option  Emulate3Buttons   true
EndSection

Section Device
Identifier  Cirrus Logic GD 7543 [Viking]
Driver  vesa
EndSection

Section Monitor
Identifier  Compaq LTE 5100 LCD
HorizSync   28-38
VertRefresh 43-72
Option  DPMS
EndSection

Section Screen
Identifier  Default Screen
Device  Cirrus Logic GD 7543 [Viking]
Monitor Compaq LTE 5100 LCD
DefaultDepth16
SubSection Display
Depth   1
Modes   800x600 640x480
EndSubSection
SubSection Display
Depth   4
Modes   800x600 640x480
EndSubSection
SubSection Display
Depth   8
Modes   800x600 640x480
EndSubSection
SubSection Display
Depth   15
Modes   800x600 640x480
EndSubSection
SubSection Display
Depth   16
Modes   800x600 640x480
EndSubSection
SubSection Display
Depth   24
Modes   800x600 640x480
EndSubSection
EndSection

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

Section DRI
Mode0666
EndSection
-end---

The output from startx is:
---
xauth:  creating new authority file /home/abe/.serverauth.11337


X Window System Version 7.1.1
Release Date: 12 May 2006
X Protocol Version 11, Revision 0, Release 7.1.1
Build Operating System: UNKNOWN 
Current Operating System: Linux pony 2.6.17-2-486 #1 Wed Sep 13 15:56:30 UTC 
2006 i586
Build Date: 07 July 2006
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: Sat Nov 11 13:22:29 2006
(==) Using config file: /etc/X11/xorg.conf
xkb_keycodes { include xfree86+aliases(qwerty) };
xkb_types{ include complete };
xkb_compatibility{ include complete };
xkb_symbols  { include 
pc(pc105)+de_CH(nodeadkeys)+ctrl(nocaps) };

Bug#398138: 50x11-common_determine-startup does too many things at once - a split setup proposal

2006-11-11 Thread Peter Rabbitson
Package: x11-common
Version: 1:7.1.0-6
Severity: minor
Tags: patch


In the current setup /etc/X11/Xsession.d/50x11-common_determine-startup
checks for a user Xsession file and if none are found proceeds to select
a default wm/terminal. However there are times when the administrator 
wants to define an additional set of actions between these two events.
In my case I have an additional script 49x11-common_invoke-chrooted-wm
that is essentially the very same determine_startup script but looking 
in a 32bit chrooted environment and setting $STARTUP to a chrooted
execution string if the requested wm is installed in the chroot.
I propose a split off of the user Xsession file detection into 
40x11-common_user-xsession. A diff -u1 is attached below. Also note the
additional grep in user-xsession - it allows for a .Xsession file with
everything in it commented out to be skipped instead of bringing up
a blank X server.

Cheers

==BEGIN PATCH=
--- /x86-32/etc/X11/Xsession.d/40x11-common_user-xsession   1970-01-01 
01:00:00.0 +0100
+++ /etc/X11/Xsession.d/40x11-common_user-xsession  2006-11-11 
20:33:39.809132325 +0100
@@ -0,0 +1,20 @@
+# This file is sourced by Xsession(5), not executed.
+
+# If no X session startup program was passed to the Xsession script as an
+# argument (e.g., by the display manager), or if that program was not
+# executable, fall back to looking for a user's custom X session script, if
+# allowed by the options file.
+if [ -z $STARTUP ]; then
+  if grep -qs ^allow-user-xsession $OPTIONFILE; then
+for STARTUPFILE in $USERXSESSION $ALTUSERXSESSION; do
+  if [ -r $STARTUPFILE ]  grep -qsv ^[[:space:]]*$\|^# 
$STARTUPFILE; then
+if [ -x $STARTUPFILE ]; then
+  STARTUP=$STARTUPFILE
+else
+  STARTUP=sh $STARTUPFILE
+fi
+break
+  fi
+done
+  fi
+fi
--- /x86-32/etc/X11/Xsession.d/50x11-common_determine-startup   2006-08-03 
00:47:53.0 +0200
+++ /etc/X11/Xsession.d/50x11-common_determine-startup  2006-11-11 
20:35:54.477908777 +0100
@@ -1,3 +1 @@
-# $Id: 50x11-common_determine-startup 305 2005-07-03 18:51:43Z dnusinow $
-
 # This file is sourced by Xsession(5), not executed.
@@ -6,21 +4,5 @@
 # argument (e.g., by the display manager), or if that program was not
-# executable, fall back to looking for a user's custom X session script, if
-# allowed by the options file.
-if [ -z $STARTUP ]; then
-  if grep -qs ^allow-user-xsession $OPTIONFILE; then
-for STARTUPFILE in $USERXSESSION $ALTUSERXSESSION; do
-  if [ -e $STARTUPFILE ]; then
-if [ -x $STARTUPFILE ]; then
-  STARTUP=$STARTUPFILE
-else
-  STARTUP=sh $STARTUPFILE
-fi
-break
-  fi
-done
-  fi
-fi
-
-# If there is still nothing to use for a startup program, try the system
-# default session manager, window manager, and terminal emulator.
+# executable, and a user defined custom X session script is not available
+# (or is disabled in the configuration), try the system default session
+# manager, window manager, and terminal emulator.
 if [ -z $STARTUP ]; then
@@ -44,3 +26 @@
 fi
-
-# vim:set ai et sts=2 sw=2 tw=80:
==END PATCH==

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

Versions of packages x11-common depends on:
ii  debconf [debconf-2.0] 1.5.8  Debian configuration management sy
ii  debianutils   2.17.3 Miscellaneous utilities specific t
ii  lsb-base  3.1-19 Linux Standard Base 3.1 init scrip

x11-common recommends no packages.

-- debconf information excluded


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



xcursor-themes 1.0.1-5 MIGRATED to testing

2006-11-11 Thread Debian testing watch
FYI: The status of the xcursor-themes source package
in Debian's testing distribution has changed.

  Previous version: 1.0.1-4
  Current version:  1.0.1-5

-- 
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]



Bug#384105: #384105 /usr/X11R6/bin/X: X server slow

2006-11-11 Thread Paul Szabo
I now observe the same thing in Ubuntu, after upgrading from
 6.06 dapper to 6.10 edgy, e.g. with

  p=`ps -fC Xorg`
  time perl -e '$|=1; foreach $x (1..500) { print x foreach(1..$x); print  
$x\n }'
  echo $p; ps -fC Xorg

Funny...

Cheers,

Paul Szabo   [EMAIL PROTECTED]   http://www.maths.usyd.edu.au/u/psz/
School of Mathematics and Statistics   University of SydneyAustralia


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