[Bug 1776617] [NEW] kubuntu-settings-desktop breaks subpixel font rendering on XFCE

2018-06-13 Thread Ingo Ruhnke
Public bug reported:

I am a Xubuntu/XFCE user and noticed that my subpixel rendering was
broken. Even so the subpixel order was set to "None", fonts would render
with subpixel order "RGB". If I set the subpixel order to BGR, Vertical
RGB/BGR however things would work. Only the 'None' option had the
problem.

The problem turned out to be this symlink from the kubuntu-settings-
desktop package:

/etc/fonts/conf.d/10-sub-pixel-rgb.conf

which is pointing to:

/etc/fonts/conf.avail/10-sub-pixel-rgb.conf

Seems like the "append" still overrides the setting if the setting is
"none":

$ cat /etc/fonts/conf.d/10-sub-pixel-rgb.conf



 
  

rgb
  


** Affects: kubuntu-settings (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to kubuntu-settings in Ubuntu.
https://bugs.launchpad.net/bugs/1776617

Title:
  kubuntu-settings-desktop breaks subpixel font rendering on XFCE

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/kubuntu-settings/+bug/1776617/+subscriptions

-- 
kubuntu-bugs mailing list
kubuntu-b...@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs


[Bug 1465562] [NEW] mhash.h fails to compile with clang++ -std=c++14

2015-06-16 Thread Ingo Ruhnke
Public bug reported:

mhash.h fails to compile with clang++ when -std=c++14 or any of the
other c++ standards is enabled. The problem is that mhash uses  _Bool,
but clang only defines _Bool in C mode, not in C++ mode:

/usr/lib/llvm-3.5/lib/clang/3.5.2/include/stdbool.h

Fixing the problem can be done by replacing '_Bool' with 'bool' in:

/usr/include/mutils/mutils.h

As far as I understand it using _Bool directly is not advised:

http://stackoverflow.com/a/4767954/28113

Example of the problem:

$ cat main.cpp 
#include mhash.h
int main() {}

$ clang++ main.cpp $(pkg-config --cflags --libs mhash) -std=c++14
In file included from main.cpp:1:
In file included from /usr/include/mhash.h:8:
In file included from /usr/include/mutils/mtypes.h:24:
/usr/include/mutils/mutils.h:250:70: error: unknown type name '_Bool'
mutils_word32 *mutils_word32nswap(mutils_word32 *x, mutils_word32 n, 
mutils_boolean destructive);
 ^
/usr/include/mutils/mutils.h:100:24: note: expanded from macro 'mutils_boolean'
#define mutils_boolean _Bool
   ^
/usr/include/mutils/mutils.h:253:1: error: unknown type name '_Bool'
mutils_boolean mutils_thequals(mutils_word8 *text, mutils_word8 *hash, __const 
mutils_word32 len);
^
/usr/include/mutils/mutils.h:100:24: note: expanded from macro 'mutils_boolean'
#define mutils_boolean _Bool
   ^
In file included from main.cpp:1:
In file included from /usr/include/mhash.h:10:
/usr/include/mutils/mhash.h:73:1: error: unknown type name '_Bool'
mutils_boolean mhash(MHASH thread, const void *plaintext, mutils_word32 size);
^
/usr/include/mutils/mutils.h:100:24: note: expanded from macro 'mutils_boolean'
#define mutils_boolean _Bool
   ^
In file included from main.cpp:1:
In file included from /usr/include/mhash.h:10:
/usr/include/mutils/mhash.h:91:1: error: unknown type name '_Bool'
mutils_boolean mhash_hmac_deinit(MHASH thread, void *result);
^
/usr/include/mutils/mutils.h:100:24: note: expanded from macro 'mutils_boolean'
#define mutils_boolean _Bool
   ^
In file included from main.cpp:1:
In file included from /usr/include/mhash.h:10:
/usr/include/mutils/mhash.h:95:1: error: unknown type name '_Bool'
mutils_boolean mhash_save_state_mem(MHASH thread, void *mem, mutils_word32 
*mem_size);
^
/usr/include/mutils/mutils.h:100:24: note: expanded from macro 'mutils_boolean'
#define mutils_boolean _Bool
   ^
In file included from main.cpp:1:
In file included from /usr/include/mhash.h:10:
/usr/include/mutils/mhash.h:116:1: error: unknown type name '_Bool'
mutils_boolean mhash_keygen_uses_salt(keygenid type);
^
/usr/include/mutils/mutils.h:100:24: note: expanded from macro 'mutils_boolean'
#define mutils_boolean _Bool
   ^
In file included from main.cpp:1:
In file included from /usr/include/mhash.h:10:
/usr/include/mutils/mhash.h:117:1: error: unknown type name '_Bool'
mutils_boolean mhash_keygen_uses_count(keygenid type);
^
/usr/include/mutils/mutils.h:100:24: note: expanded from macro 'mutils_boolean'
#define mutils_boolean _Bool
   ^
In file included from main.cpp:1:
In file included from /usr/include/mhash.h:10:
/usr/include/mutils/mhash.h:118:1: error: unknown type name '_Bool'
mutils_boolean mhash_keygen_uses_hash_algorithm(keygenid type);
^
/usr/include/mutils/mutils.h:100:24: note: expanded from macro 'mutils_boolean'
#define mutils_boolean _Bool
   ^
8 errors generated.

** Affects: mhash (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1465562

Title:
  mhash.h fails to compile with clang++ -std=c++14

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mhash/+bug/1465562/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1283566] [NEW] Uses /bin/sh, but requires bashism: pushd, popd

2014-02-22 Thread Ingo Ruhnke
Public bug reported:

$ winetricks sandbox
Executing w_do_call sandbox
Executing load_sandbox
/usr/bin/winetricks: 17671: /usr/bin/winetricks: pushd: not found
/usr/bin/winetricks: 17680: /usr/bin/winetricks: popd: not found

$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:Ubuntu Trusty Tahr (development branch)
Release:14.04
Codename:   trusty

 winetricks 0.0+20140115+svn1086-1

** Affects: winetricks (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1283566

Title:
  Uses /bin/sh, but requires bashism: pushd, popd

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/winetricks/+bug/1283566/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1200074] Re: High CPU usage and unresponsivness when hotplugging a mouse

2013-07-11 Thread Ingo Ruhnke
Tested now a bit further and it seems the problem is isolated to xfwm, I
couldn't reproduce it in Unity or TWM. Running xfsettingsd alone with
nothing else will produce a short spike of 1 second or so, running xfwm
as well will make the problem worse, running the full xfwm4-session will
give multiple seconds of unresponsivness.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1200074

Title:
  High CPU usage and unresponsivness  when hotplugging a mouse

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1200074/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1200074] [NEW] High CPU usage and unresponsivness when hotplugging a mouse

2013-07-10 Thread Ingo Ruhnke
Public bug reported:

In both XUbuntu 13.04 and 13.10 Xorg will spike to 100% CPU usage for
around 15 seconds whenever I hotplug a USB mouse. In this time not only
is the CPU used fully, Xorg itself also becomes non-responsive, the
mouse pointer itself, even from the newly plugged in mouse, will move
just fine, but focus changes and button presses won't be registered
until 15 seconds later. When I look with xev at the events at that time
I will see around 4000 lines of this:


MappingNotify event, serial 37, synthetic NO, window 0x0,
request MappingKeyboard, first_keycode 10, count 1

MappingNotify event, serial 37, synthetic NO, window 0x0,
request MappingKeyboard, first_keycode 10, count 1

MappingNotify event, serial 37, synthetic NO, window 0x0,
request MappingKeyboard, first_keycode 10, count 1

MappingNotify event, serial 750, synthetic NO, window 0x0,
request MappingKeyboard, first_keycode 218, count 1

[...]

MappingNotify event, serial 750, synthetic NO, window 0x0,
request MappingKeyboard, first_keycode 218, count 1

MappingNotify event, serial 750, synthetic NO, window 0x0,
request MappingKeyboard, first_keycode 218, count 1

MappingNotify event, serial 750, synthetic NO, window 0x0,
request MappingModifier, first_keycode 0, count 0

MappingNotify event, serial 750, synthetic NO, window 0x0,
request MappingModifier, first_keycode 0, count 0


Some applications, most noticably xfce4-volumed, will themselves spike in CPU 
usage as a return to Xorg doing it and prolong the problem up to multiple 
minutes. But as the problem happens even without them running they don't seem 
to be the cause of it.

** Affects: xorg-server (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1200074

Title:
  High CPU usage and unresponsivness  when hotplugging a mouse

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1200074/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1066535] Re: xfwm4 (4.10, xubuntu 12.10 b2) handle fullscreen incorrectly

2012-11-29 Thread Ingo Ruhnke
To add to this: Fullscreen doesn't interact properly with multiple
monitors either, whenever I move the mouse from one monitor to the
other, the window that was in fullscreen mode will fall into the
background and be covered by all other windows and the panels, meaning
it's impossible to properly watch a video on a second monitor. Prior to
Ubuntu 12.10 everything worked perfectly.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1066535

