X Strike Force X.Org X11 SVN commit: r3204 - in trunk/lib/libxfont: . src src/FreeType src/Speedo src/Type1 src/bitmap src/builtins src/fc src/fontcache src/fontfile src/stubs src/util

2006-09-13 Thread X Strike Force SVN Repository Admin
Author: dparsons
Date: 2006-09-13 03:40:37 -0400 (Wed, 13 Sep 2006)
New Revision: 3204

Modified:
   trunk/lib/libxfont/ChangeLog
   trunk/lib/libxfont/Makefile.am
   trunk/lib/libxfont/Makefile.in
   trunk/lib/libxfont/aclocal.m4
   trunk/lib/libxfont/configure
   trunk/lib/libxfont/configure.ac
   trunk/lib/libxfont/ltmain.sh
   trunk/lib/libxfont/src/FreeType/Makefile.in
   trunk/lib/libxfont/src/FreeType/fttools.c
   trunk/lib/libxfont/src/Makefile.in
   trunk/lib/libxfont/src/Speedo/Makefile.in
   trunk/lib/libxfont/src/Type1/Makefile.in
   trunk/lib/libxfont/src/Type1/afm.c
   trunk/lib/libxfont/src/Type1/scanfont.c
   trunk/lib/libxfont/src/Type1/util.c
   trunk/lib/libxfont/src/bitmap/Makefile.in
   trunk/lib/libxfont/src/bitmap/pcfread.c
   trunk/lib/libxfont/src/builtins/Makefile.in
   trunk/lib/libxfont/src/builtins/file.c
   trunk/lib/libxfont/src/builtins/fonts.c
   trunk/lib/libxfont/src/fc/Makefile.in
   trunk/lib/libxfont/src/fontcache/Makefile.in
   trunk/lib/libxfont/src/fontfile/Makefile.in
   trunk/lib/libxfont/src/fontfile/fontfile.c
   trunk/lib/libxfont/src/stubs/Makefile.in
   trunk/lib/libxfont/src/util/Makefile.in
Log:
New upstream version libXfont 1.2.2.
Closes security issues CVE-ID 2006-3739, 2006-3740.


Including diff would make mail exceed size limit of 10 bytes.
Use svn diff -r 3203:3204 http://necrotic.deadbeast.net/svn/xorg-x11/;
to view diff.


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



X Strike Force X.Org X11 SVN commit: r3205 - in trunk/lib/libxfont/debian: . patches

2006-09-13 Thread X Strike Force SVN Repository Admin
Author: dparsons
Date: 2006-09-13 03:52:44 -0400 (Wed, 13 Sep 2006)
New Revision: 3205

Removed:
   trunk/lib/libxfont/debian/patches/10_freetype_buffer_overflow.patch
   trunk/lib/libxfont/debian/patches/10_pcf_font.patch
Modified:
   trunk/lib/libxfont/debian/changelog
   trunk/lib/libxfont/debian/patches/series
Log:
  * New upstream version.
  - closes security bug in CID encoded fonts (iDefense CVE-ID
2006-3739, 2006-3740)
  - applies patches 10_freetype_buffer_overflow.patch, 10_pcf_font.patch



Modified: trunk/lib/libxfont/debian/changelog
===
--- trunk/lib/libxfont/debian/changelog 2006-09-13 07:40:37 UTC (rev 3204)
+++ trunk/lib/libxfont/debian/changelog 2006-09-13 07:52:44 UTC (rev 3205)
@@ -1,9 +1,12 @@
-libxfont (1:1.2.0-3) unstable; urgency=low
+libxfont (1:1.2.2-1) unstable; urgency=high
 
-  [ Drew Parsons ]
+  * New upstream version.
+- closes security bug in CID encoded fonts (iDefense CVE-ID
+  2006-3739, 2006-3740)
+- applies patches 10_freetype_buffer_overflow.patch, 10_pcf_font.patch
   * dbg package has priority extra.
 
- -- David Nusinow [EMAIL PROTECTED]  Wed, 30 Aug 2006 18:54:09 -0400
+ -- Drew Parsons [EMAIL PROTECTED]  Wed, 13 Sep 2006 17:50:06 +1000
 
 libxfont (1:1.2.0-2) unstable; urgency=high
 

Deleted: trunk/lib/libxfont/debian/patches/10_freetype_buffer_overflow.patch
===
--- trunk/lib/libxfont/debian/patches/10_freetype_buffer_overflow.patch 
2006-09-13 07:40:37 UTC (rev 3204)
+++ trunk/lib/libxfont/debian/patches/10_freetype_buffer_overflow.patch 
2006-09-13 07:52:44 UTC (rev 3205)
@@ -1,32 +0,0 @@
-From: Matthieu Herrb [EMAIL PROTECTED]
-Date: Thu, 13 Jul 2006 14:18:38 + (-0400)
-Subject: Bug #7397: Fix a buffer overflow in Freetype font support.
-X-Git-Url: 
http://gitweb.freedesktop.org/?p=xorg/lib/libXfont.git;a=commitdiff;h=1bf657186d19887a0916340b544b5534e29da081
-
-Bug #7397: Fix a buffer overflow in Freetype font support.

-
 a/src/FreeType/fttools.c
