Bug#653000: NOUVEAU(0): Error creating GPU channel: -19

2012-01-03 Thread Mathieu Malaterre
On Thu, Dec 22, 2011 at 7:03 PM, Sven Joachim  wrote:
>> $ lspci | grep -i VGA
>> 00:02.0 VGA compatible controller: Intel Corporation Sandy Bridge Integrated 
>> Graphics Controller (rev 09)
>> 01:00.0 VGA compatible controller: nVidia Corporation Device 0df5 (rev a1)
>
> Is this an Optimus laptop?  In that case, tough luck for you:
> http://nouveau.freedesktop.org/wiki/Optimus.

Yup, you are right. I had never heard of this before. I am starring at:

https://github.com/Bumblebee-Project/bumblebeed

I'll try to make if work for debian.

Thanks for the info,
-- 
Mathieu



--
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/ca+7wuszzd51ih71w6ziad31gzyfngmjdjbbs+xah2q_yzy4...@mail.gmail.com



Processed: severity of 654329 is wishlist

2012-01-03 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> severity 654329 wishlist
Bug #654329 [src:libdrm] libdrm: FTBFS when atomic operations are only 
available through libatomic-ops-dev
Severity set to 'wishlist' from 'important'

> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
654329: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=654329
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
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/handler.s.c.132561762324482.transcr...@bugs.debian.org



libxkbcommon: Changes to 'pristine-tar'

2012-01-03 Thread Timo Aaltonen
 libxkbcommon_0.1.0~1.orig.tar.gz.delta |binary
 libxkbcommon_0.1.0~1.orig.tar.gz.id|1 +
 2 files changed, 1 insertion(+)

New commits:
commit d5d9598d18edddce0e1fb6917ab6c0229bb8e162
Author: Timo Aaltonen 
Date:   Tue Jan 3 21:35:31 2012 +0200

pristine-tar data for libxkbcommon_0.1.0~1.orig.tar.gz

diff --git a/libxkbcommon_0.1.0~1.orig.tar.gz.delta 
b/libxkbcommon_0.1.0~1.orig.tar.gz.delta
new file mode 100644
index 000..1ebf66c
Binary files /dev/null and b/libxkbcommon_0.1.0~1.orig.tar.gz.delta differ
diff --git a/libxkbcommon_0.1.0~1.orig.tar.gz.id 
b/libxkbcommon_0.1.0~1.orig.tar.gz.id
new file mode 100644
index 000..9cd1ded
--- /dev/null
+++ b/libxkbcommon_0.1.0~1.orig.tar.gz.id
@@ -0,0 +1 @@
+c19661b965c0058a525f439abd7ac4c5a3532c7d


-- 
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/e1riaaa-0002vv...@vasks.debian.org



libxkbcommon: Changes to 'upstream-experimental'

2012-01-03 Thread Timo Aaltonen
 configure.ac   |6 +++
 include/X11/extensions/XKBcommon.h |6 +++
 src/atom.c |   22 ++
 src/xkbcomp/action.c   |4 +-
 src/xkbcomp/compat.c   |4 +-
 src/xkbcomp/geometry.c |   58 ++---
 src/xkbcomp/indicators.c   |2 -
 src/xkbcomp/keycodes.c |4 +-
 src/xkbcomp/keytypes.c |   12 +++
 src/xkbcomp/parseutils.h   |2 +
 src/xkbcomp/symbols.c  |   31 +--
 src/xkbcomp/vmod.c |2 -
 src/xkbcomp/xkbcomp.c  |6 +++
 src/xkbcomp/xkbparse.y |   29 --
 src/xkbcomp/xkbscan.l  |3 +
 src/xkbmisc.h  |3 -
 xkbcommon.pc.in|2 -
 17 files changed, 104 insertions(+), 92 deletions(-)

New commits:
commit c19661b965c0058a525f439abd7ac4c5a3532c7d
Author: Pekka Paalanen 
Date:   Fri Dec 16 12:52:00 2011 +

