Bug#661222: libcegui-mk2-doc: CSS files missing for libcegui API documentation

2012-02-25 Thread Ragnar Ouchterlony
Package: libcegui-mk2-doc
Version: 0.7.5-8
Severity: normal

Hi,

I noticed that the CSS files for the API documentation is missing,
making the reading of the documentation a bit more inconvenient,

/Ragnar

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

Kernel: Linux 3.2.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#651092: Duplicate

2011-12-29 Thread Ragnar Ouchterlony
On Thu, 2011-12-22 at 18:00 +0100, Sébastien Delafond wrote:
 Hi Ragnar,
 
 do you feel it's best to mark this bug as a duplicate of 609004, or to
 leave it as is ?

Hi Sebastien,

Either way works for me. I guess this should probably be a feature
request for the kernel packages with these two bugs depending on that
feature request.

/Ragnar



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#651088: god: God requires rubygems, but does not depend on it

2011-12-05 Thread Ragnar Ouchterlony
Package: god
Version: 0.7.18-2
Severity: normal

After installing god, I got an error when running god:

  $ god --help
  /usr/bin/god:7:in `require': no such file to load -- rubygems (LoadError)
  from /usr/bin/god:7

Then I installed the rubygems package and tried again and everything works
as expected.

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

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

Versions of packages god depends on:
ii  libc6   2.13-21
ii  libruby1.8  1.8.7.352-2
ii  ruby1.8 1.8.7.352-2

god recommends no packages.

god suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#651092: god: Process events not working due to missing kernel features

2011-12-05 Thread Ragnar Ouchterlony
Package: god
Version: 0.7.18-2
Severity: important

Process event handling is not available for god:

  # god check
  using event system: netlink
  starting event handler
  forking off new process
  forked process with pid = 7678
  killing process
  [fail] never received process exit event

For this to work the kernel needs to be configured with
CONFIG_PROC_EVENTS=y and CONFIG_CONNECTOR=y.

Debian default kernel has CONFIG_CONNECTOR=m and CONFIG_PROC_EVENTS not
set.

See also bug 609004 for the cgroup-bin package.

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

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

Versions of packages god depends on:
ii  libc6   2.13-21
ii  libruby1.8  1.8.7.352-2
ii  ruby1.8 1.8.7.352-2

god recommends no packages.

god suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#567213: Patch for EV_SYN support in g15daemon

2010-06-27 Thread Ragnar Ouchterlony
Package: g15daemon
Version: 1.9.5.3-8
Severity: normal

The mentioned patch does not apply against 1.9.5.3-8. The attached patch
does apply and works for me (so far).

-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)

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

Versions of packages g15daemon depends on:
ii  libc6   2.11.2-1 Embedded GNU C Library: Shared lib
ii  libfreetype62.3.11-1 FreeType 2 font engine, shared lib
ii  libg15-11.2.7-2  Library for interfacing with the L
ii  libg15daemon-client11.9.5.3-8Development packages for libg15dae
ii  libg15render1   1.3.0~svn316-2.1 Library for interfacing with the L
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

Versions of packages g15daemon recommends:
ii  xkb-data  1.8-1  X Keyboard Extension (XKB) configu

g15daemon suggests no packages.

-- no debconf information
--- g15daemon-1.9.5.3.orig/plugins/g15_plugin_uinput.c	2008-01-24 13:51:07.0 +0100
+++ g15daemon-1.9.5.3/plugins/g15_plugin_uinput.c	2010-06-27 22:18:40.0 +0200
@@ -125,6 +125,13 @@
 event.value = G15KEY_DOWN;
 
 write (uinp_fd, event, sizeof(event));
+
+/* Need to write sync event */
+memset(event, 0, sizeof(event));
+event.type = EV_SYN;
+event.code = SYN_REPORT;
+event.value = 0;
+write(uinp_fd, event, sizeof(event));
 }
 
 static void g15_uinput_keyup(unsigned char code)
@@ -137,6 +144,13 @@
 event.value = G15KEY_UP;
 
 write (uinp_fd, event, sizeof(event));
+
+/* Need to write sync event */
+memset(event, 0, sizeof(event));
+event.type = EV_SYN;
+event.code = SYN_REPORT;
+event.value = 0;
+write(uinp_fd, event, sizeof(event));
 }
 
 void (*keyup)(unsigned char code) = g15_uinput_keyup;


Bug#429869: xmms2-plugin-sid: xmms2d fails to load sid plugin

2007-06-20 Thread Ragnar Ouchterlony
Package: xmms2-plugin-sid
Version: 0.2DrJekyll-3
Severity: important

Xmms2d doesn't seem to be able to open the sid plugin. And that triggers
that it is unable to load sid files.

From the log at ~/.cache/xmms2/xmms2d.log:

--- Starting new xmms2d ---
 INFO: ../src/xmms/log.c:36: Initialized logging system :)
 INFO: ../src/xmms/config.c:760: No configfile specified, using default values.
 INFO: ../src/xmms/ipc.c:893: IPC listening on 'unix:///tmp/xmms-ipc-ragnar'.
ERROR: ../src/xmms/plugin.c:440: Failed to open plugin 
/usr/lib/xmms2/libxmms_sid.so: /usr/lib/xmms2/libxmms_sid.so: undefined symbol: 
sidplay_wrapper_error
 INFO: ../src/xmms/main.c:499: Using output plugin: alsa
ERROR: ../src/plugins/alsa/alsa.c:271: Sample format (0) not available for 
playback.
ERROR: ../src/plugins/alsa/alsa.c:271: Sample format (0) not available for 
playback.
ERROR: ../src/plugins/alsa/alsa.c:271: Sample format (0) not available for 
playback.
ERROR: ../src/plugins/alsa/alsa.c:271: Sample format (0) not available for 
playback.
ERROR: ../src/plugins/alsa/alsa.c:271: Sample format (0) not available for 
playback.
ERROR: ../src/plugins/alsa/alsa.c:271: Sample format (0) not available for 
playback.
ERROR: ../src/plugins/alsa/alsa.c:271: Sample format (0) not available for 
playback.
[...]
 INFO: ../src/xmms/main.c:319: Installing scripts from 
/usr/share/xmms2/scripts/startup.d
ERROR: ../src/xmms/xform.c:1273: Couldn't set up chain for 
'file:///tmp/Delta.sid' (3)


-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.20-1ro
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages xmms2-plugin-sid depends on:
ii  libc6  2.5-11GNU C Library: Shared libraries
ii  libglib2.0-0   2.12.12-1 The GLib library of C routines
ii  libresid-builder0c2a   2.1.1-5   SID chip emulation class based on 
ii  libsidplay22.1.1-5   SID (MOS 6581) emulation library
ii  xmms2-core 0.2DrJekyll-3 XMMS2 - core package

xmms2-plugin-sid recommends no packages.

-- no debconf information


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



Bug#377516: php-elisp: Font-lock problem causes php-mode to abort to load when loading a php file

2006-07-09 Thread Ragnar Ouchterlony
Package: php-elisp
Version: 1.1.0-2
Severity: important

When loading a .php-file, php-mode fails to load with the following error on 
emacs-snapshot:

File mode specification error: (error Font-lock trying to use keywords before 
setting them up)

If I try again I get the following error:

font-lock-compile-keywords: Font-lock trying to use keywords before setting 
them up

If I (subsequently) load /usr/share/emacs/site-lisp/php-elisp/php-mode.el
into a buffer and run eval-buffer on it, it works for some reason.

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing'), (50, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)

Versions of packages php-elisp depends on:
ii  emacs-snapshot-gtk [emacsen 1:20060707-1 The GNU Emacs editor (with GTK+ 2.
ii  emacs21 [emacsen]   21.4a-3  The GNU Emacs editor

php-elisp recommends no packages.

-- no debconf information


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



Bug#337347: sidplay: Can it be gcc-4.0?

2005-12-15 Thread Ragnar Ouchterlony
Package: sidplay
Version: 2.0.9-2+b1
Followup-For: Bug #337347

I also have the same problems with too fast playback (around 20% too fast,
I would estimate).

I also found this bug on the sidplay2 bug tracker:
http://sourceforge.net/tracker/index.php?func=detailaid=1241949group_id=9266atid=109266

It seems to indicate that the problem is linked with gcc-4.0. It would be
much appreciated if there was a fix for this problem.

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing'), (50, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)

Versions of packages sidplay depends on:
ii  libc6 2.3.5-8GNU C Library: Shared libraries an
ii  libgcc1   1:4.0.2-5  GCC support library
ii  libresid-builder0c2a  2.1.1-3.1  SID chip emulation class based on 
ii  libsidplay2   2.1.1-3.1  SID (MOS 6581) emulation library
ii  libsidutils0  2.1.1-3.1  utility functions for SID players
ii  libstdc++64.0.2-5The GNU Standard C++ Library v3

sidplay recommends no packages.

-- no debconf information


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