Title:
  xfwm4 (4.10, xubuntu 12.10 b2) handle fullscreen incorrectly

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xfwm4/+bug/1066535/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 390959] Re: 045e:00b0 Microsoft digital media pro keyboard recognised as joystick - interferes with some games

2012-08-10 Thread Ingo Ruhnke
Could somebody who has the problem provide the output of:

$ jstest /dev/input/js0

and

$ evtest /dev/input/eventX (replace X with number of the device)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/390959

Title:
  045e:00b0 Microsoft digital media pro keyboard recognised as joystick
  - interferes with some games

To manage notifications about this bug go to:
https://bugs.launchpad.net/null-and-void/+bug/390959/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 390959] Re: 045e:00b0 Microsoft digital media pro keyboard recognised as joystick - interferes with some games

2012-08-10 Thread Ingo Ruhnke
Could somebody who has the problem provide the output of:

$ jstest /dev/input/js0

and

$ evtest /dev/input/eventX (replace X with number of the device)

The kernel decides what is a joystick or not by looking at what buttons
the evdev device provides, so there is likely some conflict in the
button names.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/390959

Title:
  045e:00b0 Microsoft digital media pro keyboard recognised as joystick
  - interferes with some games

To manage notifications about this bug go to:
https://bugs.launchpad.net/null-and-void/+bug/390959/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 390959] Re: 045e:00b0 Microsoft digital media pro keyboard recognised as joystick - interferes with some games

2012-08-10 Thread Ingo Ruhnke
Could somebody who has the problem provide the output of:

$ jstest /dev/input/js0

and

$ evtest /dev/input/eventX (replace X with number of the device)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/390959

Title:
  045e:00b0 Microsoft digital media pro keyboard recognised as joystick
  - interferes with some games

To manage notifications about this bug go to:
https://bugs.launchpad.net/null-and-void/+bug/390959/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 390959] Re: 045e:00b0 Microsoft digital media pro keyboard recognised as joystick - interferes with some games

2012-08-10 Thread Ingo Ruhnke
The output is fine the way it is, everything after Testing ...
(interrupt to exit) are just input events that aren't needed.

You could however check if you have another device under
/dev/input/eventX for the keyboard, some keyboards get split into two
event devices (one for the regular keys, another for the multimedia
stuff).

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/390959

Title:
  045e:00b0 Microsoft digital media pro keyboard recognised as joystick
  - interferes with some games

To manage notifications about this bug go to:
https://bugs.launchpad.net/null-and-void/+bug/390959/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 551090] Re: drag and drop bookmark functionality broken

2012-07-14 Thread Ingo Ruhnke
Same issue here with Firefox 13. Dragdrop of bookmarks just stops
working from time to time. Sometimes I also have the issue that a
dragdrop action gets stuck and doesn't register a mouse release, thus I
have to kill Firefox to release the input grab. It's not a new problem,
it has been around for some years.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/551090

Title:
  drag and drop bookmark functionality broken

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/firefox/+bug/551090/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1008682] [NEW] Resize handle can lead to unintended window movement and jumps

2012-06-04 Thread Ingo Ruhnke
Public bug reported:

The Gtk3 window resize handle that is in the bottom-right corner of most
Gtk3 apps can lead to an unintended window move as well as make the
window jump by a huge marign, thus leading to the window being out of
the screen. The problem is not perfectly reproducible, but happens
around 20% of the time when clicking the handle instead of doing a
clickdrag. I am using XFWM and Xubuntu as well as a multi-monitor
setup, which might be related to the problem. To reproduce:

1) open a Gtk3 app, such as Evince or GnomeTerminal
2) click the top/left corner of the resize handle a few times

Resulting problems:

* The window will be grabbed so that one can move it around, which seems weird
* The grab on the window happens at a large offset, so instead of the window 
staying in place as long as the user does not move the mouse, it makes an 
instant jump to the right, which seems to be the width of the screen, leading 
to the window being placed off-screen and unreachable if one doesn't move it 
back.

xfwm4  4.8.3-1ubuntu1
libgtk-3-0 3.4.2-0ubuntu0.2

$ lsb_release -rd
Description:Ubuntu 12.04 LTS
Release:12.04

** Affects: gtk+3.0 (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1008682

Title:
  Resize handle can lead to unintended window movement and jumps

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gtk+3.0/+bug/1008682/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 950032] [NEW] Public bluetooth.h API requires use of GNU extensions

2012-03-08 Thread Ingo Ruhnke
Public bug reported:

Compiling code that uses the gcc -ansi flag no longer works with
libbluetooth-dev, as the public API now makes use of typeof() which is a
GNU extension and disabled by the -ansi flag.

$  cat main.c 
#include bluetooth/bluetooth.h
int main() { return 0; }

$ gcc main.c -o main -ansi
In file included from main.c:1:0:
/usr/include/bluetooth/bluetooth.h:131:1: error: unknown type name ‘inline’
/usr/include/bluetooth/bluetooth.h:131:24: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ 
or ‘__attribute__’ before ‘bt_get_le64’
/usr/include/bluetooth/bluetooth.h:136:1: error: unknown type name ‘inline’
/usr/include/bluetooth/bluetooth.h:136:24: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ 
or ‘__attribute__’ before ‘bt_get_be64’
/usr/include/bluetooth/bluetooth.h:141:1: error: unknown type name ‘inline’
/usr/include/bluetooth/bluetooth.h:141:24: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ 
or ‘__attribute__’ before ‘bt_get_le32’
/usr/include/bluetooth/bluetooth.h:146:1: error: unknown type name ‘inline’
/usr/include/bluetooth/bluetooth.h:146:24: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ 
or ‘__attribute__’ before ‘bt_get_be32’
/usr/include/bluetooth/bluetooth.h:151:1: error: unknown type name ‘inline’
/usr/include/bluetooth/bluetooth.h:151:24: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ 
or ‘__attribute__’ before ‘bt_get_le16’
/usr/include/bluetooth/bluetooth.h:156:1: error: unknown type name ‘inline’
/usr/include/bluetooth/bluetooth.h:156:24: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ 
or ‘__attribute__’ before ‘bt_get_be16’
/usr/include/bluetooth/bluetooth.h:204:15: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ 
or ‘__attribute__’ before ‘int’
/usr/include/bluetooth/bluetooth.h:208:15: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ 
or ‘__attribute__’ before ‘void’
/usr/include/bluetooth/bluetooth.h:255:1: error: unknown type name ‘inline’
/usr/include/bluetooth/bluetooth.h:255:24: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ 
or ‘__attribute__’ before ‘ntoh64’
/usr/include/bluetooth/bluetooth.h:266:15: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ 
or ‘__attribute__’ before ‘void’
/usr/include/bluetooth/bluetooth.h:274:15: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ 
or ‘__attribute__’ before ‘void’

$ apt-cache policy libbluetooth-dev
libbluetooth-dev:
  Installed: 4.98-2ubuntu4
  Candidate: 4.98-2ubuntu4
  Version table:
 *** 4.98-2ubuntu4 0
500 http://de.archive.ubuntu.com/ubuntu/ precise/main i386 Packages
100 /var/lib/dpkg/status

$ lsb_release -rd
Description:Ubuntu precise (development branch)
Release:12.04

** Affects: bluez (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/950032

Title:
  Public bluetooth.h API requires use of GNU extensions

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/950032/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 929694] Re: gamepad has incorrect code.

2012-02-09 Thread Ingo Ruhnke
AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.24.
ApportVersion: 1.23-0ubuntu4
Architecture: i386
CRDA: Error: [Errno 2] No such file or directory
Card0.Amixer.info:
 Card hw:0 'Intel'/'HDA Intel at 0xfdff8000 irq 42'
   Mixer name   : 'Realtek ALC888'
   Components   : 'HDA:10ec0888,14627324,0011'
   Controls  : 36
   Simple ctrls  : 20
Card1.Amixer.info:
 Card hw:1 'Generic'/'HD-Audio Generic at 0xfdcfc000 irq 43'
   Mixer name   : 'ATI R6xx HDMI'
   Components   : 'HDA:1002aa01,00aa0100,00100200'
   Controls  : 4
   Simple ctrls  : 1
Card1.Amixer.values:
 Simple mixer control 'IEC958',0
   Capabilities: pswitch pswitch-joined penum
   Playback channels: Mono
   Mono: Playback [on]
Card2.Amixer.info:
 Card hw:2 'U0x46d0x805'/'USB Device 0x46d:0x805 at usb-:02:00.2-4, high 
speed'
   Mixer name   : 'USB Mixer'
   Components   : 'USB046d:0805'
   Controls  : 2
   Simple ctrls  : 1
Card2.Amixer.values:
 Simple mixer control 'Mic',0
   Capabilities: cvolume cvolume-joined cswitch cswitch-joined penum
   Capture channels: Mono
   Limits: Capture 0 - 6144
   Mono: Capture 5217 [85%] [26.37dB] [on]