Add xkbc_free_keymap helper

Which just calls XkbcFreeKeyboard with the only arguments you'd ever
pass it.

Signed-off-by: Pekka Paalanen 
Signed-off-by: Daniel Stone 

diff --git a/include/X11/extensions/XKBcommon.h 
b/include/X11/extensions/XKBcommon.h
index 4e6058c..b353759 100644
--- a/include/X11/extensions/XKBcommon.h
+++ b/include/X11/extensions/XKBcommon.h
@@ -795,6 +795,9 @@ xkb_compile_keymap_from_file(FILE *inputFile, const char 
*mapName);
 _X_EXPORT extern struct xkb_desc *
 xkb_compile_keymap_from_string(const char *string, const char *mapName);
 
+_X_EXPORT extern void
+xkb_free_keymap(struct xkb_desc *xkb);
+
 _X_EXPORT extern struct xkb_component_list *
 xkb_list_components(struct xkb_component_names * ptrns, int *maxMatch);
 
diff --git a/src/xkbcomp/xkbcomp.c b/src/xkbcomp/xkbcomp.c
index 63858a0..cc3b52d 100644
--- a/src/xkbcomp/xkbcomp.c
+++ b/src/xkbcomp/xkbcomp.c
@@ -324,3 +324,9 @@ xkb_compile_keymap_from_file(FILE *inputFile, const char 
*mapName)
 
 return compile_keymap(file, mapName);
 }
+
+void
+xkb_free_keymap(struct xkb_desc *xkb)
+{
+   XkbcFreeKeyboard(xkb, 0, True);
+}

commit 99e29de22d40c5c9161a0fd28fa2a9c75328386a
Author: Rob Bradford 
Date:   Thu Oct 27 14:30:21 2011 +0100

xkbcomp: Copy the string into the buffer rather than updating pointer

Avoids assigning the global pointer to a value that may only have a stack
lifetime:

Fixes valgrind warnings such as:

==24795== Invalid read of size 1
==24795==at 0x4A06E9A: strcpy (mc_replace_strmem.c:311)
==24795==by 0x4E54D68: ProcessIncludeFile (misc.c:73)
==24795==by 0x4E59726: HandleIncludeSymbols.constprop.3 (symbols.c:829)
==24795==by 0x4E59D8E: HandleSymbolsFile (symbols.c:1673)
==24795==by 0x4E5A068: CompileSymbols (symbols.c:2211)
==24795==by 0x4E51A61: CompileKeymap (keymap.c:155)
==24795==by 0x4E5B410: xkb_compile_keymap_from_components 
(xkbcomp.c:236)
==24795==by 0x4E5B587: xkb_compile_keymap_from_rules (xkbcomp.c:161)
==24795==by 0x405ED2: display_create (window.c:2007)
==24795==by 0x403732: main (desktop-shell.c:320)
==24795==  Address 0x7fefff0a0 is just below the stack ptr.  To suppress, 
use:
--workaround-gcc296-bugs=yes
==24795==
==24795== Source and destination overlap in strcpy(0x7fefff430, 0x7fefff430)
==24795==at 0x4A06F3D: strcpy (mc_replace_strmem.c:311)
==24795==by 0x4E54D68: ProcessIncludeFile (misc.c:73)
==24795==by 0x4E59726: HandleIncludeSymbols.constprop.3 (symbols.c:829)
==24795==by 0x4E59D8E: HandleSymbolsFile (symbols.c:1673)
==24795==by 0x4E5A068: CompileSymbols (symbols.c:2211)
==24795==by 0x4E51A61: CompileKeymap (keymap.c:155)
==24795==by 0x4E5B410: xkb_compile_keymap_from_components 
(xkbcomp.c:236)
==24795==by 0x4E5B587: xkb_compile_keymap_from_rules (xkbcomp.c:161)
==24795==by 0x405ED2: display_create (window.c:2007)
==24795==by 0x403732: main (desktop-shell.c:320)

