Bug#931739: quassel-core: key too small error after upgrade to buster

2019-07-18 Thread RedOmen
I tried to use the instructions here:
https://bugs.quassel-irc.org/projects/quassel-irc/wiki/Client-Core_SSL_support
but could not get it to work.

I ended up having to remove all the /var/lib/quassel/ files and running
dpkg-reconfigure quassel-core and manually recreating my accounts but
that seems to have fixed it.



Bug#901858: nheko segfault on login

2018-12-01 Thread RedOmen
On 10/7/18 6:56 PM, Hubert Chathi wrote:
> A much more recent version of nheko is available, which has many
> changes.  Can you retry with the latest version (0.6.1) and see if it
> still happens?  Maybe also try with the latest version of liblmdb0.

I tried it again now that 0.6.1-3 is in Testing and it seems to be
working just fine now, thanks.



Bug#798521: pioneers: Cannot play the last development card.

2015-09-10 Thread redomen
Package: pioneers
Version: 15.3-1
Severity: normal

Dear Maintainer,

With the gtk game client if I have two different development cards and I use 
one I can no longer play the last card as it is always grayed out.  It does not 
matter how many of my turns have passed or what type of card it is.  If it is 
the last card I can never play it until I get a 2nd card of a different type.

-- System Information:
Debian Release: stretch/sid
  APT prefers testing
  APT policy: (800, 'testing')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.1.4a (SMP w/8 CPU cores; PREEMPT)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)

Versions of packages pioneers depends on:
ii  libavahi-client3 0.6.31-5
ii  libavahi-common3 0.6.31-5
ii  libavahi-glib1   0.6.31-5
ii  libc62.19-19
ii  libcairo21.14.2-2
ii  libgdk-pixbuf2.0-0   2.31.5-1
ii  libglib2.0-0 2.44.1-1.1
ii  libgnome-2-0 2.32.1-5
ii  libgtk-3-0   3.16.6-1
ii  libnotify4   0.7.6-2
ii  libpango-1.0-0   1.36.8-3
ii  libpangocairo-1.0-0  1.36.8-3
ii  librsvg2-common  2.40.10-1
ii  pioneers-console 15.3-1
ii  pioneers-data15.3-1

Versions of packages pioneers recommends:
ii  beep  1.3-3+b1
ii  yelp  3.16.1-1

Versions of packages pioneers suggests:
pn  pioneers-metaserver  

-- no debconf information



Bug#744733: mumble: client crashes opening settings with push-to-talk enabled

2014-04-17 Thread RedOmen

On 04/14/2014 02:52 PM, Chris Knadle wrote:

On Monday, April 14, 2014 12:30:40 RedOmen wrote:

On 04/14/2014 10:30 AM, Chris Knadle wrote:

On Sunday, April 13, 2014 20:58:35 redomen wrote:

Package: mumble
Version: 1.2.5-245-g221a5d7-1
Severity: normal

Dear Maintainer,

Everything was fine until a recent system update and now when running the
mumble client and selecting settings from the dropdown menu it always
crashes. If I delete my user config files and start clean I am able to
access settings but if I attempt to assign my push-to-talk key (my super
key) it crashes in the same place again.

I'm able to set a push-to-talk key, so I'm not able to reproduce this bug.
Sorry to hear that you're having trouble -- I'd like to try to narrow down
what's causing it.

What window manager / desktop environment are you using?

-- Chris

--
Chris Knadle
chris.kna...@coredump.us

I'm using XFCE4.  I have no problems binding the super key in the window
manager settings although currently nothing is assigned to it.

Just a reminder: remember to CC 744...@bugs.debian.org concerning this bug.

Okay.  It looks like you're using Testing but have not included the Wheezy
(i.e. stable) repo; I've heard that that can cause some unusual bugs since
there are a few packages that only exist in Stable.  Also since you've got a
foreign architecture available (i386), double-check that you've got the amd64
mumble package loaded, not the i386 package.

I have an amd64 Debian Testing VM loaded, and just tested mumble
1.2.5-245-g221a5d7-1 in XFCE and was able to change the push-to-talk key.
I'm not able to make anything of the gdb output you included either, sorry to
say.

So the best suggestion I've got for starters is to add the Debian wheezy repo
and apt-get update + upgrade to see if that pulls in any missing packages.

   -- Chris

--
Chris Knadle
chris.kna...@coredump.us



I poked around in the mumble source and disabled the file system watcher 
in './src/mumble/GlobalShortcut_unix.cpp', rebuilt the client and now 
everything works normally for me again.  I guess if my devices change 
while mumble is running I'll just have to restart it.


--- GlobalShortcut_unix.old 2014-04-17 03:13:06.673746435 -0700
+++ GlobalShortcut_unix.cpp 2014-04-17 03:08:57.696720278 -0700
@@ -51,16 +51,16 @@

 #ifdef Q_OS_LINUX
QString dir = QLatin1String(/dev/input);
-   QFileSystemWatcher *fsw = new 
QFileSystemWatcher(QStringList(dir), this);
-   connect(fsw, SIGNAL(directoryChanged(const QString )), this, 
SLOT(directoryChanged(const QString )));

-   directoryChanged(dir);
+// QFileSystemWatcher *fsw = new 
QFileSystemWatcher(QStringList(dir), this);
+// connect(fsw, SIGNAL(directoryChanged(const QString )), this, 
SLOT(directoryChanged(const QString )));

+// directoryChanged(dir);

if (qsKeyboards.isEmpty()) {
foreach(QFile *f, qmInputDevices)
delete f;
qmInputDevices.clear();

-   delete fsw;
+// delete fsw;
qWarning(GlobalShortcutX: Unable to open any keyboard 
input devices under /dev/input, falling back to XInput);

} else {
return;


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



Bug#744733: mumble: client crashes opening settings with push-to-talk enabled

2014-04-17 Thread RedOmen

On 04/17/2014 06:19 AM, Chris Knadle wrote:

On Thursday, April 17, 2014 03:18:11 RedOmen wrote:

I poked around in the mumble source and disabled the file system watcher
in './src/mumble/GlobalShortcut_unix.cpp', rebuilt the client and now
everything works normally for me again.  I guess if my devices change
while mumble is running I'll just have to restart it.

Okay, please describe this problem a bit more; if I understand you correctly,
while the Mumble client is open you connect something (like a USB keyboard),
and then the Mumble client crashes when you try to open the settings from that
point on?

Thanks very much for the patch -- this will be useful to send to Mumble
upstream if I can understand what the circumstances where it's needed are.

   -- Chris

--
Chris Knadle
chris.kna...@coredump.us

I'm not plugging anything new in, my problem is it is crashing when 
trying to assign any keyboard key.
Now that I'm a bit more awake I see that my change resulted in 
completely disabling reading from /dev/input and instead reverts to 
using Xinput.  So there is something about reading directly from the 
input device that my system doesn't like.



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



Bug#744733: mumble: client crashes opening settings with push-to-talk enabled

2014-04-17 Thread RedOmen

On 04/17/2014 11:02 AM, Chris Knadle wrote:

Huh.  Yeah I remember something along these lines coming up before.  Had a
look -- there's also another open bug #610214 that could possibly be related.
Just to check: would you happen to have a Logitech G15/G11 keyboard or
Logitech Z-10 speakers, but don't have the g15daemon package loaded?

Thank you very much for working to debug this further.

There's an upstream bug report of this happening on Windows, though the
circumstances likewise seem to be specific:

https://github.com/mumble-voip/mumble/issues/1187

When I get a chance I'll have a look through the upstream Git commits to see
if I can see anything helpful there.

   -- Chris

--
Chris Knadle
chris.kna...@coredump.us



No, I have a simple ps/2 101 keyboard and a USB Roccat mouse.


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



Bug#744733: mumble: client crashes opening settings with push-to-talk enabled

2014-04-13 Thread redomen
Package: mumble
Version: 1.2.5-245-g221a5d7-1
Severity: normal

Dear Maintainer,

Everything was fine until a recent system update and now when running the 
mumble client and selecting settings from the dropdown menu it always crashes.
If I delete my user config files and start clean I am able to access settings 
but if I attempt to assign my push-to-talk key (my super key) it crashes in the 
same place again.


gdb backtrace:
#0  0x7605e306 in XKeycodeToKeysym () from 
/usr/lib/x86_64-linux-gnu/libX11.so.6
#1  0x55706a0e in ?? ()
#2  0x556c0a1d in ?? ()
#3  0x556c620b in ?? ()
#4  0x74112f6a in 
QStyledItemDelegate::initStyleOption(QStyleOptionViewItem*, QModelIndex const) 
const ()
   from /usr/lib/x86_64-linux-gnu/libQtGui.so.4
#5  0x7411249a in QStyledItemDelegate::sizeHint(QStyleOptionViewItem 
const, QModelIndex const) const ()
   from /usr/lib/x86_64-linux-gnu/libQtGui.so.4
