libxi: Changes to 'refs/tags/libxi-2_1.5.99.2-1'

2011-12-23 Thread Cyril Brulebois
Tag 'libxi-2_1.5.99.2-1' created by Cyril Brulebois k...@debian.org at 
2011-12-23 09:57 +

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

iEYEABECAAYFAk70UJEACgkQeGfVPHR5Nd2VzgCgj/yP/xiNaaogITCebFEUdSvU
xDoAoM+pY06rsTDioit9ob/skCcdEJvE
=iZpo
-END PGP SIGNATURE-

Changes since libxi-2_1.5.0-1:
Cyril Brulebois (6):
  Merge branch 'upstream-experimental' into debian-experimental
  Bump changelogs.
  Bump x11proto-input-dev and libx11-dev build-deps.
  Fix changelog.
  Update libxi6.symbols with new symbols and bump shlibs.
  Upload to experimental.

Peter Hutterer (4):
  Bump to 1.5.99.1
  Implement support for XI 2.2
  Merge branch 'multitouch'
  libXi 1.5.99.2

---
 ChangeLog|   54 +++
 configure.ac |4 -
 debian/changelog |   13 +
 debian/control   |4 -
 debian/libxi6.symbols|3 +
 debian/rules |2 
 include/X11/extensions/XInput2.h |   51 +
 man/XIGrabButton.txt |   60 -
 man/XIQueryDevice.txt|   30 
 src/XExtInt.c|   91 ++-
 src/XIAllowEvents.c  |   46 ++-
 src/XIPassiveGrab.c  |   33 ++
 src/XIint.h  |1 
 13 files changed, 359 insertions(+), 33 deletions(-)
---


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1re1sw-0003xm...@vasks.debian.org



libxi: Changes to 'upstream-experimental'

2011-12-23 Thread Cyril Brulebois
 configure.ac |4 -
 include/X11/extensions/XInput2.h |   51 +
 man/XIGrabButton.txt |   60 -
 man/XIQueryDevice.txt|   30 
 src/XExtInt.c|   91 ++-
 src/XIAllowEvents.c  |   46 ++-
 src/XIPassiveGrab.c  |   33 ++
 src/XIint.h  |1 
 8 files changed, 287 insertions(+), 29 deletions(-)

New commits:
commit ae0187c8708d2378373889827117911086581fdd
Author: Peter Hutterer peter.hutte...@who-t.net
Date:   Thu Dec 22 09:42:43 2011 +1000

libXi 1.5.99.2

Signed-off-by: Peter Hutterer peter.hutte...@who-t.net

diff --git a/configure.ac b/configure.ac
index 0a7bdfa..79ba97e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,7 +1,7 @@
 
 # Initialize Autoconf
 AC_PREREQ([2.60])