diff --git a/src/xkbcomp/xkbscan.l b/src/xkbcomp/xkbscan.l
index 5ffec1b..bc0a849 100644
--- a/src/xkbcomp/xkbscan.l
+++ b/src/xkbcomp/xkbscan.l
@@ -196,7 +196,8 @@ yyerror(const char *s)
 void setScanState(char *file, int lineno)
 {
   yylineno = 1;
-  scanFile = file;
+  strncpy(scanFile, file, 1023);
+  scanFile[1023]='\0';
 }
 
 int

commit f91afe4f3ebcac3fb65a402c6c85cf1df5e2b52a
Author: Cyril Brulebois 
Date:   Fri Jun 3 17:19:09 2011 +0200

Add prototype for CheckDefaultMap().

Those warnings disappear accordingly:
|   CC parseutils.lo
| parseutils.c:742: warning: no previous prototype for ‘CheckDefaultMap’
|   CC xkbscan.lo
| xkbscan.l: In function ‘XKBParseString’:
| xkbscan.l:220: warning: implicit declaration of function ‘CheckDefaultMap’
| xkbscan.l:220: warning: nested extern declaration of ‘CheckDefaultMa

libxkbcommon: Changes to 'debian-experimental'

2012-01-03 Thread Timo Aaltonen
 ChangeLog  |  117 +
 configure.ac   |6 +
 debian/changelog   |6 +
 include/X11/extensions/XKBcommon.h |6 +
 src/atom.c |   22 +++---
 src/xkbcomp/action.c   |4 -
 src/xkbcomp/compat.c   |4 -
 src/xkbcomp/geometry.c |   58 +-
 src/xkbcomp/indicators.c   |2 
 src/xkbcomp/keycodes.c |4 -
 src/xkbcomp/keytypes.c |   12 +--
 src/xkbcomp/parseutils.h   |2 
 src/xkbcomp/symbols.c  |   31 -
 src/xkbcomp/vmod.c |2 
 src/xkbcomp/xkbcomp.c  |6 +
 src/xkbcomp/xkbparse.y |   29 -
 src/xkbcomp/xkbscan.l  |3 
 src/xkbmisc.h  |3 
 xkbcommon.pc.in|2 
 19 files changed, 226 insertions(+), 93 deletions(-)

New commits:
commit be68e77dd87571f9f03e252d43849068bf47e142
Author: Timo Aaltonen 
Date:   Tue Jan 3 21:27:28 2012 +0200

bump the snapshot revision

diff --git a/debian/changelog b/debian/changelog
index 460df16..73aae6f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-libxkbcommon (0.1.0~0-2) UNRELEASED; urgency=low
+libxkbcommon (0.1.0~1-2) UNRELEASED; urgency=low
 
   [ Cyril Brulebois ]
   * Fix short description for libxkbcommon-dev.

commit 23cfbefa97b0a6509f0a24c494b888cc07165a48
Author: Timo Aaltonen 
Date:   Tue Jan 3 21:24:34 2012 +0200

update the changelogs