DistroRelease: Ubuntu 11.10
HibernationDevice: RESUME=UUID=33aaf7bc-0c80-4a2d-87e1-b7be51888be1
InstallationMedia: Xubuntu 11.10 Oneiric Ocelot - Release i386 (20111012)
IwConfig:
 lono wireless extensions.
 
 eth0  no wireless extensions.
 
 teredono wireless extensions.
MachineType: MEDIONPC MS-7324
NonfreeKernelModules: fglrx
Package: linux (not installed)
ProcEnviron:
 PATH=(custom, user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.0.0-15-generic 
root=UUID=40cb917f-d02b-4091-8691-6ac7d8f0a99c ro
ProcVersionSignature: Ubuntu 3.0.0-15.26-generic 3.0.13
RelatedPackageVersions:
 linux-restricted-modules-3.0.0-15-generic N/A
 linux-backports-modules-3.0.0-15-generic  N/A
 linux-firmware1.60
RfKill:
 0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
Tags:  oneiric
Uname: Linux 3.0.0-15-generic i686
UpgradeStatus: No upgrade log present (probably fresh install)
UserGroups: adm admin cdrom dialout lpadmin plugdev root sambashare sudo
dmi.bios.date: 01/05/2007
dmi.bios.vendor: Phoenix Technologies, LTD
dmi.bios.version: W7324MLN 2.0I
dmi.board.name: MS-7324
dmi.board.vendor: MICRO-STAR INTERNATIONAL CO., LTD
dmi.board.version: REV:1
dmi.chassis.type: 3
dmi.chassis.vendor: MEDIONPC
dmi.modalias: 
dmi:bvnPhoenixTechnologies,LTD:bvrW7324MLN2.0I:bd01/05/2007:svnMEDIONPC:pnMS-7324:pvr:rvnMICRO-STARINTERNATIONALCO.,LTD:rnMS-7324:rvrREV1:cvnMEDIONPC:ct3:cvr:
dmi.product.name: MS-7324
dmi.sys.vendor: MEDIONPC


** Tags added: apport-collected oneiric

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/929694

Title:
  gamepad has incorrect code.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/929694/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 929694] AlsaDevices.txt

2012-02-09 Thread Ingo Ruhnke
apport information

** Attachment added: AlsaDevices.txt
   
https://bugs.launchpad.net/bugs/929694/+attachment/2727785/+files/AlsaDevices.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/929694

Title:
  gamepad has incorrect code.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/929694/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 929694] AudioDevicesInUse.txt

2012-02-09 Thread Ingo Ruhnke
apport information

** Attachment added: AudioDevicesInUse.txt
   
https://bugs.launchpad.net/bugs/929694/+attachment/2727788/+files/AudioDevicesInUse.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/929694

Title:
  gamepad has incorrect code.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/929694/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 929694] AplayDevices.txt

2012-02-09 Thread Ingo Ruhnke
apport information

** Attachment added: AplayDevices.txt
   
https://bugs.launchpad.net/bugs/929694/+attachment/2727786/+files/AplayDevices.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/929694

Title:
  gamepad has incorrect code.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/929694/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 929694] ArecordDevices.txt

2012-02-09 Thread Ingo Ruhnke
apport information

** Attachment added: ArecordDevices.txt
   
https://bugs.launchpad.net/bugs/929694/+attachment/2727787/+files/ArecordDevices.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/929694

Title:
  gamepad has incorrect code.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/929694/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 929694] BootDmesg.txt

2012-02-09 Thread Ingo Ruhnke
apport information

** Attachment added: BootDmesg.txt
   
https://bugs.launchpad.net/bugs/929694/+attachment/2727789/+files/BootDmesg.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/929694

Title:
  gamepad has incorrect code.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/929694/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 929694] Card0.Amixer.values.txt

2012-02-09 Thread Ingo Ruhnke
apport information

** Attachment added: Card0.Amixer.values.txt
   
https://bugs.launchpad.net/bugs/929694/+attachment/2727822/+files/Card0.Amixer.values.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/929694

Title:
  gamepad has incorrect code.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/929694/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 929694] Card0.Codecs.codec.0.txt

2012-02-09 Thread Ingo Ruhnke
apport information

** Attachment added: Card0.Codecs.codec.0.txt
   
https://bugs.launchpad.net/bugs/929694/+attachment/2727823/+files/Card0.Codecs.codec.0.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/929694

Title:
  gamepad has incorrect code.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/929694/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 929694] Card1.Codecs.codec.0.txt

2012-02-09 Thread Ingo Ruhnke
apport information

** Attachment added: Card1.Codecs.codec.0.txt
   
https://bugs.launchpad.net/bugs/929694/+attachment/2727824/+files/Card1.Codecs.codec.0.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/929694

Title:
  gamepad has incorrect code.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/929694/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 929694] CurrentDmesg.txt

2012-02-09 Thread Ingo Ruhnke
apport information

** Attachment added: CurrentDmesg.txt
   
https://bugs.launchpad.net/bugs/929694/+attachment/2727825/+files/CurrentDmesg.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/929694

Title:
  gamepad has incorrect code.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/929694/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 929694] Lspci.txt

2012-02-09 Thread Ingo Ruhnke
apport information

** Attachment added: Lspci.txt
   https://bugs.launchpad.net/bugs/929694/+attachment/2727826/+files/Lspci.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/929694

Title:
  gamepad has incorrect code.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/929694/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 929694] PciMultimedia.txt

2012-02-09 Thread Ingo Ruhnke
apport information

** Attachment added: PciMultimedia.txt
   
https://bugs.launchpad.net/bugs/929694/+attachment/2727836/+files/PciMultimedia.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/929694

Title:
  gamepad has incorrect code.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/929694/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 929694] ProcCpuinfo.txt

2012-02-09 Thread Ingo Ruhnke
apport information

** Attachment added: ProcCpuinfo.txt
   
https://bugs.launchpad.net/bugs/929694/+attachment/2727837/+files/ProcCpuinfo.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/929694

Title:
  gamepad has incorrect code.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/929694/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 929694] Lsusb.txt

2012-02-09 Thread Ingo Ruhnke
apport information

** Attachment added: Lsusb.txt
   https://bugs.launchpad.net/bugs/929694/+attachment/2727827/+files/Lsusb.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/929694

Title:
  gamepad has incorrect code.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/929694/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 929694] ProcInterrupts.txt

2012-02-09 Thread Ingo Ruhnke
apport information

** Attachment added: ProcInterrupts.txt
   
https://bugs.launchpad.net/bugs/929694/+attachment/2727838/+files/ProcInterrupts.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/929694

Title:
  gamepad has incorrect code.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/929694/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 929694] ProcModules.txt

2012-02-09 Thread Ingo Ruhnke
apport information

** Attachment added: ProcModules.txt
   
https://bugs.launchpad.net/bugs/929694/+attachment/2727839/+files/ProcModules.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/929694

Title:
  gamepad has incorrect code.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/929694/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 929694] PulseSinks.txt

2012-02-09 Thread Ingo Ruhnke
apport information

** Attachment added: PulseSinks.txt
   
https://bugs.launchpad.net/bugs/929694/+attachment/2727840/+files/PulseSinks.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/929694

Title:
  gamepad has incorrect code.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/929694/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 929694] PulseSources.txt

2012-02-09 Thread Ingo Ruhnke
apport information

** Attachment added: PulseSources.txt
   
https://bugs.launchpad.net/bugs/929694/+attachment/2727841/+files/PulseSources.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/929694

Title:
  gamepad has incorrect code.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/929694/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 929694] UdevDb.txt

2012-02-09 Thread Ingo Ruhnke
apport information

** Attachment added: UdevDb.txt
   https://bugs.launchpad.net/bugs/929694/+attachment/2727842/+files/UdevDb.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/929694

Title:
  gamepad has incorrect code.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/929694/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 929694] UdevLog.txt

2012-02-09 Thread Ingo Ruhnke
apport information

** Attachment added: UdevLog.txt
   https://bugs.launchpad.net/bugs/929694/+attachment/2727843/+files/UdevLog.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/929694

Title:
  gamepad has incorrect code.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/929694/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 929694] WifiSyslog.txt

2012-02-09 Thread Ingo Ruhnke
apport information

** Attachment added: WifiSyslog.txt
   
https://bugs.launchpad.net/bugs/929694/+attachment/2727844/+files/WifiSyslog.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/929694

Title:
  gamepad has incorrect code.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/929694/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 929694] AcpiTables.txt

2012-02-09 Thread Ingo Ruhnke
apport information

** Attachment added: AcpiTables.txt
   
https://bugs.launchpad.net/bugs/929694/+attachment/2727784/+files/AcpiTables.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/929694

Title:
  gamepad has incorrect code.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/929694/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 929694] Re: gamepad has incorrect code.

2012-02-09 Thread Ingo Ruhnke
Attached are above code changes as patch.

A more detailed summary of the problem:

USB gamepads will get assigned event ids starting from BTN_GAMEPAD
(/usr/include/linux/input.h) and then increment with each button. If the
gamepad has 16 buttons or more, it will reach the button id BTN_DIGI and
beyond. The problem is that BTN_DIGI is reserved for tablet use and used
by the joydev module (linux-source-3.0.0/drivers/input/joydev.c) to
determine what devices are not joysticks/gamepads. Thus a gamepad with
more then 16 buttons will not be detected as joystick by the joydev
module and not get an /dev/input/js0.

This problem is a side-effect of an earlier bug fix that was needed so
graphic tablets don't show up as joysticks:

https://bugs.launchpad.net/ubuntu/+source/linux/+bug/300143

PS: The above logs are useless, but were requested by the auto-reply.


** Patch added: linux-gamepad.patch
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/929694/+attachment/2727930/+files/linux-gamepad.patch

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/929694

Title:
  gamepad has incorrect code.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/929694/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 929694] Re: gamepad has incorrect code.

2012-02-09 Thread Ingo Ruhnke
** Changed in: linux (Ubuntu)
   Status: Incomplete = Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/929694

Title:
  gamepad has incorrect code.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/929694/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 929694] Re: gamepad has incorrect code.

2012-02-09 Thread Ingo Ruhnke
No, I haven't yet submitted anything to upstream. Have to read up on how
to do that properly first. If anybody else wants to do it, go ahead, it
might take me a while to do it. I simply provided the patch for
convenience, as the orignial submission was just a text snipped.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/929694

Title:
  gamepad has incorrect code.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/929694/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 863154] Re: Wacom Bamboo One tablet random coordinate malfunctions

2011-12-04 Thread Ingo Ruhnke
For those who don't want to patch and rebuild Gimp themselves, Gimp from
PPA with the patch Alexia Death mentioned:

https://launchpad.net/~grumbel/+archive/gimp

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/863154

Title:
  Wacom Bamboo One tablet random coordinate malfunctions

To manage notifications about this bug go to:
https://bugs.launchpad.net/gimp/+bug/863154/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 897852] [NEW] SIGSEV in rb_podcast_parse_load_feed

2011-11-29 Thread Ingo Ruhnke
Public bug reported:

Ubuntu 11.10
Rhythmbox: Version: 2.90.1~20110908-0ubuntu1

When doing a podcast feed update Rhythmbox crashes:

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0x96fd9b70 (LWP 5197)]
0x00cecafb in totem_pl_parser_add_itms (parser=0x8a3c540, file=0x8a3d538, 
base_file=0x0, parse_data=0x96fd9068, data=0x0) at totem-pl-parser-podcast.c:746
746 totem-pl-parser-podcast.c: No such file or directory.
in totem-pl-parser-podcast.c
(gdb) where
#0  0x00cecafb in totem_pl_parser_add_itms (parser=0x8a3c540, file=0x8a3d538, 
base_file=0x0, parse_data=0x96fd9068, data=0x0) at totem-pl-parser-podcast.c:746
#1  0x00ce6513 in totem_pl_parser_parse_internal (parser=0x8a3c540, 
file=0x8a3d538, base_file=0x0, parse_data=0x96fd9068) at totem-pl-parser.c:1792
#2  0x00ce690c in totem_pl_parser_parse_with_base (parser=0x8a3c540, 
uri=0x8953768 
http://feedflipper.net/convert.php?feed=http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=290065401;,
 
base=0x0, fallback=0) at totem-pl-parser.c:2093
#3  0x00ce6c23 in totem_pl_parser_parse (parser=0x8a3c540, uri=0x8953768 
http://feedflipper.net/convert.php?feed=http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=290065401;,
 fallback=0)
at totem-pl-parser.c:2175
#4  0x001a8a28 in rb_podcast_parse_load_feed (data=0x8a56ce0, 
file_name=0x8953768 
http://feedflipper.net/convert.php?feed=http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=290065401;,
 
existing_feed=1, error=0x8a55bb8) at rb-podcast-parse.c:218
#5  0x001abb95 in rb_podcast_manager_thread_parse_feed (info=0x8955bb0) at 
rb-podcast-manager.c:1146
#6  0x00a6a5f4 in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#7  0x00affd31 in start_thread (arg=0x96fd9b70) at pthread_create.c:304
#8  0x00be60ce in clone () at ../sysdeps/unix/sysv/linux/i386/clone.S:130
Backtrace stopped: Not enough registers or memory available to unwind further


The problematic podcast feed is:

http://feedflipper.net/convert.php?feed=http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=290065401

and contains no RSS feed at the moment, but instead:

!DOCTYPE HTML PUBLIC -//IETF//DTD HTML 2.0//EN
HTMLHEAD
TITLE509 Bandwidth Limit Exceeded/TITLE
/HEADBODY
H1Bandwidth Limit Exceeded/H1

** Affects: rhythmbox (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/897852

Title:
  SIGSEV in rb_podcast_parse_load_feed

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/rhythmbox/+bug/897852/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 641064] Re: rhythmbox crashed with SIGSEGV

2011-10-30 Thread Ingo Ruhnke
Same bug here:

Program received signal SIGINT, Interrupt.
0x00130416 in __kernel_vsyscall ()
(gdb) where
#0  0x00130416 in __kernel_vsyscall ()
#1  0x00b07e6e in raise () from /lib/i386-linux-gnu/libpthread.so.0
#2  0x00200808 in rb_debug_stop_in_debugger () at rb-debug.c:282
#3  0x00200874 in log_handler (domain=0x9e552e GLib-GObject, 
level=G_LOG_LEVEL_CRITICAL, message=0x88b9c60 g_value_set_object: assertion 
`G_VALUE_HOLDS_OBJECT (value)' failed, data=0x0)
at rb-debug.c:299
#4  0x00a4bd5f in g_logv () from /lib/i386-linux-gnu/libglib-2.0.so.0
#5  0x00a4c0d3 in g_log () from /lib/i386-linux-gnu/libglib-2.0.so.0
#6  0x00a4c33d in g_return_if_fail_warning () from 
/lib/i386-linux-gnu/libglib-2.0.so.0
#7  0x009c23cb in g_value_set_object () from 
/usr/lib/i386-linux-gnu/libgobject-2.0.so.0
#8  0x0019067f in rb_removable_media_source_get_property (object=0x87ba0c0, 
prop_id=3, value=0xbfffe3bc, pspec=0x872a650) at rb-removable-media-source.c:326
#9  0x009bfd90 in g_object_get_valist () from 
/usr/lib/i386-linux-gnu/libgobject-2.0.so.0
#10 0x009c0118 in g_object_get () from 
/usr/lib/i386-linux-gnu/libgobject-2.0.so.0
#11 0x00190e19 in rb_removable_media_source_get_format_descriptions 
(source=0x87ba0c0) at rb-removable-media-source.c:679
#12 0x038e12dd in impl_show_properties (source=0x87ba0c0, info_box=0x87ec328, 
notebook=0x82723d0) at rb-generic-player-source.c:1334
#13 0x0019330d in rb_media_player_source_show_properties (source=0x87ba0c0) at 
rb-media-player-source.c:392
#14 0x038e0169 in rb_generic_player_plugin_properties (action=0x840e0d8, 
source=0x87ba0c0) at rb-generic-player-plugin.c:265
#15 0x00183e88 in display_page_action_cb (action=0x840e0d8, data=0x878afb0) at 
rb-display-page.c:412
#16 0x009b914c in g_cclosure_marshal_VOID__VOID () from 
/usr/lib/i386-linux-gnu/libgobject-2.0.so.0
#17 0x009b7c3c in g_closure_invoke () from 
/usr/lib/i386-linux-gnu/libgobject-2.0.so.0
#18 0x009ca9f0 in ?? () from /usr/lib/i386-linux-gnu/libgobject-2.0.so.0
#19 0x009d3787 in g_signal_emit_valist () from 
/usr/lib/i386-linux-gnu/libgobject-2.0.so.0
#20 0x009d38f3 in g_signal_emit () from 
/usr/lib/i386-linux-gnu/libgobject-2.0.so.0
#21 0x002bd406 in ?? () from /usr/lib/libgtk-3.so.0
#22 0x002bdb9d in gtk_action_activate () from /usr/lib/libgtk-3.so.0
#23 0x003c9495 in ?? () from /usr/lib/libgtk-3.so.0
#24 0x009b914c in g_cclosure_marshal_VOID__VOID () from 
/usr/lib/i386-linux-gnu/libgobject-2.0.so.0
#25 0x009b668d in ?? () from /usr/lib/i386-linux-gnu/libgobject-2.0.so.0
#26 0x009b7c3c in g_closure_invoke () from 
/usr/lib/i386-linux-gnu/libgobject-2.0.so.0
#27 0x009ca1b7 in ?? () from /usr/lib/i386-linux-gnu/libgobject-2.0.so.0
#28 0x009d3787 in g_signal_emit_valist () from 
/usr/lib/i386-linux-gnu/libgobject-2.0.so.0
#29 0x009d38f3 in g_signal_emit () from 
/usr/lib/i386-linux-gnu/libgobject-2.0.so.0
#30 0x005076a5 in gtk_widget_activate () from /usr/lib/libgtk-3.so.0
#31 0x003cfaaa in gtk_menu_shell_activate_item () from /usr/lib/libgtk-3.so.0
#32 0x003cfebc in ?? () from /usr/lib/libgtk-3.so.0
#33 0x003c2855 in ?? () from /usr/lib/libgtk-3.so.0
#34 0x003b81a2 in ?? () from /usr/lib/libgtk-3.so.0
#35 0x009b668d in ?? () from /usr/lib/i386-linux-gnu/libgobject-2.0.so.0
#36 0x009b7c3c in g_closure_invoke () from 
/usr/lib/i386-linux-gnu/libgobject-2.0.so.0
#37 0x009ca838 in ?? () from /usr/lib/i386-linux-gnu/libgobject-2.0.so.0
#38 0x009d3599 in g_signal_emit_valist () from 
/usr/lib/i386-linux-gnu/libgobject-2.0.so.0
#39 0x009d38f3 in g_signal_emit () from 
/usr/lib/i386-linux-gnu/libgobject-2.0.so.0
#40 0x005084c3 in ?? () from /usr/lib/libgtk-3.so.0
#41 0x003b78e2 in gtk_propagate_event () from /usr/lib/libgtk-3.so.0
#42 0x003b7d48 in gtk_main_do_event () from /usr/lib/libgtk-3.so.0
#43 0x006fd13c in ?? () from /usr/lib/libgdk-3.so.0
#44 0x00724ec8 in ?? () from /usr/lib/libgdk-3.so.0
#45 0x00a4325f in g_main_context_dispatch () from 
/lib/i386-linux-gnu/libglib-2.0.so.0
#46 0x00a43990 in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
#47 0x00a43f9b in g_main_loop_run () from /lib/i386-linux-gnu/libglib-2.0.so.0
#48 0x003b6f95 in gtk_main () from /usr/lib/libgtk-3.so.0
#49 0x0804a0a3 in main (argc=1, argv=0xb324) at main.c:324

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/641064

Title:
  rhythmbox crashed with SIGSEGV

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/rhythmbox/+bug/641064/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 876671] Re: gvfs-gdu-volume-monitor uses 100% CPU on startup

2011-10-17 Thread Ingo Ruhnke
This problem happens both in 11.10 and 11.04, it hasn't happened before,
but not sure if this was because the bug didn't exist back then or
because I had less HDD back then.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/876671

Title:
  gvfs-gdu-volume-monitor uses 100% CPU on startup

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gvfs/+bug/876671/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 876671] [NEW] gvfs-gdu-volume-monitor uses 100% CPU on startup

2011-10-17 Thread Ingo Ruhnke
Public bug reported:

Every time the system is booted up gvfs-gdu-volume-monitor uses 100% of
the CPU for multiple minutes, even so there is no good reason why it
should do that. This bug report indicates that it might be related to
the number of USB devices attached:

https://bugzilla.redhat.com/show_bug.cgi?id=575381

And I can confirm that, I have multiple USB HDDs with a dozens of LVM
partitions.

** Affects: gvfs (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/876671

Title:
  gvfs-gdu-volume-monitor uses 100% CPU on startup

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gvfs/+bug/876671/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 363101] Re: gvfs-gphoto2-volume-monitor prevents Sansa e250 player from auto-mounting

2011-10-15 Thread Ingo Ruhnke
Bug is still present in Ubuntu 11.10 oneiric, killing gvfs-gphoto2
-volume-monitor again works as workaround.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/363101

Title:
  gvfs-gphoto2-volume-monitor prevents Sansa e250 player from auto-
  mounting

To manage notifications about this bug go to:
https://bugs.launchpad.net/gvfs/+bug/363101/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 703191] Re: BGR-ordered subpixel font rendering appears broken/nonfunctional in Gnome/GTK+

2011-08-29 Thread Ingo Ruhnke
Found the cause of all the trouble, a missing break; in Cairo in src
/cairo-ft-font.c, it's present in upstream as well it seems and not
Ubuntu specific. Patch attached.

** Patch added: Fixes missing break in switch
   
https://bugs.launchpad.net/ubuntu/+source/gtk+2.0/+bug/703191/+attachment/2329590/+files/cairo-subpixel-bgr.patch

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/703191

Title:
  BGR-ordered subpixel font rendering appears broken/nonfunctional in
  Gnome/GTK+

To manage notifications about this bug go to:
https://bugs.launchpad.net/gtk/+bug/703191/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 703191] Re: BGR-ordered subpixel font rendering appears broken/nonfunctional in Gnome/GTK+

2011-08-29 Thread Ingo Ruhnke
Looks to be only a partial fix, grayscale anti-aliasing still produces
subpixel anti-aliasing.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/703191

Title:
  BGR-ordered subpixel font rendering appears broken/nonfunctional in
  Gnome/GTK+

To manage notifications about this bug go to:
https://bugs.launchpad.net/gtk/+bug/703191/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 703191] Re: BGR-ordered subpixel font rendering appears broken/nonfunctional in Gnome/GTK+

2011-08-29 Thread Ingo Ruhnke
Filled two bug reports, along with patches, against upstream Cairo:

BGR issue: https://bugs.freedesktop.org/show_bug.cgi?id=40456
Gray issue: https://bugs.freedesktop.org/show_bug.cgi?id=40458


** Bug watch added: freedesktop.org Bugzilla #40456
   http://bugs.freedesktop.org/show_bug.cgi?id=40456

** Bug watch added: freedesktop.org Bugzilla #40458
   http://bugs.freedesktop.org/show_bug.cgi?id=40458

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/703191

Title:
  BGR-ordered subpixel font rendering appears broken/nonfunctional in
  Gnome/GTK+

To manage notifications about this bug go to:
https://bugs.launchpad.net/gtk/+bug/703191/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 703191] Re: BGR-ordered subpixel font rendering appears broken/nonfunctional in Gnome/GTK+

2011-08-27 Thread Ingo Ruhnke
I dug around a bit, tracing where the subpixel value goes and it seems
the problem is within Cairo or at least the subpixel_order value arrives
safe and sound in the cairo_font_options_set_subpixel_order() call after
going through gconf, xsettings and then back into Gtk. No idea yet what
goes wrong after that.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/703191

Title:
  BGR-ordered subpixel font rendering appears broken/nonfunctional in
  Gnome/GTK+

To manage notifications about this bug go to:
https://bugs.launchpad.net/gtk/+bug/703191/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 703191] Re: BGR-ordered subpixel font rendering appears broken/nonfunctional in Gnome/GTK+

2011-08-27 Thread Ingo Ruhnke
Did another test to confirm that the problem is in cairo. The attached
program will generate a /tmp/out.png with text in RGB, BGR, VRGB and
VBGR ordering, the vertical ordering will show up correctly, while the
horizontal ones are identical. Furthermore on option of the type:

cairo_font_options_set_antialias(fopts, CAIRO_ANTIALIAS_GRAY);

will still produce subpixel anti-aliasing, not grayscale, i.e. all the
same problems that can be seen in the Ubunte Font Rendering Details
dialog.

** Attachment added: text.cpp
   
https://bugs.launchpad.net/ubuntu/+source/gtk+2.0/+bug/703191/+attachment/2324109/+files/text.cpp

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/703191

Title:
  BGR-ordered subpixel font rendering appears broken/nonfunctional in
  Gnome/GTK+

To manage notifications about this bug go to:
https://bugs.launchpad.net/gtk/+bug/703191/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 832190] [NEW] Two panels can gets stuck into endless loop

2011-08-23 Thread Ingo Ruhnke
Public bug reported:

I am not fully sure if it is the gnome-panel or metacity who is causing
the problem or something else and I haven't bothered to try to reproduce
it in a clean environment. Anyway, way I produced the problem multiple
times goes like this:

1) configure a dual monitor display with one workspace spanning the two screens 
(ATI proprietary drivers)
2) place a gnome panel at the bottom of each screen 
3) fumble with the graphics drivers so that the computer will start in single 
screen mode (can happen by going back to the Open Source drivers or upgrading 
the proprietary ones)
4) the now single-screen desktop will not fully boot up, but instead get stuck 
on the gnome-panel, both panels seem to flicker at the bottom and gnome doesn't 
seem to be able to handle two panels at the bottom

Some further information:

Primary Screen (right): 1680x1050
Secondary Screen (left):  1280x1024

Ubuntu 11.04
gnome-panel1:2.32.1-0ubuntu6.5 
metacity   1:2.30.3-0ubuntu8

** Affects: gnome-panel (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/832190

Title:
  Two panels can gets stuck into endless loop

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-panel/+bug/832190/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 774098] Re: overlay-scrollbar exists and really shouldn't

2011-05-11 Thread Ingo Ruhnke
Just to add to my previous report: I am using focus-follows-mouse, some
of the mentioned issue seem to not happen or are less severe when using
click-to-focus. But even with click-to-focus I don't like it (and I
don't like click-to-focus either ;).

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/774098

Title:
  overlay-scrollbar exists and really shouldn't

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 774098] [NEW] overlay-scrollbar exists and really shouldn't

2011-04-30 Thread Ingo Ruhnke
Public bug reported:

Binary package hint: overlay-scrollbar

Foreword: Sorry, that's more a rant then a proper bug report, but I
haven't really found a single good reason for overlay-scrollbar to
exist, just a whole lot of reason why its really bad.

The overlay scrollbar is one of those crazy wheel reinventions for no
reason in the new Ubuntu, here a few basic reasons why it sucks:

* it's inconsistent, when windows are maximuzed or close to the screen border 
it will pop up on the right, otherwise it will pop up on the left
* it's inconsistent as it is hardly used by anything, even among Gtk+ 
applications only a tiny fractions make use of it and there is no chance that 
any of the non Gtk applications will ever make use of it
* it's invisible and thus much harder to hit then a visible scrollbar
* it's impossible to hit in a single straight line when approaching a window 
from the right, it will only pop up once inside the window, but when that 
happens it will pop up on the outside of the window, so you have to move your 
mouse close, stop, then move back to click it
* selections have the same color as the scrollbar, thus when a widget has a 
selection that goes till the edge it will blend into the scrollbar, making it 
not only look weird, but in the worst case completely invisible when scrollbar 
and selecting merge into one
* it's much smaller then a classic scrollbar, real scrollbars fill the whole 
height of the window, overlay only fills the tiny portion that is the visible 
part of a document, thus you have a much smaller area to click on for 
page-up/down events
* it doesn't pop up under the mouse, but a few pixels to the right, this makes 
it incredible frustrating to use, as the regular pattern of graphical reaction 
- I am hovering over the item becomes untrue
* the thing you want least in your GUI is randomly blinking stuff, yet overlay 
does exactly that, whenever you move your mouse around the screen overlay 
scrollbars pops up and fades out
* if you are off by a single pixel to the right it will disappear instantly, 
forcing you not only to travel that pixel back, but to travel all the way to 
the left to make it reappear and then back to the right to actually click it, 
making it not only hard to hit, but actually punishment, as you get reset to an 
earlier stage then where you failed
* buttons that are clickable and dragable at the same time without clear visual 
indication that they are special
* it's extremely tiny, yeah the point is to save screen real estate, but 
seriously, a scrollbar is worth more then four pixels that look more like a 
graphic glitch then a user element
* it violates Fitt's law on maximized windows

To sum things up, the overlay scrollbar is baffling. It is not just a
cosmetic change or a small tweak, but a drastic change in usability for
the worst while providing no new features of its own. The way it
punishes the user for slipping a few pixels off to the right makes it
fell more like a frustrating and badly designed maze game where you are
not allowed to hit the walls then an actual user interface element.

The only good part about the overlay scrollbar is that one can still
purge it from existence:

sudo apt-get purge liboverlay-scrollbar.*

PS: I am using a trackball without the luxury of a separate scroll-
wheel. I can certainly see how having a scrollwheel might make it more
tolerable, but that doesn't change the fact that its completely awful
for actual pointclick interaction.

** Affects: overlay-scrollbar (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/774098

Title:
  overlay-scrollbar exists and really shouldn't

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 770362] [NEW] DVD mount fails after multiple insertions and ejects

2011-04-25 Thread Ingo Ruhnke
Public bug reported:

Binary package hint: util-linux

Mounting a DVD normally works as expected, however sometimes, after
inserting and ejecting multiple DVDs in a row the system seems to get
confused and will no longer automatically mount DVDs and not even allow
manual mounting. This then looks like:

$ sudo mount /dev/scd0 /mnt
mount: block device /dev/sr0 is write-protected, mounting read-only
$ ls -l /mnt
total 0
$ sudo umount /mnt
umount: /mnt: not mounted

The first command looks like it is working, expect it doesn't actually
do anything. The directory stays empty, umount complains about nothing
being mounted and both 'mount' and 'df' don't show the DVD drive being
mounted either. There are no error messages from 'mount' or in 'dmesg',
it is like the first mount command never happened.

Only output of dmesg I could find that might be relevant is:

[20483.289177] VFS: busy inodes on changed media or resized disk sr0
[20625.873006] ISO 9660 Extensions: Microsoft Joliet Level 3
[20625.967061] ISO 9660 Extensions: RRIP_1991A

When the system is in this state I can still do a dd if=/dev/scd0
of=out.iso and can a regular ISO image without any problem, only the
actual mounting of /dev/scd0 is not working.

I think it is possible to let the system get back into a sane state by
inserting the last DVD on which it worked normally, but that might just
be coincidence.

I haven't yet figured out a proper way to reproduce it, but so far it
has shown up a few times when inserting multiple DVDs one after another.

My current system is Ubuntu 11.04, but I have seen the issue before in
10.10, the problem seems have appeared when Ubuntu started to allow
ejecting DVDs without previously umounting manually them.

util-linux is 2.17.2-9.1ubuntu4

** Affects: util-linux (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/770362

Title:
  DVD mount fails after multiple insertions and ejects

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 703191] Re: BGR-ordered subpixel font rendering appears broken/nonfunctional in Gnome/GTK+

2011-03-23 Thread Ingo Ruhnke
Another observation: Switching to grayscale smoothing does not actually
enable grayscale smoothing, the actual font rendering continues to be
LCD(subpixel) smoothing, it now will however also ignore BGR, VBGR and
VRGB settings and do  RGB the whole time.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/703191

Title:
  BGR-ordered subpixel font rendering appears broken/nonfunctional in
  Gnome/GTK+

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 519845] Re: Diagonal input from gamepad hat events is not reset properly

2011-03-16 Thread Ingo Ruhnke
Same problem here, the bug still exist in Ubuntu 10.10.

A temporary workaround (only works with one gamepad), that doesn't
require modifications to the zsnes package can be done with SDL
environment variables, which can be used to redefine the hat as regular
axis, the variable has the syntax:

SDL_LINUX_JOYSTICK='YourJoystickNameHere' NUMAXIS NUMHATS NUMBALLS

The joystick name and number of axis can be gained from zsnes output on
stdout:

Device 0 Xbox Gamepad (userspace driver)
  6 axis, 11 buttons, 1 hats, 0 balls

So the final variables would look like this:

export SDL_JOYSTICK_DEVICE=/dev/input/js0
export SDL_LINUX_JOYSTICK='Xbox Gamepad (userspace driver)' 8 0 0

Here the 1 hat is turned into two axis (X and Y). SDL_JOYSTICK_DEVICE is
required as SDL uses /dev/input/eventX by default, not the joystick
interface, the event interface in SDL doesn't allow any kind of
configuration.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/519845

Title:
  Diagonal input from gamepad hat events is not reset properly

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 703191] Re: BGR-ordered subpixel font rendering appears broken/nonfunctional in Gnome/GTK+

2011-03-02 Thread Ingo Ruhnke
Same issue here, RGB and BGR give identical results, instead of the
different ones like VBGR and VRGB. Attached are a few screenshots that
clearly shows the issues.

In case it matters: I am using a multi-monitor setup with two monitors
that have different subpixel ordering, so results will be blurry on one
monitor either way, but that shouldn't stop Gtk or whatever is at fault,
to respect the given setting.


** Attachment added: Screenshot showing closeup of glyph
   
https://bugs.launchpad.net/ubuntu/+source/gtk+2.0/+bug/703191/+attachment/1881639/+files/subpixelrendering-bug.png

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/703191

Title:
  BGR-ordered subpixel font rendering appears broken/nonfunctional in
  Gnome/GTK+

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 363101] Re: gvfs-gphoto2-volume-monitor prevents Sansa e250 player from auto-mounting

2010-09-19 Thread Ingo Ruhnke
Bug is still present in 10.10 Maverik:

Plugging a Sansa Clip+ MP3 player into USB gives the following dmesg
output:

$ dmesg
[34194.116309] hub 2-0:1.0: unable to enumerate USB device on port 4
[34195.884039] usb 2-4: new high speed USB device using ehci_hcd and address 8
[34196.023380] scsi11 : usb-storage 2-4:1.0
[34197.020929] scsi 11:0:0:0: Direct-Access SanDisk  Sansa Clip+ 4GB  v01. 
PQ: 0 ANSI: 0
[34197.021412] scsi 11:0:0:1: Direct-Access SanDisk  Sansa Clip+ 4GB  v01. 
PQ: 0 ANSI: 0
[34197.022056] sd 11:0:0:0: Attached scsi generic sg6 type 0
[34197.022274] sd 11:0:0:1: Attached scsi generic sg7 type 0
[34197.024413] sd 11:0:0:0: [sdf] 7683072 512-byte logical blocks: (3.93 
GB/3.66 GiB)
[34197.027268] sd 11:0:0:1: [sdg] Attached SCSI removable disk
[34197.028738] sd 11:0:0:0: [sdf] Write Protect is off
[34197.028744] sd 11:0:0:0: [sdf] Mode Sense: 04 00 00 00
[34197.028748] sd 11:0:0:0: [sdf] Assuming drive cache: write through
[34197.031557] sd 11:0:0:0: [sdf] Assuming drive cache: write through
[34197.031566]  sdf:
[34197.037913] sd 11:0:0:0: [sdf] Assuming drive cache: write through
[34197.037919] sd 11:0:0:0: [sdf] Attached SCSI removable disk
[34197.237720] usb 3-2: usbfs: USBDEVFS_CONTROL failed cmd gvfs-gphoto2-vo rqt 
128 rq 6 len 1000 ret -110
[34198.409977] usb 3-2: usbfs: USBDEVFS_CONTROL failed cmd gvfs-gphoto2-vo rqt 
128 rq 6 len 1000 ret -110

If one tries to mount it:

$ sudo mount /dev/sdf  /mnt
mount: /dev/sdf is not a valid block device

$ dmesg
[34228.176043] usb 2-4: reset high speed USB device using ehci_hcd and address 8
[34238.692524] usb 2-4: reset high speed USB device using ehci_hcd and address 8
[34255.200532] usb 2-4: reset high speed USB device using ehci_hcd and address 8
[34255.736606] usb 2-4: reset high speed USB device using ehci_hcd and address 8
[34266.364106] usb 2-4: reset high speed USB device using ehci_hcd and address 8
[34266.800557] sd 11:0:0:0: Device offlined - not ready after error recovery
[34266.800570] sd 11:0:0:0: [sdf] Unhandled error code
[34266.800573] sd 11:0:0:0: [sdf] Result: hostbyte=DID_ABORT 
driverbyte=DRIVER_OK
[34266.800578] sd 11:0:0:0: [sdf] CDB: Read(10): 28 00 00 44 0d 38 00 00 40 00
[34266.800590] end_request: I/O error, dev sdf, sector 4459832
[34266.800596] Buffer I/O error on device sdf, logical block 557479
[34266.800604] Buffer I/O error on device sdf, logical block 557480
[34266.800608] Buffer I/O error on device sdf, logical block 557481
[34266.800612] Buffer I/O error on device sdf, logical block 557482
[34266.800616] Buffer I/O error on device sdf, logical block 557483
[34266.800619] Buffer I/O error on device sdf, logical block 557484
[34266.800623] Buffer I/O error on device sdf, logical block 557485
[34266.800627] Buffer I/O error on device sdf, logical block 557486
[34266.800631] sd 11:0:0:0: rejecting I/O to offline device
[34266.800747] sd 11:0:0:0: rejecting I/O to offline device
[34266.800824] sd 11:0:0:0: rejecting I/O to offline device
[34266.800845] sd 11:0:0:0: rejecting I/O to offline device
[34266.800937] sd 11:0:0:0: rejecting I/O to offline device
[34266.801001] sd 11:0:0:0: rejecting I/O to offline device
[34266.801065] sd 11:0:0:0: rejecting I/O to offline device
[34266.801110] sd 11:0:0:0: rejecting I/O to offline device
[34266.801196] sd 11:0:0:0: rejecting I/O to offline device
[34266.801259] sd 11:0:0:0: rejecting I/O to offline device
[34266.801324] sd 11:0:0:0: rejecting I/O to offline device
[34266.801370] sd 11:0:0:0: rejecting I/O to offline device
[34266.801463] sd 11:0:0:0: rejecting I/O to offline device
[34266.801529] sd 11:0:0:0: rejecting I/O to offline device
[34266.801594] sd 11:0:0:0: rejecting I/O to offline device
[34266.801640] sd 11:0:0:0: rejecting I/O to offline device
[34266.801731] sd 11:0:0:0: rejecting I/O to offline device
[34266.801796] sd 11:0:0:0: rejecting I/O to offline device
[34266.801860] sd 11:0:0:0: rejecting I/O to offline device
[34266.801905] sd 11:0:0:0: rejecting I/O to offline device
[34266.801999] sd 11:0:0:0: rejecting I/O to offline device
[34266.802064] sd 11:0:0:0: rejecting I/O to offline device
[34266.802134] sd 11:0:0:0: rejecting I/O to offline device
[34266.802187] sd 11:0:0:0: rejecting I/O to offline device
[34266.802283] sd 11:0:0:0: rejecting I/O to offline device
[34266.802349] sd 11:0:0:0: rejecting I/O to offline device
[34266.802415] sd 11:0:0:0: rejecting I/O to offline device
[34266.802461] sd 11:0:0:0: rejecting I/O to offline device
[34266.802557] sd 11:0:0:0: rejecting I/O to offline device
[34266.802624] sd 11:0:0:0: rejecting I/O to offline device
[34266.802692] sd 11:0:0:0: rejecting I/O to offline device
[34266.802743] sd 11:0:0:0: rejecting I/O to offline device
[34266.802834] sd 11:0:0:0: rejecting I/O to offline device
[34266.802900] sd 11:0:0:0: rejecting I/O to offline device
[34266.802966] sd 11:0:0:0: rejecting I/O to offline device
[34266.803016] sd 11:0:0:0: rejecting I/O to offline device
[34266.803108] sd 

[Bug 120829] Re: /dev/sda3 is mounted despite the 'noauto' option in fstab

2010-09-18 Thread Ingo Ruhnke
The bug is still present in Ubuntu 10.10 and it seems I can confirm what
Ubfan has mentioned, namely that the cause is the /media/ directory, as
all my drives that mount elsewhere haven't been auto-mounted. Also this
bug is only triggered sporadically, most the time it works fine and
doesn't automount drives it shouldn't, but every now and then all drives
will appear.

-- 
/dev/sda3 is mounted despite the 'noauto' option in fstab
https://bugs.launchpad.net/bugs/120829
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 631365] Re: scons reports UserWarning: Unbuilt egg for setuptools...

2010-09-11 Thread Ingo Ruhnke
Not an scons issue it seems, the bug is already documented at:

https://bugs.launchpad.net/ubuntu/+source/distribute/+bug/576434

The workaround given there, namely:

sudo rmdir /usr/lib/python2.6/dist-packages/setuptools.egg-info
sudo apt-get install --reinstall python-setuptools

Solved the issue for me.

-- 
scons reports UserWarning: Unbuilt egg for setuptools...
https://bugs.launchpad.net/bugs/631365
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 631365] [NEW] scons reports UserWarning: Unbuilt egg for setuptools...

2010-09-06 Thread Ingo Ruhnke
Public bug reported:

Binary package hint: scons

Running a simple empty SConstruct file with scons leads to:

/usr/bin/scons:169: UserWarning: Unbuilt egg for setuptools [unknown version] 
(/usr/lib/python2.6/dist-packages)
  d = pkg_resources.get_distribution('scons')

Which probably indicates a problem with the scons package.

Full way to reproduce the problem:

$ touch SConstruct
$ scons
/usr/bin/scons:169: UserWarning: Unbuilt egg for setuptools [unknown version] 
(/usr/lib/python2.6/dist-packages)
  d = pkg_resources.get_distribution('scons')
scons: Reading SConscript files ...
scons: done reading SConscript files.
scons: Building targets ...
scons: `.' is up to date.
scons: done building targets.
$