-AC_INIT([libXi], [1.5.99.1],
+AC_INIT([libXi], [1.5.99.2],
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [libXi])
 AC_CONFIG_SRCDIR([Makefile.am])
 AC_CONFIG_HEADERS([src/config.h])

commit e73e2fe95dab3e0048b24d16327adbe54326ff3f
Author: Peter Hutterer peter.hutte...@who-t.net
Date:   Wed Sep 14 22:33:57 2011 -0700

Implement support for XI 2.2

Adds support for the new TouchClass for multitouch-capable servers/devices.

New events:
  XITouchOwnershipEvent

New event types handled:
  XITouchBegin, XITouchUpdate, XITouchEnd
  XIRawTouchBegin, XIRawTouchUpdate, XIRawTouchEnd

New functions:
  XIGrabTouchBegin ... passive grabs on touches
  XIUngrabTouchBegin
  XIAllowTouchEvents ... Allow/reject touch event sequences

New XIQueryDevice classes:
  XITouchClassInfo

Requires libX11 1.5 for GetReqSized

Co-authored by: Chase Douglas chase.doug...@canonical.com
Signed-off-by: Peter Hutterer peter.hutte...@who-t.net

diff --git a/configure.ac b/configure.ac
index c6565a8..0a7bdfa 100644
--- a/configure.ac
+++ b/configure.ac
@@ -28,7 +28,7 @@ XORG_WITH_ASCIIDOC(8.4.5)
 XORG_CHECK_MALLOC_ZERO
 
 # Obtain compiler/linker options for depedencies
-PKG_CHECK_MODULES(XI, [xproto = 7.0.13] [x11 = 1.2.99.1] [xextproto = 
7.0.3] [xext = 1.0.99.1] [inputproto = 2.0.99.1])
+PKG_CHECK_MODULES(XI, [xproto = 7.0.13] [x11 = 1.4.99.1] [xextproto = 
7.0.3] [xext = 1.0.99.1] [inputproto = 2.1.99.3])
 
 # Check for xmlto and asciidoc for man page conversion
 # (only needed by people building tarballs)
diff --git a/include/X11/extensions/XInput2.h b/include/X11/extensions/XInput2.h
index 910b25f..26de695 100644
--- a/include/X11/extensions/XInput2.h
+++ b/include/X11/extensions/XInput2.h
@@ -146,6 +146,14 @@ typedef struct
 
 typedef struct
 {
+int type;
+int sourceid;
+int mode;
+int num_touches;
+} XITouchClassInfo;
+
+typedef struct
+{
 int deviceid;
 char*name;
 int use;
@@ -303,6 +311,23 @@ typedef struct {
 int   what;
 } XIPropertyEvent;
 
+typedef struct {
+int   type; /* GenericEvent */
+unsigned long serial;   /* # of last request processed by server */
+Bool  send_event;   /* true if this came from a SendEvent request 
*/
+Display   *display; /* Display the event was read from */
+int   extension;/* XI extension offset */
+int   evtype;
+Time  time;
+int   deviceid;
+int   sourceid;
+unsigned int  touchid;
+Windowroot;
+Windowevent;
+Windowchild;
+int   flags;
+} XITouchOwnershipEvent;
+
 _XFUNCPROTOBEGIN
 
 extern Bool XIQueryPointer(
@@ -426,6 +451,14 @@ extern Status XIAllowEvents(
 Timetime
 );
 
+extern Status XIAllowTouchEvents(
+Display*display,
+int deviceid,
+unsigned inttouchid,
+Window  grab_window,
+int event_mode
+);
+
 extern int XIGrabButton(
 Display*display,
 int deviceid,
@@ -477,6 +510,17 @@ extern int XIGrabFocusIn(
 int num_modifiers,
 XIGrabModifiers *modifiers_inout
 );
+
+extern int XIGrabTouchBegin(
+Display*display,
+int deviceid,
+Window  grab_window,
+int owner_events,
+XIEventMask *mask,
+int num_modifiers,
+XIGrabModifiers *modifiers_inout
+);
+
 extern Status XIUngrabButton(
 Display*display,
 int deviceid,
@@ -511,6 +555,13 @@ extern Status XIUngrabFocusIn(
 XIGrabModifiers *modifiers
 );
 
+extern Status XIUngrabTouchBegin(
+Display*display,
+int deviceid,
+Window  grab_window,
+int num_modifiers,

libxi: Changes to 'debian-experimental'

2011-12-23 Thread Cyril Brulebois
 ChangeLog|   54 +++
 configure.ac |4 -
 debian/changelog |   13 +
 debian/control   |4 -
 debian/libxi6.symbols|3 +
 debian/rules |2 
 include/X11/extensions/XInput2.h |   51 +
 man/XIGrabButton.txt |   60 -
 man/XIQueryDevice.txt|   30 
 src/XExtInt.c|   91 ++-
 src/XIAllowEvents.c  |   46 ++-
 src/XIPassiveGrab.c  |   33 ++
 src/XIint.h  |1 
 13 files changed, 359 insertions(+), 33 deletions(-)

New commits:
commit ab08834f00a92e3de536435374f9945a13ec9b95
Author: Cyril Brulebois k...@debian.org
Date:   Thu Dec 22 14:19:37 2011 +0100

Upload to experimental.

diff --git a/debian/changelog b/debian/changelog
index e493ae5..a96f186 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-libxi (2:1.5.99.2-1) UNRELEASED; urgency=low
+libxi (2:1.5.99.2-1) experimental; urgency=low
 
   * New upstream release candidate:
 - With XI 2.2 support, needed for multitouch.
@@ -7,7 +7,7 @@ libxi (2:1.5.99.2-1) UNRELEASED; urgency=low
   * Bump x11proto-input-dev and libx11-dev build-deps.
   * Update libxi6.symbols with new symbols and bump shlibs.
 
- -- Cyril Brulebois k...@debian.org  Thu, 22 Dec 2011 12:53:34 +0100
+ -- Cyril Brulebois k...@debian.org  Thu, 22 Dec 2011 14:19:35 +0100
 
 libxi (2:1.5.0-1) experimental; urgency=low
 

commit 58d650a07e0f3966892a516605cf10e9324669d2
Author: Cyril Brulebois k...@debian.org
Date:   Thu Dec 22 14:18:45 2011 +0100

Update libxi6.symbols with new symbols and bump shlibs.

diff --git a/debian/changelog b/debian/changelog
index 4a16064..e493ae5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -5,6 +5,7 @@ libxi (2:1.5.99.2-1) UNRELEASED; urgency=low
   * Fix changelog entry for 2:1.4.99.1-1:
 - With XI 2.1 support, no multitouch yet.
   * Bump x11proto-input-dev and libx11-dev build-deps.
+  * Update libxi6.symbols with new symbols and bump shlibs.
 
  -- Cyril Brulebois k...@debian.org  Thu, 22 Dec 2011 12:53:34 +0100
 
diff --git a/debian/libxi6.symbols b/debian/libxi6.symbols
index 975a92b..0857960 100644
--- a/debian/libxi6.symbols
+++ b/debian/libxi6.symbols
@@ -28,6 +28,7 @@ libXi.so.6 libxi6 #MINVER#
  XGetSelectedExtensionEvents@Base 0
  XGrabDevice@Base 0
  XIAllowEvents@Base 2:1.2.99.4
+ XIAllowTouchEvents@Base 2:1.5.99.2
  XIChangeHierarchy@Base 2:1.2.99.4
  XIChangeProperty@Base 2:1.2.99.4
  XIDefineCursor@Base 2:1.2.99.4
@@ -42,6 +43,7 @@ libXi.so.6 libxi6 #MINVER#
  XIGrabEnter@Base 2:1.2.99.4
  XIGrabFocusIn@Base 2:1.2.99.4
  XIGrabKeycode@Base 2:1.2.99.4
+ XIGrabTouchBegin@Base 2:1.5.99.2
  XIListProperties@Base 2:1.2.99.4
  XIQueryDevice@Base 2:1.2.99.4
  XIQueryPointer@Base 2:1.2.99.4
@@ -55,6 +57,7 @@ libXi.so.6 libxi6 #MINVER#
  XIUngrabEnter@Base 2:1.2.99.4
  XIUngrabFocusIn@Base 2:1.2.99.4
  XIUngrabKeycode@Base 2:1.2.99.4
+ XIUngrabTouchBegin@Base 2:1.5.99.2
  XIWarpPointer@Base 2:1.2.99.4
  XGrabDeviceButton@Base 0
  XGrabDeviceKey@Base 0
diff --git a/debian/rules b/debian/rules
index 2959206..5d18886 100755
--- a/debian/rules
+++ b/debian/rules
@@ -98,7 +98,7 @@ binary-arch: build install
dh_strip -N$(PACKAGE)
dh_compress
dh_fixperms
-   dh_makeshlibs -V'libxi6 (= 2:1.2.99.4)' --add-udeb=$(PACKAGE)-udeb -- 
-c4
+   dh_makeshlibs -V'libxi6 (= 2:1.5.99.2)' --add-udeb=$(PACKAGE)-udeb -- 
-c4
dh_shlibdeps
dh_installdeb
dh_gencontrol

commit 546404ba78e1731f55730300e2b82c976cee97e8
Author: Cyril Brulebois k...@debian.org
Date:   Thu Dec 22 14:12:09 2011 +0100

Fix changelog.

diff --git a/debian/changelog b/debian/changelog
index 76ac027..4a16064 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,6 +2,8 @@ libxi (2:1.5.99.2-1) UNRELEASED; urgency=low
 
   * New upstream release candidate:
 - With XI 2.2 support, needed for multitouch.
+  * Fix changelog entry for 2:1.4.99.1-1:
+- With XI 2.1 support, no multitouch yet.
   * Bump x11proto-input-dev and libx11-dev build-deps.
 
  -- Cyril Brulebois k...@debian.org  Thu, 22 Dec 2011 12:53:34 +0100
@@ -15,7 +17,7 @@ libxi (2:1.5.0-1) experimental; urgency=low
 libxi (2:1.4.99.1-1) experimental; urgency=low
 
   * New upstream release candidate:
-- With multitouch support.
+- With XI 2.1 support.
   * Update build dependencies accordingly:
 - Bump xutils-dev, x11proto-input-dev, xorg-sgml-doctools.
 - Add xsltproc.

commit f5876ba2162207396f3108095fff0b709d70b546
Author: Cyril Brulebois k...@debian.org
Date:   Thu Dec 22 14:10:38 2011 +0100

Bump x11proto-input-dev and libx11-dev build-deps.

diff --git a/debian/changelog b/debian/changelog
index 6699d76..76ac027 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,6 

libx11: Changes to 'refs/tags/libx11-2_1.4.99.1-1'

2011-12-23 Thread Cyril Brulebois
Tag 'libx11-2_1.4.99.1-1' created by Cyril Brulebois k...@debian.org at 
2011-12-23 09:57 +

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

iEYEABECAAYFAk70UKUACgkQeGfVPHR5Nd0bSwCg0xEZxW0EJgxuM5g+EQ3FVAVJ
2WkAoKNlIQpl6blav2My37HBeVX9r7Fn
=/viH
-END PGP SIGNATURE-

Changes since libx11-2_1.4.4-4:
Alan Coopersmith (2):
  Fix nomal - normal typo in several comments
  XlcSL.c: convert old-style function definitions to ANSI C89 style

Alexander Polakov (1):
  XGrabKey manual page: change XAllowAccess to XAllowEvents in See Also

Bodo Graumann (1):
  libX11: Fixing modifier key range in Xutil.h (Bug #21910)

Choe Hwanjin (1):
  XIM: Make Xim handle NEED_SYNC_REPLY flag

Cyril Brulebois (7):
  Merge branch 'upstream-experimental' into debian-experimental
  Bump changelogs.
  Bump xorg-sgml-doctools build-dep.
  Refresh patch: 006_tailor_pt_BR.UTF-8_Compose.diff
  Add symbol: _XGetRequest@Base
  Bump shlibs accordingly, for the udeb.
  Upload to experimental.

Derek Buitenhuis (1):
  makekeys: Fix build/target word size mismatch when cross-compiling

Gaetan Nadon (34):
  nls: restructure charts as a single article with sections
  specs: build compose keys tables in specs/i18n/compose
  compose specs: generate chunked html
  libX11 specs: move /para above varaiablelist
  credits.xml: remove toc from Acknowledgments
  libX11 specs: review doclifter generated tables
  docbook.am: do not generate docs if docbook customization layer is missing
  docbook.am: explicitly list xmlto flags for each target
  docbook.am: add search path for local entities
  docbook.am: refactor common flags for xmlto and xsltproc
  compose: upgrade makefile to support olinking on chunked html
  docbook.am: embed css styles inside the HTML HEAD element
  docs: remove productnumber which is not used by default
  docs: remove orphan affiliation
  docs: use the fullrelvers; entity to set X11 release information
  docs: remove productnumber which is not used by default
  docs: use the fullrelvers; entity to set X11 release information
  specs: use appropriate markup for Copyright statements
  specs: remove orphan affiliation.
  specs: handle multiple sets of copyright notice/license/warranty
  docs: merge copyright holder under the same copyright notice
  specs: support multi licensed copyright notice and license text
  specs: The strandard name is still X Consortium Standard
  specs: fix The Open Group license text
  localedb: add release info to spec
  specs: support multi licensed copyright notice and license text
  localedb: restore X Consortium original legal text
  Framework: restore X Consortium copyright
  xtrans: restore X Consortium original legal text
  xim trans: restore Fujitsu copyright legal text
  XIM: refactor the multi licensing legal text
  XKB: provide adequate quotes for the license text
  libX11 specs: use copyright for first holder of multi license
  localedb specs: use copyright for first holder of multi license

James Cloos (1):
  [nls] Fix typo/synco.

Jeremy Huddleston (7):
  Use a configure check for seteuid
  Add additional compose sequences for pound sterling, yen, and cent (mixed 
case)
  Remove conflicting compose sequences for cent and colon
  Remove self-resolving aliases
  Fix potential uninitialized variable access in _XimMakeICAttrIDList
  Fix nobreakspace for pt_BR.UTF-8
  Mark XKeycodeToKeysym as _X_DEPRECATED

Julien Cristau (2):
  Move xorg-sgml-doctools dependency from -dev to -doc.
  Move libx11-doc from section libdevel to doc (closes: #648706).

Marko Myllynen (1):
  Add new compose sequences

Matt Dew (1):
  Cleanup IDs and links in doc

Peter Hutterer (5):
  Add _XGetRequest as substitute for GetReq/GetReqExtra
  Switch GetEmptyReq and GetResReq to call _XGetRequest
  include: Add GetReqSized() for request buffers of specific size
  Use GetReqSized for GetReq and GetReqExtra
  libX11 1.4.99.1

Tollef Fog Heen (1):
  NLS: Add more vulgar fractions

Xue Wei (1):
  mbtocs should not truncate input

Yann Droneaud (2):
  Return name instead of value in XGetIMValues() and XSetIMValues()
  Return name instead of False in XSetICValues()

---
 ChangeLog  |  773 +
 Makefile.am|1 
 configure.ac   |   21 
 debian/changelog   |   19 
 debian/control |8 
 debian/libx11-6.symbols|1 
 debian/patches/006_tailor_pt_BR.UTF-8_Compose.diff |2 
 debian/rules   |2 
 docbook.am  

libx11: Changes to 'debian-experimental'

2011-12-23 Thread Cyril Brulebois
 ChangeLog  | 2055 +
 Makefile.am|1 
 configure.ac   |  183 -
 debian/changelog   |  121 +
 debian/control |  101 -
 debian/libx11-6-udeb.install   |2 
 debian/libx11-6.install|2 
 debian/libx11-6.lintian-overrides  |1 
 debian/libx11-6.symbols|   11 
 debian/libx11-dev.install  |8 
 debian/libx11-doc.install  |2 
 debian/libx11-xcb-dev.install  |6 
 debian/libx11-xcb1.install |2 
 debian/patches/006_tailor_pt_BR.UTF-8_Compose.diff |2 
 debian/patches/020_keep_xorg_css.diff  |   39 
 debian/patches/series  |1 
 debian/rules   |   30 
 docbook.am |  107 +
 include/X11/Xlib.h |1 
 include/X11/Xlibint.h  |  112 -
 include/X11/Xutil.h|2 
 man/DisplayOfCCC.man   |2 
 man/Makefile.am|2 
 man/XChangeKeyboardMapping.man |2 
 man/XFreeModifierMap.man   |1 
 man/XFreeModifiermap.man   |1 
 man/XGrabKey.man   |2 
 man/xkb/XkbComputeShapeTop.man |2 
 man/xkb/XkbPtrActionX.man  |2 
 man/xkb/XkbPtrActionY.man  |2 
 man/xkb/XkbSetPtrActionX.man   |2 
 man/xkb/XkbSetPtrActionY.man   |2 
 modules/im/ximcp/imCallbk.c|2 
 modules/im/ximcp/imDefFlt.c|   16 
 modules/im/ximcp/imDefIc.c |   11 
 modules/im/ximcp/imDefIm.c |   51 
 modules/im/ximcp/imDefLkup.c   |   16 
 modules/im/ximcp/imExten.c |2 
 modules/im/ximcp/imInt.c   |9 
 modules/im/ximcp/imLcFlt.c |   34 
 modules/im/ximcp/imLcIc.c  |5 
 modules/im/ximcp/imLcIm.c  |5 
 modules/im/ximcp/imLcLkup.c|   26 
 modules/im/ximcp/imLcPrs.c |5 
 modules/im/ximcp/imRm.c|   59 
 modules/im/ximcp/imRmAttr.c|   37 
 modules/im/ximcp/imThaiFlt.c   |   11 
 modules/im/ximcp/imThaiIc.c|3 
 modules/im/ximcp/imTrX.c   |   36 
 modules/im/ximcp/imTrans.c |7 
 modules/lc/def/lcDefConv.c |2 
 modules/lc/gen/lcGenConv.c |   14 
 modules/lc/xlocale/lcJis.c |3 
 modules/om/generic/omGeneric.c |   99 -
 nls/Makefile.am|   99 -
 nls/compose-chart.pl   |  389 ---
 nls/en_US.UTF-8/Compose.pre|   23 
 nls/iso8859-1/Compose.pre  |2 
 nls/locale.alias.pre   |   19 
 nls/pt_BR.UTF-8/Compose.pre|2 
 specs/.gitignore   |1 
 specs/XIM/Makefile.am  |   37 
 specs/XIM/xim.xml  |   84 
 specs/XKB/Makefile.am  |   37 
 specs/XKB/ch01.xml |   22 
 specs/XKB/ch02.xml |   16 
 specs/XKB/ch03.xml |   12 
 specs/XKB/ch04.xml |   12 
 specs/XKB/ch05.xml |   14 
 specs/XKB/ch06.xml |   10 
 specs/XKB/ch07.xml |   16 
 specs/XKB/ch08.xml |   40 
 specs/XKB/ch09.xml |   16 
 specs/XKB/ch10.xml |   78 
 specs/XKB/ch11.xml |   30 
 specs/XKB/ch12.xml |   12 
 specs/XKB/ch13.xml |   26 
 specs/XKB/ch14.xml |   26 
 specs/XKB/ch15.xml |   44 
 specs/XKB/ch16.xml |   56 
 specs/XKB/ch17.xml |   22 
 specs/XKB/ch18.xml |   16 
 specs/XKB/ch19.xml 

libx11: Changes to 'upstream-experimental'

2011-12-23 Thread Cyril Brulebois
 Makefile.am |1 
 configure.ac|  183 ++---
 docbook.am  |  107 +++
 include/X11/Xlib.h  |1 
 include/X11/Xlibint.h   |  112 +--
 include/X11/Xutil.h |2 
 man/DisplayOfCCC.man|2 
 man/Makefile.am |2 
 man/XChangeKeyboardMapping.man  |2 
 man/XFreeModifierMap.man|1 
 man/XFreeModifiermap.man|1 
 man/XGrabKey.man|2 
 man/xkb/XkbComputeShapeTop.man  |2 
 man/xkb/XkbPtrActionX.man   |2 
 man/xkb/XkbPtrActionY.man   |2 
 man/xkb/XkbSetPtrActionX.man|2 
 man/xkb/XkbSetPtrActionY.man|2 
 modules/im/ximcp/imCallbk.c |2 
 modules/im/ximcp/imDefFlt.c |   16 
 modules/im/ximcp/imDefIc.c  |   11 
 modules/im/ximcp/imDefIm.c  |   51 -
 modules/im/ximcp/imDefLkup.c|   16 
 modules/im/ximcp/imExten.c  |2 
 modules/im/ximcp/imInt.c|9 
 modules/im/ximcp/imLcFlt.c  |   34 
 modules/im/ximcp/imLcIc.c   |5 
 modules/im/ximcp/imLcIm.c   |5 
 modules/im/ximcp/imLcLkup.c |   26 
 modules/im/ximcp/imLcPrs.c  |5 
 modules/im/ximcp/imRm.c |   59 -
 modules/im/ximcp/imRmAttr.c |   37 -
 modules/im/ximcp/imThaiFlt.c|   11 
 modules/im/ximcp/imThaiIc.c |3 
 modules/im/ximcp/imTrX.c|   36 -
 modules/im/ximcp/imTrans.c  |7 
 modules/lc/def/lcDefConv.c  |2 
 modules/lc/gen/lcGenConv.c  |   14 
 modules/lc/xlocale/lcJis.c  |3 
 modules/om/generic/omGeneric.c  |   99 +-
 nls/Makefile.am |   99 --
 nls/compose-chart.pl|  389 ---
 nls/en_US.UTF-8/Compose.pre |   23 
 nls/iso8859-1/Compose.pre   |2 
 nls/locale.alias.pre|   19 
 nls/pt_BR.UTF-8/Compose.pre |2 
 specs/.gitignore|1 
 specs/XIM/Makefile.am   |   37 -
 specs/XIM/xim.xml   |   84 +-
 specs/XKB/Makefile.am   |   37 -
 specs/XKB/ch01.xml  |   22 
 specs/XKB/ch02.xml  |   16 
 specs/XKB/ch03.xml  |   12 
 specs/XKB/ch04.xml  |   12 
 specs/XKB/ch05.xml  |   14 
 specs/XKB/ch06.xml  |   10 
 specs/XKB/ch07.xml  |   16 
 specs/XKB/ch08.xml  |   40 -
 specs/XKB/ch09.xml  |   16 
 specs/XKB/ch10.xml  |   78 +-
 specs/XKB/ch11.xml  |   30 
 specs/XKB/ch12.xml  |   12 
 specs/XKB/ch13.xml  |   26 
 specs/XKB/ch14.xml  |   26 
 specs/XKB/ch15.xml  |   44 -
 specs/XKB/ch16.xml  |   56 -
 specs/XKB/ch17.xml  |   22 
 specs/XKB/ch18.xml  |   16 
 specs/XKB/ch19.xml  |2 
 specs/XKB/ch20.xml  |   10 
 specs/XKB/ch21.xml  |   17 
 specs/XKB/ch22.xml  |2 
 specs/XKB/xkblib.xml|   19 
 specs/i18n/Makefile.am  |2 
 specs/i18n/compose/.gitignore   |2 
 specs/i18n/compose/Makefile.am  |   20 
 specs/i18n/compose/compose-chart.pl |  388 +++
 specs/i18n/compose/docbook-nl.am|  128 +++
 specs/i18n/framework/Makefile.am|   36 -
 specs/i18n/framework/framework.xml  |  180 ++---
 specs/i18n/localedb/Makefile.am |   33 
 specs/i18n/localedb/localedb.xml|   26 
 specs/i18n/trans/Makefile.am|   33 
 specs/i18n/trans/trans.xml  |   62 +
 specs/libX11/AppA.xml   |  986 ++--
 specs/libX11/AppB.xml   |2 
 specs/libX11/AppC.xml   |  373 +-
 specs/libX11/AppD.xml   |  235 +++---
 specs/libX11/CH01.xml   |   29 
 specs/libX11/CH02.xml   |  320 -
 specs/libX11/CH03.xml   |  418 ++--
 specs/libX11/CH04.xml   |  248 +++
 specs/libX11/CH05.xml   |   90 +-
 specs/libX11/CH06.xml   |  588 -
 specs/libX11/CH07.xml   |  365 +-
 specs/libX11/CH08.xml   |  563 
 specs/libX11/CH09.xml   |  295 
 specs/libX11/CH10.xml   |  297 +++-
 specs/libX11/CH11.xml   |  443 ++---
 specs/libX11/CH12.xml   |  412 ++--
 specs/libX11/CH13.xml   | 1225 +---
 specs/libX11/CH14.xml   |  687 ++--
 specs/libX11/CH15.xml   |  314 -
 specs/libX11/CH16.xml   |  492 +++---
 specs/libX11/Makefile.am|   78 --
 

Processing of libx11_1.4.99.1-1_source+amd64+all.changes

2011-12-23 Thread Debian FTP Masters
libx11_1.4.99.1-1_source+amd64+all.changes uploaded successfully to localhost
along with the files:
  libx11_1.4.99.1-1.dsc
  libx11_1.4.99.1.orig.tar.gz
  libx11_1.4.99.1-1.diff.gz
  libx11-6_1.4.99.1-1_amd64.deb
  libx11-6-udeb_1.4.99.1-1_amd64.udeb
  libx11-6-dbg_1.4.99.1-1_amd64.deb
  libx11-dev_1.4.99.1-1_amd64.deb
  libx11-xcb1_1.4.99.1-1_amd64.deb
  libx11-xcb1-dbg_1.4.99.1-1_amd64.deb
  libx11-xcb-dev_1.4.99.1-1_amd64.deb
  libx11-data_1.4.99.1-1_all.deb
  libx11-doc_1.4.99.1-1_all.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1re1x5-00018u...@franck.debian.org



Processing of libxi_1.5.99.2-1_source+amd64.changes

2011-12-23 Thread Debian FTP Masters
libxi_1.5.99.2-1_source+amd64.changes uploaded successfully to localhost
along with the files:
  libxi_1.5.99.2-1.dsc
  libxi_1.5.99.2.orig.tar.gz
  libxi_1.5.99.2-1.diff.gz
  libxi6_1.5.99.2-1_amd64.deb
  libxi6-udeb_1.5.99.2-1_amd64.udeb
  libxi6-dbg_1.5.99.2-1_amd64.deb
  libxi-dev_1.5.99.2-1_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


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



Bug#648706: marked as done (libx11-doc should be in Section doc, not libdevel)

2011-12-23 Thread Debian Bug Tracking System
Your message dated Fri, 23 Dec 2011 10:17:23 +
with message-id e1re2bn-0002em...@franck.debian.org
and subject line Bug#648706: fixed in libx11 2:1.4.99.1-1
has caused the Debian Bug report #648706,
regarding libx11-doc should be in Section doc, not libdevel
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.)


-- 
648706: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=648706
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: libx11-doc
Version: 2:1.4.4-4
Severity: minor

$ dpkg -s libx11-doc
Package: libx11-doc
Status: install ok installed
Priority: optional
Section: libdevel
[...]

It should be in Section doc, not libdevel.

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

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

-- no debconf information


---End Message---
---BeginMessage---
Source: libx11
Source-Version: 2:1.4.99.1-1

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

libx11-6-dbg_1.4.99.1-1_amd64.deb
  to main/libx/libx11/libx11-6-dbg_1.4.99.1-1_amd64.deb
libx11-6-udeb_1.4.99.1-1_amd64.udeb
  to main/libx/libx11/libx11-6-udeb_1.4.99.1-1_amd64.udeb
libx11-6_1.4.99.1-1_amd64.deb
  to main/libx/libx11/libx11-6_1.4.99.1-1_amd64.deb
libx11-data_1.4.99.1-1_all.deb
  to main/libx/libx11/libx11-data_1.4.99.1-1_all.deb
libx11-dev_1.4.99.1-1_amd64.deb
  to main/libx/libx11/libx11-dev_1.4.99.1-1_amd64.deb
libx11-doc_1.4.99.1-1_all.deb
  to main/libx/libx11/libx11-doc_1.4.99.1-1_all.deb
libx11-xcb-dev_1.4.99.1-1_amd64.deb
  to main/libx/libx11/libx11-xcb-dev_1.4.99.1-1_amd64.deb
libx11-xcb1-dbg_1.4.99.1-1_amd64.deb
  to main/libx/libx11/libx11-xcb1-dbg_1.4.99.1-1_amd64.deb
libx11-xcb1_1.4.99.1-1_amd64.deb
  to main/libx/libx11/libx11-xcb1_1.4.99.1-1_amd64.deb
libx11_1.4.99.1-1.diff.gz
  to main/libx/libx11/libx11_1.4.99.1-1.diff.gz
libx11_1.4.99.1-1.dsc
  to main/libx/libx11/libx11_1.4.99.1-1.dsc
libx11_1.4.99.1.orig.tar.gz
  to main/libx/libx11/libx11_1.4.99.1.orig.tar.gz



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

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

Debian distribution maintenance software
pp.
Cyril Brulebois k...@debian.org (supplier of updated libx11 package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 22 Dec 2011 12:58:15 +0100
Source: libx11
Binary: libx11-6 libx11-6-udeb libx11-data libx11-6-dbg libx11-dev libx11-xcb1 
libx11-xcb1-dbg libx11-xcb-dev libx11-doc
Architecture: source amd64 all
Version: 2:1.4.99.1-1
Distribution: experimental
Urgency: low
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Cyril Brulebois k...@debian.org
Description: 
 libx11-6   - X11 client-side library
 libx11-6-dbg - X11 client-side library (debug package)
 libx11-6-udeb - X11 client-side library (udeb)
 libx11-data - X11 client-side library
 libx11-dev - X11 client-side library (development headers)
 libx11-doc - X11 client-side library (development documentation)
 libx11-xcb-dev - Xlib/XCB interface library (development headers)
 libx11-xcb1 - Xlib/XCB interface library
 libx11-xcb1-dbg - Xlib/XCB interface library (debug package)
Closes: 648706
Changes: 
 libx11 (2:1.4.99.1-1) experimental; urgency=low
 .
   [ Julien Cristau ]
   * Move xorg-sgml-doctools dependency from -dev to -doc.
   * Move libx11-doc from section libdevel to doc (closes: #648706).
 .
   [ Cyril Brulebois ]
   * New upstream release candidate:
 - Bug fixes, specs clean-up, new compose sequences.
 - Add GetRequestSized.
   * Bump xorg-sgml-doctools build-dep.
   * Refresh patch:
 - 006_tailor_pt_BR.UTF-8_Compose.diff
   * Add symbol:
 - _XGetRequest@Base
   * Bump shlibs accordingly, for the udeb.
Checksums-Sha1: 
 c7b195f802a8805f673e5ddef265086e4bb3bb41 1865 libx11_1.4.99.1-1.dsc
 07dcc14205e51d5e6881e16c9acba7d06e7ac4aa 3050747 libx11_1.4.99.1.orig.tar.gz
 e396831adc7968b1a202197ffee9667e9c66add7 82090 libx11_1.4.99.1-1.diff.gz
 

override: libx11-doc:doc/optional

2011-12-23 Thread Cyril Brulebois
Hi,

Debian FTP Masters ftpmas...@ftp-master.debian.org (23/12/2011):
 There are disparities between your recently accepted upload and the
 override file for the following file(s):
 
 libx11-doc_1.4.99.1-1_all.deb: package says section is doc, override says 
 libdevel.

please update the override, as the changelog says:
  * Move libx11-doc from section libdevel to doc (closes: #648706).

Mraw,
KiBi.


signature.asc
Description: Digital signature


libx11_1.4.99.1-1_source+amd64+all.changes ACCEPTED into experimental

2011-12-23 Thread Debian FTP Masters



Accepted:
libx11-6-dbg_1.4.99.1-1_amd64.deb
  to main/libx/libx11/libx11-6-dbg_1.4.99.1-1_amd64.deb
libx11-6-udeb_1.4.99.1-1_amd64.udeb
  to main/libx/libx11/libx11-6-udeb_1.4.99.1-1_amd64.udeb
libx11-6_1.4.99.1-1_amd64.deb
  to main/libx/libx11/libx11-6_1.4.99.1-1_amd64.deb
libx11-data_1.4.99.1-1_all.deb
  to main/libx/libx11/libx11-data_1.4.99.1-1_all.deb
libx11-dev_1.4.99.1-1_amd64.deb
  to main/libx/libx11/libx11-dev_1.4.99.1-1_amd64.deb
libx11-doc_1.4.99.1-1_all.deb
  to main/libx/libx11/libx11-doc_1.4.99.1-1_all.deb
libx11-xcb-dev_1.4.99.1-1_amd64.deb
  to main/libx/libx11/libx11-xcb-dev_1.4.99.1-1_amd64.deb
libx11-xcb1-dbg_1.4.99.1-1_amd64.deb
  to main/libx/libx11/libx11-xcb1-dbg_1.4.99.1-1_amd64.deb
libx11-xcb1_1.4.99.1-1_amd64.deb
  to main/libx/libx11/libx11-xcb1_1.4.99.1-1_amd64.deb
libx11_1.4.99.1-1.diff.gz
  to main/libx/libx11/libx11_1.4.99.1-1.diff.gz
libx11_1.4.99.1-1.dsc
  to main/libx/libx11/libx11_1.4.99.1-1.dsc
libx11_1.4.99.1.orig.tar.gz
  to main/libx/libx11/libx11_1.4.99.1.orig.tar.gz


Override entries for your package:
libx11-6-dbg_1.4.99.1-1_amd64.deb - extra debug
libx11-6-udeb_1.4.99.1-1_amd64.udeb - optional debian-installer
libx11-6_1.4.99.1-1_amd64.deb - optional libs
libx11-data_1.4.99.1-1_all.deb - optional x11
libx11-dev_1.4.99.1-1_amd64.deb - optional libdevel
libx11-doc_1.4.99.1-1_all.deb - optional libdevel
libx11-xcb-dev_1.4.99.1-1_amd64.deb - optional libdevel
libx11-xcb1-dbg_1.4.99.1-1_amd64.deb - extra debug
libx11-xcb1_1.4.99.1-1_amd64.deb - optional libs
libx11_1.4.99.1-1.dsc - source x11

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


Thank you for your contribution to Debian.


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1re2bm-0002ed...@franck.debian.org



libxi_1.5.99.2-1_source+amd64.changes ACCEPTED into experimental

2011-12-23 Thread Debian FTP Masters



Accepted:
libxi-dev_1.5.99.2-1_amd64.deb
  to main/libx/libxi/libxi-dev_1.5.99.2-1_amd64.deb
libxi6-dbg_1.5.99.2-1_amd64.deb
  to main/libx/libxi/libxi6-dbg_1.5.99.2-1_amd64.deb
libxi6-udeb_1.5.99.2-1_amd64.udeb
  to main/libx/libxi/libxi6-udeb_1.5.99.2-1_amd64.udeb
libxi6_1.5.99.2-1_amd64.deb
  to main/libx/libxi/libxi6_1.5.99.2-1_amd64.deb
libxi_1.5.99.2-1.diff.gz
  to main/libx/libxi/libxi_1.5.99.2-1.diff.gz
libxi_1.5.99.2-1.dsc
  to main/libx/libxi/libxi_1.5.99.2-1.dsc
libxi_1.5.99.2.orig.tar.gz
  to main/libx/libxi/libxi_1.5.99.2.orig.tar.gz


Override entries for your package:
libxi-dev_1.5.99.2-1_amd64.deb - optional libdevel
libxi6-dbg_1.5.99.2-1_amd64.deb - extra debug
libxi6-udeb_1.5.99.2-1_amd64.udeb - optional debian-installer
libxi6_1.5.99.2-1_amd64.deb - optional libs
libxi_1.5.99.2-1.dsc - source x11

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


Thank you for your contribution to Debian.


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1re2bz-0002k6...@franck.debian.org



libx11 override disparity

2011-12-23 Thread Debian FTP Masters
There are disparities between your recently accepted upload and the
override file for the following file(s):

libx11-doc_1.4.99.1-1_all.deb: package says section is doc, override says 
libdevel.


Please note that a list of new sections were recently added to the
archive: cli-mono, database, debug, fonts, gnu-r, gnustep, haskell,
httpd, java, kernel, lisp, localization, ocaml, php, ruby, vcs, video,
xfce, zope.  At this time a script was used to reclassify packages into
these sections.  If this is the case, please only reply to this email if
the new section is inappropriate, otherwise please update your package
at the next upload.

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 file a bug against ftp.debian.org and
explain why. Please INCLUDE the list of packages as seen above, or we
won't be able to deal with your request due to missing information.

Please make sure that the subject of the bug you file follows the
following format:

Subject: override: BINARY1:section/priority, [...], BINARYX:section/priority

Include the justification for the change in the body of the mail please.


[NB: this is an automatically generated mail; if you already filed a bug
and have not received a response yet, please ignore this mail.  Your bug
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 ftpmas...@debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1re2bs-0002f1...@franck.debian.org



Bug#653079: xorg: Xorg fails to initialize in testing branch on Radeon

2011-12-23 Thread Joji Antony
Package: xorg
Version: 1:7.6+10
Severity: important

Dear Maintainer,

   * What led up to the situation?
  The recent sudo apt-get dist-upgrade has lead to breaking the xorg from 
loading properly on my Debian Wheezy.
  I had added the following lines to my .bashrc to start my XFCE
  
  if [ $(tty) = /dev/tty1 ]; then
 exec ck-launch-session dbus-launch --sh-syntax --exit-with-session 
startxfce4
 logout
  fi

  With latest update my X would no longer start the first time.
  The second time I log in at tty1 it starts normally. (Log file attached)

* What exactly did you do (or not do) that was effective (or
   ineffective)?

   The error was that radeon driver was not loaded before X started to 
initialize.
   I had added the following line just before the exec command
   sudo modprobe radeon

   * What was the outcome of this action?
  Now X works perfectly




-- Package-specific info:
X server symlink status:

lrwxrwxrwx 1 root root 13 Sep 17 18:52 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 2056592 Nov 29 21:41 /usr/bin/Xorg

VGA-compatible devices on PCI bus:
--
01:00.0 VGA compatible controller [0300]: ATI Technologies Inc Mobility Radeon 
HD 3400 Series [1002:95c4]

/etc/X11/xorg.conf does not exist.

/etc/X11/xorg.conf.d does not exist.

KMS configuration files:

/etc/modprobe.d/i915-kms.conf:
  options i915 modeset=1
/etc/modprobe.d/radeon-kms.conf:
  options radeon modeset=1

Kernel version (/proc/version):
---
Linux version 2.6.32-5-amd64 (Debian 2.6.32-15) (b...@decadent.org.uk) (gcc 
version 4.3.5 (Debian 4.3.5-1) ) #1 SMP Tue Jun 1 04:34:03 UTC 2010

Xorg X server log files on system:
--
-rw-r--r-- 1 root root 45754 Dec 23 21:50 /var/log/Xorg.0.log

Contents of log file:
-


[49.679] 
X.Org X Server 1.11.2.901 (1.11.3 RC 1)
Release Date: 2011-11-28
[49.679] X Protocol Version 11 Revision 0
[49.680] Build Operating System: Linux 3.1.0-1-amd64 x86_64 Debian
[49.680] Current Operating System: Linux prometheus 2.6.32-5-amd64 #1 SMP 
Tue Jun 1 04:34:03 UTC 2010 x86_64
[49.680] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.32-5-amd64 
root=UUID=80648556-2bbf-400f-8a93-796e018e62b6 ro quiet
[49.681] Build Date: 29 November 2011  04:09:54PM
[49.681] xorg-server 2:1.11.2.901-1 (Cyril Brulebois k...@debian.org) 
[49.681] Current version of pixman: 0.24.0
[49.681]  Before reporting problems check http://wiki.x.org
  to make sure that you have the latest version.
  [49.682] Markers: (--) probed (**) from config file (==) default setting
  (++) from command line (!!) notice (II) informational
  (WW) warning (EE) error (NI) not implemented (??) unknown.
  [49.683] (==) Log file: /var/log/Xorg.0.log Time: Fri Dec 23 21:15:55 
2011
  [49.775] (==) Using system config directory /usr/share/X11/xorg.conf.d
  [49.812] (==) No Layout section.  Using the first Screen section.
  [49.812] (==) No screen section available. Using defaults.
  [49.812] (**) |--Screen Default Screen Section (0)
  [49.812] (**) |   |--Monitor default monitor
  [49.830] (==) No monitor specified for screen Default Screen Section.
Using a default monitor configuration.
[49.831] (==) Automatically adding devices
[49.831] (==) Automatically enabling devices
[49.897] (WW) The directory /usr/share/fonts/X11/cyrillic does not 
exist.
[49.897]  Entry deleted from font path.
[49.966] (==) FontPath set to:
/usr/share/fonts/X11/misc
/usr/share/fonts/X11/100dpi/:unscaled
/usr/share/fonts/X11/75dpi/:unscaled
/usr/share/fonts/X11/Type1
/usr/share/fonts/X11/100dpi
/usr/share/fonts/X11/75dpi
/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType
  built-ins
  [49.966] (==) ModulePath set to /usr/lib/xorg/modules
  [49.966] (II) The server relies on udev to provide the list of input 
devices.
  If no devices become available reconfigure udev or disable AutoAddDevices.
  [49.966] (II) Loader magic: 0x7f7c7f1eeae0
  [49.966] (II) Module ABI versions:
  [49.966]  X.Org ANSI C Emulation: 0.4
  [49.966]  X.Org Video Driver: 11.0
  [49.966]  X.Org XInput driver : 13.0
  [49.966]  X.Org Server Extension : 6.0
  [49.969] (--) PCI:*(0:1:0:0) 1002:95c4:1028:029f rev 0 Mem @ 
0xd000/268435456 0xfc00/65536 I/O @ 0x2000/256 BIOS @ 
0x/131072
  [49.969] (II) Open ACPI successful (/var/run/acpid.socket)
  [49.969] (II) LoadModule: extmod
  [50.020] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
  [50.038] (II) Module extmod: vendor=X.Org Foundation
  [50.038]  compiled for 1.11.2.901 module version = 

Bug#652957: xserver-xorg-video-nouveau: bad dimensions for background image with nouveau driver

2011-12-23 Thread mickael

Le 22/12/2011 16:06, Sven Joachim a écrit :

On 2011-12-22 10:02 +0100, MG wrote:


With nouveau driver on a nvidia geforce4 mX4000, the backround image
of my desktop is not correctly scaled (screen capture joined).

Please show the output of xrandr.

Screen 0: minimum 320 x 200, current 1440 x 900, maximum 4096 x 4096
VGA-1 connected 1440x900+0+0 (normal left inverted right x axis y axis) 
408mm x 255mm

   1440x900   59.9*+   75.0
   1280x1024  75.0 60.0
   1280x960   75.0
   1152x864   75.0 60.0
   1024x768   75.1 70.1 66.0 60.0
   832x62474.6
   800x60072.2 75.0 60.3 56.2
   640x48072.8 75.0 66.7 60.0
   720x40070.1
TV-1 connected 1024x768+0+0 (normal left inverted right x axis y axis) 
0mm x 0mm

   720x57650.0 +
   1024x768   50.0*
   800x60050.0
   720x48050.0
   640x48050.0
   400x300   100.0
   320x240   100.0
   320x200   100.0


Your logs show that a TV output is detected:


[29.876] (II) NOUVEAU(0): Output VGA-1 connected
[29.876] (II) NOUVEAU(0): Output TV-1 connected
[29.876] (II) NOUVEAU(0): Using user preference for initial modes
[29.876] (II) NOUVEAU(0): Output VGA-1 using initial mode 1440x900
[29.876] (II) NOUVEAU(0): Output TV-1 using initial mode 1024x768
[...]
[8.553872] [drm] nouveau :01:00.0: Output VGA-1 is running on CRTC 0 
using output A
[8.580566] [drm] nouveau :01:00.0: Setting dpms mode 0 on TV encoder 
(output 1)
[8.580573] [drm] nouveau :01:00.0: Output TV-1 is running on CRTC 1 
using output B

Do you actually have a TV output connected?

No.
Something I just discovered is that I have the problem with gnome and 
xfce, but not with LXDE.

Cheers,
Sven







--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4ef4c9bf.7020...@free.fr



Bug#652863: marked as done (xorg: cannot launch new process)

2011-12-23 Thread Debian Bug Tracking System
Your message dated Fri, 23 Dec 2011 20:10:20 +0100
with message-id 20111223191020.go24...@radis.cristau.org
and subject line Re: Bug#652863: xorg: cannot launch new process
has caused the Debian Bug report #652863,
regarding xorg: cannot launch new process
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.)


-- 
652863: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=652863
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: xorg
Version: 1:7.6+10
Severity: important

After some time the running X session becomes unusable, since it can't run any 
new process. Here is some terminal output:

~$ xhost +
No protocol specified
xhost:  unable to open display :0
~$ echo $DISPLAY
:0

All started tasks continue to run.

-- Package-specific info:
X server symlink status:

lrwxrwxrwx 1 root root 13 Mar 30  2011 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 2056592 Dec 11 04:57 /usr/bin/Xorg

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

/etc/X11/xorg.conf does not exist.

/etc/X11/xorg.conf.d does not exist.

KMS configuration files:

/etc/modprobe.d/i915-kms.conf:
  options i915 modeset=1

Kernel version (/proc/version):
---
Linux version 3.1.0-1-amd64 (Debian 3.1.1-1) (b...@decadent.org.uk) (gcc 
version 4.6.2 (Debian 4.6.2-4) ) #1 SMP Mon Nov 14 08:02:25 UTC 2011

Xorg X server log files on system:
--
-rw-r--r-- 1 root root 30623 Jul 29 17:13 /var/log/Xorg.2.log
-rw-r--r-- 1 root root 35543 Aug  3 03:25 /var/log/Xorg.1.log
-rw-r--r-- 1 root root 30152 Dec 21 07:14 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file (/var/log/Xorg.0.log):
-
[301090.455] 
X.Org X Server 1.11.2.902 (1.11.3 RC 2)
Release Date: 2011-12-09
[301090.455] X Protocol Version 11, Revision 0
[301090.455] Build Operating System: Linux 3.1.0-1-amd64 x86_64 Debian
[301090.455] Current Operating System: Linux dhcppc0 3.1.0-1-amd64 #1 SMP Mon 
Nov 14 08:02:25 UTC 2011 x86_64
[301090.455] Kernel command line: BOOT_IMAGE=/vmlinuz-3.1.0-1-amd64 
root=/dev/mapper/main-root ro quiet
[301090.455] Build Date: 10 December 2011  09:55:45PM
[301090.455] xorg-server 2:1.11.2.902-1 (Cyril Brulebois k...@debian.org) 
[301090.455] Current version of pixman: 0.24.0
[301090.455]Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
[301090.455] Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[301090.455] (==) Log file: /var/log/Xorg.0.log, Time: Wed Dec 21 00:26:51 
2011
[301090.455] (==) Using system config directory /usr/share/X11/xorg.conf.d
[301090.466] (==) No Layout section.  Using the first Screen section.
[301090.466] (==) No screen section available. Using defaults.
[301090.466] (**) |--Screen Default Screen Section (0)
[301090.466] (**) |   |--Monitor default monitor
[301090.468] (==) No monitor specified for screen Default Screen Section.
Using a default monitor configuration.
[301090.468] (==) Automatically adding devices
[301090.468] (==) Automatically enabling devices
[301090.468] (WW) The directory /usr/share/fonts/X11/cyrillic does not exist.
[301090.468]Entry deleted from font path.
[301090.547] (==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/100dpi/:unscaled,
/usr/share/fonts/X11/75dpi/:unscaled,
/usr/share/fonts/X11/Type1,
/usr/share/fonts/X11/100dpi,
/usr/share/fonts/X11/75dpi,
/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType,
built-ins
[301090.547] (==) ModulePath set to /usr/lib/xorg/modules
[301090.547] (II) The server relies on udev to provide the list of input 
devices.
If no devices become available, reconfigure udev or disable 
AutoAddDevices.
[301090.547] (II) Loader magic: 0x7fbd4c76cae0
[301090.547] (II) Module ABI versions:
[301090.547]X.Org ANSI C Emulation: 0.4
[301090.547]X.Org Video Driver: 11.0
[301090.547]X.Org XInput driver : 13.0
[301090.547]X.Org Server Extension : 6.0
[301090.549] (--) PCI:*(0:0:2:0) 8086:27a2:1028:01d7 rev 3, Mem @ 
0xeff0/524288, 0xd000/268435456, 0xefec/262144, I/O @ 0xeff8/8

Bug#653029: xserver-xorg-video-r128: r128 Idle timed out, resetting engine... messages when starting x.org

2011-12-23 Thread Julien Cristau
On Thu, Dec 22, 2011 at 22:31:28 +, Bruce Robson wrote:

 Versions of packages xserver-xorg-video-r128 suggests:
 pn  firmware-linux  none
 
Does the issue also happen with the above package installed?

Cheers,
Julien



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20111223191247.gp24...@radis.cristau.org



Bug#653079: xorg: Xorg fails to initialize in testing branch on Radeon

2011-12-23 Thread Julien Cristau
On Fri, Dec 23, 2011 at 22:14:37 +0530, Joji Antony wrote:

 * What exactly did you do (or not do) that was effective (or
ineffective)?
 
The error was that radeon driver was not loaded before X started to 
 initialize.
I had added the following line just before the exec command
sudo modprobe radeon
 
You need to figure out why it isn't getting loaded automatically by udev
(this should happen on its own on boot).

Cheers,
Julien



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20111223191436.gq24...@radis.cristau.org



Bug#652863: xorg: cannot launch new process

2011-12-23 Thread Julien Cristau
On Sat, Dec 24, 2011 at 02:20:22 +0700, Yevgeny Kosarzhevsky wrote:

 it looks like dhcp does this change by default. I didn't change hostname
 myself
 
That would be a bug in the dhcp client, IMO.

Cheers,
Julien



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20111223193418.gt24...@radis.cristau.org



Bug#652957: xserver-xorg-video-nouveau: bad dimensions for background image with nouveau driver

2011-12-23 Thread Sven Joachim
On 2011-12-23 19:34 +0100, mickael wrote:

 Le 22/12/2011 16:06, Sven Joachim a écrit :
 On 2011-12-22 10:02 +0100, MG wrote:

 With nouveau driver on a nvidia geforce4 mX4000, the backround image
 of my desktop is not correctly scaled (screen capture joined).
 Please show the output of xrandr.
 Screen 0: minimum 320 x 200, current 1440 x 900, maximum 4096 x 4096
 VGA-1 connected 1440x900+0+0 (normal left inverted right x axis y
 axis) 408mm x 255mm
1440x900   59.9*+   75.0
1280x1024  75.0 60.0
1280x960   75.0
1152x864   75.0 60.0
1024x768   75.1 70.1 66.0 60.0
832x62474.6
800x60072.2 75.0 60.3 56.2
640x48072.8 75.0 66.7 60.0
720x40070.1
 TV-1 connected 1024x768+0+0 (normal left inverted right x axis y axis)
 0mm x 0mm
720x57650.0 +
1024x768   50.0*
800x60050.0
720x48050.0
640x48050.0
400x300   100.0
320x240   100.0
320x200   100.0

 Your logs show that a TV output is detected:

 [29.876] (II) NOUVEAU(0): Output VGA-1 connected
 [29.876] (II) NOUVEAU(0): Output TV-1 connected
 [29.876] (II) NOUVEAU(0): Using user preference for initial modes
 [29.876] (II) NOUVEAU(0): Output VGA-1 using initial mode 1440x900
 [29.876] (II) NOUVEAU(0): Output TV-1 using initial mode 1024x768
 [...]
 [8.553872] [drm] nouveau :01:00.0: Output VGA-1 is running on CRTC 
 0 using output A
 [8.580566] [drm] nouveau :01:00.0: Setting dpms mode 0 on TV 
 encoder (output 1)
 [8.580573] [drm] nouveau :01:00.0: Output TV-1 is running on CRTC 1 
 using output B
 Do you actually have a TV output connected?
 No.

You can disable the non-existent TV output by booting with the
video=TV-1:d kernel parameter.  For more information, consult the
Gentoo Wiki at [1].

 Something I just discovered is that I have the problem with gnome and
 xfce, but not with LXDE.

And the above xrandr output is under which of these environments?

Cheers,
   Sven


1. 
http://en.gentoo-wiki.com/wiki/Nouveau#Phantom_and_unpopulated_output_connector_issues



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/878vm383n3@turtle.gmx.de