#6  0x740af52e in QTreeView::indexRowSizeHint(QModelIndex const) const 
() from /usr/lib/x86_64-linux-gnu/libQtGui.so.4
#7  0x740b5516 in QTreeViewPrivate::layout(int, bool, bool) () from 
/usr/lib/x86_64-linux-gnu/libQtGui.so.4
#8  0x740bc40d in QTreeView::doItemsLayout() () from 
/usr/lib/x86_64-linux-gnu/libQtGui.so.4
#9  0x740b3ca6 in QTreeViewPrivate::updateScrollBars() () from 
/usr/lib/x86_64-linux-gnu/libQtGui.so.4
#10 0x740bcdf7 in QTreeView::updateGeometries() () from 
/usr/lib/x86_64-linux-gnu/libQtGui.so.4
#11 0x740bb979 in QTreeView::timerEvent(QTimerEvent*) () from 
/usr/lib/x86_64-linux-gnu/libQtGui.so.4
#12 0x7331f931 in QObject::event(QEvent*) () from 
/usr/lib/x86_64-linux-gnu/libQtCore.so.4
#13 0x73bcfceb in QWidget::event(QEvent*) () from 
/usr/lib/x86_64-linux-gnu/libQtGui.so.4
#14 0x73f6ddfe in QFrame::event(QEvent*) () from 
/usr/lib/x86_64-linux-gnu/libQtGui.so.4
#15 0x73fea2cb in QAbstractScrollArea::event(QEvent*) () from 
/usr/lib/x86_64-linux-gnu/libQtGui.so.4
#16 0x7407ccdb in QAbstractItemView::event(QEvent*) () from 
/usr/lib/x86_64-linux-gnu/libQtGui.so.4
#17 0x73b806cc in QApplicationPrivate::notify_helper(QObject*, QEvent*) 
() from /usr/lib/x86_64-linux-gnu/libQtGui.so.4
#18 0x73b86d40 in QApplication::notify(QObject*, QEvent*) () from 
/usr/lib/x86_64-linux-gnu/libQtGui.so.4
#19 0x733074ed in QCoreApplication::notifyInternal(QObject*, QEvent*) 
() from /usr/lib/x86_64-linux-gnu/libQtCore.so.4
#20 0x73337203 in ?? () from /usr/lib/x86_64-linux-gnu/libQtCore.so.4
#21 0x733344f1 in ?? () from /usr/lib/x86_64-linux-gnu/libQtCore.so.4
#22 0x74fa1e04 in g_main_context_dispatch () from 
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#23 0x74fa2048 in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#24 0x74fa20ec in g_main_context_iteration () from 
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#25 0x73334725 in 
QEventDispatcherGlib::processEvents(QFlagsQEventLoop::ProcessEventsFlag) () 
from /usr/lib/x86_64-linux-gnu/libQtCore.so.4
#26 0x73c1e776 in ?? () from /usr/lib/x86_64-linux-gnu/libQtGui.so.4
#27 0x733060bf in 
QEventLoop::processEvents(QFlagsQEventLoop::ProcessEventsFlag) () from 
/usr/lib/x86_64-linux-gnu/libQtCore.so.4
#28 0x733063b5 in 
QEventLoop::exec(QFlagsQEventLoop::ProcessEventsFlag) () from 
/usr/lib/x86_64-linux-gnu/libQtCore.so.4
#29 0x74023d4c in QDialog::exec() () from 
/usr/lib/x86_64-linux-gnu/libQtGui.so.4
#30 0x55610cb9 in ?? ()
#31 0x557411aa in ?? ()
#32 0x55741653 in ?? ()
#33 0x7331b978 in QMetaObject::activate(QObject*, QMetaObject const*, 
int, void**) () from /usr/lib/x86_64-linux-gnu/libQtCore.so.4
#34 0x73b7a572 in QAction::triggered(bool) () from 
/usr/lib/x86_64-linux-gnu/libQtGui.so.4
#35 0x73b7bf43 in QAction::activate(QAction::ActionEvent) () from 
/usr/lib/x86_64-linux-gnu/libQtGui.so.4
#36 0x73fa62f9 in ?? () from /usr/lib/x86_64-linux-gnu/libQtGui.so.4
#37 0x73faa829 in ?? () from /usr/lib/x86_64-linux-gnu/libQtGui.so.4
#38 0x73bcfc9a in QWidget::event(QEvent*) () from 
/usr/lib/x86_64-linux-gnu/libQtGui.so.4
#39 0x73fae62b in QMenu::event(QEvent*) () from 
/usr/lib/x86_64-linux-gnu/libQtGui.so.4
#40 0x73b806cc in QApplicationPrivate::notify_helper(QObject*, QEvent*) 
() from /usr/lib/x86_64-linux-gnu/libQtGui.so.4
#41 0x73b86e7d in QApplication::notify(QObject*, QEvent*) () from 
/usr/lib/x86_64-linux-gnu/libQtGui.so.4
#42 0x733074ed in QCoreApplication::notifyInternal(QObject*, QEvent*) 
() from /usr/lib/x86_64-linux-gnu/libQtCore.so.4
#43 0x73b86633 in QApplicationPrivate::sendMouseEvent(QWidget*, 
QMouseEvent*, QWidget*, QWidget*, QWidget**, QPointerQWidget, bool) ()
 from /usr/lib/x86_64-linux-gnu/libQtGui.so.4
#44 0x73bf862c in ?? () from /usr/lib/x86_64-linux-gnu/libQtGui.so.4
#45 0x73bf6d6c in 

Bug#714237: xfce4-weather-plugin: Option to change orientation of scrollbox

2013-06-26 Thread redomen
Package: xfce4-weather-plugin
Version: 0.8.3-1
Severity: wishlist

Dear Maintainer,
I'd like to see an option to change the orientation of the scrollbox as 
it looks rather odd rotated this way on a vertical panel:
http://picpaste.com/pics/weather.1372307291.png