** Affects: scons (Ubuntu)
 Importance: Undecided
 Status: New

-- 
scons reports UserWarning: Unbuilt egg for setuptools...
https://bugs.launchpad.net/bugs/631365
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 525535] Re: Two unrelated Podcast entries get mixed into one

2010-08-16 Thread Ingo Ruhnke
No, I haven't seen that issue in Lucid so far. So this bugreport can be
closed.

-- 
Two unrelated Podcast entries get mixed into one
https://bugs.launchpad.net/bugs/525535
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 558581] Re: Super+m key combo conflicts with default compiz key combo to invert screen

2010-04-25 Thread Ingo Ruhnke
Here is a quickdirty workaround patch that simply disabled the hotkey
completly.

** Patch added: Patch that disables the hotkey
   http://launchpadlibrarian.net/45419710/indicator-applet-remove-hotkey.diff

-- 
Super+m key combo conflicts with default compiz key combo to invert screen
https://bugs.launchpad.net/bugs/558581
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 525535] Re: Two unrelated Podcast entries get mixed into one

2010-04-13 Thread Ingo Ruhnke
The only maybe related information I could provide is that Rhythmbox
also every now and then reshowed old already deleted episodes of a
podcast feed, sometimes with a wrong date attached, but I haven't looked
deeper into that, so I can't tell if its a related bug or just something
wrong with the feed itself.