-+++ b/src/FreeType/fttools.c
-@@ -77,7 +77,7 @@ FTu2a(int slen, FT_Byte *from, char *to,
- 
- n = 0;
- for (i = 0; i  slen; i += 2) {
--if(n = max)
-+if(n = max - 1)
- break;
- if(HIBYTE(from+i, byte)!=0)
- *to++='?';
-@@ -143,9 +143,10 @@ FTGetEnglishName(FT_Face face, int nid, 
- /* Pretend that Apple Roman is ISO 8859-1. */
- if(FTGetName(face, nid, TT_PLATFORM_MACINTOSH, TT_MAC_ID_ROMAN, name)) {
- len = name.string_len;
--if(len  name_len)
--len = name_len;
-+if(len  name_len  - 1)
-+len = name_len - 1;
- memcpy(name_return, name.string, len);
-+name_return[len] = '\0'; /* ensure nul terminaison */
- return len;
- }
- 

Deleted: trunk/lib/libxfont/debian/patches/10_pcf_font.patch
===
--- trunk/lib/libxfont/debian/patches/10_pcf_font.patch 2006-09-13 07:40:37 UTC 
(rev 3204)
+++ trunk/lib/libxfont/debian/patches/10_pcf_font.patch 2006-09-13 07:52:44 UTC 
(rev 3205)
@@ -1,109 +0,0 @@
-From: Matthieu Herrb [EMAIL PROTECTED]
-Date: Sun, 23 Jul 2006 20:42:43 + (+0200)
-Subject: More check on PCF file reading. Bugzilla #7535
-X-Git-Url: 
http://gitweb.freedesktop.org/?p=xorg/lib/libXfont.git;a=commitdiff;h=8d171fe61e564d8ed8f75034d4191062cecf190b
-
-More check on PCF file reading. Bugzilla #7535

-
 a/src/bitmap/pcfread.c
-+++ b/src/bitmap/pcfread.c
-@@ -45,6 +45,7 @@ from The Open Group.
- #endif
- 
- #include stdarg.h
-+#include stdint.h
- 
- void
- pcfError(const char* message, ...)
-@@ -133,6 +134,10 @@ pcfReadTOC(FontFilePtr file, int *countp
-   return (PCFTablePtr) NULL;
- count = pcfGetLSB32(file);
- if (IS_EOF(file)) return (PCFTablePtr) NULL;
-+if (count  0 || count  INT32_MAX / sizeof(PCFTableRec)) {
-+  pcfError(pcfReadTOC(): invalid file format\n);
-+  return NULL;
-+}
- tables = (PCFTablePtr) xalloc(count * sizeof(PCFTableRec));
- if (!tables) {
-   pcfError(pcfReadTOC(): Couldn't allocate tables (%d*%d)\n, count, 
sizeof(PCFTableRec));
-@@ -252,6 +257,10 @@ pcfGetProperties(FontInfoPtr pFontInfo, 
- if (!PCF_FORMAT_MATCH(format, PCF_DEFAULT_FORMAT))
-   goto Bail;
- nprops = pcfGetINT32(file, format);
-+if (nprops = 0 || nprops  INT32_MAX / sizeof(FontPropRec)) {
-+  pcfError(pcfGetProperties(): invalid nprops value (%d)\n, nprops);
-+  goto Bail;
-+}
- if (IS_EOF(file)) goto Bail;
- props = (FontPropPtr) xalloc(nprops * sizeof(FontPropRec));
- if (!props) {
-@@ -267,6 +276,13 @@ pcfGetProperties(FontInfoPtr pFontInfo, 
-   props[i].name = pcfGetINT32(file, format);
-   isStringProp[i] = pcfGetINT8(file, format);
-   props[i].value = pcfGetINT32(file, format);
-+  if (props[i].name  0 
-+  || (isStringProp[i] != 0  

Processing of libxfont_1.2.2-1_i386.changes

2006-09-13 Thread Archive Administrator
libxfont_1.2.2-1_i386.changes uploaded successfully to localhost
along with the files:
  libxfont_1.2.2-1.dsc
  libxfont_1.2.2.orig.tar.gz
  libxfont_1.2.2-1.diff.gz
  libxfont1_1.2.2-1_i386.deb
  libxfont1-dbg_1.2.2-1_i386.deb
  libxfont-dev_1.2.2-1_i386.deb

Greetings,

Your Debian queue daemon


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



libxfont_1.2.2-1_i386.changes ACCEPTED

2006-09-13 Thread Debian Installer

Accepted:
libxfont-dev_1.2.2-1_i386.deb
  to pool/main/libx/libxfont/libxfont-dev_1.2.2-1_i386.deb
libxfont1-dbg_1.2.2-1_i386.deb
  to pool/main/libx/libxfont/libxfont1-dbg_1.2.2-1_i386.deb
libxfont1_1.2.2-1_i386.deb
  to pool/main/libx/libxfont/libxfont1_1.2.2-1_i386.deb
libxfont_1.2.2-1.diff.gz
  to pool/main/libx/libxfont/libxfont_1.2.2-1.diff.gz
libxfont_1.2.2-1.dsc
  to pool/main/libx/libxfont/libxfont_1.2.2-1.dsc
libxfont_1.2.2.orig.tar.gz
  to pool/main/libx/libxfont/libxfont_1.2.2.orig.tar.gz


Override entries for your package:
libxfont-dev_1.2.2-1_i386.deb - optional x11
libxfont1-dbg_1.2.2-1_i386.deb - extra x11
libxfont1_1.2.2-1_i386.deb - optional x11
libxfont_1.2.2-1.dsc - source x11

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


Thank you for your contribution to Debian.


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



X Strike Force X.Org X11 SVN commit: r3206 - tags/lib/libxfont

2006-09-13 Thread X Strike Force SVN Repository Admin
Author: dparsons
Date: 2006-09-13 04:28:05 -0400 (Wed, 13 Sep 2006)
New Revision: 3206

Added:
   tags/lib/libxfont/1:1.2.2-1/
Log:
Tagging libxfont (1:1.2.2-1) in unstable.


Copied: tags/lib/libxfont/1:1.2.2-1 (from rev 3205, trunk/lib/libxfont)


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



Processed: severity of 377731 is important

2006-09-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.9.21
 severity 377731 important
Bug#377731: xserver-xorg-video-ati: dual head mergedfb without dri causes 
system freeze
Severity set to `important' from `critical'


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#364965: Don't load type1 backend by default

2006-09-13 Thread Julien Cristau
On Thu, Apr 27, 2006 at 00:49:16 +0200, Juliusz Chroboczek wrote:

 I would like to argue that the type1 backend should not be loaded by
 default.

To do this, it seems to be sufficient to remove type1 from the
DEFAULT_MODULES variable in xserver-xorg.config.in, and maybe from the
Default line of the xserver-xorg/config/modules debconf template.

Cheers,
Julien


signature.asc
Description: Digital signature


X Strike Force X.Org X11 SVN commit: r3207 - branches/7.1/driver/xserver-xorg-input-keyboard/debian

2006-09-13 Thread X Strike Force SVN Repository Admin
Author: dparsons
Date: 2006-09-13 05:40:25 -0400 (Wed, 13 Sep 2006)
New Revision: 3207

Modified:
   branches/7.1/driver/xserver-xorg-input-keyboard/debian/changelog
Log:
Build-Depends: xserver-xorg-dev (= 2:1.1.1-4) closes #387146.


Modified: branches/7.1/driver/xserver-xorg-input-keyboard/debian/changelog
===
--- branches/7.1/driver/xserver-xorg-input-keyboard/debian/changelog
2006-09-13 08:28:05 UTC (rev 3206)
+++ branches/7.1/driver/xserver-xorg-input-keyboard/debian/changelog
2006-09-13 09:40:25 UTC (rev 3207)
@@ -1,8 +1,8 @@
 xserver-xorg-input-keyboard (1:1.1.0-2) UNRELEASED; urgency=low
 
-  * Build-Depends: xserver-xorg-dev (= 2:1.1.1-4).
+  * Build-Depends: xserver-xorg-dev (= 2:1.1.1-4). Closes: #387146.
 
- -- Drew Parsons [EMAIL PROTECTED]  Fri, 25 Aug 2006 01:16:07 +1000
+ -- Drew Parsons [EMAIL PROTECTED]  Wed, 13 Sep 2006 19:38:48 +1000
 
 xserver-xorg-input-keyboard (1:1.1.0-1) experimental; urgency=low
 


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



X Strike Force X.Org X11 SVN commit: r3208 - branches/7.1/driver/xserver-xorg-input-mouse/debian

2006-09-13 Thread X Strike Force SVN Repository Admin
Author: dparsons
Date: 2006-09-13 05:47:04 -0400 (Wed, 13 Sep 2006)
New Revision: 3208

Modified:
   branches/7.1/driver/xserver-xorg-input-mouse/debian/changelog
   branches/7.1/driver/xserver-xorg-input-mouse/debian/control
Log:
 * xserver-xorg dependencies should be 2:1.1 not 1:1.1. Closes: #385028.


Modified: branches/7.1/driver/xserver-xorg-input-mouse/debian/changelog
===
--- branches/7.1/driver/xserver-xorg-input-mouse/debian/changelog   
2006-09-13 09:40:25 UTC (rev 3207)
+++ branches/7.1/driver/xserver-xorg-input-mouse/debian/changelog   
2006-09-13 09:47:04 UTC (rev 3208)
@@ -1,3 +1,9 @@
+xserver-xorg-input-mouse (1:1.1.1-3) UNRELEASED; urgency=low
+
+  * xserver-xorg dependencies should be 2:1.1 not 1:1.1. Closes: #385028.
+
+ -- Drew Parsons [EMAIL PROTECTED]  Wed, 13 Sep 2006 19:45:06 +1000
+
 xserver-xorg-input-mouse (1:1.1.1-2) experimental; urgency=low
 
   * Updated dependencies to xserver-xorg (= 1:1.1.1-1). Closes: #382979.

Modified: branches/7.1/driver/xserver-xorg-input-mouse/debian/control
===
--- branches/7.1/driver/xserver-xorg-input-mouse/debian/control 2006-09-13 
09:40:25 UTC (rev 3207)
+++ branches/7.1/driver/xserver-xorg-input-mouse/debian/control 2006-09-13 
09:47:04 UTC (rev 3208)
@@ -3,12 +3,12 @@
 Priority: optional
 Maintainer: Debian X Strike Force debian-x@lists.debian.org
 Uploaders: David Nusinow [EMAIL PROTECTED], Branden Robinson [EMAIL 
PROTECTED], Fabio M. Di Nitto [EMAIL PROTECTED], Drew Parsons [EMAIL 
PROTECTED]
-Build-Depends: debhelper (= 5), pkg-config, xserver-xorg-dev (= 1:1.1.1-1), 
x11proto-input-dev, x11proto-core-dev, x11proto-randr-dev, quilt
+Build-Depends: debhelper (= 5), pkg-config, xserver-xorg-dev (= 2:1.1.1-1), 
x11proto-input-dev, x11proto-core-dev, x11proto-randr-dev, quilt
 Standards-Version: 3.7.2
 
 Package: xserver-xorg-input-mouse
 Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, xserver-xorg-core (= 1:1.1.1-1)
+Depends: ${shlibs:Depends}, ${misc:Depends}, xserver-xorg-core (= 2:1.1.1-1)
 Provides: xserver-xorg-input
 Replaces: xserver-xorg ( 6.8.2-35)
 Description: X.Org X server -- mouse input driver


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



Bug#372509: xserver-xorg-input-kbd: Keyboard does not work properly for second X server

2006-09-13 Thread Drew Parsons
 When launching a second X server (e.g. using startx -- :1), for the
 second X Server the keyboard behaves badly. Pressing arbitary keys
 results in the resolution to be switched around (like what usually
 happens with Ctrl + Alt + +/-). No characters are printed.

Hi Ben, the keyboard on a second xserver works for me [tm]. I'm using
the X11R7.1 xserver and keyboard driver. They're currently in
experimental so you could try them from there if you like, otherwise
they'll be uploaded to unstable and to testing (etch) soon.  If they
don't fix your second keyboard then we'll have to dig deeper.

Drew


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



Bug#387281: xserver-xorg 1:7.0.22 display termination

2006-09-13 Thread Paul O'Grady

Package: xserver-xorg
Versions:1:7.0.22

Linux Raynard 2.6.16-2-686-smp #1 SMP Fri Aug 18 19:25:21 UTC 2006 i686
GNU/Linux

Hi,
My Xorg setup is broken after an upgrade. Everything is ok except when I
try to run matlab with its java virtual machine (it will run without the
GUI), at the point where the window usually pops up a xserver reset
occurs, which closes the session and brings me back to the login screen.
Everything worked fine before the upgrade.

My upgrade had problems removing nvidia-glx
so I manually removed the files that where causing the upgrade problem
/usr/X11R6/lib/modules/extensions/libGLcore.a
/usr/X11R6/lib/nvidia/libGLcore.a.xlibmesa


I get the following from
/var/log/syslog
Sep 13 10:21:55 Raynard kdm[5246]: X server for display :0 terminated
unexpectedly
Sep 13 10:21:55 Raynard kdm[5246]: Display :0 cannot be opened
Sep 13 10:21:55 Raynard kdm[5246]: Unable to fire up local display :0;
disabling.


Is there a fix for this problem?


Thank you for your time and effort,

Paul.



my Xorg.0.log and xorig.conf file are 


**
X Window System Version 7.0.0
Release Date: 21 December 2005
X Protocol Version 11, Revision 0, Release 7.0
Build Operating System:Linux 2.6.12-1-686 i686
Current Operating System: Linux Raynard 2.6.16-2-686-smp #1 SMP Fri Aug
18 19:25:21 UTC 2006 i686
Build Date: 16 March 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: Wed Sep 13 11:12:30 2006
(==) Using config file: /etc/X11/xorg.conf
(==) ServerLayout Default Layout
(**) |--Screen Default Screen (0)
(**) |   |--Monitor Generic Monitor
(**) |   |--Device Generic Video Card
(**) |--Input Device Generic Keyboard
(**) |--Input Device Configured Mouse
(**) |--Input Device Synaptics Touchpad
(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/X11R6/lib/X11/fonts/misc,/usr/X11R6/lib/X11/fonts/cyrillic,/usr/share/fonts/X11/100dpi/:unscaled,/usr/X11R6/lib/X11/fonts/100dpi/:unscaled,/usr/share/fonts/X11/75dpi/:unscaled,/usr/X11R6/lib/X11/fonts/75dpi/:unscaled,/usr/share/fonts/X11/Type1,/usr/X11R6/lib/X11/fonts/Type1,/usr/share/fonts/X11/100dpi,/usr/X11R6/lib/X11/fonts/100dpi,/usr/share/fonts/X11/75dpi,/usr/X11R6/lib/X11/fonts/75dpi,/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType,/usr/share/fonts/X11/misc/,/usr/share/fonts/X11/TTF/,/usr/share/fonts/X11/OTF,/usr/share/fonts/X11/Type1/,/usr/share/fonts/X11/CID/,/usr/share/fonts/X11/100dpi/,/usr/share/fonts/X11/75dpi/
(==) RgbPath set to /usr/share/X11/rgb
(==) ModulePath set to /usr/lib/xorg/modules
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.2
X.Org Video Driver: 0.8
X.Org XInput driver : 0.5
X.Org Server Extension : 0.2
X.Org Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: bitmap
(II) Loading /usr/lib/xorg/modules/fonts/libbitmap.so
(II) Module bitmap: vendor=X.Org Foundation
compiled for 7.0.0, module version = 1.0.0
Module class: X.Org Font Renderer
ABI class: X.Org Font Renderer, version 0.4
(II) Loading font Bitmap
(II) LoadModule: pcidata
(II) Loading /usr/lib/xorg/modules/libpcidata.so
(II) Module pcidata: vendor=X.Org Foundation
compiled for 7.0.0, module version = 1.0.0
ABI class: X.Org Video Driver, version 0.8
(++) using VT number 7

(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 8086,3580 card 1028,015f rev 02 class 06,00,00
hdr 80
(II) PCI: 00:00:1: chip 8086,3584 card 1028,015f rev 02 class 08,80,00
hdr 00
(II) PCI: 00:00:3: chip 8086,3585 card 1028,015f rev 02 class 08,80,00
hdr 80
(II) PCI: 00:01:0: chip 8086,3581 card , rev 02 class 06,04,00
hdr 01
(II) PCI: 00:1d:0: chip 8086,24c2 card 1028,015f rev 01 class 0c,03,00
hdr 80
(II) PCI: 00:1d:1: chip 8086,24c4 card 1028,015f rev 01 class 0c,03,00
hdr 00
(II) PCI: 00:1d:2: chip 8086,24c7 card 1028,015f rev 01 class 0c,03,00
hdr 00
(II) PCI: 00:1d:7: chip 8086,24cd card 1028,015f rev 01 class 0c,03,20
hdr 00
(II) PCI: 00:1e:0: chip 8086,2448 card , rev 81 class 06,04,00
hdr 01
(II) PCI: 00:1f:0: chip 8086,24cc card , rev 01 class 06,01,00
hdr 80
(II) PCI: 00:1f:1: chip 8086,24ca card 1028,015f rev 01 class 01,01,8a
hdr 00
(II) PCI: 00:1f:5: chip 8086,24c5 card 1028,015f rev 01 class 04,01,00
hdr 00
(II) PCI: 00:1f:6: chip 8086,24c6 card 14e4,4d64 rev 01 class 07,03,00
hdr 00
(II) PCI: 01:00:0: chip 10de,0324 card 1028,015f rev a1 class 03,00,00
hdr 00
(II) PCI: 02:01:0: chip 14e4,4401 card 1028,015f rev 01 class 02,00,00
hdr 00
(II) PCI: 

Bug#321434: Bug still present in xbase-clients 7.1.ds-3 of etch

2006-09-13 Thread Gernot Salzer
The error described by M.Dietrich in August 2005 is still
present in September 2006 in etch (testing).

Please raise the severity of the error as suggested by
H.Robak in Nov 2005, for exactly the reason he gave.
Using xedit is risky at the moment.

Thanks, Gernot



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



Bug#387320: xkb-data: [Finnish symbols] macron to dead_macron

2006-09-13 Thread Martin-Éric Racine
Package: xkb-data
Version: 0.8-7
Severity: normal

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

The symbols for Finnish currently include a macron as AltGr+Shift+minus. 
This key is useless for the intended purpose, which is to enable writing 
accented vowels used in Baltic languages. Fixing it requires making it a 
deadkey, which is what the enclosed patch does.

NOTE: this issue also exists in 0.8-7ubuntu2 (Edgy) where a similar but 
not identical file is at /etc/X11/xkb/symbols/fi (in Etch 0.8-7 it's at 
/usr/share/X11/xkb/symbols/fi instead). The enclosed patch is against 
the 0.8-7 version in Etch.

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

iD8DBQFFCDCmeXr56x4Muc0RAlufAJ0W1KMMJBAFta7PhSWvdJk0YuFuDQCdEzmh
FU10ADCMB3yZ59TihzDAYSU=
=7Pyl
-END PGP SIGNATURE-
--- /usr/share/X11/xkb/symbols/fi   2006-08-14 17:37:36.0 +0300
+++ /tmp/fi 2006-09-13 19:11:29.778808648 +0300
@@ -40,7 +40,7 @@
 key AB05 { [   b,  B, ssharp,NoSymbol
] };
 key AB06 { [   n,  N, ntilde, Ntilde 
] };
 key AB07 { [   m,  M, mu,   NoSymbol 
] };
-key AB10 { [   minus, underscore, hyphen,  macron
] };
+key AB10 { [   minus, underscore, hyphen, dead_macron
] };
 key AC02 { [   s,  S, scaron,  Scaron
] };
 key AC03 { [   d,  D,eth, ETH
] };
 key AD03 { [   e,  E,   EuroSign,cent
] };


X Strike Force X.Org X11 SVN commit: r3209 - in trunk/lib/libx11/debian: . patches

2006-09-13 Thread X Strike Force SVN Repository Admin
Author: barbier
Date: 2006-09-13 17:06:44 -0400 (Wed, 13 Sep 2006)
New Revision: 3209

Added:
   trunk/lib/libx11/debian/patches/015_russian_locale_alias.diff
Modified:
   trunk/lib/libx11/debian/changelog
   trunk/lib/libx11/debian/patches/series
Log:
Add 015_russian_locale_alias.diff.  Locale alias for russian was incorrect,
it should be ru_RU.KOI8-R as in glibc locale.alias.  Thanks Andrei Lahun.
(closes: #368655)


Modified: trunk/lib/libx11/debian/changelog
===
--- trunk/lib/libx11/debian/changelog   2006-09-13 09:47:04 UTC (rev 3208)
+++ trunk/lib/libx11/debian/changelog   2006-09-13 21:06:44 UTC (rev 3209)
@@ -1,3 +1,12 @@
+libx11 (2:1.0.0-9) UNRELEASED; urgency=low
+
+  [ Denis Barbier ]
+  * Add 015_russian_locale_alias.diff.  Locale alias for russian was incorrect,
+it should be ru_RU.KOI8-R as in glibc locale.alias.  Thanks Andrei Lahun.
+(closes: #368655)
+
+ -- Denis Barbier [EMAIL PROTECTED]  Wed, 13 Sep 2006 23:01:36 +0200
+
 libx11 (2:1.0.0-8) unstable; urgency=low
 
   [ Denis Barbier ]

Added: trunk/lib/libx11/debian/patches/015_russian_locale_alias.diff
===
--- trunk/lib/libx11/debian/patches/015_russian_locale_alias.diff   
(rev 0)
+++ trunk/lib/libx11/debian/patches/015_russian_locale_alias.diff   
2006-09-13 21:06:44 UTC (rev 3209)
@@ -0,0 +1,15 @@
+Fix russian locale.  Closes: #368655
+
+Index: libx11/nls/locale.alias.pre
+===
+--- libx11.orig/nls/locale.alias.pre
 libx11/nls/locale.alias.pre
+@@ -1162,7 +1162,7 @@
+ portuguese.iso88591:  pt_PT.ISO8859-1
+ romanian: ro_RO.ISO8859-2
+ rumanian: ro_RO.ISO8859-2
+-russian:  ru_RU.ISO8859-5
++russian:  ru_RU.KOI8-R
+ serbocroatian:sh_YU.ISO8859-2
+ sinhala:  si_LK.UTF-8
+ slovak:   sk_SK.ISO8859-2

Modified: trunk/lib/libx11/debian/patches/series
===
--- trunk/lib/libx11/debian/patches/series  2006-09-13 09:47:04 UTC (rev 
3208)
+++ trunk/lib/libx11/debian/patches/series  2006-09-13 21:06:44 UTC (rev 
3209)
@@ -12,3 +12,4 @@
 012_ru_RU_UTF-8_XLC_LOCALE.diff
 013_SECURITY_setuid.diff
 014_add_Khmer_digraphs.diff
+015_russian_locale_alias.diff


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



libdmx 1:1.0.2-2 MIGRATED to testing

2006-09-13 Thread Debian testing watch
FYI: The status of the libdmx source package
in Debian's testing distribution has changed.

  Previous version: 1:1.0.1-3
  Current version:  1:1.0.2-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]



libfontenc 1:1.0.2-2 MIGRATED to testing

2006-09-13 Thread Debian testing watch
FYI: The status of the libfontenc source package
in Debian's testing distribution has changed.

  Previous version: 1:1.0.1-6
  Current version:  1:1.0.2-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]



libsm 1:1.0.1-2 MIGRATED to testing

2006-09-13 Thread Debian testing watch
FYI: The status of the libsm source package
in Debian's testing distribution has changed.

  Previous version: 1:1.0.0-4
  Current version:  1:1.0.1-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]



libxcursor 1.1.7-4 MIGRATED to testing

2006-09-13 Thread Debian testing watch
FYI: The status of the libxcursor source package
in Debian's testing distribution has changed.

  Previous version: 1.1.5.2-5
  Current version:  1.1.7-4

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



libxdmcp 1:1.0.1-2 MIGRATED to testing

2006-09-13 Thread Debian testing watch
FYI: The status of the libxdmcp source package
in Debian's testing distribution has changed.

  Previous version: 1:1.0.0-4
  Current version:  1:1.0.1-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]



libxt 1:1.0.2-2 MIGRATED to testing

2006-09-13 Thread Debian testing watch
FYI: The status of the libxt source package
in Debian's testing distribution has changed.

  Previous version: 1:1.0.0-5
  Current version:  1:1.0.2-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]



libxpm 1:3.5.5-2 MIGRATED to testing

2006-09-13 Thread Debian testing watch
FYI: The status of the libxpm source package
in Debian's testing distribution has changed.

  Previous version: 1:3.5.4.2-3
  Current version:  1:3.5.5-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]



libxrender 1:0.9.1-3 MIGRATED to testing

2006-09-13 Thread Debian testing watch
FYI: The status of the libxrender source package
in Debian's testing distribution has changed.

  Previous version: 1:0.9.0.2-4
  Current version:  1:0.9.1-3

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



x11proto-print 1.0.3.xsf1-1 MIGRATED to testing

2006-09-13 Thread Debian testing watch
FYI: The status of the x11proto-print source package
in Debian's testing distribution has changed.

  Previous version: 1.0.3-1
  Current version:  1.0.3.xsf1-1

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



libxmu 1:1.0.2-2 MIGRATED to testing

2006-09-13 Thread Debian testing watch
FYI: The status of the libxmu source package
in Debian's testing distribution has changed.

  Previous version: 1:1.0.1-3
  Current version:  1:1.0.2-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]



Bug#11147: public

2006-09-13 Thread Shane Rankin
talcum


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



Processed: [EMAIL PROTECTED]: Log for successful build of xorg-server_2:1.0.2-10 (dist=unstable)]

2006-09-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 found 363218 2:1.0.2-10
Bug#363218: xorg-server: implicit pointer conversion
Bug marked as found in version 2:1.0.2-10.

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



re: last chance to do something about discover1 etc: I give up

2006-09-13 Thread David Nusinow
Hi Joey,

   First, sorry about the delays in replying. I still
don't have internet access in my new place so I have
to sneak time at work when I'm able. I also have to
use a crappy webmail account rather than a real mail
client for now unfortunately.

I didn't realize that this was a pressing issue.
 Since it worked for sarge, I figured that the
kludge
 could remain until we can get a proper solution
in place.

 There have been large changes to the installer since

 sarge that broke the old solution.

Ok, that's fine. Just cut us a little slack please. I
realize you're frustrated, but the XSF didn't break
that functionality.

 All it takes is a refactoring of X's code, moving
the 
 hardware detection and setup code from the config 
 script to the postinst.

 For example, a brutal and yet valid way to do it is 
 to change the postinst:

 #!/bin/sh
 . /usr/share/debconf/confmodule
 . /usr/share/X/what-was-my-config-script || true
 ...

 his *will* work, because that's what debconf
degrades 
 to doing if preconfiguration doesn't happen: the 
 postinst first runs the config script.

 There are of course cleaner approaches, like 
 integrating the config script into the postinst 
 script, that would be a bit more work, but work
 on the order of hours or days, not years.

Ok, this is vastly more productive than your last
mail.  Will tasksel still be able to ensure that
xresprobe and discover are installed prior to the
scripts being run in this case?

I'll try and make this change and test it locally over
the next few days, and make an upload when I'm more
able to be on top of my Debian work. Since most of my
focus for the weeks after 7.1 lands in unstable will
be on these scripts anyway, I'll probably end up doing
the cleaner solution in the long run. I'll let you
know when the fix is in and you can tell me if it's
sufficient for what you guys need.

 - David Nusinow

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 


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



X Strike Force X.Org X11 SVN commit: r3211 - in trunk/lib/libx11/debian: . patches

2006-09-13 Thread X Strike Force SVN Repository Admin
Author: barbier
Date: 2006-09-13 18:54:51 -0400 (Wed, 13 Sep 2006)
New Revision: 3211

Added:
   trunk/lib/libx11/debian/patches/017_FTBFS_makekeys.diff
Modified:
   trunk/lib/libx11/debian/changelog
   trunk/lib/libx11/debian/patches/series
Log:
Add 017_FTBFS_makekeys.diff.  Fix a FTBFS when compiling with
x11proto-core-dev = 7.0.3, backported from upstream.
Thanks Goswin von Brederlow.  (closes: #387133)


Modified: trunk/lib/libx11/debian/changelog
===
--- trunk/lib/libx11/debian/changelog   2006-09-13 21:20:07 UTC (rev 3210)
+++ trunk/lib/libx11/debian/changelog   2006-09-13 22:54:51 UTC (rev 3211)
@@ -7,6 +7,9 @@
   * Add 016_greek_polytonic_Compose.diff.  Add compose sequences with the
 right breathing signs U0313/U0314 to el_GR.UTF-8/Compose.
 Thanks Jan Willem Stumpel.  (closes: #386471)
+  * Add 017_FTBFS_makekeys.diff.  Fix a FTBFS when compiling with
+x11proto-core-dev = 7.0.3, backported from upstream.
+Thanks Goswin von Brederlow.  (closes: #387133)
 
  -- Denis Barbier [EMAIL PROTECTED]  Wed, 13 Sep 2006 23:01:36 +0200
 

Added: trunk/lib/libx11/debian/patches/017_FTBFS_makekeys.diff
===
--- trunk/lib/libx11/debian/patches/017_FTBFS_makekeys.diff 
(rev 0)
+++ trunk/lib/libx11/debian/patches/017_FTBFS_makekeys.diff 2006-09-13 
22:54:51 UTC (rev 3211)
@@ -0,0 +1,23 @@
+Stolen from HEAD, commit d6fba1f44d404362d3be1b421f57d7ccc3c8cdac
+Closes: #387133
+
+Index: libx11/src/util/makekeys.c
+===
+--- libx11.orig/src/util/makekeys.c
 libx11/src/util/makekeys.c
+@@ -1,5 +1,5 @@
+ /* $Xorg: makekeys.c,v 1.5 2001/02/09 02:03:40 $ */
+-/* $XdotOrg: xc/lib/X11/util/makekeys.c,v 1.4 2004/09/26 20:46:17 kuhn Exp $ 
*/
++/* $XdotOrg: lib/X11/src/util/makekeys.c,v 1.5 2005-07-03 07:00:56 daniels 
Exp $ */
+ /*
+ 
+ Copyright 1990, 1998  The Open Group
+@@ -49,7 +49,7 @@
+ KeySymval;
+ } info[KTNUM];
+ 
+-#define MIN_REHASH 10
++#define MIN_REHASH 15
+ #define MATCHES 10
+ 
+ char tab[KTNUM];

Modified: trunk/lib/libx11/debian/patches/series
===
--- trunk/lib/libx11/debian/patches/series  2006-09-13 21:20:07 UTC (rev 
3210)
+++ trunk/lib/libx11/debian/patches/series  2006-09-13 22:54:51 UTC (rev 
3211)
@@ -14,3 +14,4 @@
 014_add_Khmer_digraphs.diff
 015_russian_locale_alias.diff
 016_greek_polytonic_Compose.diff
+017_FTBFS_makekeys.diff


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



re: ITA/ITP compiz

2006-09-13 Thread David Nusinow
Hi Shawn,

  would like to take maintainership of compiz seeing 
 the big progress we've made wrt AIGLX and Mesa.

I still haven't looked at these packages. I assume
they're based off of Thierry's packages, but just in
case not:

1) Are the mesa packages based on the Debian mesa
packages? How are they altered from the Debian ones
currently in the archive?

2) I saw the massive list of patches to get AIGLX
running with the 7.1 server. How many of those touch
codepaths that are run even when AIGLX is disabled?
I'm going to disable AIGLX by default, per Michel's
recommendation, and I want to make sure we're not
shipping something that's not ready for a Debian
release.

3) Have you gotten feedback from independant users on
these packages yet? I haven't seen any.

 I am working with the debian mentors to get the 
 requirements delt with. However, I would like to
have 
 the package remain (as mentioned by David) with the 
 Debian X Strike Force team (thus I'd be joing it).

Well, I'm very happy to hear you want to join the
team. How does Thierry feel about this? I offered him
(her? I just realized I don't even know, not that it
matters) maintainership of compiz inside of the XSF
already, the reason being that he was the one who
hunkered down and got over the real hurdle of getting
them working to begin with. You'll have to see how he
feels about working with you on it officially. It's
fine by me if Thierry agrees though, but you'll have
to start doing your work in our repository rather than
totally outside where the rest of us can't see what
you're doing. Currently I'm rather uncomfortable that
the whole thing is going on outside of where I can see
it, and I'm not going to let anyone take the compiz
ITP on until I'm reasonably comfortable with what
they're doing.

Also, who are the debian mentors? What requirements
are you dealing with exactly? I'm going to avoid
asking specific questions about the package until I
can take a look, but I want to enforce a certain
amount of uniformity among the XSF packaging, so if
they're telling you to use cdbs or some such garbage
I'm afraid we have some work to do.

Anyway, I'll try to take a look at the packages in the
next week or so when I can get my Debian machine on
the internet again. I'm excited that you're working so
hard on them and that you sound like you're getting
stuff done. I want to be confident that if you're
going to do this, that you'll be doing it right, and
more importantly that shipping compiz with Etch is
something that we really want to be doing.

 - David Nusinow

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 


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



libx11 override disparity

2006-09-13 Thread Debian Installer
There are disparities between your recently accepted upload and the
override file for the following file(s):

libx11-6-dbg_1.0.0-9_i386.deb: package says section is x11, override says 
libdevel.
libx11-6-dbg_1.0.0-9_i386.deb: package says priority is optional, override says 
extra.
libx11-6_1.0.0-9_i386.deb: package says section is x11, override says libs.
libx11-dev_1.0.0-9_i386.deb: package says section is x11, override says 
libdevel.

Either the package or the override file is incorrect.  If you think
the override is correct and the package wrong please fix the package
so that this disparity is fixed in the next upload.  If you feel the
override is incorrect then please reply to this mail and explain why.

[NB: this is an automatically generated mail; if you replied to one
like it before and have not received a response yet, please ignore
this mail.  Your reply needs to be processed by a human and will be in
due course, but until then the installer will send these automated
mails; sorry.]

--
Debian distribution maintenance software

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


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



Fixed in NMU of libx11 2:1.0.0-9

2006-09-13 Thread Denis Barbier
tag 368655 + fixed
tag 386471 + fixed
tag 387133 + fixed

quit

This message was generated automatically in response to a
non-maintainer upload.  The .changes file follows.

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 14 Sep 2006 01:35:19 +0200
Source: libx11
Binary: libx11-6-dbg libx11-data libx11-6 libx11-dev
Architecture: source i386 all
Version: 2:1.0.0-9
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Denis Barbier [EMAIL PROTECTED]
Description: 
 libx11-6   - X11 client-side library
 libx11-6-dbg - X11 client-side library (debug package)
 libx11-data - X11 client-side library
 libx11-dev - X11 client-side library (development headers)
Closes: 368655 386471 387133
Changes: 
 libx11 (2:1.0.0-9) unstable; urgency=low
 .
   * Add 015_russian_locale_alias.diff.  Locale alias for russian was incorrect,
 it should be ru_RU.KOI8-R as in glibc locale.alias.  Thanks Andrei Lahun.
 (closes: #368655)
   * Add 016_greek_polytonic_Compose.diff.  Add compose sequences with the
 right breathing signs U0313/U0314 to el_GR.UTF-8/Compose.
 Thanks Jan Willem Stumpel.  (closes: #386471)
   * Add 017_FTBFS_makekeys.diff.  Fix a FTBFS when compiling with
 x11proto-core-dev = 7.0.3, backported from upstream.
 Thanks Goswin von Brederlow.  (closes: #387133)
Files: 
 e99beeb180206c6169f282de5a0199de 979 x11 optional libx11_1.0.0-9.dsc
 8478e819400171bbc5087302ec293a90 217580 x11 optional libx11_1.0.0-9.diff.gz
 0e1b13e3ef2cd22f4c57b58eea20fd35 152170 x11 optional 
libx11-data_1.0.0-9_all.deb
 40c842f8b448ab805ac8e80c4e4c9175 576016 x11 optional libx11-6_1.0.0-9_i386.deb
 5f54ce599f94e676f23779db5f1250b6 2508270 x11 optional 
libx11-6-dbg_1.0.0-9_i386.deb
 575608e9a9632b4f312775ec5b443c56 1177112 x11 optional 
libx11-dev_1.0.0-9_i386.deb

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

iD8DBQFFCJga8Ri1lR4WGvsRAtceAKCGoHpxxNhVMQcCnXnRD5CuWWxMNgCeMqYh
j8Df2Wp2qGlkhwjOrVcWrSs=
=s7DE
-END PGP SIGNATURE-


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



libx11_1.0.0-9_i386.changes ACCEPTED

2006-09-13 Thread Debian Installer

Accepted:
libx11-6-dbg_1.0.0-9_i386.deb
  to pool/main/libx/libx11/libx11-6-dbg_1.0.0-9_i386.deb
libx11-6_1.0.0-9_i386.deb
  to pool/main/libx/libx11/libx11-6_1.0.0-9_i386.deb
libx11-data_1.0.0-9_all.deb
  to pool/main/libx/libx11/libx11-data_1.0.0-9_all.deb
libx11-dev_1.0.0-9_i386.deb
  to pool/main/libx/libx11/libx11-dev_1.0.0-9_i386.deb
libx11_1.0.0-9.diff.gz
  to pool/main/libx/libx11/libx11_1.0.0-9.diff.gz
libx11_1.0.0-9.dsc
  to pool/main/libx/libx11/libx11_1.0.0-9.dsc


Override entries for your package:
libx11-6-dbg_1.0.0-9_i386.deb - extra libdevel
libx11-6_1.0.0-9_i386.deb - optional libs
libx11-data_1.0.0-9_all.deb - optional x11
libx11-dev_1.0.0-9_i386.deb - optional libdevel
libx11_1.0.0-9.dsc - source x11

Announcing to debian-devel-changes@lists.debian.org
Setting bugs to severity fixed: 368655 386471 387133 


Thank you for your contribution to Debian.


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



X Strike Force X.Org X11 SVN commit: r3212 - trunk/lib/libx11/debian

2006-09-13 Thread X Strike Force SVN Repository Admin
Author: barbier
Date: 2006-09-13 20:09:15 -0400 (Wed, 13 Sep 2006)
New Revision: 3212

Modified:
   trunk/lib/libx11/debian/changelog
Log:
libx11 2:1.0.0-9 uploaded into unstable


Modified: trunk/lib/libx11/debian/changelog
===
--- trunk/lib/libx11/debian/changelog   2006-09-13 22:54:51 UTC (rev 3211)
+++ trunk/lib/libx11/debian/changelog   2006-09-14 00:09:15 UTC (rev 3212)
@@ -1,6 +1,5 @@
-libx11 (2:1.0.0-9) UNRELEASED; urgency=low
+libx11 (2:1.0.0-9) unstable; urgency=low
 
-  [ Denis Barbier ]
   * Add 015_russian_locale_alias.diff.  Locale alias for russian was incorrect,
 it should be ru_RU.KOI8-R as in glibc locale.alias.  Thanks Andrei Lahun.
 (closes: #368655)
@@ -11,7 +10,7 @@
 x11proto-core-dev = 7.0.3, backported from upstream.
 Thanks Goswin von Brederlow.  (closes: #387133)
 
- -- Denis Barbier [EMAIL PROTECTED]  Wed, 13 Sep 2006 23:01:36 +0200
+ -- Denis Barbier [EMAIL PROTECTED]  Thu, 14 Sep 2006 01:35:19 +0200
 
 libx11 (2:1.0.0-8) unstable; urgency=low
 


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



X Strike Force X.Org X11 SVN commit: r3213 - tags/lib/libx11

2006-09-13 Thread X Strike Force SVN Repository Admin
Author: barbier
Date: 2006-09-13 20:10:31 -0400 (Wed, 13 Sep 2006)
New Revision: 3213

Added:
   tags/lib/libx11/2:1.0.0-9/
Log:
Tagging libx11 2:1.0.0-9

Copied: tags/lib/libx11/2:1.0.0-9 (from rev 3212, trunk/lib/libx11)


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



Processing of libx11_1.0.0-9_i386.changes

2006-09-13 Thread Archive Administrator
libx11_1.0.0-9_i386.changes uploaded successfully to localhost
along with the files:
  libx11_1.0.0-9.dsc
  libx11_1.0.0-9.diff.gz
  libx11-data_1.0.0-9_all.deb
  libx11-6_1.0.0-9_i386.deb
  libx11-6-dbg_1.0.0-9_i386.deb
  libx11-dev_1.0.0-9_i386.deb

Greetings,

Your Debian queue daemon


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



Processed: Fixed in NMU of libx11 2:1.0.0-9

2006-09-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tag 368655 + fixed
Bug#368655: libx11-data: incorrect locale alias for russian
Tags were: l10n
Tags added: fixed

 tag 386471 + fixed
Bug#386471: libx11-data: Wrong Compose sequnces for Greek polytonic breathing 
signs
There were no tags set.
Tags added: fixed

 tag 387133 + fixed
Bug#387133: libx11: FTBFS: floating point exception
There were no tags set.
Tags added: fixed

 quit
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#387391: [INTL:fi] New Finnish translation of xserver-xorg_po.po

2006-09-13 Thread Tapio Lehtonen
Package: xorg
Severity: wishlist
Tags: l10n patch

Attached new Finnish translation. 

The lspci -n is already in the finnish translation.

-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.8-3-686-smp
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
# Debian Installer xserver-xorg.
# Translation to Finnish.
# Copyright (C) 2006 Tapio Lehtonen
# This file is distributed under the same license as the xserver-xorg package.
# Tapio Lehtonen [EMAIL PROTECTED], 2006.
#
msgid 
msgstr 
Project-Id-Version: Debian Installer xserver-xorg\n
Report-Msgid-Bugs-To: [EMAIL PROTECTED]
POT-Creation-Date: 2006-08-14 11:05+0200\n
PO-Revision-Date: 2006-09-14 06:24+0300\n
Last-Translator: Tapio Lehtonen [EMAIL PROTECTED]\n
Language-Team: Finnish debian-l10n-finnish@lists.debian.org\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=ISO-8859-15\n
Content-Transfer-Encoding: 8bit\n

#. Type: select
#. Choices
#: ../x11-common.templates:1001
msgid Root Only
msgstr Vain pääkäyttäjä

#. Type: select
#. Choices
#: ../x11-common.templates:1001
msgid Console Users Only
msgstr Vain konsolikäyttäjät

#. Type: select
#. Choices
#: ../x11-common.templates:1001
msgid Anybody
msgstr Kaikki

#. Type: select
#. Description
#: ../x11-common.templates:1002
msgid Users allowed to start the X server:
msgstr Käyttäjät jotka saavat käynnistää X-palvelimen:

#. Type: select
#. Description
#: ../x11-common.templates:1002
msgid 
Because the X server runs with superuser privileges, it may be unwise to 
permit any user to start it, for security reasons.  On the other hand, it is 
even more unwise to run general-purpose X client programs as root, which is 
what may happen if only root is permitted to start the X server.  A good 
compromise is to permit the X server to be started only by users logged in 
to one of the virtual consoles.
msgstr Tietoturvasyistä saattaa olla huono ajatus sallia kenen tahansa 
käynnistää X-palvelin, koska se toimii pääkäyttäjän oikeuksilla. Toisaalta on 
vielä huonompi ajatus suorittaa yleiskäyttöisiä X:n asiakasohjelmia 
pääkäyttäjänä, mikä saattaa olla tilanne jos vain pääkäyttäjä saa käynnistää 
X-palvelimen. Hyvä sovitteluratkaisu on sallia X-palvelimen käynnistys 
ainoastaan käyttäjille jotka ovat kirjautuneet sisään jollekin 
virtuaalikonsolille.

#. Type: string
#. Description
#: ../x11-common.templates:3001
msgid Nice value for the X server:
msgstr X-palvelimen nice-arvo:

#. Type: string
#. Description
#: ../x11-common.templates:3001
msgid 
When using operating system kernels with a particular scheduling strategy, 
it has been widely noted that the X server's performance improves when it is 
run at a higher process priority than the default; a process's priority is 
known as its \nice\ value.  These values range from -20 (extremely high 
priority, or \not nice\ to other processes) to 19 (extremely low 
priority).  The default nice value for ordinary processes is 0, and this is 
also the recommend value for the X server.
msgstr Käytettäessä erilaisia skeduloijia käyttöjärjestelmän ytimessä on 
havaittu X-palvelimen suorituskyvyn paranevan kun sen prioriteetti on suurempi 
kuin prosessien oletusarvo; prosessin prioriteetti ilmaistaan sen 
\nice\-arvolla. Mahdolliset arvot ovat -20:stä (hyvin korkea prioriteetti) 
arvoon 19 (hyvin alhainen prioriteetti). Tavallisten prosessien oletusarvo 
nicelle on 0, ja tämä on myös X-palvelimelle suositeltu arvo.

#. Type: string
#. Description
#: ../x11-common.templates:3001
msgid 
Values outside the range of -10 to 0 are not recommended; too negative, and 
the X server will interfere with important system tasks.  Too positive, and 
the X server will be sluggish and unresponsive.
msgstr Välin -10 - 0 ulkopuolella olevia arvoja ei suositella; liian 
negatiivinen arvo saa X-palvelimen häiritsemään järjestelmän tärkeitä 
prosesseja. Liian suuri positiivinen arvo tekee X-palvelimesta jähmeän ja 
hitaan reagoimaan.

#. Type: note
#. Description
#: ../x11-common.templates:4001
msgid Incorrect nice value
msgstr Nice-arvo ei kelpaa

#. Type: note
#. Description
#: ../x11-common.templates:4001
msgid Please enter an integer between -20 and 19.
msgstr Kirjoita kokonaisluku väliltä -20 - 19.

#. Type: note
#. Description
#: ../x11-common.templates:5001
msgid Major possible upgrade issues
msgstr Mahdollisesti vakavia päivityspulmia

#. Type: note
#. Description
#: ../x11-common.templates:5001
msgid 
Some users have reported that upon upgrade to the current package set, their 
xserver package was no longer installed. Because there is no easy way around 
this problem, you should be sure to check that the xserver-xorg package is 
installed after upgrade. If it is not installed and you require it, it is 
recommended that you install the xorg package to make sure you have a fully 
functional X setup.
msgstr Jotkut käyttäjät ovat ilmoittaneet ettei paketti xserver ole enää 
asennettuna kun on päivitetty tämänhetkiseen pakettijoukkoon. Koska