-- System Information:
Debian Release: jessie/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.9.0b (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages xfce4-weather-plugin depends on:
ii  libatk1.0-0 2.8.0-2
ii  libc6   2.17-3
ii  libcairo2   1.12.14-4
ii  libfontconfig1  2.9.0-7.1
ii  libfreetype62.4.9-1.1
ii  libgdk-pixbuf2.0-0  2.28.2-1
ii  libglib2.0-02.36.1-2build1
ii  libgtk2.0-0 2.24.18-1
ii  libpango1.0-0   1.32.5-5+b1
ii  libsoup2.4-12.38.1-2
ii  libxfce4ui-1-0  4.10.0-3
ii  libxfce4util6   4.10.1-1
ii  libxml2 2.8.0+dfsg1-7+nmu1
ii  xfce4-panel 4.10.1-1

xfce4-weather-plugin recommends no packages.

xfce4-weather-plugin 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#698113: deluge: unhandled error and segmentation fault

2013-05-28 Thread redomen
Package: deluge
Followup-For: Bug #698113

Same problem here, started happening very frequently after glibc-2.17 update.


-- System Information:
Debian Release: jessie/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.9.0b (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages deluge depends on:
ii  deluge-gtk 1.3.3-2+nmu1
ii  python 2.7.3-5
ii  python-libtorrent  0.15.10-1+b1

deluge recommends no packages.

deluge 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#702717: inkscape: crash using Generate From Path extension

2013-03-10 Thread redomen
Package: inkscape
Version: 0.48.3.1-1.3
Severity: normal

If I create two objects, select them and then use Extensions- Generate from 
path- Pattern along Path and hit apply then
inkscape crashes every time with:

(inkscape:32651): libgnomevfs-CRITICAL **: gnome_vfs_uri_is_local: assertion 
`uri != NULL' failed

** (inkscape:32651): WARNING **: Invalid URI

** (inkscape:32651): WARNING **: Error:  Could not open file 
'/tmp/ink_ext_XX.svg7K4BTW' with VFS


(inkscape:32651): glibmm-ERROR **: 
unhandled exception (type std::exception) in signal handler:
what: Open failed

Trace/breakpoint trap




-- System Information:
Debian Release: 7.0
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.6.7a (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages inkscape depends on:
ii  gconf-service   3.2.5-1+build1
ii  libaspell15 0.60.7~20110707-1
ii  libatk1.0-0 2.4.0-2
ii  libatkmm-1.6-1  2.22.6-1
ii  libc6   2.13-38
ii  libcairo2   1.12.2-3
ii  libcairomm-1.0-11.10.0-1
ii  libfontconfig1  2.9.0-7.1
ii  libfreetype62.4.9-1.1
ii  libgc1c21:7.1-9.1
ii  libgcc1 1:4.7.2-5
ii  libgconf-2-43.2.5-1+build1
ii  libgdk-pixbuf2.0-0  2.26.1-1
ii  libglib2.0-02.33.12+really2.32.4-5
ii  libglibmm-2.4-1c2a  2.32.1-1
ii  libgnomevfs2-0  1:2.24.4-1
ii  libgomp14.7.2-5
ii  libgsl0ldbl 1.15+dfsg.2-2
ii  libgtk2.0-0 2.24.10-2
ii  libgtkmm-2.4-1c2a   1:2.24.2-1
ii  libgtkspell02.0.16-1
ii  liblcms11.19.dfsg-1.2
ii  libmagick++58:6.7.7.10-5
ii  libmagickcore5  8:6.7.7.10-5
ii  libpango1.0-0   1.30.0-1
ii  libpangomm-1.4-12.28.4-1
ii  libpng12-0  1.2.49-1
ii  libpoppler-glib80.18.4-5
ii  libpoppler190.18.4-5
ii  libpopt01.16-7
ii  libsigc++-2.0-0c2a  2.2.10-0.2
ii  libstdc++6  4.7.2-5
ii  libwpd-0.9-90.9.4-3
ii  libwpg-0.2-20.2.1-1
ii  libx11-62:1.5.0-1
ii  libxml2 2.8.0+dfsg1-7
ii  libxslt1.1  1.1.26-14
ii  zlib1g  1:1.2.7.dfsg-13

Versions of packages inkscape recommends:
ii  aspell   0.60.7~20110707-1
ii  imagemagick  8:6.7.7.10-5
ii  libwmf-bin   0.2.8.4-10.3
ii  perlmagick   8:6.7.7.10-5
ii  pstoedit 3.60-2+b1

Versions of packages inkscape suggests:
ii  dia  0.97.2-8
ii  libgnomevfs2-extra   1:2.24.4-1
pn  libsvg-perl  none
pn  libxml-xql-perl  none
ii  python   2.7.3-4
ii  python-lxml  2.3.2-1
ii  python-numpy 1:1.6.2-1
pn  python-uniconvertor  none
ii  ruby1.8 [ruby]   1.8.7.358-6
pn  skencil  none

-- 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#649223: exo-utils: exo-open does not handle file:/// URLs correctly

2013-01-25 Thread redomen
Package: exo-utils
Version: 0.6.2-5
Followup-For: Bug #649223

Same problem here using XFCE with rox-filer.
For example running exo-open file:///home/ sends the full url to the browser
which doesn't understand the 'file://' part.  gnome-open however strips that
out and properly sends just the directory.

-- System Information:
Debian Release: 7.0
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.6.7a (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages exo-utils depends on:
ii  libatk1.0-0 2.4.0-2
ii  libc6   2.13-37
ii  libexo-1-0  0.6.2-5
ii  libgdk-pixbuf2.0-0  2.26.1-1
ii  libglib2.0-02.33.12+really2.32.4-3
ii  libgtk2.0-0 2.24.10-2
ii  libpango1.0-0   1.30.0-1
ii  libxfce4util4   4.8.2-1

exo-utils recommends no packages.

exo-utils 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#664893: dselect: no support for multi-arch

2012-07-01 Thread redomen
Package: dselect
Followup-For: Bug #664893

I've said this before, but as long as dselect is part of dpkg, it *is* 
and *will* be maintained.

Thanks you for this. I'm using aptitude now for multiarch but I really 
miss dselect for it's speed and easy navigation.

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

Kernel: Linux 3.4.0b (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages dselect depends on:
ii  dpkg  1.16.4.3
ii  libc6 2.13-33
ii  libgcc1   1:4.7.0-8
ii  libncursesw5  5.9-9
ii  libstdc++64.7.0-8
ii  libtinfo5 5.9-9

dselect recommends no packages.

Versions of packages dselect suggests:
ii  perl  5.14.2-12

-- Configuration Files:
/etc/dpkg/dselect.cfg changed [not included]

-- 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#675708: audacious: Mp3s with a bitrate of 64kbps or less stutter badly on playback

2012-06-02 Thread redomen
Package: audacious
Version: 3.2.2-2
Severity: normal

When playing any mp3 file with a low bitrate (64kbps or less) the sound 
stutters/cracks very badly.  Higher bitrate files and other media types 
have no problems.  The low bitrate files play just fine in VLC and mplayer.

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

Kernel: Linux 3.4.0a (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages audacious depends on:
ii  audacious-plugins3.2.2-1
ii  dbus 1.5.12-1
ii  dbus-x11 1.5.12-1
ii  gtk2-engines-pixbuf  2.24.10-1
ii  libaudclient23.2.2-2
ii  libaudcore1  3.2.2-2
ii  libc62.13-32
ii  libdbus-1-3  1.5.12-1
ii  libdbus-glib-1-2 0.98-1
ii  libgdk-pixbuf2.0-0   2.26.1-1
ii  libglib2.0-0 2.32.3-1
ii  libgtk-3-0   3.4.2-1
ii  libguess11.1-1
ii  libice6  2:1.0.8-2
ii  libsm6   2:1.2.1-2

Versions of packages audacious recommends:
ii  unzip  6.0-6

audacious 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#645376: exo-open drops anchors from URLs

2011-10-16 Thread redomen
Package: exo-utils
Version: 0.6.2-2
Followup-For: Bug #645376

Perhaps this is the same bug?
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=638699

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

Kernel: Linux 3.0.4b (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages exo-utils depends on:
ii  libatk1.0-0 2.2.0-1 
ii  libc6   2.13-21 
ii  libexo-1-0  0.6.2-2 
ii  libgdk-pixbuf2.0-0  2.24.0-1
ii  libglib2.0-02.28.6-1
ii  libgtk2.0-0 2.24.4-3
ii  libpango1.0-0   1.29.4-1
ii  libxfce4util4   4.8.2-1 

exo-utils recommends no packages.

exo-utils 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#645376: xdg-utils: xdg-open drops anchors from URLs

2011-10-14 Thread redomen
Package: xdg-utils
Version: 1.1.0~rc1-2
Severity: normal

Running xdg-open on a URL that contains an anchor only opens the base URL and
does not include the anchor.

For example:
xdg-open 
http://en.wikipedia.org/wiki/Anchor_text#Common_misunderstanding_of_the_concept;

only starts a browser with:
http://en.wikipedia.org/wiki/Anchor_text;

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

Kernel: Linux 2.6.39.3c (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

xdg-utils depends on no packages.

Versions of packages xdg-utils recommends:
ii  libfile-mimeinfo-perl  0.15-2
ii  x11-utils  7.6+3 
ii  x11-xserver-utils  7.6+3 

Versions of packages xdg-utils suggests:
pn  gvfs-bin  none

-- 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#627871: mumble: cannot resolve SSLv2_client_method

2011-05-24 Thread redomen
Package: mumble
Version: 1.2.3-2+b2
Severity: normal

Ever since the libqt4 update to 4.7.3-1 when running mumble I get:
QSslSocket: cannot resolve SSLv2_client_method
QSslSocket: cannot resolve SSLv2_server_method
socket(): Address family not supported by protocol

Mumble starts up with the certificate wizard every time now and it wont use 
the existing cert or save any new one that is created.

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

Kernel: Linux 2.6.38.3a (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages mumble depends on:
ii  gconf2   2.28.1-6GNOME configuration database syste
ii  libasound2   1.0.23-4shared library for ALSA applicatio
ii  libavahi-client3 0.6.30-3Avahi client library
ii  libavahi-common3 0.6.30-3Avahi common library
ii  libavahi-compat-libdnssd10.6.30-3Avahi Apple Bonjour compatibility 
ii  libc62.13-4  Embedded GNU C Library: Shared lib
ii  libcelt0-0   0.7.1-1 The CELT codec runtime library
ii  libg15daemon-client1 1.9.5.3-8.1 Development packages for libg15dae
ii  libgcc1  1:4.6.0-2   GCC support library
ii  libprotobuf7 2.4.0a-2protocol buffers C++ library
ii  libpulse00.9.21-4PulseAudio client libraries
ii  libqt4-dbus  4:4.7.3-1   Qt 4 D-Bus module
ii  libqt4-network   4:4.7.3-1   Qt 4 network module
ii  libqt4-sql   4:4.7.3-1   Qt 4 SQL module
ii  libqt4-sql-sqlite4:4.7.3-1   Qt 4 SQLite 3 database driver
ii  libqt4-svg   4:4.7.3-1   Qt 4 SVG module
ii  libqt4-xml   4:4.7.3-1   Qt 4 XML module
ii  libqtcore4   4:4.7.3-1   Qt 4 core module
ii  libqtgui44:4.7.3-1   Qt 4 GUI module
ii  libsndfile1  1.0.24-1Library for reading/writing audio 
ii  libspeechd2  0.7.1-6 Speech Dispatcher: Shared librarie
ii  libspeex11.2~rc1-1   The Speex codec runtime library
ii  libspeexdsp1 1.2~rc1-1   The Speex extended runtime library
ii  libssl1.0.0  1.0.0d-2SSL shared libraries
ii  libstdc++6   4.6.0-2 The GNU Standard C++ Library v3
ii  libx11-6 2:1.4.3-1   X11 client-side library
ii  libxi6   2:1.4.2-1   X11 Input extension library
ii  lsb-release  3.2-27  Linux Standard Base version report

Versions of packages mumble recommends:
ii  speech-dispatcher 0.7.1-6Common interface to speech synthes

Versions of packages mumble suggests:
ii  mumble-11x1.2.3-2+b2 Low latency VoIP client (1.1.x)
pn  mumble-server none (no description available)

-- 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#625794: xfce4-panel: Launcher spacing wrong for Vertical panels with East/West arrows

2011-05-05 Thread redomen
Package: xfce4-panel
Version: 4.8.3-2
Severity: minor
Tags: patch

If you setup a vertical panel with a launcher that has multiple items and the
arrow button position set to East or West then the spacing is incorrectly 
increased instead of subtracted.

plugins/launcher/launcher.c
*** 1275,1281 
if (horizontal)
  p_width += ARROW_BUTTON_SIZE;
else
! p_height += ARROW_BUTTON_SIZE;
break;
  }

--- 1275,1281 
if (horizontal)
  p_width += ARROW_BUTTON_SIZE;
else
! p_height -= ARROW_BUTTON_SIZE;
break;
  }

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

Kernel: Linux 2.6.38.3a (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages xfce4-panel depends on:
ii  exo-utils 0.6.0-3Utility files for libexo
ii  libatk1.0-0   2.0.0-1The ATK accessibility toolkit
ii  libc6 2.11.2-11  Embedded GNU C Library: Shared lib
ii  libcairo2 1.10.2-6   The Cairo 2D vector graphics libra
ii  libdbus-1-3   1.4.6-1simple interprocess messaging syst
ii  libdbus-glib-1-2  0.92-1 simple interprocess messaging syst
ii  libexo-1-00.6.0-3Library with extensions for Xfce
ii  libfontconfig12.8.0-2.2  generic font configuration library
ii  libfreetype6  2.4.4-1FreeType 2 font engine, shared lib
ii  libgarcon-1-0 0.1.7-1freedesktop.org compliant menu imp
ii  libgdk-pixbuf2.0-02.23.3-3   GDK Pixbuf library
ii  libglib2.0-0  2.28.6-1   The GLib library of C routines
ii  libgtk2.0-0   2.24.4-3   The GTK+ graphical user interface 
ii  libice6   2:1.0.7-1  X11 Inter-Client Exchange library
ii  libpango1.0-0 1.28.3-6   Layout and rendering of internatio
ii  libsm62:1.2.0-1  X11 Session Management library
ii  libwnck22 2.30.4-3   Window Navigator Construction Kit 
ii  libx11-6  2:1.4.3-1  X11 client-side library
ii  libxext6  2:1.2.0-2  X11 miscellaneous extension librar
ii  libxfce4ui-1-04.8.0-2widget library for Xfce
ii  libxfce4util4 4.8.1-2Utility functions library for Xfce
ii  libxfconf-0-2 4.8.0-3Client library for Xfce4 configure

xfce4-panel recommends no packages.

xfce4-panel suggests no packages.

-- no debconf information

-- debsums errors found:
debsums: changed file /usr/lib/xfce4/panel/plugins/liblauncher.so (from 
xfce4-panel package)



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



Bug#614842: usbhid-ups exits with: libusb_get_report: error sending control message: Operation not permitted

2011-03-23 Thread redomen
Package: nut
Version: 2.6.0-1
Followup-For: Bug #614842

Same problem here, was able to fix it with:
http://launchpadlibrarian.net/47612762/debdiff

Looks like it is the same bug from 2.4:
https://bugs.launchpad.net/ubuntu/+source/nut/+bug/572262

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

Kernel: Linux 2.6.37.3e (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages nut depends on:
ii  adduser  3.112+nmu2  add and remove users and groups
ii  libc62.11.2-11   Embedded GNU C Library: Shared lib
ii  libupsclient12.6.0-1 network UPS tools - client library
ii  libusb-0.1-4 2:0.1.12-17 userspace USB programming library
ii  libwrap0 7.6.q-19Wietse Venema's TCP wrappers libra
ii  lsb-base 3.2-27  Linux Standard Base 3.2 init scrip
ii  udev 166-1   /dev/ and hotplug management daemo

Versions of packages nut recommends:
ii  bash-completion   1:1.3-1programmable completion for the ba

Versions of packages nut suggests:
ii  nut-cgi   2.6.0-1network UPS tools - web interface
pn  nut-dev   none (no description available)
pn  nut-snmp  none (no description available)
pn  nut-xml   none (no description available)

-- Configuration Files:
/etc/nut/nut.conf changed [not included]
/etc/nut/ups.conf [Errno 13] Permission denied: u'/etc/nut/ups.conf'
/etc/nut/upsd.conf [Errno 13] Permission denied: u'/etc/nut/upsd.conf'
/etc/nut/upsd.users [Errno 13] Permission denied: u'/etc/nut/upsd.users'
/etc/nut/upsmon.conf [Errno 13] Permission denied: u'/etc/nut/upsmon.conf'
/etc/nut/upssched.conf [Errno 13] Permission denied: u'/etc/nut/upssched.conf'

-- debconf information excluded

-- debsums errors found:
debsums: changed file /lib/nut/usbhid-ups (from nut package)



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



Bug#612085: dies forever when once there was no reachable mailhost

2011-02-22 Thread redomen
Package: xfce4-mailwatch-plugin
Version: 1.1.0-3
Severity: normal

I have the same problem when I have the plugin set to check both a pop3 and
gmail account. It crashes every couple weeks and removes itself from my panel.
I haven't been able to setup a backtrace for it but found this in dmesg:
xfce4-mailwatch[22768] general protection ip:417015 sp:7f898e75fd48 error:0 in 
xfce4-mailwatch-plugin (deleted)[40+1f000]


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

Kernel: Linux 2.6.36.1a (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages xfce4-mailwatch-plugin depends on:
ii  libc6 2.11.2-11  Embedded GNU C Library: Shared lib
ii  libgcrypt11   1.4.5-2LGPL Crypto library - runtime libr
ii  libglib2.0-0  2.24.2-1   The GLib library of C routines
ii  libgnutls26   2.10.4-2   the GNU TLS library - runtime libr
ii  libgtk2.0-0   2.20.1-2   The GTK+ graphical user interface 
ii  libxfce4util4 4.6.2-1Utility functions library for Xfce
ii  libxfcegui4-4 4.6.4-1Basic GUI C functions for Xfce4
ii  xfce4-panel   4.6.4-1The Xfce4 desktop environment pane

xfce4-mailwatch-plugin recommends no packages.

xfce4-mailwatch-plugin 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#575512: spring: missing interfaces in mod

2010-03-26 Thread redomen
Package: spring
Version: 0.81.2+dfsg1-1
Severity: normal

Some mods like Complete Annihilation are missing much of the user interface.
I discovered this was due to a missing FreeSansBold.otf file that is
included with spring sources but not the debian package.  Copying it to
/usr/share/games/spring/fonts/ fixed the problem.

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

Kernel: Linux 2.6.32.3a (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages spring depends on:
ii  libboost-program-option 1.40.0-6+b1  program options library for C++
ii  libboost-regex1.40.01.40.0-6+b1  regular expression library for C++
ii  libboost-signals1.40.0  1.40.0-6+b1  managed signals and slots library 
ii  libboost-system1.40.0   1.40.0-6+b1  Operating system (e.g. diagnostics
ii  libboost-thread1.40.0   1.40.0-6+b1  portable C++ multi-threading
ii  libc6   2.10.2-6 Embedded GNU C Library: Shared lib
ii  libdevil1c2 1.7.8-6  Cross-platform image loading and m
ii  libfreetype62.3.11-1 FreeType 2 font engine, shared lib
ii  libgcc1 1:4.4.2-9GCC support library
ii  libgl1-mesa-glx [libgl1 7.7-4A free implementation of the OpenG
ii  libglew1.5  1.5.1-8  The OpenGL Extension Wrangler - ru
ii  libglu1-mesa [libglu1]  7.7-4The OpenGL utility library (GLU)
ii  libogg0 1.1.4~dfsg-2 Ogg bitstream library
ii  libopenal1  1:1.11.753-1 Software implementation of the Ope
ii  libsdl1.2debian 1.2.13-5 Simple DirectMedia Layer
ii  libstdc++6  4.4.2-9  The GNU Standard C++ Library v3
ii  libvorbis0a 1.2.3-3  The Vorbis General Audio Compressi
ii  libvorbisfile3  1.2.3-3  The Vorbis General Audio Compressi
ii  libx11-62:1.3.3-2X11 client-side library
ii  libxcursor1 1:1.1.10-2   X cursor management library
ii  spring-common   0.81.2+dfsg1-1   a modern full-3D RTS game engine (
ii  ttf-freefont20090104-5   Freefont Serif, Sans and Mono True
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

Versions of packages spring recommends:
ii  springlobby [spring-lobby]0.63-3 single/multiplayer lobby for the S

Versions of packages spring suggests:
pn  spring-maps-deltasiege | spri none (no description available)
pn  spring-mods-kernelpanic | spr none (no description available)

-- 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#526335: psi locks up on writing a message

2009-05-12 Thread redomen
Package: psi
Version: 0.12.1-1
Severity: normal


The same program freeze happens to me unless spell check is disabled 
however I *do* have aspell installed.
This problem only came up after the update to QT 4.5

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

Kernel: Linux 2.6.29.1 (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages psi depends on:
ii  libaspell150.60.6-1  GNU Aspell spell-checker runtime l
ii  libc6  2.9-4 GNU C Library: Shared libraries
ii  libgcc11:4.4.0-4 GCC support library
ii  libqca22.0.0-4   libraries for the Qt Cryptographic
ii  libqca2-plugin-ossl0.1~20070904-3QCA OSSL plugin for libqca2
ii  libqt4-dbus4.5.1-2   Qt 4 D-Bus module
ii  libqt4-network 4.5.1-2   Qt 4 network module
ii  libqt4-qt3support  4.5.1-2   Qt 3 compatibility library for Qt 
ii  libqt4-xml 4.5.1-2   Qt 4 XML module
ii  libqtcore4 4.5.1-2   Qt 4 core module
ii  libqtgui4  4.5.1-2   Qt 4 GUI module
ii  libstdc++6 4.4.0-4   The GNU Standard C++ Library v3
ii  libx11-6   2:1.2.1-1 X11 client-side library
ii  libxss11:1.1.3-1 X11 Screen Saver extension library
ii  zlib1g 1:1.2.3.3.dfsg-13 compression library - runtime

Versions of packages psi recommends:
ii  sox   14.2.0-2   Swiss army knife of sound processi

Versions of packages psi suggests:
ii  libqca2-plugin-gnupg  0.1~20070904-2 QCA gnupg plugin for libqca2
pn  psi-translations  none (no description available)
ii  xdg-utils 1.0.2-6.1  desktop integration utilities from

-- 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#521194: micropolis: no input

2009-04-03 Thread redomen
Package: micropolis
Version: 0.0.20071228-1
Followup-For: Bug #521194


I have the same problem with the game not accepting any input.  I 
thought maybe it was amd64 related but looks like that is not the case.

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

Kernel: Linux 2.6.28.6 (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages micropolis depends on:
ii  libc6 2.9-4  GNU C Library: Shared libraries
ii  libx11-6  2:1.2-1X11 client-side library
ii  libxext6  2:1.0.4-1  X11 miscellaneous extension librar
ii  libxpm4   1:3.5.7-1  X11 pixmap library
ii  micropolis-data   0.0.20071228-1 real-time city management simulato

micropolis recommends no packages.

micropolis 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#518321: xfce4-panel constantly uses all cpu

2009-03-05 Thread redomen
Package: xfce4-panel
Version: 4.4.2-6
Severity: important

With a default setup xfce4-panel constantly uses 100% of the CPU.
This did not happen in previous versions.

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

Kernel: Linux 2.6.28.6 (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages xfce4-panel depends on:
ii  exo-utils  0.3.4-7   Utility files for libexo
ii  libatk1.0-01.22.0-1  The ATK accessibility toolkit
ii  libc6  2.7-18GNU C Library: Shared libraries
ii  libcairo2  1.8.6-2   The Cairo 2D vector graphics libra
ii  libexo-0.3-0   0.3.4-7   Library with extensions for Xfce
ii  libfontconfig1 2.6.0-3   generic font configuration library
ii  libfreetype6   2.3.7-2   FreeType 2 font engine, shared lib
ii  libglib2.0-0   2.18.4-2  The GLib library of C routines
ii  libgtk2.0-02.12.12-1 The GTK+ graphical user interface 
ii  libice62:1.0.5-1 X11 Inter-Client Exchange library
ii  libpango1.0-0  1.22.4-2  Layout and rendering of internatio
ii  libpixman-1-0  0.14.0-1  pixel-manipulation library for X a
ii  libpng12-0 1.2.27-2  PNG library - runtime
ii  libsm6 2:1.1.0-2 X11 Session Management library
ii  libstartup-notificatio 0.9-1 library for program launch feedbac
ii  libx11-6   2:1.1.5-2 X11 client-side library
ii  libxfce4mcs-client34.4.2-4   Client library for Xfce4 configure
ii  libxfce4mcs-manager3   4.4.2-4   Manager library for Xfce4 configur
ii  libxfce4util4  4.4.2-3   Utility functions library for Xfce
ii  libxfcegui4-4  4.4.2-4   Basic GUI C functions for Xfce4
ii  libxrender11:0.9.4-2 X Rendering Extension client libra
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

xfce4-panel recommends no packages.

xfce4-panel 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#515886: wterm: selection buffer does not paste into some applications

2009-02-17 Thread redomen
Package: wterm
Version: 6.2.9-8
Severity: minor

When I select a block of text with the mouse and then attempt to 
middle-click paste it into any libqt4 based application such as kate or 
psi nothing happens.

Perhaps the problem is with libqt4 but when pasting from selected text 
in xterm it does work properly.


-- System Information:
Debian Release: 5.0
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.28.6 (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages wterm depends on:
ii  base-passwd   3.5.20 Debian base system master password
ii  libc6 2.7-18 GNU C Library: Shared libraries
ii  libice6   2:1.0.4-1  X11 Inter-Client Exchange library
ii  libsm62:1.0.3-2  X11 Session Management library
ii  libx11-6  2:1.1.5-2  X11 client-side library
ii  libxpm4   1:3.5.7-1  X11 pixmap library

wterm recommends no packages.

wterm 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#514270: audacious: rolled up playlist adds dragged files to front of playlist

2009-02-05 Thread redomen
Package: audacious
Version: 1.5.1-4
Severity: minor

When the playlist editor is rolled up (Shift-Ctrl-W) and a music file is 
dragged onto it from a file manager (such as Thunar) the file is added 
to the begining of the playlist.  Can this please be changed to add the 
file to the end of the playlist instead?

-- System Information:
Debian Release: 5.0
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.28.2 (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages audacious depends on:
ii  audacious-plugins 1.5.1-2Base plugins for audacious
ii  dbus  1.2.1-5simple interprocess messaging syst
ii  gtk2-engines-pixbuf   2.12.11-4  Pixbuf-based theme for GTK+ 2.x
ii  libatk1.0-0   1.22.0-1   The ATK accessibility toolkit
ii  libaudclient1 1.5.1-4audacious dbus remote control libr
ii  libaudid3tag1 1.5.1-4audacious id3 tag manipulation lib
ii  libc6 2.7-18 GNU C Library: Shared libraries
ii  libcairo2 1.6.4-7The Cairo 2D vector graphics libra
ii  libdbus-1-3   1.2.1-5simple interprocess messaging syst
ii  libdbus-glib-1-2  0.76-1 simple interprocess messaging syst
ii  libglib2.0-0  2.16.6-1   The GLib library of C routines
ii  libgtk2.0-0   2.12.11-4  The GTK+ graphical user interface 
ii  libice6   2:1.0.4-1  X11 Inter-Client Exchange library
ii  libmcs1   0.7.1-1Abstraction library to store confi
ii  libmowgli10.6.1-1a high performance development fra
ii  libpango1.0-0 1.20.5-3   Layout and rendering of internatio
ii  libsamplerate00.1.4-1audio rate conversion library
ii  libsm62:1.0.3-2  X11 Session Management library
ii  libx11-6  2:1.1.5-2  X11 client-side library

Versions of packages audacious recommends:
ii  audacious-plugins-extra   1.5.1-2Various extra plugins for audaciou
ii  unzip 5.52-12De-archiver for .zip files

audacious 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#505845: audacious-plugins-extra: cuesheet plugin freezes player

2008-11-15 Thread redomen
Package: audacious-plugins-extra
Version: 1.5.1-2
Severity: normal

When the cuesheet plugin is enabled and any directory with a .cue file 
in it is loaded the .cue file itself is added to the playlist and 
audacious completely freezes when it gets to that entry.

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

Kernel: Linux 2.6.26.5 (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages audacious-plugins-extra depends on:
ii  audacious  1.5.1-4   small and fast audio player which 
ii  libartsc0  1.5.9-2   aRts sound system C support librar
ii  libasound2 1.0.16-2  ALSA library
ii  libatk1.0-01.22.0-1  The ATK accessibility toolkit
ii  libaudid3tag1  1.5.1-4   audacious id3 tag manipulation lib
ii  libaudiofile0  0.2.6-7   Open-source version of SGI's audio
ii  libbinio1ldbl  1.4-10binary I/O stream class library
ii  libc6  2.7-15GNU C Library: Shared libraries
ii  libcairo2  1.6.4-6.1 The Cairo 2D vector graphics libra
ii  libcurl3-gnutls7.18.2-5  Multi-protocol file transfer libra
ii  libdbus-1-31.2.1-4   simple interprocess messaging syst
ii  libdbus-glib-1-2   0.76-1simple interprocess messaging syst
ii  libesd00.2.36-3  Enlightened Sound Daemon - Shared 
ii  libfluidsynth1 1.0.8-1.1 Real-time MIDI software synthesize
ii  libgcc11:4.3.2-1 GCC support library
ii  libglib2.0-0   2.16.6-1  The GLib library of C routines
ii  libgtk2.0-02.12.11-4 The GTK+ graphical user interface 
ii  libimlib2  1.4.0-1.1 powerful image loading and renderi
ii  libjack0   0.109.2-3 JACK Audio Connection Kit (librari
ii  liblircclient0 0.8.3-3   infra-red remote control support -
ii  libmowgli1 0.6.1-1   a high performance development fra
ii  libmpcdec3 1.2.2-1   Musepack (MPC) format library
ii  libmtp70.2.6.1-3 Media Transfer Protocol (MTP) libr
ii  libpango1.0-0  1.20.5-3  Layout and rendering of internatio
ii  libpulse0  0.9.10-3  PulseAudio client libraries
ii  libresid-builder0c2a   2.1.1-7   SID chip emulation class based on 
ii  libsamplerate0 0.1.4-1   audio rate conversion library
ii  libsdl1.2debian1.2.13-2  Simple DirectMedia Layer
ii  libsidplay22.1.1-7   SID (MOS 6581) emulation library
ii  libstdc++6 4.3.2-1   The GNU Standard C++ Library v3
ii  libtag1c2a 1.5-3 TagLib Audio Meta-Data Library
ii  libusb-0.1-4   2:0.1.12-12   userspace USB programming library
ii  libwavpack14.50.1-1  an audio codec (lossy and lossless
ii  libx11-6   2:1.1.5-2 X11 client-side library
ii  libxcomposite1 1:0.4.0-3 X11 Composite extension library
ii  libxfixes3 1:4.0.3-2 X11 miscellaneous 'fixes' extensio
ii  libxml22.6.32.dfsg-4 GNOME XML library
ii  libxrender11:0.9.4-2 X Rendering Extension client libra
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

audacious-plugins-extra recommends no packages.

audacious-plugins-extra suggests no packages.

-- no debconf information



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



Bug#493561: xchat: URLs with single quote fail to launch browser

2008-08-03 Thread redomen
Package: xchat
Version: 2.8.6-2
Severity: minor

When clicking a URL that contains a single quote such as:
http://en.wikipedia.org/wiki/Schrödinger's_cat
and then selecting 'Open Link in Browser' xdg-open returns 'Text ended 
before matching quote was found '
I think if xchat is going to highlight unencoded URLs it should escape 
them before launching a browser.

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (700, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.25.8 (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages xchat depends on:
ii  libatk1.0-01.22.0-1  The ATK accessibility toolkit
ii  libc6  2.7-10GNU C Library: Shared libraries
ii  libcairo2  1.6.4-6   The Cairo 2D vector graphics libra
ii  libdbus-1-31.2.1-2   simple interprocess messaging syst
ii  libdbus-glib-1-2   0.76-1simple interprocess messaging syst
ii  libfontconfig1 2.6.0-1   generic font configuration library
ii  libfreetype6   2.3.7-1   FreeType 2 font engine, shared lib
ii  libglib2.0-0   2.16.4-2  The GLib library of C routines
ii  libgtk2.0-02.12.10-2 The GTK+ graphical user interface 
ii  libpango1.0-0  1.20.5-1  Layout and rendering of internatio
ii  libperl5.105.10.0-11.1   Shared Perl library
ii  libpixman-1-0  0.10.0-2  pixel-manipulation library for X a
ii  libpng12-0 1.2.27-1  PNG library - runtime
ii  libsexy2   0.1.11-2  collection of additional GTK+ widg
ii  libssl0.9.80.9.8g-12 SSL shared libraries
ii  libx11-6   2:1.1.4-2 X11 client-side library
ii  libxcb-render-util00.2+git36-1   utility libraries for X C Binding 
ii  libxcb-render0 1.1-1.1   X C Binding, render extension
ii  libxcb11.1-1.1   X C Binding
ii  libxcursor11:1.1.9-1 X cursor management library
ii  libxext6   2:1.0.4-1 X11 miscellaneous extension librar
ii  libxfixes3 1:4.0.3-2 X11 miscellaneous 'fixes' extensio
ii  libxi6 2:1.1.3-1 X11 Input extension library
ii  libxinerama1   2:1.0.3-2 X11 Xinerama extension library
ii  libxml22.6.32.dfsg-2 GNOME XML library
ii  libxrandr2 2:1.2.3-1 X11 RandR extension library
ii  libxrender11:0.9.4-2 X Rendering Extension client libra
ii  python2.5  2.5.2-6   An interactive high-level object-o
ii  tcl8.4 8.4.19-2  Tcl (the Tool Command Language) v8
ii  xchat-common   2.8.6-2   Common files for X-Chat
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

Versions of packages xchat recommends:
ii  libnotify10.4.4-3sends desktop notifications to a n
ii  xdg-utils 1.0.2-6desktop integration utilities from

Versions of packages xchat suggests:
pn  libnet-google-perlnone (no description available)

-- no debconf information



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



Bug#492671: speech-dispatcher: spd-say spelling with festival

2008-07-27 Thread redomen
Package: speech-dispatcher
Version: 0.6.7~rc1-1
Severity: normal

I have configured speech-dispatcher for use with festival but when I 
run:
spd-say -m none -s some message
The audio comes out as something like speak-some message-speak
Unfortunately these are the punctuation and spelling settings that 
Mumble voice chat has hard coded in which makes the text-to-voice 
feature rather unuseable.


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (700, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.25.8 (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages speech-dispatcher depends on:
ii  adduser  3.108   add and remove users and groups
ii  libasound2   1.0.16-2ALSA library
ii  libaudio21.9.1-4 Network Audio System - shared libr
ii  libc62.7-10  GNU C Library: Shared libraries
ii  libdotconf1.01.0.13-2Configuration file parser library 
ii  libespeak1   1.37-1  A multi-lingual software speech sy
ii  libflite11.2-release-2.2 a small run-time speech synthesis 
ii  libglib2.0-0 2.16.4-2The GLib library of C routines
ii  libpulse00.9.10-2PulseAudio client libraries
ii  libspeechd2  0.6.7~rc1-1 Speech Dispatcher: Shared librarie
ii  lsb-base 3.2-12  Linux Standard Base 3.2 init scrip

speech-dispatcher recommends no packages.

Versions of packages speech-dispatcher suggests:
pn  speech-dispatcher-doc-cs none  (no description available)
ii  speech-dispatcher-festival   0.6.7~rc1-1 Festival support for Speech Dispat

-- no debconf information



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



Bug#492135: glob2: crash on start

2008-07-23 Thread redomen
Package: glob2
Version: 0.9.3-2
Severity: important

$ glob2
Settings::load(preferences.txt) : error, can't open file.
Fatal error : while loading data/texts.list.txt
glob2: src/GlobalContainer.cpp:461: void GlobalContainer::load(): 
Assertion `false' failed.
Aborted
$

backtrace:
#0  0x7f76c37171d5 in raise () from /lib/libc.so.6
#1  0x7f76c3718680 in abort () from /lib/libc.so.6
#2  0x7f76c371075f in __assert_fail () from /lib/libc.so.6
#3  0x004cf30c in ?? ()
#4  0x004cc37e in ?? ()
#5  0x004ccb85 in ?? ()
#6  0x7f76c37041c4 in __libc_start_main () from /lib/libc.so.6
#7  0x00409099 in ?? ()
#8  0x7fffcd99b0f8 in ?? ()
#9  0x in ?? ()

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (700, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.25.8 (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages glob2 depends on:
ii  glob2-data 0.9.3-2   dataset for Globulation2 (glob2)
ii  libboost-thread1.34.1  1.34.1-11 portable C++ multi-threading
ii  libc6  2.7-10GNU C Library: Shared libraries
ii  libfribidi00.10.9-1  Free Implementation of the Unicode
ii  libgcc11:4.3.1-2 GCC support library
ii  libgl1-mesa-glx [libgl 7.0.3-4   A free implementation of the OpenG
ii  libglu1-mesa [libglu1] 7.0.3-4   The OpenGL utility library (GLU)
ii  libsdl-image1.21.2.6-3   image loading library for Simple D
ii  libsdl-net1.2  1.2.7-2   network library for Simple DirectM
ii  libsdl-ttf2.0-02.0.9-1   ttf library for Simple DirectMedia
ii  libsdl1.2debian1.2.13-2  Simple DirectMedia Layer
ii  libspeex1  1.2~beta4-2   The Speex codec runtime library
ii  libstdc++6 4.3.1-2   The GNU Standard C++ Library v3
ii  libvorbisfile3 1.2.0.dfsg-3.1The Vorbis General Audio Compressi
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

glob2 recommends no packages.

-- no debconf information



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



Bug#492134: file-roller: symlinks not shown in zip files

2008-07-23 Thread redomen
Package: file-roller
Version: 2.22.4-1
Severity: normal

If a zip file contains a symlink it is not shown in file-roller.
Tested with:
ln -s somefile somesymlink
zip -y somefile.zip somesymlink
unzip -l somefile.zip
file-roller somefile.zip

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (700, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.25.8 (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages file-roller depends on:
ii  bzip2 1.0.5-0.1  high-quality block-sorting file co
ii  gconf22.22.0-1   GNOME configuration database syste
ii  gzip  1.3.12-6   The GNU compression utility
ii  libc6 2.7-10 GNU C Library: Shared libraries
ii  libgconf2-4   2.22.0-1   GNOME configuration database syste
ii  libglade2-0   1:2.6.2-1  library to load .glade files at ru
ii  libglib2.0-0  2.16.3-2   The GLib library of C routines
ii  libgnome2-0   2.20.1.1-1 The GNOME 2 library - runtime file
ii  libgnomeui-0  2.20.1.1-1 The GNOME 2 libraries (User Interf
ii  libgnomevfs2-01:2.22.0-4 GNOME Virtual File System (runtime
ii  libgtk2.0-0   2.12.10-2  The GTK+ graphical user interface 
ii  libnautilus-extension12.20.0-4   libraries for nautilus components 
ii  libpango1.0-0 1.20.3-2   Layout and rendering of internatio
ii  tar   1.19-3 GNU version of the tar archiving u
ii  unzip 5.52-11De-archiver for .zip files
ii  zip   2.32-1 Archiver for .zip files

Versions of packages file-roller recommends:
ii  arj3.10.22-6 archiver for .arj files
ii  cpio   2.9-13GNU cpio -- a program to manage ar
ii  genisoimage9:1.1.8-1 Creates ISO-9660 CD-ROM filesystem
ii  gnome-icon-theme   2.22.0-1  GNOME Desktop icon theme
ii  lzma   4.43-14   Compression method of 7z format in
ii  lzop   1.02~rc1-2fast compression program
pn  ncompress  none(no description available)
ii  p7zip  4.58~dfsg.1-1 7zr file archiver with high compre
ii  p7zip-full 4.58~dfsg.1-1 7z and 7za file archivers with hig
ii  rpm4.4.2.3-1 Red Hat package manager
ii  sharutils  1:4.6.3-1 shar, unshar, uuencode, uudecode
ii  unace  1.2b-7extract, test and view .ace archiv

-- no debconf information



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



Bug#392465: reportbug: exim4 nonlocal

2008-07-23 Thread redomen
Package: reportbug
Version: 3.42
Followup-For: Bug #392465

I just ran into the same problem, reportbug said the messages were being 
sent but when I happened to look at /var/log/exim4/mainlog I saw the 
following:

2008-07-23 15:28:39 1KLmp5-0007Vw-2Y ** [EMAIL PROTECTED] 
R=nonlocal: 
Mailing to remote domains not supported
2008-07-23 15:28:39 1KLmp5-0007Vw-2Y Frozen (delivery error message)

dpkg-reconfigure exim4-config fixed it but a lot of bug reports never 
went through.

-- Package-specific info:
** Environment settings:
INTERFACE=text

** /home/redomen/.reportbugrc:
reportbug_version 3.2
mode standard
ui text
realname redomen
email [EMAIL PROTECTED]

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (700, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.25.8 (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages reportbug depends on:
ii  apt   0.7.14+b1  Advanced front-end for dpkg
ii  python2.5.2-1An interactive high-level object-o
ii  python-central0.6.8  register and build utility for Pyt

reportbug recommends no packages.

-- no debconf information



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



Bug#437015: clamtk: No virus definitions found

2007-08-09 Thread redomen
Package: clamtk
Version: 2.32-1
Severity: normal


After a fresh install running clamtk always brings up the message 
Warning: No virus definitions found! If you are sure you have 
definitions installed, please inform the developer where your 
definitions are held so the paths can be added.

However running clamscan says Known viruses: 144367 and seems to work 
normally.


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

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

Versions of packages clamtk depends on:
ii  clamav0.91.1-1   antivirus scanner for Unix
ii  clamav-freshclam  0.91.1-1   downloads clamav virus databases f
ii  libdate-calc-perl 5.4-5  Perl library for accessing dates
ii  libfile-find-rule-perl0.30-2 Alternative interface to File::Fin
ii  libgtk2-perl  1:1.140-1  Perl interface to the 2.x series o
ii  liblocale-gettext-perl1.05-1 Using libc functions for internati
ii  libwww-perl   5.805-1WWW client/server library for Perl

clamtk recommends no packages.

-- no debconf information


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



Bug#433475: libsdl-net1.2: LGPL not GPL

2007-07-17 Thread redomen
Package: libsdl-net1.2
Version: 1.2.5-7+b1
Severity: minor

The /usr/share/doc/libsdl-net1.2/copyright file claims the library is 
GPL but the COPYING file in the source package says it is GNU LESSER 
GENERAL PUBLIC LICENSE

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

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

Versions of packages libsdl-net1.2 depends on:
ii  libc6 2.6-2  GNU C Library: Shared libraries
ii  libsdl1.2debian   1.2.11-8   Simple DirectMedia Layer

libsdl-net1.2 recommends no packages.

-- no debconf information


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



Bug#431943: libqt4-gui: visual corruption when scrolling up in a QTextEdit

2007-07-06 Thread redomen
Package: libqt4-gui
Version: 4.3.0-2+b1
Severity: normal


Dragging the scrollbar upwards in programs that use a QTextEdit 
widget results in a corrupted text window.
Here is a screenshot of the qt4 textedit demo:
http://i32.photobucket.com/albums/d49/Nemoder/textedit.png

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

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

Versions of packages libqt4-gui depends on:
ii  fontconfig  2.4.2-1.2generic font configuration library
ii  libaudio2   1.9-2The Network Audio System (NAS). (s
ii  libc6   2.5-9+b1 GNU C Library: Shared libraries
ii  libfontconfig1  2.4.2-1.2generic font configuration library
ii  libfreetype62.2.1-6  FreeType 2 font engine, shared lib
ii  libgcc1 1:4.2-20070627-1 GCC support library
ii  libgl1-mesa-glx [libgl1 6.5.2-5  A free implementation of the OpenG
ii  libglib2.0-02.12.12-1The GLib library of C routines
ii  libglu1-mesa [libglu1]  6.5.2-5  The OpenGL utility library (GLU)
ii  libice6 1:1.0.3-2X11 Inter-Client Exchange library
ii  libjpeg62   6b-13The Independent JPEG Group's JPEG 
ii  libmng1 1.0.9-1  Multiple-image Network Graphics li
ii  libpng12-0  1.2.15~beta5-2   PNG library - runtime
ii  libqt4-core 4.3.0-2+b1   Qt 4 core non-GUI functionality ru
ii  libsm6  2:1.0.3-1X11 Session Management library
ii  libstdc++6  4.2-20070627-1   The GNU Standard C++ Library v3
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxcursor1 1:1.1.8-2X cursor management library
ii  libxext61:1.0.3-2X11 miscellaneous extension librar
ii  libxfixes3  1:4.0.3-2X11 miscellaneous 'fixes' extensio
ii  libxi6  1:1.0.1-4X11 Input extension library
ii  libxinerama11:1.0.2-1X11 Xinerama extension library
ii  libxrandr2  2:1.2.1-1X11 RandR extension library
ii  libxrender1 1:0.9.2-1X Rendering Extension client libra
ii  libxt6  1:1.0.5-3X11 toolkit intrinsics library
ii  zlib1g  1:1.2.3.3.dfsg-3 compression library - runtime

Versions of packages libqt4-gui recommends:
ii  qt4-qtconfig  4.3.0-2+b1 Qt 4 configuration tool

-- no debconf information


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



Bug#431499: audacious-plugins-extra: dependency problems in testing

2007-07-02 Thread redomen
Package: audacious-plugins-extra
Version: 1.2.5-1
Severity: important


Attempting to install this package in testing returns the following:

audacious-plugins-extra depends on libjack0 (= 0.103.0)
libjack0 does not appear to be available
audacious-plugins-extra depends on libwavpack1 (= 4.40.0)
libwavpack1 does not appear to be available


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

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

Versions of packages audacious-plugins-extra depends on:
hi  audaciou 1.2.5-1 Base plugins for audacious
ii  libartsc 1.5.5-1 aRts sound system C support librar
ii  libatk1. 1.18.0-2The ATK accessibility toolkit
ii  libaudio 0.2.6-6 Open-source version of SGI's audio
ii  libc62.5-9+b1GNU C Library: Shared libraries
ii  libcairo 1.4.6-1.1   The Cairo 2D vector graphics libra
ii  libcomer 1.39+1.40-WIP-2006.11.14+dfsg-2 common error description library
ii  libcurl3 7.16.2-6Multi-protocol file transfer libra
ii  libesd0  0.2.36-3Enlightened Sound Daemon - Shared 
ii  libfontc 2.4.2-1.2   generic font configuration library
ii  libgcc1  1:4.2-20070627-1GCC support library
ii  libglib2 2.12.12-1   The GLib library of C routines
ii  libgnutl 1.6.3-1 the GNU TLS library - runtime libr
ii  libgtk2. 2.10.13-1   The GTK+ graphical user interface 
ii  libidn11 0.6.5-1 GNU libidn library, implementation
ii  libjack0 0.101.1-2   JACK Audio Connection Kit (librari
ii  libkrb53 1.6.dfsg.1-5MIT Kerberos runtime libraries
ii  liblircc 0.8.0-9.3   LIRC client library
ii  libmpcde 1.2.2-1 Musepack (MPC) format library
ii  libpango 1.16.4-1Layout and rendering of internatio
ii  libresid 2.1.1-5 SID chip emulation class based on 
ii  libsampl 0.1.2-5 audio rate conversion library
ii  libsdl1. 1.2.11-8Simple DirectMedia Layer
ii  libsidpl 2.1.1-5 SID (MOS 6581) emulation library
ii  libstdc+ 4.2-20070627-1  The GNU Standard C++ Library v3
ii  libtag1c 1.4-8   TagLib Audio Meta-Data Library
ii  libwavpa 4.32-2  an audio codec (lossy and lossless
ii  libx11-6 2:1.0.3-7   X11 client-side library
ii  libxcurs 1:1.1.8-2   X cursor management library
ii  libxext6 1:1.0.3-2   X11 miscellaneous extension librar
ii  libxfixe 1:4.0.3-2   X11 miscellaneous 'fixes' extensio
ii  libxi6   1:1.0.1-4   X11 Input extension library
ii  libxiner 1:1.0.2-1   X11 Xinerama extension library
ii  libxml2  2.6.29.dfsg-1   GNOME XML library
ii  libxrand 2:1.2.1-1   X11 RandR extension library
ii  libxrend 1:0.9.2-1   X Rendering Extension client libra
ii  zlib1g   1:1.2.3-15  compression library - runtime

audacious-plugins-extra recommends no packages.

-- no debconf information


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



Bug#424888: libzzip-dev: corrupted html documentation

2007-05-17 Thread redomen
Package: libzzip-dev
Version: 0.12.83-8
Severity: minor


The Synopsis section of each html file in 
/usr/share/doc/libzzip-dev/html/ seems to be missing the 
function parameters.

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

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

Versions of packages libzzip-dev depends on:
ii  libzzip-0-12  0.12.83-8  library providing read access on Z

libzzip-dev recommends no packages.

-- no debconf information


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



Bug#411015: iceape: feature to copy email message source to clipboard

2007-02-15 Thread redomen
Package: iceape
Version: 1.0.7-3
Severity: wishlist


Currently I can select an email message, hit ctrl-u for source then ctrl-a to 
select all then ctrl-c to copy to the clipboard then close the source window.

I would like to be able to right-click a message and select from the menu 'Copy 
message source to clipboard' and have it do just that in one easy step.

-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17.13
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages iceape depends on:
ii  iceape-browser1.0.7-3Iceape Navigator (Internet browser
ii  iceape-mailnews   1.0.7-3Iceape Mail  Newsgroups and Addre

Versions of packages iceape recommends:
pn  iceape-chatzilla  none (no description available)

-- no debconf information


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



Bug#385932: xfwm4: adjust composite instead of shade if enabled

2006-09-03 Thread redomen
Package: xfwm4
Version: 4.3.90.2-2
Severity: wishlist


I'd really love it if you could use the mousewheel on a window title bar to 
adjust the transparency value of the window (when composite is enabled) instead 
of the shader that hides it completely.

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17.11
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages xfwm4 depends on:
ii  libatk1.0-0 1.12.1-1 The ATK accessibility toolkit
ii  libc6   2.3.6.ds1-4  GNU C Library: Shared libraries
ii  libcairo2   1.2.4-1  The Cairo 2D vector graphics libra
ii  libfontconfig1  2.3.2-7  generic font configuration library
ii  libfreetype62.2.1-2  FreeType 2 font engine, shared lib
ii  libglib2.0-02.10.3-3 The GLib library of C routines
ii  libgtk2.0-0 2.8.18-1 The GTK+ graphical user interface 
ii  libice6 1:1.0.0-3X11 Inter-Client Exchange library
ii  libpango1.0-0   1.12.3-1+b1  Layout and rendering of internatio
ii  libpng12-0  1.2.8rel-5.2 PNG library - runtime
ii  libsm6  1:1.0.0-4X11 Session Management library
ii  libstartup-notification00.8-1library for program launch feedbac
ii  libx11-62:1.0.0-8X11 client-side library
ii  libxcomposite1  1:0.2.2.2-3  X11 Composite extension library
ii  libxcursor1 1.1.5.2-5X cursor management library
ii  libxdamage1 1:1.0.2.2-3  X11 damaged region extension libra
ii  libxext61:1.0.0-4X11 miscellaneous extension librar
ii  libxfce4mcs-client3 4.3.90.2-1   Client library for Xfce4 configure
ii  libxfce4mcs-manager34.3.90.2-1   Manager library for Xfce4 configur
ii  libxfce4util4   4.3.90.2-2   Utility functions library for Xfce
ii  libxfcegui4-4   4.3.90.2-1   Basic GUI C functions for Xfce4
ii  libxfixes3  1:3.0.1.2-4  X11 miscellaneous 'fixes' extensio
ii  libxi6  1:1.0.0-5X11 Input extension library
ii  libxinerama11:1.0.1-4.1  X11 Xinerama extension library
ii  libxrandr2  2:1.1.0.2-4  X11 RandR extension library
ii  libxrender1 1:0.9.0.2-4  X Rendering Extension client libra
ii  zlib1g  1:1.2.3-13   compression library - runtime

Versions of packages xfwm4 recommends:
ii  xfce4-mcs-manager 4.3.90.2-1 Settings manager for Xfce4
ii  xfwm4-themes  4.3.90.2-1 Theme files for xfwm4

-- no debconf information


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



Bug#384626: suggest using 'dpkg-reconfigure kernel-package' to fix kernel-img.conf

2006-08-25 Thread redomen
Package: kernel-package
Version: 10.052
Severity: wishlist


For those who want to change their bootloader it would be good to be able to 
run 'dpkg-reconfigure kernel-package' and have it ask the user which boot 
loader they want use and then alter their kernel-img.conf accordingly.

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17.11
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages kernel-package depends on:
ii  dpkg  1.13.21package maintenance system for Deb
ii  dpkg-dev  1.13.21package building tools for Debian
ii  file  4.17-2 Determines file type using magic
ii  gcc [c-compiler]  4:4.1.1-5  The GNU C compiler
ii  gcc-3.3 [c-compiler]  1:3.3.6-13 The GNU C compiler
ii  gcc-3.4 [c-compiler]  3.4.6-1The GNU C compiler
ii  gcc-4.0 [c-compiler]  4.0.3-3The GNU C compiler
ii  gcc-4.1 [c-compiler]  4.1.1-5The GNU C compiler
ii  gettext   0.14.6-1   GNU Internationalization utilities
ii  make  3.81-2 The GNU version of the make util
ii  perl  5.8.8-6.1  Larry Wall's Practical Extraction 
ii  po-debconf1.0.5  manage translated Debconf template

Versions of packages kernel-package recommends:
ii  bzip2 1.0.3-3high-quality block-sorting file co
ii  libc6-dev [libc-dev]  2.3.6-15   GNU C Library: Development Librari

-- no debconf information


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



Bug#378942: xfce4-mailwatch-plugin: Icon suggestions

2006-07-19 Thread redomen
Package: xfce4-mailwatch-plugin
Version: 1.0.1-1
Severity: wishlist


I have a couple suggestions for new display options:

1) Have the icon status revert to Normal after left clicking it even if there 
is still technically mail on the server.  Chances are you are about to fetch it 
anyway and if not it will pick it up again on the next check.  This way if you 
have a long time between checks you don't see New Mail icon still showing up 
long after you've already recieved it.

2) An option to automaticly clear the log error icon if the next attempt is 
successful.  If I have a daily network outtage it's rather annoying to see that 
come up, but if I disable the log icon completely I wouldn't know if it is 
still working afterwords.

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16.2
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages xfce4-mailwatch-plugin depends on:
ii  libatk1.0-0 1.11.4-2 The ATK accessibility toolkit
ii  libc6   2.3.6-15 GNU C Library: Shared libraries
ii  libcairo2   1.2.0-3  The Cairo 2D vector graphics libra
ii  libfontconfig1  2.3.2-7  generic font configuration library
ii  libfreetype62.2.1-2  FreeType 2 font engine, shared lib
ii  libgcrypt11 1.2.2-1  LGPL Crypto library - runtime libr
ii  libglib2.0-02.10.2-1 The GLib library of C routines
ii  libgnutls13 1.4.0-3  the GNU TLS library - runtime libr
ii  libgpg-error0   1.2-1library for common error values an
ii  libgtk2.0-0 2.8.18-1 The GTK+ graphical user interface 
ii  libpango1.0-0   1.12.3-1 Layout and rendering of internatio
ii  libpng12-0  1.2.8rel-5.1 PNG library - runtime
ii  libx11-62:1.0.0-7X11 client-side library
ii  libxcursor1 1.1.5.2-5X cursor management library
ii  libxext61:1.0.0-4X11 miscellaneous extension librar
ii  libxfce4util2   4.3.90.1-1   Utility functions library for Xfce
ii  libxfcegui4-4   4.3.90.1-1   Basic GUI C functions for Xfce4
ii  libxfixes3  1:3.0.1.2-4  X11 miscellaneous 'fixes' extensio
ii  libxi6  1:1.0.0-5X11 Input extension library
ii  libxinerama11:1.0.1-4X11 Xinerama extension library
ii  libxrandr2  2:1.1.0.2-4  X11 RandR extension library
ii  libxrender1 1:0.9.0.2-4  X Rendering Extension client libra
ii  xfce4-panel 4.3.90.1-3   The Xfce4 desktop environment pane
ii  zlib1g  1:1.2.3-11   compression library - runtime

xfce4-mailwatch-plugin recommends no packages.

-- debconf-show failed


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



Bug#378944: xfce4-mailwatch-plugin: typing in the minutes on how often to check fails

2006-07-19 Thread redomen
Package: xfce4-mailwatch-plugin
Version: 1.0.1-1
Severity: normal


If you type in a number into the Check for new messages every XX minutes box 
it does not save it.  It only saves it if you use the up and down arrow buttons 
next to the box.

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16.2
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages xfce4-mailwatch-plugin depends on:
ii  libatk1.0-0 1.11.4-2 The ATK accessibility toolkit
ii  libc6   2.3.6-15 GNU C Library: Shared libraries
ii  libcairo2   1.2.0-3  The Cairo 2D vector graphics libra
ii  libfontconfig1  2.3.2-7  generic font configuration library
ii  libfreetype62.2.1-2  FreeType 2 font engine, shared lib
ii  libgcrypt11 1.2.2-1  LGPL Crypto library - runtime libr
ii  libglib2.0-02.10.2-1 The GLib library of C routines
ii  libgnutls13 1.4.0-3  the GNU TLS library - runtime libr
ii  libgpg-error0   1.2-1library for common error values an
ii  libgtk2.0-0 2.8.18-1 The GTK+ graphical user interface 
ii  libpango1.0-0   1.12.3-1 Layout and rendering of internatio
ii  libpng12-0  1.2.8rel-5.1 PNG library - runtime
ii  libx11-62:1.0.0-7X11 client-side library
ii  libxcursor1 1.1.5.2-5X cursor management library
ii  libxext61:1.0.0-4X11 miscellaneous extension librar
ii  libxfce4util2   4.3.90.1-1   Utility functions library for Xfce
ii  libxfcegui4-4   4.3.90.1-1   Basic GUI C functions for Xfce4
ii  libxfixes3  1:3.0.1.2-4  X11 miscellaneous 'fixes' extensio
ii  libxi6  1:1.0.0-5X11 Input extension library
ii  libxinerama11:1.0.1-4X11 Xinerama extension library
ii  libxrandr2  2:1.1.0.2-4  X11 RandR extension library
ii  libxrender1 1:0.9.0.2-4  X Rendering Extension client libra
ii  xfce4-panel 4.3.90.1-3   The Xfce4 desktop environment pane
ii  zlib1g  1:1.2.3-11   compression library - runtime

xfce4-mailwatch-plugin recommends no packages.

-- debconf-show failed


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



Bug#361661: xserver-xorg: segfault-invalid pointer

2006-04-09 Thread redomen
 56.3 800 896 960 1048 600 601 604 631 +hsync +vsync
ModeLine   1024x768 115.7 1024 1064 1304 1416 768 770 783 809
ModeLine   1152x864 118.8 1152 1200 1440 1544 864 866 879 905
EndSection

Section Monitor
Identifier TV
HorizSync   30.0 - 50.0
VertRefresh 60.0 - 60.0
EndSection

Section Device
Identifier NVIDIA
Driver nvidia
EndSection

Section Screen
Identifier TVOut
Device NVIDIA
MonitorTV
DefaultDepth24
Option TVStandard NTSC-M
Option ConnectedMonitor TV
SubSection Display
Viewport0 0
Depth   24
Modes  800x600
EndSubSection
EndSection

Section Screen
Identifier Default Screen
Device NVIDIA
MonitorViewsonic
DefaultDepth24
Option NoLogo True
Option DPMS True
Option CursorShadow True
Option CursorShadowAlpha 60
Option NvAGP 3
Option DigitalVibrance 0
SubSection Display
Depth   1
Modes  1152x864 1024x768 800x600 640x480
EndSubSection
SubSection Display
Depth   4
Modes  1152x864 1024x768 800x600 640x480
EndSubSection
SubSection Display
Depth   8
Modes  1152x864 1024x768 800x600 640x480
EndSubSection
SubSection Display
Depth   15
Modes  1152x864 1024x768 800x600 640x480
EndSubSection
SubSection Display
Depth   16
Modes  1280x1024 1152x864 1024x768 800x600 640x480
EndSubSection
SubSection Display
Depth   24
Modes  1280x1024 1152x864 1024x768 800x600 640x480
EndSubSection
EndSection



Xorg X server log files on system:
-rw-r--r--  1 root root 24711 Apr  9 05:58 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file
/var/log/Xorg.0.log:

X Window System Version 6.9.0 (Debian 6.9.0.dfsg.1-6 20060403233528 David 
Nusinow [EMAIL PROTECTED])
Release Date: 21 December 2005
X Protocol Version 11, Revision 0, Release 6.9
Build Operating System: Linux 2.6.12-1-686 i686 [ELF] 
Current Operating System: Linux redomen 2.6.16.2 #1 Sun Apr 9 03:14:36 PDT 2006 
i686
Build Date: 04 April 2006
Before reporting problems, check http://wiki.X.Org
to make sure that you have the latest version.
Module Loader present
OS Kernel: Linux version 2.6.16.2 ([EMAIL PROTECTED]) (gcc version 4.0.3 
(Debian 4.0.3-1)) #1 Sun Apr 9 03:14:36 PDT 2006 T
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/Xorg.0.log, Time: Sun Apr  9 05:52:56 2006
(==) Using config file: /etc/X11/xorg.conf
(==) ServerLayout Default Layout
(**) |--Screen Default Screen (0)
(**) |   |--Monitor Viewsonic
(**) |   |--Device NVIDIA
(**) |--Input Device Generic Keyboard
(**) Option XkbRules xfree86
(**) XKB: rules: xfree86
(**) Option XkbModel pc101
(**) XKB: model: pc101
(**) Option XkbLayout us
(**) XKB: layout: us
(==) Keyboard: CustomKeycode disabled
(**) |--Input Device Configured Mouse
(WW) `fonts.dir' not found (or not valid) in 
/var/lib/defoma/x-ttcidfont-conf.d/dirs/CID.
Entry deleted from font path.
(Run 'mkfontdir' on /var/lib/defoma/x-ttcidfont-conf.d/dirs/CID).
(WW) `fonts.dir' not found (or not valid) in /usr/share/fonts/truetype.
Entry deleted from font path.
(Run 'mkfontdir' on /usr/share/fonts/truetype).
(**) FontPath set to 
/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType,/usr/lib/X11/fonts/Type1,/usr/lib/X11/fonts/Speedo,/usr/lib/X11/fonts/misc,/usr/lib/X11/fonts/100dpi,/usr/lib/X11/fonts/75dpi
(==) RgbPath set to /usr/X11R6/lib/X11/rgb
(==) ModulePath set to /usr/X11R6/lib/modules
(WW) Open ACPI failed (/proc/acpi/event) (No such file or directory)
(II) No APM support in BIOS or kernel
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.2
X.Org Video Driver: 0.8
X.Org XInput driver : 0.5
X.Org Server Extension : 0.2
X.Org Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: bitmap
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.so
(II) Module bitmap: vendor=X.Org Foundation
compiled for 6.9.0, module version = 1.0.0
Module class: X.Org Font Renderer
ABI class: X.Org Font Renderer, version 0.4
(II) Loading font Bitmap
(II) LoadModule: pcidata
(II) Loading /usr/X11R6/lib/modules/libpcidata.so
(II) Module pcidata: vendor=X.Org Foundation
compiled for 6.9.0, module version = 1.0.0
ABI class: X.Org Video Driver, version 0.8
(--) using VT number 7

(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 1106,3189 card 1106,3189 rev 80 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 1106,b198 card , rev 00 class 06,04,00 hdr 01

Bug#358874: gdebi: unmet gnome icon dependency

2006-03-24 Thread redomen
Package: gdebi
Version: 0.1.4
Severity: important

gnome-icon-theme must be installed or gdebi-gtk crashes with:

Traceback (most recent call last):
  File /usr/bin/gdebi-gtk, line 26, in ?
app = GDebi(datadir=data,options=options)
  File /usr/lib/python2.3/site-packages/GDebi/GDebi.py, line 26, in __init__
logo=icons.load_icon(gnome-settings-default-applications, 32, 0)
gobject.GError: Icon 'gnome-settings-default-applications' not present in theme


-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages gdebi depends on:
ii  gksu 1.3.6-1 graphical frontend to su
ii  python   2.3.5-5 An interactive high-level object-o
ii  python-apt   0.6.16.1Python interface to libapt-pkg
ii  python-glade22.8.2-3 GTK+ bindings: Glade support
ii  python-gtk2  2.8.2-3 Python bindings for the GTK+ widge
ii  python-vte   1:0.11.20-1 Python bindings for the VTE widget

gdebi recommends no packages.

-- no debconf information


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



Bug#352023: xmms: fails to play stream if a local song is already playing

2006-02-09 Thread redomen
Package: xmms
Version: 1.2.10+cvs20050809-5
Severity: normal


If I'm playing an mp3 from the hard drive then open a stream the stream will 
stay stuck on waiting for reply.  If I close and restart xmms then play the 
stream it works fine.

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages xmms depends on:
ii  libc62.3.5-8 GNU C Library: Shared libraries an
ii  libglib1.2   1.2.10-10.1 The GLib library of C routines
ii  libgtk1.21.2.10-18   The GIMP Toolkit set of widgets fo
ii  libice6  6.8.2.dfsg.1-11 Inter-Client Exchange library
ii  libsm6   6.8.2.dfsg.1-11 X Window System Session Management
ii  libssl0.9.8  0.9.8a-6SSL shared libraries
ii  libx11-6 6.8.2.dfsg.1-11 X Window System protocol client li
ii  libxext6 6.8.2.dfsg.1-11 X Window System miscellaneous exte
ii  libxi6   6.8.2.dfsg.1-11 X Window System Input extension li
ii  libxxf86vm1  6.8.2.dfsg.1-11 X Video Mode selection library

Versions of packages xmms recommends:
ii  libasound2   1.0.10-2ALSA library
ii  libaudiofile00.2.6-6 Open-source version of SGI's audio
ii  libesd0  0.2.36-3Enlightened Sound Daemon - Shared 
ii  libmikmod2   3.1.11-a-6  A portable sound library
ii  libogg0  1.1.3-2 Ogg Bitstream Library
ii  libvorbis0a  1.1.2-1 The Vorbis General Audio Compressi
ii  libvorbisfile3   1.1.2-1 The Vorbis General Audio Compressi
ii  unzip5.52-6  De-archiver for .zip files
ii  xlibmesa-gl [libgl1] 6.8.2.dfsg.1-11 Mesa 3D graphics library [X.Org]
ii  zlib1g   1:1.2.3-9   compression library - runtime

-- no debconf information


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



Bug#327202: xmms: Play Directory window is drawn offscreen

2005-09-08 Thread redomen
Package: xmms
Version: 1.2.10+cvs20050209-2
Severity: normal


If xmms is at the top of the screen and Play Directory is selected from the 
context menu or with shift-L the directory window is created half-way off the 
scren and can't be dragged down to where it is accessable without moving the 
xmms window down first.  It needs to function like the Open File dialog which 
is always created fully visable.

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages xmms depends on:
ii  libc6 2.3.5-6GNU C Library: Shared libraries an
ii  libglib1.21.2.10-10  The GLib library of C routines
ii  libgtk1.2 1.2.10-17  The GIMP Toolkit set of widgets fo
ii  libice6   6.8.2.dfsg.1-6 Inter-Client Exchange library
ii  libsm66.8.2.dfsg.1-6 X Window System Session Management
ii  libssl0.9.7   0.9.7e-3   SSL shared libraries
ii  libx11-6  6.8.2.dfsg.1-6 X Window System protocol client li
ii  libxext6  6.8.2.dfsg.1-6 X Window System miscellaneous exte
ii  libxi66.8.2.dfsg.1-6 X Window System Input extension li
ii  xlibs 6.8.2.dfsg.1-6 X Window System client libraries m

Versions of packages xmms recommends:
ii  libasound21.0.9-3ALSA library
ii  libaudiofile0 0.2.6-6Open-source version of SGI's audio
ii  libesd0   0.2.36-1   Enlightened Sound Daemon - Shared 
ii  libmikmod23.1.11-a-6 A portable sound library
ii  libogg0   1.1.2-1Ogg Bitstream Library
ii  libvorbis0a   1.1.0-1The Vorbis General Audio Compressi
ii  libvorbisfile31.1.0-1The Vorbis General Audio Compressi
ii  unzip 5.52-3 De-archiver for .zip files
ii  xlibmesa-gl [libgl1]  6.8.2.dfsg.1-6 Mesa 3D graphics library [X.Org]
ii  zlib1g1:1.2.2-4  compression library - runtime

-- no debconf information


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



Bug#326636: xfce4-sensors-plugin: No Fahrenheit option

2005-09-04 Thread redomen
Package: xfce4-sensors-plugin
Version: 0.6.1-2
Severity: wishlist

Being a backwards American.. :P I'd really like to see an option to convert
the displayed temperatures from Celsius to Fahrenheit!

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.11
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages xfce4-sensors-plugin depends on:
ii  libatk1.0-0   1.10.1-2   The ATK accessibility toolkit
ii  libc6 2.3.5-6GNU C Library: Shared libraries an
ii  libglib2.0-0  2.8.0-1The GLib library of C routines
ii  libgtk2.0-0   2.6.8-1The GTK+ graphical user interface 
ii  libpango1.0-0 1.8.2-1Layout and rendering of internatio
ii  libsensors3   1:2.9.1-5  library to read temperature/voltag
ii  libxfce4util-14.2.2-1Utility functions library for Xfce
ii  libxfcegui4-3 4.2.2-1Basic GUI C functions for Xfce4
ii  libxml2   2.6.20-1   GNOME XML library
ii  xfce4-panel   4.2.2-1The Xfce4 desktop environment pane
ii  zlib1g1:1.2.2-4  compression library - runtime

xfce4-sensors-plugin recommends no packages.

-- no debconf information


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



Bug#319299: zsnes: cpu usage at max when menu is open

2005-07-20 Thread redomen
Package: zsnes
Version: 1.400-1
Severity: normal


CPU usage is normal when playing a rom but when the zsnes menu is active (and 
the rom is paused) it jumps to 100%

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.10
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages zsnes depends on:
ii  libc6   2.3.2.ds1-22 GNU C Library: Shared libraries an
ii  libgcc1 1:4.0.0-9GCC support library
ii  libpng12-0  1.2.8rel-1   PNG library - runtime
ii  libsdl1.2debian 1.2.7+1.2.8cvs20041007-5 Simple DirectMedia Layer
ii  libstdc++5  1:3.3.5-13   The GNU Standard C++ Library v3
ii  xlibmesa-gl [li 4.3.0.dfsg.1-14  Mesa 3D graphics library [XFree86]
ii  zlib1g  1:1.2.2-4compression library - runtime

zsnes recommends no packages.

-- no debconf information


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