diff --git a/ChangeLog b/ChangeLog
index d0536a5..3e20193 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,120 @@
+commit c19661b965c0058a525f439abd7ac4c5a3532c7d
+Author: Pekka Paalanen 
+Date:   Fri Dec 16 12:52:00 2011 +
+
+Add xkbc_free_keymap helper
+
+Which just calls XkbcFreeKeyboard with the only arguments you'd ever
+pass it.
+
+Signed-off-by: Pekka Paalanen 
+Signed-off-by: Daniel Stone 
+
+commit 99e29de22d40c5c9161a0fd28fa2a9c75328386a
+Author: Rob Bradford 
+Date:   Thu Oct 27 14:30:21 2011 +0100
+
+xkbcomp: Copy the string into the buffer rather than updating pointer
+
+Avoids assigning the global pointer to a value that may only have a stack
+lifetime:
+
+Fixes valgrind warnings such as:
+
+==24795== Invalid read of size 1
+==24795==at 0x4A06E9A: strcpy (mc_replace_strmem.c:311)
+==24795==by 0x4E54D68: ProcessIncludeFile (misc.c:73)
+==24795==by 0x4E59726: HandleIncludeSymbols.constprop.3 (symbols.c:829)
+==24795==by 0x4E59D8E: HandleSymbolsFile (symbols.c:1673)
+==24795==by 0x4E5A068: CompileSymbols (symbols.c:2211)
+==24795==by 0x4E51A61: CompileKeymap (keymap.c:155)
+==24795==by 0x4E5B410: xkb_compile_keymap_from_components 
(xkbcomp.c:236)
+==24795==by 0x4E5B587: xkb_compile_keymap_from_rules (xkbcomp.c:161)
+==24795==by 0x405ED2: display_create (window.c:2007)
+==24795==by 0x403732: main (desktop-shell.c:320)
+==24795==  Address 0x7fefff0a0 is just below the stack ptr.  To suppress, 
use:
+--workaround-gcc296-bugs=yes
+==24795==
+==24795== Source and destination overlap in strcpy(0x7fefff430, 
0x7fefff430)
+==24795==at 0x4A06F3D: strcpy (mc_replace_strmem.c:311)
+==24795==by 0x4E54D68: ProcessIncludeFile (misc.c:73)
+==24795==by 0x4E59726: HandleIncludeSymbols.constprop.3 (symbols.c:829)
+==24795==by 0x4E59D8E: HandleSymbolsFile (symbols.c:1673)
+==24795==by 0x4E5A068: CompileSymbols (symbols.c:2211)
+==24795==by 0x4E51A61: CompileKeymap (keymap.c:155)
+==24795==by 0x4E5B410: xkb_compile_keymap_from_components 
(xkbcomp.c:236)
+==24795==by 0x4E5B587: xkb_compile_keymap_from_rules (xkbcomp.c:161)
+==24795==by 0x405ED2: display_create (window.c:2007)
+==24795==by 0x403732: main (desktop-shell.c:320)
+
+commit f91afe4f3ebcac3fb65a402c6c85cf1df5e2b52a
+Author: Cyril Brulebois 
+Date:   Fri Jun 3 17:19:09 2011 +0200
+
+Add prototype for CheckDefaultMap().
+
+Those warnings disappear accordingly:
+|   CC parseutils.lo
+| parseutils.c:742: warning: no previous prototype for ‘CheckDefaultMap’
+|   CC xkbscan.lo
+| xkbscan.l: In function ‘XKBParseString’:
+| xkbscan.l:220: warning: implicit declaration of function 
‘CheckDefaultMap’
+| xkbscan.l:220: warning: nested extern declaration of ‘CheckDefaultMap’
+
+Reviewed-by: Dirk Wallenstein 
+Signed-off-by: Cyril Brulebois 
+
+commit 05f5be9f6d3b8dfbb3af3eeb2b26800ea0515de2
+Author: Kristian Høgsberg 
+Date:   Mon Apr 4 09:21:55 2011 -0400
+
+Also update required kbproto version in .pc.in file
+
+commit 9dd7dc6d8884a4e02527ef16c299c6253ea468b9
+Author: Kristian Høgsberg 
+Date:   Fri Mar 18 00:33:48 2011 -0400
+
+configure: Lower kbproto requirement to 1.0.4
+
+There's nothing in 1.0.

libxkbcommon: Changes to 'debian-experimental'

2012-01-03 Thread Timo Aaltonen
 debian/changelog |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 04a02cc6ddb5875d695f630eec98bbed212f1001
Author: Timo Aaltonen 
Date:   Tue Jan 3 21:40:07 2012 +0200

fix the debian revision

diff --git a/debian/changelog b/debian/changelog
index 73aae6f..621ca46 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-libxkbcommon (0.1.0~1-2) UNRELEASED; urgency=low
+libxkbcommon (0.1.0~1-1) UNRELEASED; urgency=low
 
   [ Cyril Brulebois ]
   * Fix short description for libxkbcommon-dev.


-- 
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/e1riahi-0002wi...@vasks.debian.org



libxkbcommon: Changes to 'ubuntu'

2012-01-03 Thread Timo Aaltonen
 ChangeLog  |  117 +
 configure.ac   |6 +
 debian/changelog   |   17 +
 debian/control |2 
 include/X11/extensions/XKBcommon.h |6 +
 src/atom.c |   22 +++---
 src/xkbcomp/action.c   |4 -
 src/xkbcomp/compat.c   |4 -
 src/xkbcomp/geometry.c |   58 +-
 src/xkbcomp/indicators.c   |2 
 src/xkbcomp/keycodes.c |4 -
 src/xkbcomp/keytypes.c |   12 +--
 src/xkbcomp/parseutils.h   |2 
 src/xkbcomp/symbols.c  |   31 -
 src/xkbcomp/vmod.c |2 
 src/xkbcomp/xkbcomp.c  |6 +
 src/xkbcomp/xkbparse.y |   29 -
 src/xkbcomp/xkbscan.l  |3 
 src/xkbmisc.h  |3 
 xkbcommon.pc.in|2 
 20 files changed, 239 insertions(+), 93 deletions(-)

New commits:
commit df50b2ba85a8861a5560ebb73c8c613bec677f18
Author: Timo Aaltonen 
Date:   Tue Jan 3 21:44:29 2012 +0200

update the changelog, release

diff --git a/debian/changelog b/debian/changelog
index 7c1f15d..2f5ef2d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+libxkbcommon (0.1.0~1-0ubuntu1) precise; urgency=low
+
+  * Merge from Debian git. Remaining Ubuntu changes:
+- Make explicit that this is an experimental package
+
+ -- Timo Aaltonen   Tue, 03 Jan 2012 21:43:00 +0200
+
 libxkbcommon (0.1.0~1-1) UNRELEASED; urgency=low
 
   [ Cyril Brulebois ]

commit 04a02cc6ddb5875d695f630eec98bbed212f1001
Author: Timo Aaltonen 
Date:   Tue Jan 3 21:40:07 2012 +0200

fix the debian revision

diff --git a/debian/changelog b/debian/changelog
index 73aae6f..621ca46 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-libxkbcommon (0.1.0~1-2) UNRELEASED; urgency=low
+libxkbcommon (0.1.0~1-1) UNRELEASED; urgency=low
 
   [ Cyril Brulebois ]
   * Fix short description for libxkbcommon-dev.

commit be68e77dd87571f9f03e252d43849068bf47e142
Author: Timo Aaltonen 
Date:   Tue Jan 3 21:27:28 2012 +0200

bump the snapshot revision

diff --git a/debian/changelog b/debian/changelog
index 460df16..73aae6f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-libxkbcommon (0.1.0~0-2) UNRELEASED; urgency=low
+libxkbcommon (0.1.0~1-2) UNRELEASED; urgency=low
 
   [ Cyril Brulebois ]
   * Fix short description for libxkbcommon-dev.

commit 23cfbefa97b0a6509f0a24c494b888cc07165a48
Author: Timo Aaltonen 
Date:   Tue Jan 3 21:24:34 2012 +0200

update the changelogs

diff --git a/ChangeLog b/ChangeLog
index d0536a5..3e20193 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,120 @@
+commit c19661b965c0058a525f439abd7ac4c5a3532c7d
+Author: Pekka Paalanen 
+Date:   Fri Dec 16 12:52:00 2011 +
+
+Add xkbc_free_keymap helper
+
+Which just calls XkbcFreeKeyboard with the only arguments you'd ever
+pass it.
+
+Signed-off-by: Pekka Paalanen 
+Signed-off-by: Daniel Stone 
+
+commit 99e29de22d40c5c9161a0fd28fa2a9c75328386a
+Author: Rob Bradford 
+Date:   Thu Oct 27 14:30:21 2011 +0100
+
+xkbcomp: Copy the string into the buffer rather than updating pointer
+
+Avoids assigning the global pointer to a value that may only have a stack
+lifetime:
+
+Fixes valgrind warnings such as:
+
+==24795== Invalid read of size 1
+==24795==at 0x4A06E9A: strcpy (mc_replace_strmem.c:311)
+==24795==by 0x4E54D68: ProcessIncludeFile (misc.c:73)
+==24795==by 0x4E59726: HandleIncludeSymbols.constprop.3 (symbols.c:829)
+==24795==by 0x4E59D8E: HandleSymbolsFile (symbols.c:1673)
+==24795==by 0x4E5A068: CompileSymbols (symbols.c:2211)
+==24795==by 0x4E51A61: CompileKeymap (keymap.c:155)
+==24795==by 0x4E5B410: xkb_compile_keymap_from_components 
(xkbcomp.c:236)
+==24795==by 0x4E5B587: xkb_compile_keymap_from_rules (xkbcomp.c:161)
+==24795==by 0x405ED2: display_create (window.c:2007)
+==24795==by 0x403732: main (desktop-shell.c:320)
+==24795==  Address 0x7fefff0a0 is just below the stack ptr.  To suppress, 
use:
+--workaround-gcc296-bugs=yes
+==24795==
+==24795== Source and destination overlap in strcpy(0x7fefff430, 
0x7fefff430)
+==24795==at 0x4A06F3D: strcpy (mc_replace_strmem.c:311)
+==24795==by 0x4E54D68: ProcessIncludeFile (misc.c:73)
+==24795==by 0x4E59726: HandleIncludeSymbols.constprop.3 (symbols.c:829)
+==24795==by 0x4E59D8E: HandleSymbolsFile (symbols.c:1673)
+==24795==by 0x4E5A068: CompileSymbols (symbols.c:2211)
+==24795==by 0x4E51A61: CompileKeymap (keymap.c:155)
+==24795==by 0x4E5B410: xkb_compile_keymap_from_components 
(xkbcomp.c:236)
+==24795==by 0x4E5B587: xkb_compile_keymap_from_rules (xkbcomp.c:161)
+==24795==by 0x405ED2: display_creat

Bug#652907: #652907 xterm: no UTMP/WTMP update with kfreebsd-amd64

2012-01-03 Thread Thomas Dickey
...I answered my own question (found #650936, which doesn't use utempter).
I'll take a quick look by recompiling libutempter to see if I can spot
the problem there.

-- 
Thomas E. Dickey 
http://invisible-island.net
ftp://invisible-island.net


signature.asc
Description: Digital signature


Bug#654533: RM: x-ttcidfont-conf -- RoQA; Debian-specific, unmaintained, tied to defoma removal

2012-01-03 Thread Paul Wise
Package: ftp.debian.org
Severity: normal
User: p...@debian.org
Usertags: defoma-removal
X-Debbugs-CC: pkg-fonts-de...@lists.alioth.debian.org, 
debian-x@lists.debian.org, x-ttcidfont-c...@packages.debian.org
Blocks: 651494

Please remove x-ttcidfont-conf from Debian. It is tied to defoma, which
is intended to be removed from Debian:

http://bugs.debian.org/651494
http://wiki.debian.org/OldPkgRemovals#defoma

-- 
bye,
pabs

http://wiki.debian.org/PaulWise



signature.asc
Description: This is a digitally signed message part


Bug#652907: #652907 xterm: no UTMP/WTMP update with kfreebsd-amd64

2012-01-03 Thread Thomas Dickey
...recompiled libutempter with its debug option turn on.
When xterm is run, utempter reports a problem (not from xterm):

utempter: /dev/ttyp2 belongs to another user

Checking the ownership on that, I see that I own it (which is the
expected behavior).

-- 
Thomas E. Dickey 
http://invisible-island.net
ftp://invisible-island.net


signature.asc
Description: Digital signature