As far as reproduction goes, I can't really provide any more info, its
just something that happened every now and then, not in specific use
cases or with specific feeds as far as I could tell.

Anyway, in the meantime I have upgraded to Ubuntu 10.04 and thus
Rhythmbox 0.12.8 and so far I didn't have any issues (aside from it
reshowing all episodes of all feeds, but I guess that's expected
behaviour on an upgrade).

-- 
Two unrelated Podcast entries get mixed into one
https://bugs.launchpad.net/bugs/525535
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 497081] Re: spacenavd 0.4 is available

2010-04-09 Thread Ingo Ruhnke
The current versions of libspnav and spacenavd in Ubuntu lucid
(development branch) are out of sync, which makes them unusable, as
spacenavd places the communication socket at /tmp/.spnav.sock while
libspnav expect it at /var/run/spnav.sock.

libspnav: Version: 0.2.1-0ubuntu2
spacenavd: Version: 0.3-0ubuntu1

An upgrade to 0.4 would fix this issues.

-- 
spacenavd 0.4 is available
https://bugs.launchpad.net/bugs/497081
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 557113] [NEW] Rhythmbox can't download any podcast feeds

2010-04-07 Thread Ingo Ruhnke
Public bug reported:

Binary package hint: rhythmbox

Rhythmbox currently is unable to download any podcast feeds, it shows an
error for all my existing feeds and even when I try to add a new one it
gives an error:

There was a problem adding this podcast: Unable to check file type:
The specified location is not supported.  Please verify the URL:
http://www.giantbomb.com/podcast-xml/. Would you like to add the podcast
feed anyway?

The problem happens even on a fresh Rhythmbox install without any
existing Rhythmbox configuration.

Rhythmbox: Version: 0.12.8-0ubuntu1

Distributor ID: Ubuntu
Description:Ubuntu lucid (development branch)
Release:10.04
Codename:   lucid

** Affects: rhythmbox (Ubuntu)
 Importance: Undecided
 Status: New

-- 
Rhythmbox can't download any podcast feeds
https://bugs.launchpad.net/bugs/557113
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 557113] Re: Rhythmbox can't download any podcast feeds

2010-04-07 Thread Ingo Ruhnke
Problem turned out to be lack of http support in gvfs, which could be
fixed by manually installing the package gvfs-backends.

-- 
Rhythmbox can't download any podcast feeds
https://bugs.launchpad.net/bugs/557113
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 554059] [NEW] uvccapture fails at larger resolution (1280x1024)

2010-04-02 Thread Ingo Ruhnke
Public bug reported:

Binary package hint: uvccapture

The Logitech C300 (046d:0805) webcam works with other applications such
as mplayer or guvcview, but with uvccapture it works only for smaller
resolutions (960x720, 800x600, 640x480, ...), when selecting 1280x1024
it fails with:

$ uvccaputer -x1280 -y1024
Unable to query buffer (22).
Init v4L2 failed !! exit fatal

When doing the above, dmesg gives the following error:

$ dmesg
vmap allocation for size 36704256 failed: use vmalloc= to increase size

Following that message and adding vmalloc=268435456 (256MiB, smaller
values might work to, haven't tried) to the kernel boot parameter makes
uvccapture work.

The correct fix to make it work without changing vmalloc might be to
change the uvccapture code to use V4L2_MEMORY_USERPTR for larger
resolutions instead of V4L2_MEMORY_MMAP, but I haven't tried that yet (I
assume thats what other apps do).

Description:Ubuntu lucid (development branch)
Release:10.04
Codename:   lucid

uvccapture is 0.5-1

** Affects: uvccapture (Ubuntu)
 Importance: Undecided
 Status: New

-- 
uvccapture fails at larger resolution (1280x1024)
https://bugs.launchpad.net/bugs/554059
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 525535] [NEW] Two unrelated Podcast entries get mixed into one

2010-02-21 Thread Ingo Ruhnke
Public bug reported:

Binary package hint: rhythmbox

Using Ubuntu 9.10 and Rhythmbox 0.12.5 it happens every now and then
that two completly different podcast episodes from different feeds get
merged into one. The title and the feed column then show info from one
episode, but the underlying MP3 and time column as well as the
description point to a different episode of a different podcast feed.
One such entry would be (taken from
/home/ingo/.local/share/rhythmbox/rhythmdb.xml):

  entry type=podcast-post
titleItem #372 - How To Sing To A Preschooler/title -- (1)
genrePodcast/genre
artistDr Chris Smith, The Naked Scientists/artist -- (2)
albumOne Minute How-To/album -- (1) 
duration3935/duration
file-size23658468/file-size

locationfile:///share/podcasts/One%20Minute%20How-To/Naked_Scientists_Show_09.11.01.mp3/location
 -- (2)

mountpointhttp://nakeddiscovery.com/libsyn/Naked_Scientists_Show_09.11.01.mp3/mountpoint
 -- (2)
first-seen1266515408/first-seen
rating2.5/rating
bitrate48/bitrate
date0/date
mimetypeapplication/x-id3/mimetype
status100/status
descriptionThe most distant object ever discovered as well as the events 
of National Pathology week feature in this week's show as we take on your 
science questions! We investigate whysocks go missing in the wash, whether 
light from the sun is a continuous beam and whether numerous vaccines can be 
given together in one dose. We also find out how higher heels make for a better 
runner and reveal the world's fastest camera. Plus, we find out why we get a 
better signal when holding an aerial and show you how to make a helicopter 
using card and pencils!/description - (2)
subtitlehttp://feeds.feedburner.com/OneMinuteHowTo/subtitle - (1)
summary/summary
lang/lang
copyright/copyright
image/image
post-time1266469260/post-time
mb-trackid/mb-trackid
mb-artistid/mb-artistid
mb-albumid/mb-albumid
mb-albumartistid/mb-albumartistid
mb-artistsortname/mb-artistsortname
album-sortname/album-sortname
  /entry

The feeds are:

1) http://feeds.feedburner.com/OneMinuteHowTo
2) http://www.thenakedscientists.com/naked_scientists_podcast.xml

There don't seem to be any obvious naming conflicts between the feeds or
the MP3 that could explain the behavior. I don't have a way to reproduce
it, but it has happened to me multiple times with different Podcasts.

** Affects: rhythmbox (Ubuntu)
 Importance: Undecided
 Status: New

-- 
Two unrelated Podcast entries get mixed into one
https://bugs.launchpad.net/bugs/525535
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 31746] Re: Difficult to find out how to use multiple profiles at the same time

2009-12-08 Thread Ingo Ruhnke
I second this, the current behavior when running multiple profiles is
just plain broken and confusing. Command line options shouldn't act
completly different depending on if an application is already running.
And the workaround of -no-remote doesn't really fix this issue, as the
intended behavior of:

firefox -P MyProfile http://www.example.org;

should be:

1) If no Firefox is running, launch one using MyProfile opening 
http://www.example.org
2) If Firefox with MyProfile is already running, open a new window of it 
displaying http://www.example.org
3) If only a Firefox with a different profile is already running, ignore it and 
act as in 1)

-no-remote gives you 1) and 3), but gives you a:

Firefox is already running, but is not responding. To open a new
window, you must first close the existing Firefox process, or restart
your system.

error message on 2).

And having firefox  -ProfileManager just open a new window and not
showing the ProfileManger really can't be considered the right
behavior, as its so obviously wrong.

On top of that -a and -no-remote are really just ugly implementation
details that shouldn't be required to simply run two profiles at the
same time.

-- 
Difficult to find out how to use multiple profiles at the same time
https://bugs.launchpad.net/bugs/31746
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 474823] Re: USB-Harddisk resets after about 30 minutes

2009-11-29 Thread Ingo Ruhnke
Same/Similar problem here, interestingly the resets happen exactly every
30 or 60min. The USB harddrive still works as normaly, but the reset
wakes it up out of being suspended which can get a little annoying.

/var/log/messages.1:Nov 24 00:35:04 localhost kernel: [32462.112023] usb 2-2: 
reset high speed USB device using ehci_hcd and address 4
/var/log/messages.1:Nov 24 01:35:04 localhost kernel: [36062.104030] usb 2-2: 
reset high speed USB device using ehci_hcd and address 4
/var/log/messages.1:Nov 24 02:35:04 localhost kernel: [39662.112026] usb 2-2: 
reset high speed USB device using ehci_hcd and address 4
/var/log/messages.1:Nov 24 03:35:04 localhost kernel: [43262.101674] usb 2-2: 
reset high speed USB device using ehci_hcd and address 4
/var/log/messages.1:Nov 24 04:35:04 localhost kernel: [46862.112027] usb 2-2: 
reset high speed USB device using ehci_hcd and address 4
/var/log/messages.1:Nov 24 05:35:04 localhost kernel: [50462.116031] usb 2-2: 
reset high speed USB device using ehci_hcd and address 4
/var/log/messages.1:Nov 24 06:35:04 localhost kernel: [54062.118087] usb 2-2: 
reset high speed USB device using ehci_hcd and address 4
/var/log/messages.1:Nov 24 07:05:04 localhost kernel: [55862.100021] usb 2-2: 
reset high speed USB device using ehci_hcd and address 4

-- 
USB-Harddisk resets after about 30 minutes
https://bugs.launchpad.net/bugs/474823
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs