Bug#74909: All software - duty-free prices

2005-06-06 Thread Tom

Welcome to VIP Quality Software.
http://qzwm.nur2q45gkf5ck65.joustermh.com




The trouble with computers, of course, is that they're very sophisticated idiots. 
A goal without a plan is just a wish.





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



Bug#310658: bsdgames: atc direction keys don't make sense with dvorak layout

2005-05-24 Thread Tom
Package: bsdgames
Version: 2.17-1
Severity: wishlist
Tags: patch

A wrote a patch for atc a couple years ago. It changes the keys used for
direction in the RULES structs depending on a command line option. I
just cleaned it up a bit to work with 2.17 in hope that others can use
it.

Please forward this feature to upstream if you think they may want it.


-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.4.27-1-686
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages bsdgames depends on:
ii  libc6   2.3.2.ds1-18 GNU C Library: Shared libraries an
ii  libgcc1 1:3.4.2-2GCC support library
ii  libncurses5 5.4-4Shared libraries for terminal hand
ii  libstdc++5  1:3.3.4-13   The GNU Standard C++ Library v3
ii  wamerican [wordlist]5-4  American English dictionary words 
ii  wbritish [wordlist] 5-4  British English dictionary words f
ii  wenglish5-4  American English dictionary words 

-- no debconf information
diff -ru bsdgames-2.17-1.orig/atc/atc.6.in bsdgames-2.17-1.mine/atc/atc.6.in
--- bsdgames-2.17-1.orig/atc/atc.6.in   2004-01-02 10:04:51.0 -0800
+++ bsdgames-2.17-1.mine/atc/atc.6.in   2005-05-24 13:06:48.0 -0700
@@ -45,6 +45,7 @@
 .Op Fl u?lstp
 .Op Fl gf Ar "game name"
 .Op Fl r Ar "random seed"
+.Op Fl k Ar "keyboard"
 .Sh DESCRIPTION
 .Nm
 lets you try your hand at the nerve wracking duties of the air traffic
@@ -81,6 +82,11 @@
 .It Fl f Ar game
 Same as
 .Fl g .
+.It Fl k Ar keyboard
+Select an alternate keyboard map for the direction keys. ``dvorak'' uses
+keys around ``o'' in dvorak layout and ``numpad'' uses the numbers
+found on the right of many keyboards. The default is ``qwerty'', described in
+.Sx INPUT .
 .It Fl r Ar seed
 Set the random seed.
 The purpose of this flag is questionable.
@@ -223,11 +229,14 @@
 .Em [0\-9]
 means any single digit, and
 .Aq Em dir
-refers to a direction, given by the keys around the `s' key: ``wedcxzaq''.
+refers to a direction, given by a square of keys on the keyboard, by
+default the keys around the `s' in a qwerty layout: ``wedcxzaq''. The
+.Fl k
+option may be used to select a different group of keys.
 In absolute references, `q' refers to North-West or 315 degrees, and `w'
 refers to North, or 0 degrees.
 In relative references, `q' refers to \-45 degrees or 45 degrees left, and `w'
-refers to 0 degrees, or no change in direction.
+refers to 0 degrees, or no change in direction. 
 .Pp
 All commands start with a plane letter.
 This indicates the recipient of the command.
@@ -280,7 +289,10 @@
 (not
 .Em to
 .Aq dir . )
-`w' (0 degrees) is no turn.
+With the default keyboard map (
+.Fl k 
+qwerty
+) `w' (0 degrees) is no turn.
 `e' is 45 degrees; `q' gives \-45 degrees counterclockwise, that is,
 45 degrees clockwise.
 .It "t- [ dir ]"
diff -ru bsdgames-2.17-1.orig/atc/def.h bsdgames-2.17-1.mine/atc/def.h
--- bsdgames-2.17-1.orig/atc/def.h  2003-12-16 18:47:37.0 -0800
+++ bsdgames-2.17-1.mine/atc/def.h  2005-05-21 05:45:36.0 -0700
@@ -60,6 +60,8 @@
 
 #define MAXDIR 8
 
+#define KEYBOARD_DIR_NUM 3
+
 #define D_LEFT 1
 #define D_RIGHT2
 #define D_UP   3
diff -ru bsdgames-2.17-1.orig/atc/extern.c bsdgames-2.17-1.mine/atc/extern.c
--- bsdgames-2.17-1.orig/atc/extern.c   2003-12-16 18:47:37.0 -0800
+++ bsdgames-2.17-1.mine/atc/extern.c   2005-05-21 05:45:36.0 -0700
@@ -54,7 +54,7 @@
 
 char   GAMES[] =   "Game_List";
 
-intclck, safe_planes, start_time, test_mode;
+intclck, safe_planes, start_time, test_mode, keyboard_dir;
 
 const char *file;
 
@@ -66,6 +66,18 @@
 
 struct termios tty_start, tty_new;
 
+const char keyboard_dir_maps[KEYBOARD_DIR_NUM][MAXDIR] = {
+   {'w','e','d','c','x','z','a','q' },
+   {',','.','e','j','q',';','a','\'' },
+   {'8','9','6','3','2','1','4','7' }
+};
+
+const char * keyboard_dir_names[KEYBOARD_DIR_NUM] = {
+   "qwerty",
+   "dvorak",
+   "numpad"
+};
+
 DISPLACEMENT   displacement[MAXDIR] = {
{  0, -1 },
{  1, -1 },
diff -ru bsdgames-2.17-1.orig/atc/extern.h bsdgames-2.17-1.mine/atc/extern.h
--- bsdgames-2.17-1.orig/atc/extern.h   2004-01-27 12:52:07.0 -0800
+++ bsdgames-2.17-1.mine/atc/extern.h   2005-05-24 12:49:10.0 -0700
@@ -46,7 +46,11 @@
 extern charGAMES[];
 extern const char  *file;
 
-extern int clck, safe_planes, start_time, test_mode;
+extern int clck, safe_planes, start_time, test_mode, keyboard_dir;
+
+const char keyboard_dir_maps[KEYBOARD_DIR_NUM][MAXDIR];
+
+const char * keyboard_dir_names[KEYBOARD_DIR_NUM];
 
 extern FILE*filein, *fileout;
 
@@ -84,6 +88,7 @@
 void   ioclrtoeol(int);
 v

Bug#155740: Do not have money , get software cds from here!

2005-05-27 Thread Tom

All main products from Microsoft, Adobe, Macromedia, Corel, etc.
http://ftmfjsnv.fmju0wf8u7x4uyx.nice2buyhere.com




The cruelest lies are often told in silence. 
Don't use a big word where a diminutive one will suffice.  





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



Bug#310193: mon: missing dependency on libfilesys-diskspace-perl

2005-05-22 Thread Tom
Package: mon
Version: 0.99.2-8
Severity: normal

The file system free space monitoring depends on

libfilesys-diskspace-perl

but there is no dependency on that.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (x86_64)
Kernel: Linux 2.6.11-9-amd64-k8
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages mon depends on:
ii  libc6   2.3.2.ds1-21 GNU C Library: Shared libraries an
ii  libmon-perl 0.11-2   mon Perl modules for clients and s
ii  libtime-period-perl 1.20-7   Perl library for testing if a time
ii  perl [libtime-hires-perl]   5.8.4-8  Larry Wall's Practical Extraction 

-- no debconf information


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



Bug#308434: fig2ps: --input does not include needed packages

2005-05-10 Thread Tom
Package: fig2ps
Version: 1.3.2-1
Severity: normal
Tags: patch

I am using --input to include several \def commands that are used in my
figures. My first attempt failed with the error

! Undefined control sequence.
 \includegraphics

l.7 \includegraphics
{sim-real-switch.fig2ps.tmp.ps}%


Using keep and doing a diff between ./sim-real-switch.fig2ps.tmp.tex
with and without --input I found this:


$ diff sim-real-switch.fig2ps.tmp.tex-with-input
sim-real-switch.fig2ps.tmp.tex-without-input
2c2,6
< \input{include-def.tex}
---
> \usepackage[english]{babel}
> \usepackage[latin1]{inputenc}
> \usepackage[T1]{fontenc}
> \usepackage{amsmath}
> \usepackage{graphics}


fig2ps is using packages but expects the user to include them in the
--input=file. You should either 

1) provide a template input file in /usr/share/doc (with a pointer to it
from the man page) which is good because it gives the user control over
what is included
or
2) modify fig2ps it include all needed packages which is good because if
fig2ps where to change the --input=file would not need to be modified
or
3) do something fancy such as a new option to make including these
packages in $header optional when --input is used or reading the
--input=file to decide what to do

I'm in favor of 2) and have include a patch. Not sure what is up with
@add vs @_add and not stopping to find out or reading the --input=file
to decide what to do

I'm in favor of 2) and have include a patch. Not sure what is up with
@add vs @_add and not stopping to find out.




*** fig2ps-orig Mon Nov  8 04:58:18 2004
--- /usr/bin/fig2ps Mon May  9 23:53:57 2005
***
*** 310,316 
}
  
# adds the add packages, (Teteph...)
!   foreach(@Add) {
if(/\[(\S+)\](\S+)/)
{
$header .=  "\\usepackage[$1]{$2}\n";
--- 310,316 
}
  
# adds the add packages, (Teteph...)
!   foreach(@Packages,@Add) {
if(/\[(\S+)\](\S+)/)
{
$header .=  "\\usepackage[$1]{$2}\n";
***
*** 318,326 
else {
my @_add = split ':';
my $pack = pop @_add;
!   if(@add> 0)
{
!   $header.= "\\usepackage[".join(',',@add)."]{$pack}\n";
}
else 
{
--- 318,326 
else {
my @_add = split ':';
my $pack = pop @_add;
!   if(@_add> 0)
{
!   $header.= "\\usepackage[".join(',',@_add)."]{$pack}\n";
}
else 
{




-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.4.27-1-686
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages fig2ps depends on:
ii  perl-base   5.8.4-5  The Pathologically Eclectic Rubbis
ii  tetex-base  2.0.2c-1 Basic library files of teTeX
ii  tetex-bin   2.0.2-23 The teTeX binary files
ii  transfig1:3.2.5-alpha5-2 Utilities for converting XFig figu

-- no debconf information



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



Bug#162692: acknowledged by developer (Fixed)

2005-06-18 Thread Tom
This bug still exists in the Debian 2.6.11 kernel package, and I believe
it also existed in 2.6.9.  It's a problem other people have seen with
certain motherboards as well.  The messages seem to be spurious and make
it nearly impossible to use the console.

Also note that I did not report it against 2.4.18; I think my bug report
must have gotten merged with those for earlier kernels, and then the
problem was simply presumed to be fixed in later kernels by developers.

Tom

Debian Bug Tracking System wrote:

>This is an automatic notification regarding your Bug report
>#162692: kernel-image: excessive USB debugging info compiled in,
>which was filed against the kernel-image-2.4.18-bf2.4 package.
>
>It has been closed by one of the developers, namely
>Martin Michlmayr <[EMAIL PROTECTED]>.
>
>Their explanation is attached below.  If this explanation is
>unsatisfactory and you have not received a better one in a separate
>message then please contact the developer, by replying to this email.
>
>Debian bug tracking system administrator
>(administrator, Debian Bugs database)
>
>Received: (at 162692-done) by bugs.debian.org; 12 Jun 2005 20:24:46 +
>From [EMAIL PROTECTED] Sun Jun 12 13:24:46 2005
>Return-path: <[EMAIL PROTECTED]>
>Received: from sorrow.cyrius.com [65.19.161.204] 
>   by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
>   id 1DhZ0g-0001Lx-00; Sun, 12 Jun 2005 13:24:46 -0700
>Received: by sorrow.cyrius.com (Postfix, from userid 10)
>   id E15BA64D54; Sun, 12 Jun 2005 20:24:45 + (UTC)
>Received: by deprecation.cyrius.com (Postfix, from userid 1000)
>   id 2D6CD7FBC; Sun, 12 Jun 2005 21:24:46 +0100 (BST)
>Date: Sun, 12 Jun 2005 21:24:46 +0100
>From: Martin Michlmayr <[EMAIL PROTECTED]>
>To: [EMAIL PROTECTED], [EMAIL PROTECTED],
>   [EMAIL PROTECTED], [EMAIL PROTECTED],
>   [EMAIL PROTECTED], [EMAIL PROTECTED],
>   [EMAIL PROTECTED], [EMAIL PROTECTED]
>Subject: Fixed
>Message-ID: <[EMAIL PROTECTED]>
>Mime-Version: 1.0
>Content-Type: text/plain; charset=us-ascii
>Content-Disposition: inline
>User-Agent: Mutt/1.5.9i
>Delivered-To: [EMAIL PROTECTED]
>X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
>   (1.212-2003-09-23-exp) on spohr.debian.org
>X-Spam-Status: No, hits=-2.0 required=4.0 tests=BAYES_00,ONEWORD autolearn=no 
>   version=2.60-bugs.debian.org_2005_01_02
>X-Spam-Level: 
>X-CrossAssassin-Score: 4
>
>These bugs have been fixed in modern kernels (2.4.27 or 2.6.8)
>included in Debian 3.1 (sarge).
>  
>


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



Bug#314876: ipython: segmentaion fault

2005-06-18 Thread Tom
Package: ipython
Version: 0.6.15-1
Severity: grave
Justification: renders package unusable


The ipython interpreter segfaults for the simplest of inputs.

$ ipython
Python 2.3.5 (#2, May 29 2005, 00:34:43)
Type "copyright", "credits" or "license" for more information.

IPython 0.6.15 -- An enhanced Interactive Python.
?   -> Introduction to IPython's features.
%magic  -> Information about IPython's 'magic' % functions.
help-> Python's own help system.
object? -> Details about 'object'. ?object also works, ?? prints more.

In [1]: print 3
Segmentation fault
$


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

Versions of packages ipython depends on:
ii  ipython-common0.6.15-1   enhanced interactive Python shell 
ii  python2.3-ipython 0.6.15-1   enhanced interactive Python shell 

ipython recommends no packages.

Versions of packages ipython is related to:
ii  reportbug 3.13   reports bugs in the Debian distrib

-- no debconf information


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



Bug#318089: desktop-file-utils: Problem solved; sorry...

2005-07-16 Thread Tom
Package: desktop-file-utils
Version: 0.10-1
Followup-For: Bug #318089

It seems I had caused the problem myself... :-/ By copying .bashrc from
another installation, XDG_DATA_DIR was set to something the package
obviously didn't like.

Sorry for the fuzz...

Cheers,
Tom

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12.2-zukunft
Locale: LANG=en_US, [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages desktop-file-utils depends on:
ii  libc6   2.3.2.ds1-22 GNU C Library: Shared libraries an
ii  libglib2.0-02.6.5-1  The GLib library of C routines
ii  libpopt01.7-5lib for parsing cmdline parameters

desktop-file-utils recommends no packages.

-- no debconf information


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



Bug#319691: Package Web Search

2005-07-23 Thread Tom ...
Package: packages.debian.org
Version: n/a

If you goto packages.debian.org and do a search for packages in 'any'
distribution and 'any' section and put more than one keyword in, the
search fails with "Error: keyword not valid or missing"

Here's is an example:

http://packages.debian.org/cgi-bin/search_packages.pl?keywords=onscreen+keyboard&searchon=names&subword=1&version=all&release=all

Firefox 1.0.4 Debian Etck Kernel 2.6.8



Bug#318089: Installation fails ("error processing desktop-file-utils")

2005-07-13 Thread Tom
Package: desktop-file-utils
Version: 0.10-1
Severity: grave
Justification: renders package unusable

Hey ho,

On a newly installed Debian system, when I try to apt-get gnome-core, it
ends in a series of uninstallable packages, all of which seem to be
related to desktop-file-utils not properly being processed by dpkg.

It goes like:

Setting up desktop-file-utils (0.10-1) ...
No directories in update-desktop-database search path could be processed
and updated.
dpkg: error processing desktop-file-utils (--configure):
 subprocess post-installation script returned error exit status 1
Errors were encountered while processing:
 desktop-file-utils
E: Sub-process /usr/bin/dpkg returned an error code (1)

I hope this is indeed a bug, and not just me overlooking something
trivial (the package doesn't suggest or recommend anything I don't have,
though...).

Cheers,
Tom

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.8-2-386
Locale: LANG=en_US, [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages desktop-file-utils depends on:
ii  libc6   2.3.2.ds1-22 GNU C Library: Shared libraries an
ii  libglib2.0-02.6.5-1  The GLib library of C routines
ii  libpopt01.7-5lib for parsing cmdline parameters

desktop-file-utils recommends no packages.

-- no debconf information


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



Bug#66096: Any software backups for lowest pricest.

2005-07-13 Thread Tom

Software protection computer security.
http://ckrtkfk.0pmxlzitxsi7x1i.inworkffnba.info




Do not rejoice over what has not yet happened.
Crime is naught but misdirected energy.   





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



Bug#303954: fuse-utils: Removing the package deletes whatever group was assigned to be able to use fusermount?

2005-04-10 Thread Tom
[Sunday 10 April 2005 09:10] Bartosz Fenski aka fEnIo
(Re: Bug#303954: fuse-utils: Removing the package deletes whatever group
 was assigned to be able to use fusermount?):

> > The problem is, when I purged the package today, I noticed it just
> > removed the "adm" group too, considering it a part, I assume, of
> > it's configuration that was to be purged. It makes sense when a new
> > group was created for the purpose, but in this case -- and in any
> > similar case where someone fills in an already existing group -- I
> > don't think it should've done that without even asking.



> Well the fact is that if you had debconf configured to show low
> priority questions then you would see question regarding group
> deletion.

*sigh* Why can't I think of such a very logical explanation myself...

> I could raise its priority to be shown even if someone has debconf
> set to show only medium priority questions.
>
> Would it be enough?

I think it would be great. I really don't consider this a low priority 
question. For the aforementioned reason, I mean. If a new group has 
been created, it makes sense. But in this case, I would've appreciated 
the possibility to *not* remove the group.

Thanks for your quick reply,
Tom

-- 
key: http://tmp.verbreyt.be/files/abwaerts.asc


pgpy0KMNb9HFK.pgp
Description: PGP signature


Bug#314994: Should we remove python-slang and woody?

2005-10-24 Thread tom
IMO, just remove them.

Tom Cato

On Mon, Oct 24, 2005 at 04:31:36AM +0200, Matej Vela wrote:
> On Mon, Jun 20, 2005 00:28:53 +0200, Tom Cato Amundsen wrote:
> > I'm orphaning this because I don't have time/interest to fix
> > it to rebuild it with slang2. The only package depending on it
> > is woody (outliner/todo editor) which I also will orphan because
> > I don't use it any more.
> >
> > IMO, we should just remove this package from the archive.
> 
> python-slang and woody have been uninstallable since July due to the
> slang1->libslang1 transition.  Do you think it's time to remove them,
> or should we do a QA upload?
> 
> Thanks,
> 
> Matej
> 

-- 
Tom Cato Amundsen <[EMAIL PROTECTED]> http://www.solfege.org/
GNU Solfege - free ear traininghttp://www.gnu.org/software/solfege/


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



Bug#330478: solfege: Should depend on python2.3-gnome2-extras

2005-09-29 Thread tom
Hello,
I'm preparing debian packages for solfege 3.0 that will fix this.
I'm a little buzy, but it should be done in a few days.
-- 
Tom Cato Amundsen <[EMAIL PROTECTED]> http://www.solfege.org/
GNU Solfege - free ear traininghttp://www.gnu.org/software/solfege/


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



Bug#330843: Problem encountered with openssh-server/pam on sid after dist-upgrading

2005-09-30 Thread tom
Hello,

I have the same problem after an apt-get upgrade. This is a critical bug and
should be fixed immediately. A workaround is disabling PAM in the sshd_config.

Thomas Steinacher


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



Bug#312679: gmpc: It's exactly the point of mpd that it won't stop playing by that!

2005-10-14 Thread Tom
Package: gmpc
Version: 0.11.2-2
Followup-For: Bug #312679

The point of mpd is, I thought, that you can have multiple
clients, of various specifications, even running at once if
that's what you prefer.

If quitting a front-end would make the daemon stop playing,
I think that point is lost.

Cheers,
Tom


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12.3-zukunft
Locale: LANG=en_US, [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages gmpc depends on:
ii  libatk1.0-0   1.10.3-1   The ATK accessibility toolkit
ii  libbonobo2-0  2.10.1-1   Bonobo CORBA interfaces library
ii  libc6 2.3.5-6GNU C Library: Shared libraries an
ii  libglade2-0   1:2.5.1-2  library to load .glade files at ru
ii  libglib2.0-0  2.8.3-1The GLib library of C routines
ii  libgnomevfs2-02.10.1-5   The GNOME virtual file-system libr
ii  libgtk2.0-0   2.6.10-1   The GTK+ graphical user interface 
ii  liborbit2 1:2.12.4-1 libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0 1.8.2-3Layout and rendering of internatio
ii  libx11-6  6.8.2.dfsg.1-8 X Window System protocol client li
ii  libxml2   2.6.22-1   GNOME XML library
ii  xlibs 6.8.2.dfsg.1-8 X Window System client libraries m
ii  zlib1g1:1.2.3-4  compression library - runtime

gmpc recommends no packages.

-- no debconf information


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



Bug#51446: Norton SystemWorks 2005 Premier plus Internet Security 2005 - $39.95

2005-08-11 Thread Tom

Adobe Photoshop CS2 9.0 - $54.95
http://raped.qongo.com/





He not busy being born is busy dying. 
Glory is fleeting, but obscurity is forever.  
If my film makes one more person miserable, I've done my job. 





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



Bug#32579: All software - duty-free prices

2005-07-30 Thread Tom

Super software, swell prices, splendid service.
http://yympom.0pmx3h0txsipxj0.ggcrissci.com




A countryman between two lawyers is like a fish between two cats. 
Advertisements... contain the only truths to be relied on in a newspaper. 





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



Bug#403699: ktrack: Crashes on startup

2006-12-18 Thread Tom
Package: ktrack
Version: 0.3.0-alpha1-8.1
Severity: grave
Justification: renders package unusable


The package ktrack crashes upon startup from the command line with the
signal 11 (SIGSEV). The shell prints out "ktrack: ERROR: Communication
problem with ktrack, it probably crashed.", and a debug report shows 
the following:

[KCrash handler]
#5  0x0805a2ad in QGList::count ()
#6  0x08059ea5 in QGList::count ()
#7  0x08069efb in QMemArray::detach ()
#8  0x0806b2eb in QMemArray::detach ()
#9  0x0807d688 in QWidget::setWFlags ()
#10 0xa710bcb3 in QObject::activate_signal () from /usr/lib/libqt-mt.so.3
#11 0xa7494cef in QSignal::signal () from /usr/lib/libqt-mt.so.3
#12 0xa712b836 in QSignal::activate () from /usr/lib/libqt-mt.so.3
#13 0xa7133208 in QSingleShotTimer::event () from /usr/lib/libqt-mt.so.3
#14 0xa70a3bd6 in QApplication::internalNotify () from
#/usr/lib/libqt-mt.so.3
#15 0xa70a59f3 in QApplication::notify () from /usr/lib/libqt-mt.so.3
#16 0xa7854e0e in KApplication::notify () from /usr/lib/libkdecore.so.4
#17 0xa70373d1 in QApplication::sendEvent () from /usr/lib/libqt-mt.so.3
#18 0xa70965d3 in QEventLoop::activateTimers () from /usr/lib/libqt-mt.so.3
#19 0xa704b71f in QEventLoop::processEvents () from /usr/lib/libqt-mt.so.3
#20 0xa70be129 in QEventLoop::enterLoop () from /usr/lib/libqt-mt.so.3
#21 0xa70bdf4a in QEventLoop::exec () from /usr/lib/libqt-mt.so.3
#22 0xa70a576f in QApplication::exec () from /usr/lib/libqt-mt.so.3
#23 0x0806ca9b in QValueListPrivate::~QValueListPrivate ()
#24 0xa68ffea8 in __libc_start_main () from /lib/tls/libc.so.6
#25 0x08058171 in ?? ()


-- 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-2-k7
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages ktrack depends on:
ii  kdelibs4c2a4:3.5.5a.dfsg.1-5 core libraries and binaries for al
ii  libacl12.2.41-1  Access control list shared library
ii  libart-2.0-2   2.3.17-1  Library of functions for 2D graphi
ii  libattr1   2.4.32-1  Extended attribute shared library
ii  libaudio2  1.8-2 The Network Audio System (NAS). (s
ii  libc6  2.3.6.ds1-8   GNU C Library: Shared libraries
ii  libfam02.7.0-11  Client library to control the FAM 
ii  libfontconfig1 2.4.1-2   generic font configuration library
ii  libfreetype6   2.2.1-5   FreeType 2 font engine, shared lib
ii  libgcc11:4.1.1-19GCC support library
ii  libhamlib2 1.2.5-7.1 Run-time library to control radio 
ii  libice61:1.0.1-2 X11 Inter-Client Exchange library
ii  libidn11   0.6.5-1   GNU libidn library, implementation
ii  libjpeg62  6b-13 The Independent JPEG Group's JPEG 
ii  libpng12-0 1.2.13-4  PNG library - runtime
ii  libqt3-mt  3:3.3.7-1 Qt GUI Library (Threaded runtime v
ii  libsm6 1:1.0.1-3 X11 Session Management library
ii  libstdc++6 4.1.1-19  The GNU Standard C++ Library v3
ii  libusb-0.1-4   2:0.1.12-2userspace USB programming library
ii  libx11-6   2:1.0.3-4 X11 client-side library
ii  libxcursor11.1.7-4   X cursor management library
ii  libxext6   1:1.0.1-2 X11 miscellaneous extension librar
ii  libxft22.1.8.2-8 FreeType-based font drawing librar
ii  libxi6 1:1.0.1-4 X11 Input extension library
ii  libxinerama1   1:1.0.1-4.1   X11 Xinerama extension library
ii  libxrandr2 2:1.1.0.2-5   X11 RandR extension library
ii  libxrender11:0.9.1-3 X Rendering Extension client libra
ii  libxt6 1:1.0.2-2 X11 toolkit intrinsics library
ii  zlib1g 1:1.2.3-13compression library - runtime

Versions of packages ktrack recommends:
ii  xplanet 1.2.0-1.3+b1 render images of the earth

-- no debconf information


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



Bug#401619: flashplugin-nonfree: Becomes very slow on Firefox

2006-12-04 Thread Tom
Package: flashplugin-nonfree
Version: 9.0.21.78.3
Severity: important


I run Firefox version 1.5.dfsg+1.5.0.7-2, and when I open multiple websites
that use Flash with the new plugin, Firefox slows down to the point of 
freezing; if too many are open, the program locks and I have to restart it,
losing everything I was working on. 

-- 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-2-k7
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages flashplugin-nonfree depends on:
ii  debconf [debconf-2.0] 1.5.8  Debian configuration management sy
ii  gsfonts-x11   0.20   Make Ghostscript fonts available t
ii  libxext6  1:1.0.1-2  X11 miscellaneous extension librar
ii  libxmu6   1:1.0.2-2  X11 miscellaneous utility library
ii  libxt61:1.0.2-2  X11 toolkit intrinsics library
ii  wget  1.10.2-2   retrieves files from the web

Versions of packages flashplugin-nonfree recommends:
pn  xfs(no description available)

-- debconf information:
  flashplugin-nonfree/httpget: false
  flashplugin-nonfree/not_exist:
  flashplugin-nonfree/local:


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



Bug#401251: firefox: All running Firefoxes crash when viewing website

2006-12-01 Thread Tom
Package: firefox
Version: 1.5.dfsg+1.5.0.7-2
Severity: grave
Justification: causes non-serious data loss



All running instances of Firefox immediately crash and exit when
viewing the website 
http://www.infoworld.com/article/03/09/15/HNkoreaspam_1.html.
The gdb backtrace turned up only "No stack."
Firefox simply quits running instantly; it does not hang up or 
freeze.

-- 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-2-k7
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages firefox depends on:
ii  debianutils   2.17   Miscellaneous utilities specific t
ii  fontconfig2.4.1-2generic font configuration library
ii  libatk1.0-0   1.12.3-1   The ATK accessibility toolkit
ii  libc6 2.3.6.ds1-8GNU C Library: Shared libraries
ii  libcairo2 1.2.4-4The Cairo 2D vector graphics libra
ii  libfontconfig12.4.1-2generic font configuration library
ii  libfreetype6  2.2.1-5FreeType 2 font engine, shared lib
ii  libgcc1   1:4.1.1-19 GCC support library
ii  libglib2.0-0  2.12.4-1   The GLib library of C routines
ii  libgtk2.0-0   2.8.20-3   The GTK+ graphical user interface 
ii  libjpeg62 6b-13  The Independent JPEG Group's JPEG 
ii  libpango1.0-0 1.14.7-1   Layout and rendering of internatio
ii  libpng12-01.2.13-4   PNG library - runtime
ii  libstdc++64.1.1-19   The GNU Standard C++ Library v3
ii  libx11-6  2:1.0.3-3  X11 client-side library
ii  libxft2   2.1.8.2-8  FreeType-based font drawing librar
ii  libxinerama1  1:1.0.1-4.1X11 Xinerama extension library
ii  libxp61:1.0.0.xsf1-1 X Printing Extension (Xprint) clie
ii  libxt61:1.0.2-2  X11 toolkit intrinsics library
ii  psmisc22.3-1 Utilities that use the proc filesy
ii  zlib1g1:1.2.3-13 compression library - runtime

firefox recommends no packages.

-- no debconf information


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



Bug#295921: caudium: Caudium takes over from Apache

2005-02-18 Thread Tom
Package: caudium
Version: 2:1.2.35-1
Severity: normal

After dist-upgrades on several systems, Caudium all of a sudden was
installed (I never asked for it and didn't even know what it was). 
That isn't a problem in and of itself, I suppose, if the Debian
maintainers consider it important enough (although I seriously doubt
a lot of people are using it).

What is a problem is that Caudium was started at boot time on port 80
and prevented Apache from running.  Worse yet, Caudium's default
configuration seems to be such that it exposes the source for PHP
scripts.  And because Caudium serves normal web pages from the normal
places, one doesn't even immediately notice this problem.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.9-1-k7
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages caudium depends on:
ii  caudium-modules 2:1.2.35-1   C modules for Caudium
ii  debconf 1.4.45   Debian configuration management sy
ii  libc6   2.3.2.ds1-20 GNU C Library: Shared libraries an
ii  pike7.2 7.2.580-3Powerful interpreted programming l
ii  pike7.2-crypto  7.2.580-3Crypto module for Pike
ii  pike7.2-gz  7.2.580-3Gz module for Pike
ii  pike7.2-image   7.2.580-3Image module for Pike

-- debconf information:
* caudium/start_options: threads
  caudium/cfg_port_taken:
* caudium/config_port: 22202
  caudium/experimental_http: false
  caudium/config_password_mismatch:
* caudium/config_login: admin
* caudium/config_password_reset:
* caudium/performance: false
* caudium/listen_on: 80
* caudium/last_screen:


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



Bug#390133: openoffice.org: In case it helps: same here

2006-09-29 Thread Tom
Package: openoffice.org
Version: 2.0.4~rc2-2
Followup-For: Bug #390133

Just in case it helps: same here, with any file type (.ppt, .doc, .xls).
I'll attach the trace I get when trying to open an .xls file.

Cheers,
Tom


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17-2-686
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
javaldx: Could not find a Java Runtime Environment!
This should only happen once


Fatal exception: Signal 11
Stack:
/usr/lib/openoffice/program/libuno_sal.so.3[0xa7203bbc]
/usr/lib/openoffice/program/libuno_sal.so.3[0xa7203d02]
/usr/lib/openoffice/program/libuno_sal.so.3[0xa7203d98]
[0xe420]
/usr/lib/openoffice/program/i18npool.uno.so[0xa22150cf]
/usr/lib/openoffice/program/libvcl680li.so[0xa7d61be5]
/usr/lib/openoffice/program/libvcl680li.so[0xa7d669d3]
/usr/lib/openoffice/program/libvcl680li.so(_ZN12OutputDevice8DrawTextERK9Rectang
leRK6StringtPN8stlp_std6vectorIS0_NS6_9allocatorIS0_PS3_+0x125)[0xa7d677f5]
/usr/lib/openoffice/program/libvcl680li.so[0xa7edff40]
/usr/lib/openoffice/program/libvcl680li.so(_ZN9FixedText5PaintERK9Rectangle+0x49
)[0xa7ee0f69]
/usr/lib/openoffice/program/libvcl680li.so[0xa7e8e912]
/usr/lib/openoffice/program/libvcl680li.so[0xa7e8e65e]
/usr/lib/openoffice/program/libvcl680li.so[0xa7e8e65e]
/usr/lib/openoffice/program/libvcl680li.so[0xa7e8f2be]
/usr/lib/openoffice/program/libvcl680li.so[0xa7e8f478]
/usr/lib/openoffice/program/libvcl680li.so[0xa7e8f4a8]
/usr/lib/openoffice/program/libvcl680li.so(_ZN5Timer7TimeoutEv+0x1c)[0xa7cb80ec]
/usr/lib/openoffice/program/libvcl680li.so(_ZN5Timer21ImplTimerCallbackProcEv+0x
7b)[0xa7cb830b]
/usr/lib/openoffice/program/libvclplug_gen680li.so(_ZNK10X11SalData7TimeoutEv+0x
2a)[0xa5b95f4a]
/usr/lib/openoffice/program/libvclplug_gen680li.so(_ZN7SalXLib12CheckTimeoutEb+0
xc2)[0xa5b94ca2]
/usr/lib/openoffice/program/libvclplug_gen680li.so(_ZN7SalXLib5YieldEbb+0x41a)[0
xa5b953ba]
/usr/lib/openoffice/program/libvclplug_gen680li.so(_ZN14X11SalInstance5YieldEbb+
0x37)[0xa5b9f8f7]
/usr/lib/openoffice/program/libvcl680li.so(_ZN11Application5YieldEb+0x6c)[0xa7cb
1e5c]
/usr/lib/openoffice/program/libsvx680li.so[0xa2c4672c]
/usr/lib/openoffice/program/libsvx680li.so[0xa2c3d128]
/usr/lib/openoffice/program/libsvx680li.so[0xa2e27147]
/usr/lib/openoffice/program/libsvx680li.so[0xa2e28858]
/usr/lib/openoffice/program/soffice.bin(_ZN7desktop19impl_callRecoveryUIEhhh+0x6
14)[0x8064ae4]
/usr/lib/openoffice/program/soffice.bin(_ZN7desktop7Desktop9SaveTasksEl+0x1e)[0x
8064e5e]
/usr/lib/openoffice/program/soffice.bin(_ZN7desktop7Desktop9ExceptionEt+0x292)[0
x8065102]
/usr/lib/openoffice/program/libvcl680li.so[0xa7cb704c]
/usr/lib/openoffice/program/libvos3gcc3.so(_ZN3vos26signalHandlerFunction_implEP
vP13oslSignalInfo+0x18)[0xa745e738]
/usr/lib/openoffice/program/libuno_sal.so.3[0xa7203837]
/usr/lib/openoffice/program/libuno_sal.so.3[0xa7203d6e]
[0xe420]
/usr/lib/openoffice/program/i18npool.uno.so[0xa22150cf]
/usr/lib/openoffice/program/libvcl680li.so[0xa7d61be5]
/usr/lib/openoffice/program/libvcl680li.so[0xa7d669d3]
/usr/lib/openoffice/program/libvcl680li.so(_ZN12OutputDevice8DrawTextERK9Rectang
leRK6StringtPN8stlp_std6vectorIS0_NS6_9allocatorIS0_PS3_+0x125)[0xa7d677f5]
/usr/lib/openoffice/program/libvcl680li.so[0xa7edff40]
/usr/lib/openoffice/program/libvcl680li.so(_ZN9FixedText5PaintERK9Rectangle+0x49
)[0xa7ee0f69]
/usr/lib/openoffice/program/libvcl680li.so[0xa7e8e912]
/usr/lib/openoffice/program/libvcl680li.so[0xa7e8e65e]
/usr/lib/openoffice/program/libvcl680li.so[0xa7e8f2be]
/usr/lib/openoffice/program/libvcl680li.so[0xa7e8f478]
/usr/lib/openoffice/program/libvcl680li.so[0xa7e8f4a8]
/usr/lib/openoffice/program/libvcl680li.so(_ZN5Timer7TimeoutEv+0x1c)[0xa7cb80ec]
/usr/lib/openoffice/program/libvcl680li.so(_ZN5Timer21ImplTimerCallbackProcEv+0x
7b)[0xa7cb830b]
/usr/lib/openoffice/program/libvclplug_gen680li.so(_ZNK10X11SalData7TimeoutEv+0x
2a)[0xa5b95f4a]
/usr/lib/openoffice/program/libvclplug_gen680li.so(_ZN7SalXLib12CheckTimeoutEb+0
xc2)[0xa5b94ca2]
/usr/lib/openoffice/program/libvclplug_gen680li.so(_ZN7SalXLib5YieldEbb+0x41a)[0
xa5b953ba]
/usr/lib/openoffice/program/libvclplug_gen680li.so(_ZN14X11SalInstance5YieldEbb+
0x37)[0xa5b9f8f7]
/usr/lib/openoffice/program/libvcl680li.so(_ZN11Application5YieldEb+0x6c)[0xa7cb
1e5c]
/usr/lib/openoffice/program/libvcl680li.so(_ZN6Dialog7ExecuteEv+0x1c8)[0xa7e2956
8]
/usr/lib/openoffice/program/libsvx680li.so[0xa2c3cab5]
/usr/lib/openoffice/program/libsvx680li.so[0xa2c3cb51]
/usr/lib/openoffice/program/libsvx680li.so[0xa2c3cb78]
/usr/lib/openoffice/program/libvcl680li.so(_ZN7Control32ImplCallEventListenersAn
dHandlerEmRK4LinkPv+0x80)[0xa7eba460]
/usr/lib/openoffice/program/libvcl680li.so(_ZN6Button5ClickEv+0x34)[0xa7eace14]
/usr/lib/openoffice/program/libvcl680li.so(_ZN12CancelButton5ClickEv+0x2c)[0xa7e
b02bc]
/usr

Bug#390893: apache2-common pre-removal script error ("undefined symbol: apr_get_userid")

2006-10-03 Thread Tom
Package: apache2-common
Version: 2.0.55-4.2
Severity: grave
Justification: renders package unusable

Hey ho,

Removing apache2-common ...
Stopping apache 2.0 web server...apache2:
   Syntax error on line 116 of /etc/apache2/apache2.conf:
   Syntax error on line 1 of /etc/apache2/mods-enabled/userdir.load:
   Cannot load /usr/lib/apache2/modules/mod_userdir.so into server:
   /usr/lib/apache2/modules/mod_userdir.so: undefined symbol: apr_get_userid
 failed!
invoke-rc.d: initscript apache2, action "stop" failed.
dpkg: error processing apache2-common (--remove):
 subprocess pre-removal script returned error exit status 1
Errors were encountered while processing:
 apache2-common
E: Sub-process /usr/bin/dpkg returned an error code (1)

In bug 390789 [1], someone reported a slightly similar problem (although
that concerned another undefined symbol), but apparently that user "worked
around that easily enough". Sadly, I am unable to do so, so I hope this
report is justified.

Cheers,
Tom

[1] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=390789


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17-2-686
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages apache2-common depends on:
ii  apache2-utils2.0.55-4.2  utility programs for webservers
ii  debconf  1.5.5   Debian configuration management sy
ii  debianutils  2.17.3  Miscellaneous utilities specific t
ii  libc62.3.6.ds1-5 GNU C Library: Shared libraries
ii  libdb4.4 4.4.20-8Berkeley v4.4 Database Libraries [
ii  libexpat11.95.8-3.3  XML parsing C library - runtime li
ii  libgcc1  1:4.1.1-15  GCC support library
ii  libmagic14.17-4  File type determination library us
ii  lsb-base 3.1-17  Linux Standard Base 3.1 init scrip
ii  mime-support 3.37-1  MIME files 'mime.types' & 'mailcap
ii  net-tools1.60-17 The NET-3 networking toolkit
ii  openssl  0.9.8c-2Secure Socket Layer (SSL) binary a
ii  ssl-cert 1.0.13  Simple debconf wrapper for openssl

apache2-common recommends no packages.

-- no debconf information


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



Bug#393117: firefox: Crashes when viewing http://www.azlyrics.com/k.html

2006-10-14 Thread Tom
Package: firefox
Version: 1.5.dfsg+1.5.0.7-1
Severity: normal


Mozilla Firefox crashes when viewing the website
http://www.azlyrics.com/k.html. The crash occurs quickly; Firefox doesn't
freeze, stall, or start eating the memory. When run from the command line,
it prints the error message "Segmentation fault" when it crashes. This crash
still occurs in safe mode. Running gdb with the commands "set pagination
off" and "run", crashing Firefox, and then typing "bt full" prints only the
message "No stack."

-- 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-2-k7
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages firefox depends on:
ii  debianutils   2.17   Miscellaneous utilities specific t
ii  fontconfig2.4.1-2generic font configuration library
ii  libatk1.0-0   1.12.2-1   The ATK accessibility toolkit
ii  libc6 2.3.6.ds1-4GNU C Library: Shared libraries
ii  libcairo2 1.2.4-1The Cairo 2D vector graphics libra
ii  libfontconfig12.4.1-2generic font configuration library
ii  libfreetype6  2.2.1-5FreeType 2 font engine, shared lib
ii  libgcc1   1:4.1.1-13 GCC support library
ii  libglib2.0-0  2.12.3-2   The GLib library of C routines
ii  libgtk2.0-0   2.8.20-2   The GTK+ graphical user interface 
ii  libjpeg62 6b-13  The Independent JPEG Group's JPEG 
ii  libpango1.0-0 1.14.5-1   Layout and rendering of internatio
ii  libpng12-01.2.8rel-5.2   PNG library - runtime
ii  libstdc++64.1.1-13   The GNU Standard C++ Library v3
ii  libx11-6  2:1.0.0-9  X11 client-side library
ii  libxft2   2.1.8.2-8  FreeType-based font drawing librar
ii  libxinerama1  1:1.0.1-4.1X11 Xinerama extension library
ii  libxp61:1.0.0.xsf1-1 X Printing Extension (Xprint) clie
ii  libxt61:1.0.2-2  X11 toolkit intrinsics library
ii  psmisc22.3-1 Utilities that use the proc filesy
ii  zlib1g1:1.2.3-13 compression library - runtime

firefox recommends no packages.

-- no debconf information


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



Bug#686166: libsqliteodbc: querying SQLite through ODBC not possible

2012-08-29 Thread tom
Package: libsqliteodbc
Version: 0.91-3
Severity: normal

Dear Maintainer,

Querying a SQLite database is not possible through ODBC with libsqliteodbc
neither with isql nor R or LibreOffice Base.

These are the steps to reproduce:

apt-get install r-cran-rodbc libsqliteodbc sqlite3 unixodbc-bin \
r-cran-rsqlite

sqlite3 testdb.sqlite 'create table test
(id integer primary key, test text);
insert into test values (1, "test");'

ODBCManageDataSourcesQ4
# add DSN with name 'testdb' referring to
# testdb.sqlite with SQLite3 driver

echo 'select * from test' | isql testdb

echo 'library(RODBC)
sqlQuery(odbcConnect("testdb"), "select * from test")' |
R --vanilla


# The following indicates, that 'testdb.sqlite' can be accessed directly:
echo 'select * from test;' | sqlite3 testdb.sqlite

echo 'library(RSQLite)
dbGetQuery(dbConnect("SQLite", dbname="testdb.sqlite"),
"select * from test")' |
R --vanilla
# returns a data.frame as expected

Thanks for any help on this issue!
Regards,
Tom



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

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

Versions of packages libsqliteodbc depends on:
ii  libc6 2.13-35
ii  libsqlite02.8.17-7
ii  libsqlite3-0  3.7.13-1

libsqliteodbc recommends no packages.

Versions of packages libsqliteodbc suggests:
ii  unixodbc-bin  2.3.0-3

-- 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#640343: simple-cdd: BOOT_TIMEOUT is not documented

2011-09-04 Thread Tom
Package: simple-cdd
Version: 0.3.13
Severity: minor

The use of BOOT_TIMEOUT is not documented anywhere. This makes it impossible
to create an installation which is fully automatic

See also:
http://www.mail-archive.com/debian-custom@lists.debian.org/msg02318.html

-- System Information:
Debian Release: 6.0.2
  APT prefers stable
  APT policy: (990, 'stable'), (700, 'testing'), (500, 'stable-updates'), (450, 
'unstable')
Architecture: i386 (i686)

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

Versions of packages simple-cdd depends on:
ii  apt-utils  0.8.10.3+squeeze1 APT utility programs
ii  dctrl-tools2.14.5Command-line tools to process Debi
ii  debian-cd  3.1.5 Tools for building (Official) Debi
ii  debootstrap1.0.26+squeeze1   Bootstrap a basic Debian system
ii  lsb-release3.2-23.2squeeze1  Linux Standard Base version report
ii  python 2.6.6-3+squeeze6  interactive high-level object-orie
ii  reprepro   4.2.0-2squeeze1   Debian package repository producer
ii  rsync  3.0.7-2   fast remote file copy program (lik
ii  wget   1.12-2.1  retrieves files from the web

Versions of packages simple-cdd recommends:
ii  edos-debcheck1.0-9   Check package dependencies (transi
ii  edos-distcheck [edos-debchec 1.4.2-11+b1 Checks whether dependencies of pac

Versions of packages simple-cdd suggests:
ii  qemu-system0.12.5+dfsg-3squeeze1 QEMU full system emulation binarie

-- no debconf information

-- debsums errors found:
debsums: changed file /usr/share/simple-cdd/tools/testing/qemu (from simple-cdd 
package)



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



Bug#640344: simple-cdd fails to preseed passwords

2011-09-04 Thread Tom
Package: simple-cdd
Version: 0.3.13
Severity: normal

When trying to preseed a password with simple-cdd, eg 
passwd/root-password-crypted,
simple-cdd fails with the following error message:

debconf: DbDriver "passwords" warning: could not open 
/var/cache/debconf/passwords.dat: Permission denied
error: Cannot find a question for passwd/root-password-crypted

because the question for the existing template is in the inaccessible 
passwords.dat

-- System Information:
Debian Release: 6.0.2
  APT prefers stable
  APT policy: (990, 'stable'), (700, 'testing'), (500, 'stable-updates'), (450, 
'unstable')
Architecture: i386 (i686)

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

Versions of packages simple-cdd depends on:
ii  apt-utils  0.8.10.3+squeeze1 APT utility programs
ii  dctrl-tools2.14.5Command-line tools to process Debi
ii  debian-cd  3.1.5 Tools for building (Official) Debi
ii  debootstrap1.0.26+squeeze1   Bootstrap a basic Debian system
ii  lsb-release3.2-23.2squeeze1  Linux Standard Base version report
ii  python 2.6.6-3+squeeze6  interactive high-level object-orie
ii  reprepro   4.2.0-2squeeze1   Debian package repository producer
ii  rsync  3.0.7-2   fast remote file copy program (lik
ii  wget   1.12-2.1  retrieves files from the web

Versions of packages simple-cdd recommends:
ii  edos-debcheck1.0-9   Check package dependencies (transi
ii  edos-distcheck [edos-debchec 1.4.2-11+b1 Checks whether dependencies of pac

Versions of packages simple-cdd suggests:
ii  qemu-system0.12.5+dfsg-3squeeze1 QEMU full system emulation binarie

-- no debconf information

-- debsums errors found:
debsums: changed file /usr/share/simple-cdd/tools/testing/qemu (from simple-cdd 
package)
yes, I applied http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=611635#15



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



Bug#650002: network-manager-gnome: connection to WiFi leads to 'Gtk-WARNING **: cannot open display: :0.0'

2011-11-25 Thread tom
Package: network-manager-gnome
Version: 0.9.2.0-1
Severity: normal

Dear Maintainer,

connecting to wireless LAN leads to the fact that it is impossible to open any 
new window (since a dist-upgrade yesterday).
Typing a command in a previously opened terminal that normally opens a new 
window (e.g. `mousepad') 
leads to the following message:

'No protocol specified

(mousepad:3883): Gtk-WARNING **: cannot open display: :0.0'

If any further info is needed I will try to provide it.
Thanks!
Tom

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

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

Versions of packages network-manager-gnome depends on:
ii  dbus-x11 1.4.16-1  
ii  dpkg 1.16.1.1  
ii  gconf2   2.32.4-1  
ii  gnome-icon-theme 3.2.1.2-1 
ii  libatk1.0-0  2.2.0-2   
ii  libc62.13-21   
ii  libcairo-gobject21.10.2-6.1
ii  libcairo21.10.2-6.1
ii  libdbus-1-3  1.4.16-1  
ii  libdbus-glib-1-2 0.98-1
ii  libfontconfig1   2.8.0-3   
ii  libfreetype6 2.4.8-1   
ii  libgconf2-4  2.32.4-1  
ii  libgdk-pixbuf2.0-0   2.24.0-1  
ii  libglib2.0-0 2.28.8-1  
ii  libgnome-bluetooth8  3.2.1-1   
ii  libgnome-keyring03.2.0-3   
ii  libgtk-3-0   3.0.12-2  
ii  libnm-glib-vpn1  0.9.2.0-1 
ii  libnm-glib4  0.9.2.0-1 
ii  libnm-gtk0   0.9.2.0-1 
ii  libnm-util2  0.9.2.0-1 
ii  libnotify4   0.7.4-1   
ii  libpango1.0-01.29.4-2  
ii  network-manager  0.9.2.0-1 
ii  policykit-1-gnome0.105-1   

Versions of packages network-manager-gnome recommends:
ii  gnome-bluetooth3.2.1-1   
ii  iso-codes  3.30-1
ii  libpam-gnome-keyring [libpam-keyring]  3.0.3-2   
ii  mobile-broadband-provider-info 20110806-1
ii  notification-daemon0.7.3-1   
ii  xfce4-notifyd [notification-daemon]0.2.2-1   

Versions of packages network-manager-gnome suggests:
ii  network-manager-openvpn-gnome 
ii  network-manager-pptp-gnome
ii  network-manager-vpnc-gnome 0.9.2.0-1

-- 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#650149: simple-cdd: edos-debcheck fails because it is called for each archive area independently

2011-11-26 Thread Tom
Package: simple-cdd
Version: 0.3.13
Severity: normal


calling edos-debcheck for each archive area separately produces incorrect error 
messages:

checking for missing dependencies with edos-debcheck: 
/home/software/simple-cdd/tmp//cd-build/squeeze/CD1/dists/squeeze/main/binary-i386/Packages
Completing conflicts...* 100.0%
Conflicts and dependencies...  * 100.0%
Solving* 100.0%
checking for missing dependencies with edos-debcheck: 
/home/software/simple-cdd/tmp//cd-build/squeeze/CD1/dists/squeeze/non-free/binary-i386/Packages
Completing conflicts...* 100.0%
Conflicts and dependencies...  * 100.0%
Solving* 100.0%
unrar (= 1:3.9.10-1): FAILED
  unrar (= 1:3.9.10-1) depends on missing:
  - libc6 (>= 2.2)
lha (= 1.14i-10.3): FAILED
  lha (= 1.14i-10.3) depends on missing:
  - libc6 (>= 2.6.1-1)
software@romulus:~/simple-cdd$ 

However, unrar and lha depend on packages which are present in the main archive:

software@romulus:~/simple-cdd$ cat 
/home/software/simple-cdd/tmp//cd-build/squeeze/CD1/dists/squeeze/main/binary-i386/Packages
 
/home/software/simple-cdd/tmp//cd-build/squeeze/CD1/dists/squeeze/non-free/binary-i386/Packages
 | edos-debcheck -failures -explain
Completing conflicts...* 100.0%
Conflicts and dependencies...  * 100.0%
Solving* 100.0%
software@romulus:~/simple-cdd$ 

Everything is fine, the error message is a flase positive.


-- System Information:
Debian Release: 6.0.3
  APT prefers stable
  APT policy: (990, 'stable'), (700, 'testing'), (500, 'stable-updates'), (450, 
'unstable')
Architecture: i386 (i686)

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

Versions of packages simple-cdd depends on:
ii  apt-utils  0.8.10.3+squeeze1 APT utility programs
ii  dctrl-tools2.14.5Command-line tools to process Debi
ii  debian-cd  3.1.5 Tools for building (Official) Debi
ii  debootstrap1.0.26+squeeze1   Bootstrap a basic Debian system
ii  lsb-release3.2-23.2squeeze1  Linux Standard Base version report
ii  python 2.6.6-3+squeeze6  interactive high-level object-orie
ii  reprepro   4.2.0-2squeeze1   Debian package repository producer
ii  rsync  3.0.7-2   fast remote file copy program (lik
ii  wget   1.12-2.1  retrieves files from the web

Versions of packages simple-cdd recommends:
ii  edos-debcheck1.0-9   Check package dependencies (transi
ii  edos-distcheck [edos-debchec 1.4.2-11+b1 Checks whether dependencies of pac

Versions of packages simple-cdd suggests:
ii  qemu-system0.12.5+dfsg-3squeeze1 QEMU full system emulation binarie

-- no debconf information

-- debsums errors found:
debsums: changed file /usr/share/simple-cdd/tools/testing/qemu (from simple-cdd 
package)



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



Bug#287014: (LDAP) object class modification from inetOrgPerson to evolutionPerson not allowed

2015-09-19 Thread Tom
Control: reassign -1 src:evolution-data-server
Control: retitle -1 evolutionPerson schema incompatible with other MUAs
Control: found -1 3.4.4-3+deb7u1 3.12.9~git20141128.5242b0-2+deb8u2
thanks

This bug is still present in jessie. It is due to the definition of the
evolutionPerson objectclass. It should not be STRUCTURAL, but AUXILIARY:

/usr/share/evolution-data-server/evolutionperson.schema contains:
# evolutionPerson
objectclass ( 1.3.6.1.4.1.8506.1.3.1
NAME 'evolutionPerson'
DESC 'Objectclass geared to Evolution Usage'
SUP inetOrgPerson
STRUCTURAL



Bug#856905: feature request - bind9 json stats output

2017-03-05 Thread tom

Package: bind9
Version: 9.10

BIND with new 9.10 version supports JSON statistical output, but needs 
to be compiled with --with-libjson option. Is it possible to add this 
feature into the package as JSON format is popular nowadays and has less 
resource impact then XML.

Thank you very much!



Bug#823351: specto does not recogniced network connection

2016-05-03 Thread tom
Package: specto
Version: 0.2.2-3.3
Severity: important

Dear Maintainer,

*** Reporter, please consider answering these questions, where appropriate ***

   * What led up to the situation?
   * What exactly did you do (or not do) that was effective (or
 ineffective)?
   * What was the outcome of this action?
   * What outcome did you expect instead?

*** End of the template - remove these template lines ***



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

Kernel: Linux 4.5.0-1-amd64 (SMP w/1 CPU core)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages specto depends on:
ii  gconf23.2.6-3
ii  gnome-icon-theme  3.12.0-1
ii  librsvg2-common   2.40.15-1
ii  python2.7.11-1
ii  python-dbus   1.2.4-1
ii  python-glade2 2.24.0-4
ii  python-gnome2 2.28.1+dfsg-1.1
ii  python-gtk2   2.24.0-4
ii  python-notify 0.1.1-4
ii  zenity3.20.0-1

specto recommends no packages.

specto suggests no packages.

-- no debconf information



Bug#770163: [php-maint] Bug#770179: sessionclean: sed: invalid option -- 'z'

2014-11-20 Thread Tom
On Wed, 19 Nov 2014 17:56:34 +0100 "Thijs Kinkhorst" 
wrote: 
> Version: 5.4.35-0+deb7u2 
> 
> On Wed, November 19, 2014 13:39, Thibaut VARENE wrote: 
> > unattended-upgrades upgraded php5 on my machine last night, and since
then 
> > I receive the following email every 30 minutes: 
> 
> This has been fixed in 5.4.35-0+deb7u2. 
> 
> 
> Thijs 
> 
> 

Will there be a release for armel?  I still only see u1.

Tom



Bug#781345: nginx(1) wrong SYNOPSIS, debian-authored manpage probably not required at all

2015-03-27 Thread tom
Package: nginx
Version: 1.2.1-2.2+wheezy3
Severity: normal

Dear Maintainer,

nginx(1), the manpage written for Debian, incorrectly gives
 as a mandatory positional argument in the SYNOPSIS.
This is wrong: the config file is optional, and is via the -c option,
not a positional argument.

Apparently an nginx(8) manpage is supplied by upstream.  This raises the
question of whether Debian should be writing its own manpage at all.

So I suggest the way to fix this bug is to remove the Debian manpage, and
install upstream's manpage instead.


-- System Information:
Debian Release: 7.7
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-4-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

Versions of packages nginx depends on:
ii  nginx-full  1.2.1-2.2+wheezy3

nginx recommends no packages.

nginx 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#802893: linux-image-3.16.0-4-amd64: booting into graphical mode sometimes fails (console still works)

2015-10-24 Thread tom
Package: src:linux
Version: 3.16.7-ckt11-1+deb8u5
Severity: important


Dear developers!

I have a amd richland APU and also a dedicated graphics card r9 290m. Im not 
using the fglrx drivers.

Sometimes booting into the graphical mode stops before the xserver should come. 
im using gdm +gnome3 a.t.m.

I add the kernel trace here (and hope its of any help for you):

Oct 24 12:25:15 hugo6 kernel: [   32.510519] [ cut here 
]
Oct 24 12:25:15 hugo6 kernel: [   32.510646] invalid opcode:  [#1] SMP 
Oct 24 12:25:15 hugo6 kernel: [   32.510691] Modules linked in: bnep 
snd_hda_codec_realtek joydev snd_hda_codec_hdmi snd_hda_codec_generic rtl8723ae 
rtl8723_common rtl_pci rtlwifi radeon mac80211 snd_hda_intel ecb btusb msi_wmi 
snd_hda_controller bluetooth sparse_keymap psmouse cfg80211 evdev snd_hda_codec 
serio_raw kvm_amd snd_hwdep 6lowpan_iphc snd_pcm kvm rfkill pcspkr ttm 
snd_timer drm_kms_helper k10temp drm snd ac wmi i2c_algo_bit i2c_piix4 i2c_core 
soundcore shpchp battery video button acpi_cpufreq processor fuse parport_pc 
ppdev lp parport autofs4 ext4 crc16 mbcache jbd2 algif_skcipher af_alg dm_crypt 
dm_mod hid_generic usbhid hid sg sd_mod crc_t10dif sr_mod crct10dif_generic 
cdrom ata_generic ohci_pci crct10dif_pclmul crct10dif_common crc32_pclmul 
crc32c_intel ghash_clmulni_intel aesni_intel aes_x86_64 lrw gf128mul 
glue_helper ablk_helper cryptd ohci_hcd ehci_pci xhci_hcd ehci_hcd alx mdio 
pata_atiixp sdhci_pci ahci sdhci libahci mmc_core libata scsi_mod usbcore 
usb_common th
 ermal thermal_sys
Oct 24 12:25:15 hugo6 kernel: [   32.511781] CPU: 1 PID: 701 Comm: Xorg Not 
tainted 3.16.0-4-amd64 #1 Debian 3.16.7-ckt11-1+deb8u5
Oct 24 12:25:15 hugo6 kernel: [   32.511855] Hardware name: Micro-Star 
International Co., Ltd. GX70 3CC/MS-176K, BIOS E176KAMS.10F 12/02/2013
Oct 24 12:25:15 hugo6 kernel: [   32.511937] task: 8800884e32f0 ti: 
8800884e8000 task.ti: 8800884e8000
Oct 24 12:25:15 hugo6 kernel: [   32.511999] RIP: 0010:[]  
[] radeon_invalid_rreg+0x1c/0x20 [radeon]
Oct 24 12:25:15 hugo6 kernel: [   32.512105] RSP: 0018:8800884eb730  
EFLAGS: 00010282
Oct 24 12:25:15 hugo6 kernel: [   32.512151] RAX: 004a RBX: 
0005 RCX: 0006
Oct 24 12:25:15 hugo6 kernel: [   32.512212] RDX: 0007 RSI: 
0046 RDI: 0246
Oct 24 12:25:15 hugo6 kernel: [   32.512272] RBP: 880235d67880 R08: 
 R09: 81659ac0
Oct 24 12:25:15 hugo6 kernel: [   32.512332] R10: 03f0 R11: 
00aa R12: 8800884eb780
Oct 24 12:25:15 hugo6 kernel: [   32.512391] R13: 0069 R14: 
0005 R15: 0005
Oct 24 12:25:15 hugo6 kernel: [   32.512452] FS:  7f3792522980() 
GS:88023ec8() knlGS:
Oct 24 12:25:15 hugo6 kernel: [   32.512520] CS:  0010 DS:  ES:  CR0: 
80050033
Oct 24 12:25:15 hugo6 kernel: [   32.512569] CR2: 7f61d2d97ed0 CR3: 
000233242000 CR4: 000407e0
Oct 24 12:25:15 hugo6 kernel: [   32.512629] Stack:
Oct 24 12:25:15 hugo6 kernel: [   32.512650]  a06bb0b0 0001884eb7b0 
8800884eb7e0 8800884eb7dc
Oct 24 12:25:15 hugo6 kernel: [   32.512726]  0072 0006 
5f78 0005
Oct 24 12:25:15 hugo6 kernel: [   32.512802]  a06bc1e5 8800884eb780 
f10f 0077
Oct 24 12:25:15 hugo6 kernel: [   32.512877] Call Trace:
Oct 24 12:25:15 hugo6 kernel: [   32.512923]  [] ? 
atom_get_src_int+0x70/0x7d0 [radeon]
Oct 24 12:25:15 hugo6 kernel: [   32.513000]  [] ? 
atom_op_shr+0x85/0x210 [radeon]
Oct 24 12:25:15 hugo6 kernel: [   32.513074]  [] ? 
atom_execute_table_locked+0x119/0x360 [radeon]
Oct 24 12:25:15 hugo6 kernel: [   32.513158]  [] ? 
atom_op_calltable+0xb3/0x130 [radeon]
Oct 24 12:25:15 hugo6 kernel: [   32.513235]  [] ? 
atom_execute_table_locked+0x119/0x360 [radeon]
Oct 24 12:25:15 hugo6 kernel: [   32.513306]  [] ? 
acpi_ds_create_operands+0x62/0xb2
Oct 24 12:25:15 hugo6 kernel: [   32.513380]  [] ? 
atom_op_calltable+0xb3/0x130 [radeon]
Oct 24 12:25:15 hugo6 kernel: [   32.513457]  [] ? 
atom_execute_table_locked+0x119/0x360 [radeon]
Oct 24 12:25:15 hugo6 kernel: [   32.513542]  [] ? 
atom_execute_table_scratch_unlocked+0x5c/0x70 [radeon]
Oct 24 12:25:15 hugo6 kernel: [   32.513630]  [] ? 
atom_execute_table+0x2e/0x50 [radeon]
Oct 24 12:25:15 hugo6 kernel: [   32.513707]  [] ? 
atom_asic_init+0x12d/0x180 [radeon]
Oct 24 12:25:15 hugo6 kernel: [   32.513795]  [] ? 
si_resume+0x16/0x70 [radeon]
Oct 24 12:25:15 hugo6 kernel: [   32.513864]  [] ? 
radeon_resume_kms+0x9d/0x270 [radeon]
Oct 24 12:25:15 hugo6 kernel: [   32.513942]  [] ? 
radeon_pmops_runtime_resume+0x68/0x90 [radeon]
Oct 24 12:25:15 hugo6 kernel: [   32.514010]  [] ? 
pci_pm_runtime_resume+0x78/0xb0
Oct 24 12:25:15 hugo6 kernel: [   32.514068]  [] ? 
__rpm_callback+0x2c/0x80
Oct 24 12:25:15 hugo6 kernel: [   32.514120]  [] ? 
rpm_cal

Bug#724887: [Aptitude-devel] Bug#724887: dpkg: warning: ignoring request to remove iproute which isn't installed

2015-06-19 Thread Tom
On Wed, 02 Apr 2014 08:06:33 +0800 =?utf-8?B?56mN5Li55bC8?= Dan Jacobson 
 wrote:

> 
> All I can say is that if apt had just tried good old dpkg -P ...
> 
> So in this case we see that apt is probably trying a remove + purge
> instead of a plain purge or something.

I can confirm that in some cases, "apt-get purge" doesn't purge an
uninstalled package whereas "dpkg --purge" works:

# apt-get purge gnome-games
Reading package lists... Done
Building dependency tree   
Reading state information... Done
The following packages will be REMOVED:
  gnome-games*
0 upgraded, 0 newly installed, 1 to remove and 0 not upgraded.
After this operation, 0 B of additional disk space will be used.
Do you want to continue [Y/n]? 
dpkg: warning: ignoring request to remove gnome-games which isn't installed

# dpkg --purge gnome-games
(Reading database ... 141051 files and directories currently installed.)
Removing gnome-games ...
Purging configuration files for gnome-games ...


I could not figure-out in what way the package state of such packages
differ from the normal case where a apt-get remove, followed by  an
apt-get purge just works as expected.


Bug#802893: linux-image-3.16.0-4-amd64: additional info

2015-11-11 Thread tom
Package: src:linux
Version: 3.16.7-ckt11-1+deb8u5
Followup-For: Bug #802893

There is one information i forgot to add: When i encouter this bug, its useless 
for me to simply reboot and try again, because the machine will ALWAYS produce 
exactly this error.
So no matter how often i reboot, i never can reach the graphical session. What 
i have to do instead is to boot into Windows. After that i can reboot into 
Linux and get into graphical mode without any problems.

This suggests, that Linux is not able to initialise the hardware correctly. But 
once the hardware gets correctly initialized by Windows, its no problem for 
Linux to boot into graphical mode.



-- Package-specific info:
** Version:
Linux version 3.16.0-4-amd64 (debian-ker...@lists.debian.org) (gcc version 
4.8.4 (Debian 4.8.4-1) ) #1 SMP Debian 3.16.7-ckt11-1+deb8u5 (2015-10-09)

** Command line:
BOOT_IMAGE=/vmlinuz-3.16.0-4-amd64 
root=UUID=25776b34-b8f2-469c-bb96-2a52652fbf4e ro quiet

** Not tainted

** Kernel log:
[   16.209484] [drm] initializing kernel modesetting (PITCAIRN 0x1002:0x6801 
0x1462:0x1117).
[   16.209510] [drm] register mmio base: 0xFEA0
[   16.209513] [drm] register mmio size: 262144
[   16.209516] vga_switcheroo: enabled
[   16.209729] ATPX version 1, functions 0x0003
[   18.207870] EXT4-fs (sda5): mounting ext3 file system using the ext4 
subsystem
[   18.217544] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: 
(null)
[   19.986504] systemd-journald[263]: Received request to flush runtime journal 
from PID 1
[   22.075855] ACPI Error: Field [TEMP] at 524288 exceeds Buffer [TVGA] size 
512000 (bits) (20140424/dsopcode-236)
[   22.075872] ACPI Error: Method parse/execution failed [\_SB_.PCI0.VGA_.ATRM] 
(Node 88023e04e748), AE_AML_BUFFER_LIMIT (20140424/psparse-536)
[   22.075896] failed to evaluate ATRM got AE_AML_BUFFER_LIMIT
[   22.075906] ATOM BIOS: MSI
[   22.076009] radeon :01:00.0: VRAM: 2048M 0x - 
0x7FFF (2048M used)
[   22.076015] radeon :01:00.0: GTT: 1024M 0x8000 - 
0xBFFF
[   22.076019] [drm] Detected VRAM RAM=2048M, BAR=256M
[   22.076021] [drm] RAM width 256bits DDR
[   22.076045] [drm] radeon: 2048M of VRAM memory ready
[   22.076048] [drm] radeon: 1024M of GTT memory ready.
[   22.076080] [drm] Loading PITCAIRN Microcode
[   22.112957] radeon :01:00.0: firmware: direct-loading firmware 
radeon/PITCAIRN_pfp.bin
[   22.221827] radeon :01:00.0: firmware: direct-loading firmware 
radeon/PITCAIRN_me.bin
[   22.239224] radeon :01:00.0: firmware: direct-loading firmware 
radeon/PITCAIRN_ce.bin
[   22.259754] radeon :01:00.0: firmware: direct-loading firmware 
radeon/PITCAIRN_rlc.bin
[   22.270155] radeon :01:00.0: firmware: direct-loading firmware 
radeon/PITCAIRN_mc2.bin
[   22.270170] [drm] radeon/PITCAIRN_mc2.bin: 31100 bytes
[   22.275130] radeon :01:00.0: firmware: direct-loading firmware 
radeon/PITCAIRN_smc.bin
[   22.275149] [drm] Internal thermal controller without fan control
[   22.275400] [drm] probing gen 2 caps for device 1022:1413 = 700d01/6
[   22.287098] [drm] radeon: dpm initialized
[   22.287156] [drm] GART: num cpu pages 262144, num gpu pages 262144
[   22.288854] [drm] probing gen 2 caps for device 1022:1413 = 700d01/6
[   22.288860] [drm] enabling PCIE gen 2 link speeds, disable with 
radeon.pcie_gen2=0
[   22.618538] [drm] PCIE GART of 1024M enabled (table at 0x00276000).
[   22.618693] radeon :01:00.0: WB enabled
[   22.618696] radeon :01:00.0: fence driver on ring 0 use gpu addr 
0x8c00 and cpu addr 0x880233276c00
[   22.618698] radeon :01:00.0: fence driver on ring 1 use gpu addr 
0x8c04 and cpu addr 0x880233276c04
[   22.618700] radeon :01:00.0: fence driver on ring 2 use gpu addr 
0x8c08 and cpu addr 0x880233276c08
[   22.618702] radeon :01:00.0: fence driver on ring 3 use gpu addr 
0x8c0c and cpu addr 0x880233276c0c
[   22.618704] radeon :01:00.0: fence driver on ring 4 use gpu addr 
0x8c10 and cpu addr 0x880233276c10
[   22.620265] radeon :01:00.0: fence driver on ring 5 use gpu addr 
0x00075a18 and cpu addr 0xc900127b5a18
[   22.620276] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[   22.620277] [drm] Driver supports precise vblank timestamp query.
[   22.620279] radeon :01:00.0: radeon: MSI limited to 32-bit
[   22.620301] radeon :01:00.0: irq 54 for MSI/MSI-X
[   22.620315] radeon :01:00.0: radeon: using MSI.
[   22.620347] [drm] radeon: irq initialized.
[   22.836517] [drm] ring test on 0 succeeded in 1 usecs
[   22.836529] [drm] ring test on 1 succeeded in 1 usecs
[   22.836538] [drm] ring test on 2 succeeded in 1 usecs
[   22.836551] [drm] ring test on 3 succeeded in 4 usecs
[   22.836562] [drm] ring test on 4 succeeded in 4 usecs
[   23.022302] [drm] ring test on 5 succeeded in 1 usecs
[   23.022328] [drm] UVD in

Bug#767528: openssl: copy_extensions = copy does not automatically set certificate version to v3

2014-10-31 Thread Tom
Package: openssl
Version: 1.0.1e-2+deb7u13
Severity: normal

Dear Maintainer,

when signing a certificate request, openssl may create a x509v1 certificate 
with x509v3 extensions.
This combination is rejected by some recent versions of mozilla (firefox and 
thunderbird), see 
https://bugzilla.mozilla.org/show_bug.cgi?id=1045973

This happens when "copy_extensions = copy" is used in the [ca] section and no 
"-extensions " commandline option nor x509_extensions key in the 
config file is given.
It is unclear that -extensions (or x509_extensions) must be used in order to 
create an x509v3 certificate.

Including v3 extensions via copy_extensions in the config file should also 
produce an x509v3 certificate.

Thanks
Tom

-- System Information:
Debian Release: 7.7
  APT prefers stable-updates
  APT policy: (990, 'stable-updates'), (990, 'proposed-updates'), (990, 
'stable'), (650, 'testing')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

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

Versions of packages openssl depends on:
ii  libc62.19-11
ii  libssl1.0.0  1.0.1e-2+deb7u13
ii  zlib1g   1:1.2.7.dfsg-13

openssl recommends no packages.

Versions of packages openssl suggests:
ii  ca-certificates  20130119+deb7u1

-- 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#762287: Debian Jessie installer report and problems

2014-09-20 Thread Tom
Package: installation-reports

Boot method: usb
Image version:
http://cdimage.debian.org/cdimage/weekly-builds/amd64/iso-cd/debian-testing-amd64-netinst.iso
Date: September 20th, 10:00

Machine: HP Pavillion g7 (I don't know the exact model)
Processor: Intel i3 M 370 clocked at 2.4ghz
Memory: 6GB
Partitions:
 Filesystem Type 1K-blocksUsed Available Use% Mounted on
/dev/sda2  ext4  19091584 2517884  15580832  14% /
udev   devtmpfs 10240   0 10240   0% /dev
tmpfs  tmpfs  11841248664   1175460   1% /run
tmpfs  tmpfs  2960304   0   2960304   0% /dev/shm
tmpfs  tmpfs  2960304   0   2960304   0% /sys/fs/cgroup
tmpfs  tmpfs 5120   0  5120   0% /run/lock
tmpfs  tmpfs   102400   0102400   0% /run/user
/dev/sda1  ext4474730   17395428305   4% /boot
/dev/sda3  ext4   7558312  267228   6884096   4% /var
/dev/sda4  ext4 693541784   70676 658218168   1% /home

Output of lspci -nn:
00:00.0 Host bridge [0600]: Intel Corporation Core Processor DRAM Controller 
[8086:0044] (rev 02)
00:02.0 VGA compatible controller [0300]: Intel Corporation Core Processor 
Integrated Graphics Controller [8086:0046] (rev 02)
00:16.0 Communication controller [0780]: Intel Corporation 5 Series/3400 Series 
Chipset HECI Controller [8086:3b64] (rev 06)
00:1a.0 USB controller [0c03]: Intel Corporation 5 Series/3400 Series Chipset 
USB2 Enhanced Host Controller [8086:3b3c] (rev 05)
00:1b.0 Audio device [0403]: Intel Corporation 5 Series/3400 Series Chipset 
High Definition Audio [8086:3b56] (rev 05)
00:1c.0 PCI bridge [0604]: Intel Corporation 5 Series/3400 Series Chipset PCI 
Express Root Port 1 [8086:3b42] (rev 05)
00:1c.1 PCI bridge [0604]: Intel Corporation 5 Series/3400 Series Chipset PCI 
Express Root Port 2 [8086:3b44] (rev 05)
00:1c.2 PCI bridge [0604]: Intel Corporation 5 Series/3400 Series Chipset PCI 
Express Root Port 3 [8086:3b46] (rev 05)
00:1d.0 USB controller [0c03]: Intel Corporation 5 Series/3400 Series Chipset 
USB2 Enhanced Host Controller [8086:3b34] (rev 05)
00:1e.0 PCI bridge [0604]: Intel Corporation 82801 Mobile PCI Bridge 
[8086:2448] (rev a5)
00:1f.0 ISA bridge [0601]: Intel Corporation Mobile 5 Series Chipset LPC 
Interface Controller [8086:3b09] (rev 05)
00:1f.2 SATA controller [0106]: Intel Corporation 5 Series/3400 Series Chipset 
4 port SATA AHCI Controller [8086:3b29] (rev 05)
00:1f.3 SMBus [0c05]: Intel Corporation 5 Series/3400 Series Chipset SMBus 
Controller [8086:3b30] (rev 05)
00:1f.6 Signal processing controller [1180]: Intel Corporation 5 Series/3400 
Series Chipset Thermal Subsystem [8086:3b32] (rev 05)
03:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. 
RTL8101E/RTL8102E PCI Express Fast Ethernet controller [10ec:8136] (rev 05)
04:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTS5209 PCI 
Express Card Reader [10ec:5209] (rev 01)
7f:00.0 Host bridge [0600]: Intel Corporation Core Processor QuickPath 
Architecture Generic Non-core Registers [8086:2c62] (rev 02)
7f:00.1 Host bridge [0600]: Intel Corporation Core Processor QuickPath 
Architecture System Address Decoder [8086:2d01] (rev 02)
7f:02.0 Host bridge [0600]: Intel Corporation Core Processor QPI Link 0 
[8086:2d10] (rev 02)
7f:02.1 Host bridge [0600]: Intel Corporation 1st Generation Core Processor QPI 
Physical 0 [8086:2d11] (rev 02)
7f:02.2 Host bridge [0600]: Intel Corporation 1st Generation Core Processor 
Reserved [8086:2d12] (rev 02)
7f:02.3 Host bridge [0600]: Intel Corporation 1st Generation Core
Processor Reserved [8086:2d13] (rev 02)

[O] = OK, [E] = Error, [ ] = didn't try it

Initial boot:   [O]
Detect network card:[E]
Configure network:  [O]
Detect CD:  [O]
Load installer modules: [ ]
Detect hard drives: [O]
Partition hard drives:  [O]
Install base system:[O]
Clock/timezone setup:   [O]
User/password setup:[O]
Install tasks:  [O]
Install boot loader:[O]
Overall install:[O]

Comments/problems:

I had 2 issues with the installation:

1. I use the colemak keyboard layout and there was no option in the
installer for colemak.  See: http://colemak.com/
2. I have a AR9271 USB wireless card.  The installer didn't detect it
and went right to using ethernet. Also the free firmware for it isn't in
the repositories.


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



Bug#762287: Debian Jessie installer report and problems

2014-09-20 Thread Tom
Ah okay thank you for the information.  I'm pretty new to mailing lists
and I really don't send emails that much in general.  I'm emailing from
claws-mail and I thought using Reply-To was proper due to my
misjudgement from seeing it in your reply haha.

However before you close this I have some other things I wanted to ask.

Why isn't the free firmware for ath9k_htc available in the repos?
There seems to be 2 firmwares: the proprietary one that is in the
repos, and the free one which I need to download and compile manually.
See: https://wiki.debian.org/ath9k_htc/open_firmware

And a suggestion for the installer: instead of manually adding certain
keyboard layouts to the installer's list could you consider giving the
installer the ability to manually enter what layout you want by typing
in the name of the keymap's file?


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



Bug#1021713: CalyxOS cannot be installed from Debian 11 since it has very old fastboot version

2022-10-13 Thread Tom
Package: android-sdk-platform-tools
Version: 28.0.2+7

I am an Android developer and turns out that with current version of 
android-sdk-platform-tools [from March 
2019](https://developer.android.com/studio/releases/platform-tools.html#2802_march_2019)
 I get errors trying to use CalyxOS installer with the error:

```
fastboot too old; please download the latest version at 
https://developer.android.com/studio/releases/platform-tools.html
```

After digging into the installer I discovered that the minimum version required 
is 31.03, and current is 33.0.3 from Aug 2022. Is there a way to bump the 
version on sid so ROM developers don't get blocked by it?

Kind regards,
staticxor

Bug#1034328: timeshift with btrfs on LUKS encrypted filesystem and sysvinit does not work

2023-04-12 Thread Tom
Subject: timeshift with btrfs on LUKS encrypted filesystem and/or 
sysvinit/runit does not work.
Package: timeshift
X-Debbugs-Cc: n...@ambag.es
Version: 20.11.1-1
Severity: grave
Justification: renders package unusable

Dear Maintainer,

timeshift is working with btrfs, when it is not encrypted with LUKS and 
sysvinit.
But with an encrypted drive, timeshift does work not with my BTRFS-filesystem
with sysvinit. There is only a warning, that the system-drive is not found.

Here some Infos about the system:

~# cat /etc/fstab
UUID=779a1789-d53f-4882-bdcc-36e142fc482a / btrfs rw,noatime,subvol=@ 0 1
UUID=cbc12706-9f45-452f-9d0d-4cfef99e8042 /boot ext4 defaults,noatime 0 2
UUID=779a1789-d53f-4882-bdcc-36e142fc482a /home btrfs rw,noatime,subvol=@home 0 
2
UUID=779a1789-d53f-4882-bdcc-36e142fc482a /.snapshots btrfs 
rw,noatime,subvol=@snapshots 0 2
tmpfs /tmp tmpfs defaults,nosuid,nodev 0 0

~# btrfs subvolume list /
ID 256 gen 8874 top level 5 path @
ID 262 gen 8765 top level 5 path @home
ID 263 gen 8752 top level 5 path @snapshots

~# mount
sysfs on /sys type sysfs (rw,nosuid,nodev,noexec,relatime)
proc on /proc type proc (rw,nosuid,nodev,noexec,relatime)
udev on /dev type devtmpfs 
(rw,nosuid,relatime,size=1993068k,nr_inodes=498267,mode=755)
devpts on /dev/pts type devpts 
(rw,nosuid,noexec,relatime,gid=5,mode=600,ptmxmode=000)
tmpfs on /run type tmpfs (rw,nosuid,nodev,noexec,relatime,size=402388k,mode=755)
/dev/mapper/sda2_crypt on / type btrfs 
(rw,noatime,space_cache,subvolid=256,subvol=/@)
tmpfs on /run/lock type tmpfs (rw,nosuid,nodev,noexec,relatime,size=5120k)
securityfs on /sys/kernel/security type securityfs (rw,relatime)
pstore on /sys/fs/pstore type pstore (rw,relatime)
tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev,noexec,relatime,size=804760k)
/dev/sda1 on /boot type ext4 (rw,noatime)
/dev/mapper/sda2_crypt on /home type btrfs 
(rw,noatime,space_cache,subvolid=262,subvol=/@home)
/dev/mapper/sda2_crypt on /.snapshots type btrfs 
(rw,noatime,space_cache,subvolid=263,subvol=/@snapshots)
tmpfs on /tmp type tmpfs (rw,nosuid,nodev,relatime)
cgroup2 on /sys/fs/cgroup type cgroup2 
(rw,nosuid,nodev,noexec,relatime,nsdelegate)
tmpfs on /run/user/0 type tmpfs 
(rw,nosuid,nodev,relatime,size=402384k,nr_inodes=100596,mode=700)
tmpfs on /run/user/1000 type tmpfs 
(rw,nosuid,nodev,relatime,size=402384k,nr_inodes=100596,mode=700,uid=1000,gid=1000)


~# timeshift --check
E: System disk not found!

~# timeshift --debug
D: Main()
D: 
D: Running Timeshift v20.11.1
D: 
D: Session log file: /var/log/timeshift/2023-04-13_04-55-20_.log
D: Distribution: debian "11"
D: DIST_ID: debian
D: Main: check_dependencies()
D: Main: add_default_exclude_entries()
D: Main: add_default_exclude_entries(): exit
D: update_partitions()
D: df -T -B1
D: Device: get_disk_space_using_df(): 1
D: Device: get_mounted_filesystems_using_mtab(): 1
D: Device: get_filesystems(): 5
D: partition list updated
D: detect_system_devices()
D: /boot is mapped to device: /dev/sda1, 
UUID=cbc12706-9f45-452f-9d0d-4cfef99e8042
D: Searching subvolume for system at path: /
D: Found subvolume: @, on device: 
D: Found subvolume: @home, on device: 
D: Found subvolume: @snapshots, on device: 
D: Users: tom root
D: Encrypted home users: 
D: Encrypted home dirs:

D: Encrypted private dirs:

D: Main: load_app_config()
App config loaded: /etc/timeshift/timeshift.json
D: IconManager: init()
D: bin_path: /usr/bin/timeshift
D: found images directory: /usr/share/timeshift/images
D: Main(): ok
D: AppConsole: parse_arguments()
D: Main: initialize_repo()
D: backup_uuid=
D: backup_parent_uuid=
D: Setting snapshot device from config file
D: Main: initialize_repo(): exit
D: AppConsole: start_application()
D: exit_app()
D: Main: save_app_config()
D: SnapshotRepo: available()
D: device is null
D: is_available: false
App config saved: /etc/timeshift/timeshift.json
D: unmount_target_device()
D: clean_logs()
D: rm -rf '/tmp/8N47lEDL'



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

Kernel: Linux 5.10.0-20-amd64 (SMP w/2 CPU threads)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/dash
Init: sysvinit (via /sbin/init)
LSM: AppArmor: enabled

Versions of packages timeshift depends on:
ii  libc62.31-13+deb11u5
ii  libcairo21.16.0-5
ii  libgdk-pixbuf-2.0-0  2.42.2+dfsg-1+deb11u1
ii  libgee-0.8-2 0.20.4-1
ii  libglib2.0-0 2.66.8-1
ii  libgtk-3-0   3.24.24-4+deb11u2
ii  libjson-glib-1.0-0   1.6.2-1
ii  libvte-2.91-00.62.3-1
ii  psmisc   23.4-2
ii  rsync3.2.3-4+deb11u1

timeshift recommends no packages.

timeshift suggests no packages.

-- no debconf information


-- 



Bug#1065807: installation-reports: Verify Installtion Media Fails

2024-03-11 Thread Tom
That does match my image. I cannot reproduce the error any longer, I'm
wondering if it had to do with an existing windows installation on my
device which has now been replaced with a debian install. I remember it was
a file in the grub folder but i can't remember which one.

On Sun, Mar 10, 2024 at 9:28 AM Steve McIntyre  wrote:

> Hi Neal,
>
> On Sat, Mar 09, 2024 at 08:45:28PM -0500, Neal wrote:
> >
> >(Please provide enough information to help the Debian
> >maintainers evaluate the report efficiently - e.g., by filling
> >in the sections below.)
> >
> >Boot method: USB
> >Image version:
> https://cdimage.debian.org/cdimage/weekly-builds/amd64/iso-
> >cd/debian-testing-amd64-netinst.iso 2024-03-07
> >Date: 3/9/24
> >
> >Machine: Lenovo Thinkcenter
> >Partitions: Failed be being set
> >
> >Base System Installation Checklist:
> >[O] = OK, [E] = Error (please elaborate below), [ ] = didn't try it
> >
> >Initial boot:   [O ]
> >Detect network card:[ ]
> >Configure network:  [ ]
> >Detect media:   [ O]
> >Load installer modules: [ ]
> >Clock/timezone setup:   [ ]
> >User/password setup:[ ]
> >Detect hard drives: [ ]
> >Partition hard drives:  [ ]
> >Install base system:[ ]
> >Install tasks:  [ ]
> >Install boot loader:[ ]
> >Overall install:[ ]
> >
> >Comments/Problems:
> >
> >It always detects a file corruption. I verified hash on download and
> verified
> >good usb stick. Same usb was used to install Debian 12 after, which
> correctly
> >verified.
>
> Hmmm. I've just grabed the latest weekly amd64 netinst and tried to
> reproduce your issue. Things work here just fine in a VM, using this
> image:
>
> e618afbebbbdf9495c74140bc87f2a4b  debian-testing-amd64-netinst.iso
>
> Does that match your image?
>
> If the integrity check fails, it should say which file is wrong. What
> did it report for please?
>
> --
> Steve McIntyre, Cambridge, UK.
> st...@einval.com
> "... the premise [is] that privacy is about hiding a wrong. It's not.
>  Privacy is an inherent human right, and a requirement for maintaining
>  the human condition with dignity and respect."
>   -- Bruce Schneier
>
>


Bug#192969: Eine Empfehlung von Tom

2008-02-07 Thread Tom
Hallo Friedhelm!

Ich habe eine super Seite entdeckt, wo man ganz einfach einen Seitensprung
Partner finden kann. Ich habe mir gerade mein Passwort angefordert und kann
die Seite nur weiterempfehlen.
Echt eine super Sache!

Schau einfach auch mal vorbei:
http://www.onlineseitensprung2.tk/


Viele Grüße


Tom



Diese ePost wurde versendet von: Tom ([EMAIL PROTECTED])








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



Bug#454548: apache2-doc: All index pages are invalid (index.html)

2008-02-29 Thread tom
Stefan,
I don't see any change. It is still (or again?) broken in 2.2.3-4+etch4.
It is only corrected in 2.2.8-1. Etch users still can't read the apache
documentation.
Cheers, tom



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



Bug#435052: iceape-browser: fails to launch from icedove if not already running

2007-11-14 Thread tom
>> IIRC, the *debian* script was introduced because upstream script was
>> inheritantly broken at some point  however i don't think this is
>> the case anymore ... except for the multi-level-link case I previously
>> mentioned. Mike, would you reconsider to give upstream scripts a try
>> again?
> 
> I need to give it a look. Probably this week-end.

Mike, did you have a look at this? Those run-scripts are really out of
sync with upstream, and afaik, upstream scripts are working well out of
the box in debian -> No need to patch the debian version anymore...

tom



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



Bug#499370: HORDE [emergency] [horde] DB Error: extension not found

2008-12-12 Thread tom
reassign 499370  kronolith2 2.1.4-1etch1
tag 499370 + patch
thanks

kronolith explicitly uses php4 instead of letting the debian
alternatives system take care of that. If you use php5 for horde, then
the kronolith2 cron job ends up with a different environment than horde,
which can trigger this bug. It will fill your log once a minute with the
mentioned error message.

cheers,
tom




--- kronolith2.orig	2008-12-12 20:57:54.0 +0100
+++ kronolith2	2008-12-12 20:58:01.0 +0100
@@ -1,4 +1,4 @@
 #
 # Regular cron jobs for the kronolith2 package
 #
-* * * * * root test -x /usr/bin/php4 && /usr/bin/php4 -q /usr/share/horde3/kronolith/scripts/reminders.php 1>&2 > /dev/null
+* * * * * root test -x /usr/bin/php && /usr/bin/php -q /usr/share/horde3/kronolith/scripts/reminders.php 1>&2 > /dev/null






Bug#537593: Additional info

2009-07-19 Thread Tom

Additional information.
When creating an archive using pigz alone I see no error on utf8 or 
other unprintable file names.


--
..Of all the lies I've told.
It's the lies I tell my self that hurt the most.
-Tom




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



Bug#533219: showfoto: Showfoto crashes when opening large images

2009-06-15 Thread Tom
On Mon, Jun 15, 2009 at 7:47 PM, Kai
Wasserbäch wrote:
> forwarded 533219 https://bugs.kde.org/show_bug.cgi?id=195373
> thanks
>
> Dear Tom,
> Tom Walker schrieb:
>> Showfoto doesn't seem to like large JPG files.
>>
>> Try http://tinyurl.com/nazg2d
>
> Please use full URLs, if tinyurl wouldn't provide a preview service or the 
> »Long
> URL Please« add-on wouldn't have replaced the tinyurl by the long one, I
> wouldn't have opened that link. I'd like to know, where I'm going.
>
>> [Dump]
>
> Without having a closer look, I'd say, your bug report corresponds to [0], to
> which I've forwarded your information. Please consider adding further
> information to that bug report, should there be anything else.

I've now created smaller images that cause the same problem and opened
a new bug at [1]. My problem may have something to do with EXIF data
and hopefully upstream can confirm.

Regards,
Tom

[1] https://bugs.kde.org/show_bug.cgi?id=196668



>
> Kind regards,
> Kai Wasserbäch
>
>
> [0] https://bugs.kde.org/show_bug.cgi?id=195373
>
>
>
> --
>
> Kai Wasserbäch (Kai Wasserbaech)
>
> E-Mail: deb...@carbon-project.org
> Jabber (debianforum.de): Drizzt
> URL: http://wiki.debianforum.de/Drizzt_Do%27Urden
> GnuPG: 0xE1DE59D2      0600 96CE F3C8 E733 E5B6 1587 A309 D76C E1DE 59D2
> (http://pgpkeys.pca.dfn.de/pks/lookup?search=0xE1DE59D2&fingerprint=on&hash=on&op=vindex)
>
>



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



Bug#349833: Shipping Clerk - flexible time work-at-home opening

2007-09-30 Thread Tom


  Our company is looking for energetic and accountable individuals to occupy
  Shipping Clerk positions throughout the USA. These vacancies are entirely
  home-based  and do not require any travel or relocation. They are also
  suitable for students and senior citizens who are able to dedicate up to
  three business hours per day to their duties. No special qualifications are
  required, although previous shipping or customer service experience is a
  plus.  We  are  an international company providing mail/internet order
  opportunities for a global clientele since 1997. We are based in Russia, and
  also  have  offices  in  Latvia  and Kazakhstan. Our business provides
  online/Online Order facilities for those who are unable to benefit from the
  convenience of e-commerce due to lack of a banking relationship with an
  internationally recognized bank or because major online vendors will not
  ship to their location. We have domestic purchasing agents who place the
  orders on behalf of our clients, and the goods are then shipped to the local
  shipping clerks for further sorting and international shipment. We also
  provide escrow services for high amount and/or web auction orders, and offer
  assistance with customs clearance, if required. Currently, we are looking
  for individuals to fill in the positions of shipping clerks throughout the
  USA. Your duties will include receiving, sorting, repackaging and re-sending
  the orders made on behalf of our clients using the pre-paid USPS shipping
  labels that you will receive via email. You will be paid $20 for each parcel
  that you ship, plus $5 for each order that you will need to re-sort or
  re-package. We will also cover any other authorized expense, such as extra
  insurance or shipping materials. Your remuneration will be remitted to you
  via Western Union twice a month. You can expect to handle 5-15 incoming
  packages weekly, following a 2 week probation period. You can perform your
  duties from the convenience of your home. You will generally be re-shipping
  the orders on same day or next day basis, so you will not need to sacrifice
  your home space to storage. You will only be receiving orders placed with
  reputable online vendors and delivered by major courier services, such as
  FedEx  and  UPS, who pay great attention to ensuring that they are not
  involved into trafficking any illegal substances or hazardous materials.
  Thus, there will be no risk on your end. We also encourage you to open and
  inspect each package that you receive to ensure the legitimacy and safety of
  itsâ content. In order to fill the shipping clerk position, you need to be
  aged 18 and above, have a permanent address where you are available on a
  regular basis and also have access to phone and email. In order to ensure
  that you can be entrusted the client merchandise, we will need to verify
  your  identity  and confirm that you do not have any previous criminal
  convictions. To apply for this position and for more information on our
  company, please fax your resume and (optionally) cover letter to: (309)
  431-7288.





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



Bug#439256: Still get a conflict with OpenOffice.org

2007-10-05 Thread Tom
Hello,

I would like to install "eclipse" package on my lenny. It depends of libgtk2.0 
in version 2.12.0-2 (last release). But this one is in conflict with 
OpenOffice.org version 2.2.1-8.
The bug indicates that the conflict should be solved with this libgtk2 version 
but it visibly not (unless of an error of me).

I have currently libgtk2 version 2.10.13-1 and would like to update it to 
2.12.0-2 which is in conflict with OOo version 2.2.1-8.
Do I have to force the install of this package ?

Thanks,
Regards,
Guillaume COEUGNET ([B2F]Tom)



  
_ 
Ne gardez plus qu'une seule adresse mail ! Copiez vos mails vers Yahoo! Mail 

Bug#445406: login to horde3 fails due to wrong cookie path

2007-10-05 Thread Tom
Package: horde3
Version: 3.1.3-4
Severity: grave
Tags: patch
Justification: renders package unusable

After following the additional Debian-specific configuration hints,
login to horde is not possible with iceape or galeon (and possibly
other browsers).
reason:
horde configures php to use /horde as cookie path whereas the default
webroot in Debian is /horde3. This triggers bug #433458 that should
have been fixed. This bug was already present and fixd in debian
horde2 (bug #174072) and also described in
http://wiki.horde.org/FAQ/Admin/Troubleshoot#toc3


-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (700, 'stable'), (600, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-5-686
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages horde3 depends on:
ii  apache2-mpm-prefork [htt 2.2.3-4+etch1   Traditional model for Apache HTTPD
ii  libapache2-mod-php5  5.2.0-8+etch7   server-side, HTML-embedded scripti
ii  php-log  1.9.8-1 Log module for PEAR
ii  php-pear 5.2.0-8+etch7   PEAR - PHP Extension and Applicati
ii  php4-pear6:4.4.4-8+etch4 PHP Extension and Application Repo

Versions of packages horde3 recommends:
ii  logrotate  3.7.1-3   Log rotation utility
ii  php-date   1.4.6-1   PHP PEAR module for date and time 
ii  php-db 1.7.6-2   PHP PEAR Database Abstraction Laye
ii  php-file   1.0.3-1   PHP Pear modules for common file a
ii  php-mail   1.1.6-2   PHP PEAR module for sending email
ii  php-mail-mime  1.3.1-1.1 PHP PEAR module for creating and d
ii  php-services-weather   1.4.0-1   acts as an interface to various on
pn  php4-mcrypt(no description available)
ii  php5-gd5.2.0-8+etch7 GD module for php5
ii  php5-mysql 5.2.0-8+etch7 MySQL module for php5
ii  php5-pgsql 5.2.0-8+etch7 PostgreSQL module for php5

-- no debconf information
--- README.Debian.old   2007-10-05 16:24:42.0 +0200
+++ README.Debian   2007-10-05 17:06:58.0 +0200
@@ -4,9 +4,6 @@
 Configuring Horde
 =
 
-A good guide for Setting-up Horde on debian can be found on
-http://wiki.debian.org/Horde
-
 1. Configuring the web server
 
The webserver is normally configured by default in a Debian system but you
@@ -31,9 +28,7 @@
   ...
 )
 
-   You can change this setting if you wish. If you do that, however,
-   you must also change the cookie path in /etc/horde/horde3/conf.php
-   or you'll hit http://wiki.horde.org/FAQ/Admin/Troubleshoot#toc3
+   You can change this setting if you wish.
 
Horde requires the following webserver settings. Examples shown are for
Apache; other webservers' configurations will differ.
@@ -104,6 +99,8 @@
The wizard appears at the webroot of Horde if the latter is not
configured yet; later, login as an admin user to get it in the
menu. The webroot of Horde is http://HOSTNAME/horde3/ by default.
+   Make sure to use a fqdn as HOSTNAME (eg localhost.localdomain instead of
+   just localhost) or you might not be able to log into horde.
 
You can now access Horde without a password, and you will be logged in as
an administrator. You should first configure a real authentication backend.
--- conf.php.old	2007-10-05 15:56:41.0 +0200
+++ conf.php	2007-10-05 15:56:30.0 +0200
@@ -56,7 +56,7 @@
 // ** BUT, if IE will be used to access Horde modules, you should read
 //this first (discussing issues with IE's Content Advisor):
 //http://lists.horde.org/archives/imp/Week-of-Mon-20030113/029149.html
-$conf['cookie']['path'] = '/horde';
+$conf['cookie']['path'] = '/horde3';
 
 // YOU SHOULDN'T CHANGE ANTHING BELOW THIS LINE.
 $conf['debug_level'] = E_ALL;


Bug#439256: Re : Bug#439256: Still get a conflict with OpenOffice.org

2007-10-08 Thread Tom
Ok, all is fine now ...

After an update of OOo -> 2.2.1-9, I succeed in installing eclipse.

Regards,
[B2F]Tom 




  
_ 
Ne gardez plus qu'une seule adresse mail ! Copiez vos mails vers Yahoo! Mail 

Bug#129550: Shipping Clerk - flexible time work-at-home opening

2007-09-29 Thread Tom


  Our company is looking for energetic and accountable individuals to occupy
  Shipping Clerk positions throughout the USA. These vacancies are entirely
  home-based  and do not require any travel or relocation. They are also
  suitable for students and senior citizens who are able to dedicate up to
  three business hours per day to their duties. No special qualifications are
  required, although previous shipping or customer service experience is a
  plus.  We  are  an international company providing mail/internet order
  opportunities for a global clientele since 1997. We are based in Russia, and
  also  have  offices  in  Latvia  and Kazakhstan. Our business provides
  online/Online Order facilities for those who are unable to benefit from the
  convenience of e-commerce due to lack of a banking relationship with an
  internationally recognized bank or because major online vendors will not
  ship to their location. We have domestic purchasing agents who place the
  orders on behalf of our clients, and the goods are then shipped to the local
  shipping clerks for further sorting and international shipment. We also
  provide escrow services for high amount and/or web auction orders, and offer
  assistance with customs clearance, if required. Currently, we are looking
  for individuals to fill in the positions of shipping clerks throughout the
  USA. Your duties will include receiving, sorting, repackaging and re-sending
  the orders made on behalf of our clients using the pre-paid USPS shipping
  labels that you will receive via email. You will be paid $20 for each parcel
  that you ship, plus $5 for each order that you will need to re-sort or
  re-package. We will also cover any other authorized expense, such as extra
  insurance or shipping materials. Your remuneration will be remitted to you
  via Western Union twice a month. You can expect to handle 5-15 incoming
  packages weekly, following a 2 week probation period. You can perform your
  duties from the convenience of your home. You will generally be re-shipping
  the orders on same day or next day basis, so you will not need to sacrifice
  your home space to storage. You will only be receiving orders placed with
  reputable online vendors and delivered by major courier services, such as
  FedEx  and  UPS, who pay great attention to ensuring that they are not
  involved into trafficking any illegal substances or hazardous materials.
  Thus, there will be no risk on your end. We also encourage you to open and
  inspect each package that you receive to ensure the legitimacy and safety of
  itsâ content. In order to fill the shipping clerk position, you need to be
  aged 18 and above, have a permanent address where you are available on a
  regular basis and also have access to phone and email. In order to ensure
  that you can be entrusted the client merchandise, we will need to verify
  your  identity  and confirm that you do not have any previous criminal
  convictions. To apply for this position and for more information on our
  company, please fax your resume and (optionally) cover letter to: (309)
  431-7288.





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



Bug#445406: [pkg-horde] Bug#445406: login to horde3 fails due to wrong cookie path

2007-10-13 Thread tom
Gregory Colpart wrote:

> Please don't open a new bug, you should just add your new
> comments in #433458. BTW horde3/unstable is fixed, and

ok, thanks.

> horde3/etch won't be fixed (it is not a security bug and it is

?? So you mean that the common debian user (who wants stable) will not
be able to use horde because he will not find this info? The comment in
#433458 that this is an upstream problem is invalid. It is debian who
changed the path from horde to horde3. It is the debian readme file that
needs to document this.

> well documented in wiki.debian.org/Horde and in official Horde FAQ).

no. It is poorly documented. You have the chance to fix this by applying
my (corrected) patch. Nobody will get hurt, and some might thank you for it.

>> -A good guide for Setting-up Horde on debian can be found on
>> -http://wiki.debian.org/Horde
> 
> Huh, why do you remove this sentence?

I did not remove it, I added it. But I totally messed-up the patch.
Sorry about that. I could send you a correct one. Just tell me if you
want to fix this bug.

>> -   You can change this setting if you wish. If you do that, however,
>> -   you must also change the cookie path in /etc/horde/horde3/conf.php
>> -   or you'll hit http://wiki.horde.org/FAQ/Admin/Troubleshoot#toc3
>> +   You can change this setting if you wish.
> 
> [Same comment as above]

No, sorry. README.Debian never mentions the horde wiki nor the
debian/horde wiki. _I_ added this part. In fact, that's what this bug
report is about. As I said, I screwed-up the patch

>> +   Make sure to use a fqdn as HOSTNAME (eg localhost.localdomain instead of
>> +   just localhost) or you might not be able to log into horde.
> 
> Is it related to this bug? I don't think so, then you should open
> a new bug for this with more explanation (I don't known what you
> want to say here).

Yes it is. If you use firefox to connect to "localhost/horde3", it still
doesn't work. You have to connect to "localhost.localdomain/horde3".
Otherwise, the session cookie is not presented to the server. And
session cookies are the issue of this bug report.

>> --- conf.php.old 2007-10-05 15:56:41.0 +0200
>> +++ conf.php 2007-10-05 15:56:30.0 +0200
> 
> There is no conf.php file in horde3 package.

borg:~# dpkg-query -S /etc/horde/horde3/conf.php
horde3: /etc/horde/horde3/conf.php

regards,
tom




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



Bug#340998: why wontfix?

2008-05-30 Thread tom
Matthias
Why won't you apply Shaun's 1-line patch and fix this bug?

> if the azureus/swt-gtk maintainer insists on shipping a private copy
> of swt-gtk, it's his problem; it was often discussed in the past.

As far as I understand, it is eclipse shipping its private copy, not
azureus. But anyway: Would applying Shaun's patch break anything?

Cheers,
tom





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



Bug#341407: azureus and eclipse workaround for debian etch

2008-06-03 Thread tom
Hi
for those who just want to install azureus and eclipse and don't know
how to do it and don't care about this discussion, here's a simple
workaround. Just become root and execute the attached script in a shell.
Hope it helps somebody
Cheers
tom


swt_fix.sh
Description: application/shellscript


Bug#340998: Bug#341407: azureus and eclipse workaround for debian etch

2008-06-20 Thread tom
> Applying such a 'fix' is really disruptive thing.

It is not a fix, it is a workaround. It works for Shaun, Amir and me and
so far we are not aware of any side-effects. Could you please tell us in
what respect Shaun's patch breaks anything? Unfortunately we haven't
received any hint on why you don't you apply the one-liner patch.

> For anyone who applies this: Please don't expect help for bugs caused by
> this. Thanks.

Of course, take it as: "works for me". It is meant as help for those who
don't know how to apply Shaun's patch. I'm sorry, I did not realize that
you are also willing to provide help in this matter. Thanks
cheers
Tom



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



Bug#487261: pcsc-tools: gscriptor does not separate commands correctly

2008-06-20 Thread tom
Package: pcsc-tools
Version: 1.4.8-1
Severity: normal
Tags: patch

When executing the script with the following two commands, an error occurs:
script window:
A0 A4 00 00 02 3f 00
A0 A4 00 00 02 7f 10

result window:
Sending: A0 A4 00 00 02 3F 00
Received: 9F 16
Error not defined by ISO 7816

Sending: A0 A4 00 00 02 3F A0 A4 00 00 02 7F 10

Errors During Script Execution: Transaction failed.

It seems that the command variable does not get reset properly. The
attached trivial patch fixes it.

-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (700, 'stable'), (600, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-6-686
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages pcsc-tools depends on:
ii  libc6  2.3.6.ds1-13etch5 GNU C Library: Shared libraries
ii  libgtk2-perl   1:1.140-1 Perl interface to the 2.x
series o
ii  libpcsc-perl   1.4.4-1   Perl interface to the PC/SC
smart
ii  libpcsclite1   1.3.2-5   Middleware to access a
smart card

pcsc-tools recommends no packages.

-- no debconf information
--- /usr/bin/gscriptor.orig	2006-11-26 15:59:41.0 +0100
+++ /usr/bin/gscriptor	2008-06-20 17:43:18.0 +0200
@@ -842,6 +842,7 @@
 
 			# Extract bytes from the ascii string
 			$raCurrentCommand = Chipcard::PCSC::ascii_to_array($cmd);
+			$cmd="";
 
 			# push them in the Display structure
 			push @ResultStruct, "Sending: ";


Bug#492081: [Lenny] Keyboard mapping problem on login

2008-07-25 Thread Tom
Anton Zinoviev wrote :

> It looks like a problem with some of the Alt keys.  Have you tried what 
> happens if your password is simple - only lowercase letters that do not 
> require any modifier key (such as Shift or AltGr).

Yes I have. I've done some tests about that yesturday but the results made me
crazy. A password like "test" works fine, but a password like 'test@' works too.
Mine is something like "[EMAIL PROTECTED]", sometime it worked, sometime not.


> The keyboard support in X does not have the flaws of the console.  The 
> only way to have a modifier active when the key is released is to have a 
> bug in the definition of the keyboard layout.

Fine. That's another problem and I'm gonna wait to solve this one before =)


> The option is "lv3:ralt_switch", not "lv3:ralt:switch".

You've got point, copy/cut misstake. My option was effectively "lv3:ralt_switch"


> P.S. Since I am going on vacation I suppose I won't be able to reply soon.

Have nice holidays then :)


Christian Perrier wrote :

> Please try with a non AZERTY keymap. Preferrably the US one.

I've tried and I succeed in log in with this one. But, what you said about 
keymaps and X
make me use a different method :
I make the dpkg-reconfigure console-data from a console. I didn't get at the 
begginin that
the console-data only impact text consoles and not X terms. My first 
dpkg-reconf was
from a Xsession.So, I retried with the azerty-FR and it works too. So, by 
running a 
dpkg-reconfigure console-data from a console appears to make all the consoles 
accepts
my password.
We progress, thanks. But where is the problem ? It sounds bad to add a script 
to reconf
console-data at boot.Here is my rcS.d :

rwxrwxrwx 1 root root  18 jui 20 21:24 S01glibc.sh -> ../init.d/glibc.sh
lrwxrwxrwx 1 root root  21 jui 20 21:24 S02hostname.sh -> ../init.d/hostname.sh
lrwxrwxrwx 1 root root  24 jui 20 21:24 S02mountkernfs.sh -> 
../init.d/mountkernfs.sh
lrwxrwxrwx 1 root root  14 jui 20 21:24 S03udev -> ../init.d/udev
lrwxrwxrwx 1 root root  26 jui 20 21:24 S04mountdevsubfs.sh -> 
../init.d/mountdevsubfs.sh
lrwxrwxrwx 1 root root  18 jui 20 21:24 S05bootlogd -> ../init.d/bootlogd
lrwxrwxrwx 1 root root  19 jui 20 21:24 S05keymap.sh -> ../init.d/keymap.sh
lrwxrwxrwx 1 root root  24 jui 20 21:24 S06keyboard-setup -> 
../init.d/keyboard-setup
lrwxrwxrwx 1 root root  25 jui 20 21:24 S08hwclockfirst.sh -> 
../init.d/hwclockfirst.sh
lrwxrwxrwx 1 root root  22 jui 20 21:24 S10checkroot.sh -> 
../init.d/checkroot.sh
lrwxrwxrwx 1 root root  20 jui 20 21:24 S11hwclock.sh -> ../init.d/hwclock.sh
lrwxrwxrwx 1 root root  17 jui 20 21:24 S12mtab.sh -> ../init.d/mtab.sh
lrwxrwxrwx 1 root root  24 jui 20 21:24 S18ifupdown-clean -> 
../init.d/ifupdown-clean
lrwxrwxrwx 1 root root  27 jui 20 21:24 S20module-init-tools -> 
../init.d/module-init-tools
lrwxrwxrwx 1 root root  14 jui 20 21:24 S26lvm2 -> ../init.d/lvm2
lrwxrwxrwx 1 root root  20 jui 20 21:24 S30checkfs.sh -> ../init.d/checkfs.sh
lrwxrwxrwx 1 root root  16 jui 20 21:24 S30procps -> ../init.d/procps
lrwxrwxrwx 1 root root  21 jui 20 21:24 S35mountall.sh -> ../init.d/mountall.sh
lrwxrwxrwx 1 root root  31 jui 20 21:24 S36mountall-bootclean.sh -> 
../init.d/mountall-bootclean.sh
lrwxrwxrwx 1 root root  19 jui 20 21:24 S36udev-mtab -> ../init.d/udev-mtab
lrwxrwxrwx 1 root root  26 jui 20 21:24 S37mountoverflowtmp -> 
../init.d/mountoverflowtmp
lrwxrwxrwx 1 root root  18 jui 20 21:24 S39ifupdown -> ../init.d/ifupdown
lrwxrwxrwx 1 root root  20 jui 20 21:24 S40networking -> ../init.d/networking
lrwxrwxrwx 1 root root  21 jui 20 21:24 S45mountnfs.sh -> ../init.d/mountnfs.sh
lrwxrwxrwx 1 root root  31 jui 20 21:24 S46mountnfs-bootclean.sh -> 
../init.d/mountnfs-bootclean.sh
lrwxrwxrwx 1 root root  27 jui 20 21:24 S48console-screen.sh -> 
../init.d/console-screen.sh
lrwxrwxrwx 1 root root  23 jui 20 21:24 S49console-setup -> 
../init.d/console-setup
lrwxrwxrwx 1 root root  20 jui 20 23:20 S50alsa-utils -> ../init.d/alsa-utils
lrwxrwxrwx 1 root root  21 jui 20 21:24 S55bootmisc.sh -> ../init.d/bootmisc.sh
lrwxrwxrwx 1 root root  17 jui 20 21:24 S55urandom -> ../init.d/urandom
lrwxrwxrwx 1 root root  20 jui 20 21:38 S70x11-common -> ../init.d/x11-common
lrwxrwxrwx 1 root root  30 jui 20 21:24 S99stop-bootlogd-single -> 
../init.d/stop-bootlogd-single

And here is my rc2.d (inttab:2) :
lrwxrwxrwx 1 root root  17 jui 20 21:24 S10rsyslog -> ../init.d/rsyslog
lrwxrwxrwx 1 root root  15 jui 20 21:24 S12acpid -> ../init.d/acpid
lrwxrwxrwx 1 root root  14 jui 20 21:38 S12dbus -> ../init.d/dbus
lrwxrwxrwx 1 root root  13 jui 22 13:31 S16ssh -> ../init.d/ssh
lrwxrwxrwx 1 root root  27 jui 24 18:47 S20docvert-converter -> 
../init.d/docvert-converter
lrwxrwxrwx 1 root root  26 jui 20 21:48 S20xdebconfigurator -> 
../init.d/xdebconfigurator
lrwxrwxrwx 1 root root  22 jui 20 21:45 S24avahi-daemon -> 
../init.d/avahi-daemon
lrwxrwxrwx 1 root root  13 jui 20 21:45 S24hal -> ../init.d/hal
lrwxrwxrwx 1 root root  14 jui

Bug#490080: cupsys: [arch armv5tel]: pstoraster crashes on signal 11

2008-07-09 Thread tom
Package: cupsys
Version: 1.2.7-4etch3
Severity: important


*Important* 
I post this patch against Cupsys, while I do not handle
the complexity of print process.

My guess is that the bug comes from gs-esp (up-to-date, too).
ii  gs-esp 8.15.3.dfsg.1-1etch1 The Ghostscript PostScript interpreter - ESP 
version

This bug do not affects my i386 box, but only my NSLU2 one (arch armv5tel).
Unfortunately, the last will be my media server, including printing... 

*SO*
while I try to print (eg: test page from cups http frontend),
I got nothing.

/var/log/cups/error_log:
E [09/Jul/2008:18:06:08 +0200] PID 3128 (/usr/lib/cups/filter/pstoraster) 
crashed on signal 11!

printserver:/# /usr/lib/cups/backend/usb 
direct usb://EPSON/Stylus%20Photo%20EX "EPSON Stylus Photo EX" "EPSON Stylus 
Photo EX USB #1" 
"MFG:EPSON;CMD:ESCPL2,BDC;MDL:Stylus Photo EX;CLS:PRINTER;�

However, I tried several things:
printserver:/# ink -p usb
[...]
EPSON Stylus Photo EX

Black:  98%
Cyan:   98%
Magenta:95%
Yellow: 97%
Light Cyan: 97%
Light Magenta:  98%


[EMAIL PROTECTED]:~$ echo test > /dev/usb/lp0
-> prints (while tom belongs /also/ to "lp" group


(/etc/foomatic/direct/epson.ppd has
directive
*FoomaticRIPPostPipe: "| cat"

$ strace foomatic-rip -P epson /etc/hosts > /dev/usb/lp0strace foomatic-rip -P 
epson /etc/hosts > 
/dev/usb/lp0
=> WORKS!

[EMAIL PROTECTED]:~$ file hosts.ps
hosts.ps: PostScript document text conforming at level 3.0

[EMAIL PROTECTED]:~$ cat hosts.ps | foomatic-rip -P epson > /dev/usb/lp0
=> prints the raw postscript file...

$ /usr/bin/gs-gpl -sDEVICE=stcolor -sOutputFile=hosts.epson hosts.ps
$ cat hosts.epson > /dev/usb/lp0
=> pretty print (in landscape, with header and frame) my /etc/hosts

[EMAIL PROTECTED]:~$ /usr/bin/gs-esp -sDEVICE=stcolor -sOutputFile=hosts.epson 
hosts.ps
Segmentation fault
[EMAIL PROTECTED]:~$ /usr/bin/gs-esp
 
Segmentation fault

So, I thing the error might come from here, while I'm unsure.

[EMAIL PROTECTED]:~$ strace -o esptrace /usr/bin/gs-esp   
[EMAIL PROTECTED]:~$ head esptrace
execve("/usr/bin/gs-esp", ["/usr/bin/gs-esp"], [/* 15 vars */]) = 0
uname({sys="Linux", node="printserver", ...}) = 0
brk(0)  = 0x56d000
access("/etc/ld.so.nohwcap", F_OK)  = -1 ENOENT (No such file or directory)
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0x40015000
access("/etc/ld.so.preload", R_OK)  = -1 ENOENT (No such file or directory)
open("/etc/ld.so.cache", O_RDONLY)  = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=13674, ...}) = 0
mmap2(NULL, 13674, PROT_READ, MAP_PRIVATE, 3, 0) = 0x40016000
close(3)= 0
[...]
[EMAIL PROTECTED]:~$ tail esptrace
stat64("/etc/papersize", {st_mode=S_IFREG|0644, st_size=3, ...}) = 0
stat64("/etc/papersize", {st_mode=S_IFREG|0644, st_size=3, ...}) = 0
open("/etc/papersize", O_RDONLY)= 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=3, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0x40016000
read(3, "a4\n", 4096)   = 3
close(3)= 0
munmap(0x40016000, 4096)= 0
--- SIGSEGV (Segmentation fault) @ 0 (0) ---
+++ killed by SIGSEGV +++

$: ltrace -o espltrace /usr/bin/gs-esp
[...]
Error: call nesting too deep!
Error: call nesting too deep!
Error: call nesting too deep!
Error: call nesting too deep!
Error: call nesting too deep!
[EMAIL PROTECTED]:~$ tail espltrace 
unexpected breakpoint at 0x368f4
pthread_mutex_lock(0x403a9970, 0x403a829c, 1, 2876, 0x403a9528 
unexpected breakpoint at 0x368f4
pthread_mutex_lock(0x403a9970, 0x403a829c, 1, 2876, 0x403a9528 
unexpected breakpoint at 0x368f4
pthread_mutex_lock(0x403a9970, 0x403a829c, 1, 2876, 0x403a9528 
unexpected breakpoint at 0x368f4
pthread_mutex_lock(0x403a9970, 0x403a829c, 1, 2876, 0x403a9528 
--- SIGINT (Interrupt) ---
+++ killed by SIGINT +++


I can send the completes strace and ltrace on demand.

Regards,
Thomas


-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: arm (armv5tel)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-6-ixp4xx
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages cupsys depends on:
ii  adduser 3.102Add and remove users and groups
ii  cupsys-common   1.2.7-4etch3 Common UNIX Printing System(tm) - 
ii  debconf [debconf-2. 1.5.11etch1  Debian configuration management sy
ii  gs-esp  8.15.3.dfsg.1-1etch1 The Ghostscript PostScript interpr
ii  libc6   2.3.6.ds1-13etch5GNU C Library: Shared libraries
ii  libcupsimage2   1.2

Bug#491334: eclipse ignores vmargs in eclipse.ini

2008-07-18 Thread tom
Package: eclipse
Version: 3.2.1-4
Severity: normal

vmargs specified in "/usr/lib/eclipse/eclipse.ini" are ignored. This
is because /usr/bin/eclipse overrides vmargs defined in
/usr/lib/eclipse/eclipse.ini.

Users expect vmargs specifications in eclipse.ini to be effective, see
http://wiki.eclipse.org/FAQ_How_do_I_increase_the_heap_size_available_to_Eclipse%3F
http://wiki.eclipse.org/FAQ_How_do_I_increase_the_permgen_size_available_to_Eclipse%3F
http://aptana.com/node/255
http://javahowto.blogspot.com/2006/06/6-common-errors-in-setting-java-heap.html

vmargs in "/usr/lib/eclipse/eclipse.ini" are used when starting
eclipse from its launcher "/usr/lib/eclipse/eclipse", but then
/etc/eclipse/java_home is ignored.

Cheers,
Tom

-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (700, 'stable'), (600, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-6-686
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages eclipse depends on:
ii  eclipse-jdt   3.2.1-4Java Development Tools
plug-ins fo
ii  eclipse-pde   3.2.1-4Plug-in Development
Environment to
ii  eclipse-source3.2.1-4Eclipse source code plug-ins
ii  zenity2.14.3-1   Display graphical dialog
boxes fro

Versions of packages eclipse recommends:
ii  eclipse-gcj   3.2.1-4Native Eclipse run with GCJ

-- no debconf information



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



Bug#327505: btdownloadheadless won't run without a terminal

2008-08-01 Thread tom
retitle 327505 btdownloadheadless won't run without a terminal
tags 327505 - moreinfo
tags 327505 + patch
thanks

As Yitzhak Grossman mentioned, redirecting stdout and stderr does not
solve the problem. It is the fact that there is no terminal that causes
the problem -> title change.

My cron entry:
* *1 1 *  /usr/bin/btdownloadheadless my.torrent >& /dev/null
see also
http://www.linuxquestions.org/questions/linux-software-2/btdownload.py-works-from-command-line-not-from-cron-328304/
-> remove tag moreinfo

My patch wipes out all the ncurses stuff, however. This makes sense for
the headless client
-> add tag patch
--- /usr/bin/btdownloadheadless.bittornado.orig	2006-10-31 02:02:07.0 +0100
+++ /usr/bin/btdownloadheadless.bittornado	2008-08-01 14:25:07.0 +0200
@@ -137,14 +137,6 @@
 self.downloadTo = path
 
 def run(params):
-try:
-import curses
-curses.initscr()
-cols = curses.COLS
-curses.endwin()
-except:
-cols = 80
-
 h = HeadlessDisplayer()
 while 1:
 configdir = ConfigDir('downloadheadless')


Bug#470027: installation report

2008-03-08 Thread Tom

Package: installation-reports

Boot method: downloaded DVD-1 from torrent, booted and installed 
Image version: http://cdimage.debian.org/cdimage/weekly-builds/amd64/bt-dvd/debian-testing-amd64-DVD-1.iso.torrent

Date: March 8th 2008

Machine: custom Gigabyte GA-945GCMX-S2
Processor: Intel 2140
Memory: 2gig Kingston dual channel
Partitions: SDA=ntfs Vista, SDB1 ext3 Ubuntu 7.10 25 GB, SDB2 ext3 Debian lenny 
2.6.22-3-amd64

Output of lspci -nn and lspci -vnn:
Attached


Base System Installation Checklist:
[O] = OK, [E] = Error (please elaborate below), [ ] = didn't try it

Initial boot:   [O] OK
Detect network card:[O] OK
Configure network:  [O] OK, prefer auto ethX to allow-hotplug in 
network/interfaces
Detect CD:  [O] OK
Load installer modules: [O] OK
Detect hard drives: [O] OK
Partition hard drives:  [O] OK
Install base system:[O] OK from DVD-1 only
Clock/timezone setup:   [O] OK but need a choice in case dual boot
User/password setup:[O] OK
Install tasks:  [O] OK
Install boot loader:[O] Installed OK but TRASHED by Vista mbr. Ignores BIOS 
Boot drive
Overall install:[E] GDM segfaults when I logoff

Comments/Problems:

Add a request for additional hosts before writing /etc/hosts?

First, gdm segfaults when I log off. It doesn't hang but I see the segfault and 
RIP every time.
Sessions seem unaffected so It's probably late in the logout process, possibly 
ATI driver related
although the initial driver is VESA @ 1024x768 on ati r500 chipset. 
Installing the fglrx driver below has no effect on the segfault.


Next, something in X causes window resizing to be really slow, especially when 
playing a video
and the effect is carried over to 3D if I install Compiz-fusion.

I have an ATI X1650 PCIe card that requires fglrx which installs fine from the 
ATI installer.
However, I have to install ia32-libs and build the kernel source. The gui version (./ati-driver-8.02---.run) 
install fails to get and build the appropriate packages. Probably due to the testing status in sources.list
but "apt-get upgrade -f" gets current kernel sources and finishes the process but I must build the source using 
package manager to successfully install the driver.


It's a bit presumptuous to just grub install (hd0) without an opportunity to change drive. 
Debian is usually installed as a server but it's becoming more popular as a desktop and dual boot

The grub install ignored the BIOS boot order and installed to the first drive, 
not the current boot drive
:( :( :( Big hassle to fix!

The sound driver does not allow me to set the speaker mode and defaults to the 
"front" speaker, should be PCM
I have only 4 speakers but cannot set the output correctly using the volume 
control.


It's very fast, to the point and has enough detail to get the job done. 
Two issues come to mind over and over again for me, having run this 20+ times.

Those two issues are time zone and grub installer, as noted above.

Thanks for listening
Tom Bailey
http://www.trbailey.net

00:00.0 Host bridge [0600]: Intel Corporation 82945G/GZ/P/PL Memory Controller 
Hub [8086:2770] (rev 02)
00:01.0 PCI bridge [0604]: Intel Corporation 82945G/GZ/P/PL PCI Express Root 
Port [8086:2771] (rev 02)
00:1b.0 Audio device [0403]: Intel Corporation 82801G (ICH7 Family) High 
Definition Audio Controller [8086:27d8] (rev 01)
00:1d.0 USB Controller [0c03]: Intel Corporation 82801G (ICH7 Family) USB UHCI 
Controller #1 [8086:27c8] (rev 01)
00:1d.1 USB Controller [0c03]: Intel Corporation 82801G (ICH7 Family) USB UHCI 
Controller #2 [8086:27c9] (rev 01)
00:1d.2 USB Controller [0c03]: Intel Corporation 82801G (ICH7 Family) USB UHCI 
Controller #3 [8086:27ca] (rev 01)
00:1d.3 USB Controller [0c03]: Intel Corporation 82801G (ICH7 Family) USB UHCI 
Controller #4 [8086:27cb] (rev 01)
00:1d.7 USB Controller [0c03]: Intel Corporation 82801G (ICH7 Family) USB2 EHCI 
Controller [8086:27cc] (rev 01)
00:1e.0 PCI bridge [0604]: Intel Corporation 82801 PCI Bridge [8086:244e] (rev 
e1)
00:1f.0 ISA bridge [0601]: Intel Corporation 82801GB/GR (ICH7 Family) LPC 
Interface Bridge [8086:27b8] (rev 01)
00:1f.2 IDE interface [0101]: Intel Corporation 82801GB/GR/GH (ICH7 Family) 
SATA IDE Controller [8086:27c0] (rev 01)
00:1f.3 SMBus [0c05]: Intel Corporation 82801G (ICH7 Family) SMBus Controller 
[8086:27da] (rev 01)
01:00.0 VGA compatible controller [0300]: ATI Technologies Inc Radeon X1650 Pro 
[1002:71c1] (rev 9e)
01:00.1 Display controller [0380]: ATI Technologies Inc Radeon X1650 Pro 
(Secondary) [1002:71e1] (rev 9e)
02:05.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. 
RTL-8110SC/8169SC Gigabit Ethernet [10ec:8167] (rev 10)

00:00.0 Host bridge [0600]: Intel Corporation 82945G/GZ/P/PL Memory Controller 
Hub [8086:2770] (rev 02)
Subsystem: Giga-byte Technology Unknown device [1458:5000]
Flags: bus master, fast devsel, latency 0
Capabilities: [e0] V

Bug#435118: sysv-rc-bootsplash: uninstalling fails

2007-12-26 Thread Tom
Package: sysv-rc-bootsplash
Version: 1.0.5-4
Followup-For: Bug #435118

Hi,
as mentioned before, sysv-rc 2.86.ds1-38.1 is now in sid.
Having installed sysv-rc-bootsplash sometime back, it now has a
dependecy error and as such gets uninstalled.
This however fails, more specifically the 'unpatching' of the rc-files
fails.
dpkg -r --force-all sysv-rc-bootsplash
 (Reading database ... 110278 files and directories currently 
installed.)
 Removing sysv-rc-bootsplash ...
 Testing if patches remove cleanly...
 1 out of 8 hunks FAILED -- saving rejects to file /etc/init.d/rc.rej
 Patches would not removed cleanly.
 dpkg: error processing sysv-rc-bootsplash (--remove):
  subprocess pre-removal script returned error exit status 1
 Errors were encountered while processing:
  sysv-rc-bootsplash

is what happens. Please update, or tell me how to circumvent :)

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

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



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



Bug#435052: iceape-browser: fails to launch from icedove if not already running

2007-07-28 Thread Tom
Package: iceape-browser
Version: 1.0.10~pre070720-0etch1
Severity: important

when launching iceape from icedove setting network.protocol-handler.app.http
to /usr/bin/iceape, iceape does not start. If iceape was already running,
the selected url is loaded as expected.

The reason seems to be that iceape inherits the environment from icedove, and
icedove sets MOZILLA_FIVE_HOME (in /usr/lib/icedove/run-mozilla.sh, called
from /usr/bin/icedove). Iceape does not set MOZILLA_FIVE_HOME to a proper
value and fails to start. If I unset MOZILLA_FIVE_HOME in /usr/bin/iceape,
then iceape starts up like expected. It seems that this is debian-specific,
as the original seamonkey launch-script does set MOZILLA_FIVE_HOME. In fact,
run-mozilla.sh is equal in seamonkey, firefox and thunderbird, and the original
way of setting MOZILLA_FIVE_HOME seem to be correct.
Is there a reason for handling this differently in iceape, icedove and 
iceweasel?
 

-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (700, 'stable'), (600, 'unstable')

Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-4-686
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages iceape-browser depends on:
ii  libatk1.0-0 1.12.4-3 The ATK accessibility toolkit
ii  libc6   2.3.6.ds1-13 GNU C Library: Shared libraries
ii  libcairo2   1.2.4-4  The Cairo 2D vector graphics libra
ii  libfontconfig1  2.4.2-1.2generic font configuration library
ii  libgcc1 1:4.1.1-21   GCC support library
ii  libglib2.0-02.12.4-2 The GLib library of C routines
ii  libgtk2.0-0 2.8.20-7 The GTK+ graphical user interface 
ii  libjpeg62   6b-13The Independent JPEG Group's JPEG 
ii  libmyspell3c2   1:3.1-18 MySpell spellchecking library
ii  libpango1.0-0   1.14.8-5 Layout and rendering of internatio
ii  libstdc++6  4.1.1-21 The GNU Standard C++ Library v3
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxcursor1 1.1.7-4  X cursor management library
ii  libxext61:1.0.1-2X11 miscellaneous extension librar
ii  libxfixes3  1:4.0.1-5X11 miscellaneous 'fixes' extensio
ii  libxft2 2.1.8.2-8FreeType-based font drawing librar
ii  libxi6  1:1.0.1-4X11 Input extension library
ii  libxinerama11:1.0.1-4.1  X11 Xinerama extension library
ii  libxrandr2  2:1.1.0.2-5  X11 RandR extension library
ii  libxrender1 1:0.9.1-3X Rendering Extension client libra
ii  libxt6  1:1.0.2-2X11 toolkit intrinsics library
ii  zlib1g  1:1.2.3-13   compression library - runtime

Versions of packages iceape-browser recommends:
ii  iceape-gnome-sup 1.0.10~pre070720-0etch1 Gnome support for the Iceape Inter

-- no debconf information


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



Bug#360296: the process amarokapp can't quit when amarok quit

2006-04-04 Thread tom

Package: amarok
Version: 1.3.8-1+b1
Followup-For: Bug #360296

when I quit amarok,the amarokapp still don't quit.Then I restart  
amarok,but it
can't run in my desktop.This time I find amarokapp and amarok in the  
process
table,and the process ID of amarokapp don't change.When I kill the process  
of

amarok and amarokapp,amarok can start.OA



-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-686
Locale: LANG=zh_CN, LC_CTYPE=zh_CN (charmap=GB2312)

Versions of packages amarok depends on:
ii  amarok-arts [amarok-engin 1.3.8-1+b1 aRts engine for the amaroK  
audio p
ii  amarok-engines1.3.8-1+b1 output engines for the amaroK  
audi
ii  amarok-gstreamer [amarok- 1.3.8-1+b1 GStreamer engine for the  
amaroK au
ii  amarok-xine [amarok-engin 1.3.8-1+b1 xine engine for the amaroK  
audio p
ii  kdelibs4c2a   4:3.5.2-1  core libraries for all KDE  
applica
ii  libc6 2.3.6-4GNU C Library: Shared  
libraries an

ii  libgcc1   1:4.0.3-1  GCC support library
ii  libice6   6.9.0.dfsg.1-5 Inter-Client Exchange library
ii  libmysqlclient15off   5.0.19-2   mysql database client library
ii  libpng12-01.2.8rel-5.1   PNG library - runtime
ii  libpq48.1.3-3PostgreSQL C client library
ii  libqt3-mt 3:3.3.6-1  Qt GUI Library (Threaded  
runtime v

ii  libsdl1.2debian   1.2.9-5Simple DirectMedia Layer
ii  libsm66.9.0.dfsg.1-5 X Window System Session  
Management
ii  libstdc++64.0.3-1The GNU Standard C++ Library  
v3

ii  libtag1c2a1.4-3  TagLib Audio Meta-Data Library
ii  libtunepimp2c2a   0.3.0-9.1  MusicBrainz tagging library  
and si

ii  libvisual0.2  0.2.0-4Audio visualization framework
ii  libx11-6  6.9.0.dfsg.1-5 X Window System protocol  
client li
ii  libxext6  6.9.0.dfsg.1-5 X Window System miscellaneous  
exte
ii  xlibmesa-gl [libgl1]  6.9.0.dfsg.1-5 Mesa 3D graphics library  
[X.Org]

ii  zlib1g1:1.2.3-11 compression library - runtime

Versions of packages amarok recommends:
pn  kdemultimedia-kio-plugins  (no description available)

-- no debconf information



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



Bug#596911: Size of a named pipe made by mknod or mkfifo always zero.

2010-09-14 Thread TOM

Package: coreutils
Version: 6.10-6

To: sub...@bugs.debian.org
X-Debbugs-CC: other-l...@cosmic.edu
From: tom.bzliknl83...@online.de
Subject: Size of a named pipe made by mknod or mkfifo always zero.

Hi, there!

The size of a filled named pipe is always zero. I think this is wrong!
A read operation is going to hang for try to read from an empty pipe.
To go around this trap it is necessary to do a conditional test on
the filesize, [ -s pipe ].Problem: The test doesn't work, because
filesize is always zero.

Try:
mknod pipe&
sleep 3600<>pipe&
echo 'date'>pipe
[ -s pipe ]&&  echo "filled up"
ls -l pipe;
 stat pipe  # if size zero, it is wrong
[ -s pipe ]&&  { read valThis is a critical error. While parallel processing a script would be 
blocked.
In worst case it causes a deadlock situation. Every changing of a file´s 
condition
should be reported whithin the i-node. The stat command shows 0 Bytes, 0 
Blocks for

a well filled pipe!

I think it is important.

I found it in several actual distros, also Debian. I did a look up for 
this error
on the internet and I found a message to that topic from 2008. So I 
think it´s a

long term error.

Best regards
TOM





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



Bug#606202: print_event should flush it's output

2010-12-07 Thread Tom
Package: input-utils
Tags: patch

Events used to be output immediately...  Now they get buffered if not
being output to a terminal.

Here's a patch:

--- input-utils-0.0.20081014/debian/patches/flush-events   1969-12-31 16:00
+++ input-utils-0.0.20081014/debian/patches/flush-events   
2010-12-07 04:07
@@ -0,0 +1,10 @@
+--- input-utils.orig/input.c   2010-12-07 04:02:18.0 -0800
 input-utils/input.c2010-12-07 04:05:27.0 -0800
+@@ -179,6 +179,7 @@
+   (unsigned int)event->code, event->value);
+   }
+   printf("\n");
++  fflush(stdout);
+ }
+
+ /* -
--- input-utils-0.0.20081014/debian/patches/series 2010-12-07 04:26:33.
+++ input-utils-0.0.20081014/debian/patches/series  2010-12-07
04:09:12.
@@ -6,3 +6,4 @@
 use-system-input.h
 stdout-not-stderr
 show-numeric-key-values
+flush-events


- Tom



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



Bug#619986: ClassNotFoundException: AndroidToolkitHandler

2011-03-28 Thread tom
Package: libtrident-java
Version: 1.3+dfsg-2
Severity: normal

Using this library i get a RuntimeException with following Stacktrace:
java.lang.ClassNotFoundException:
org.pushingpixels.trident.android.AndroidToolkitHandler
at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
at
org.pushingpixels.trident.TridentConfig.(TridentConfig.java:104)
at
org.pushingpixels.trident.TridentConfig.getInstance(TridentConfig.java:172)

I think the reason are the two lines:

UIToolkitHandler=org.pushingpixels.trident.android.AndroidToolkitHandler
PropertyInterpolatorSource=org.pushingpixels.trident.android.AndroidPropertyInterpolators

in META-INF/trident-plugin.properties.



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

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

Versions of packages libtrident-java depends on:
ii  libswt-gtk-3.5-java   3.5.1-2.1  Standard Widget Toolkit for GTK+ J

libtrident-java recommends no packages.

libtrident-java 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#582225: abiword: Abiword hangs/freezes when trying to embed Gnumeric file

2010-05-19 Thread Tom
Package: abiword
Version: 2.8.2-2
Severity: normal


When trying to use Abiwords embedding Gnumeric Spreadsheet feature the 
application freezes every time. To reproduce:
1. Create new file
   or
   Open existing file
2. Insert -> Object -> From File...
   or
   Insert -> Object -> New... -> Gnumeric Spreadsheet -> Ok
3. Abiword freezes without error messages.

The documentation says Abiword needs Gnumeric 1.9+ for the feature, 1.10.3-1 is 
installed.

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

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

Versions of packages abiword depends on:
ii  abiword-commo 2.8.2-2efficient, featureful word process
ii  gsfonts   1:8.11+urwcyr1.0.7~pre44-3 Fonts for the Ghostscript interpre
ii  libabiword-2. 2.8.2-2efficient, featureful word process
ii  libaiksaurusg 1.2.1+dev-0.12-6   graphical interface to the Aiksaur
ii  libc6 2.10.2-3   Embedded GNU C Library: Shared lib
ii  libcairo2 1.8.8-2The Cairo 2D vector graphics libra
ii  libdbus-1-3   1.2.1-4simple interprocess messaging syst
ii  libdbus-glib- 0.86-1 simple interprocess messaging syst
ii  libgcc1   1:4.4.3-7  GCC support library
ii  libgcrypt11   1.4.4-2LGPL Crypto library - runtime libr
ii  libglib2.0-0  2.24.0-1   The GLib library of C routines
ii  libgnutls26   2.8.4-2the GNU TLS library - runtime libr
ii  libgoffice-0. 0.8.3-1Document centric objects library -
ii  libgsf-1-114  1.14.18-1  Structured File Library - runtime 
ii  libgtk2.0-0   2.20.0-3   The GTK+ graphical user interface 
ii  libjpeg62 6b-15  The Independent JPEG Group's JPEG 
ii  libloudmouth1 1.4.3-5Lightweight C Jabber library
ii  libots0   0.5.0-2Open Text Summarizer (library)
ii  libpng12-01.2.42-1   PNG library - runtime
ii  libpsiconv6   0.9.8-4.1  a library for handling Psion files
ii  libreadline6  6.0-5  GNU readline and history libraries
ii  libsoup2.4-1  2.29.6-1   an HTTP library implementation in 
ii  libstdc++64.4.3-7The GNU Standard C++ Library v3
ii  libwmf0.2-7   0.2.8.4-6  Windows metafile conversion librar
ii  libwpd8c2a0.8.14-1   Library for handling WordPerfect d
ii  libwpg-0.1-1  0.1.2-1WordPerfect graphics import/conver
ii  libwps-0.1-1  0.1.2-1Works text file format import filt
ii  libxml2   2.7.6.dfsg-2+b1GNOME XML library
ii  libxslt1.11.1.26-1   XSLT processing library - runtime 

Versions of packages abiword recommends:
ii  abiword-plugin-grammar  2.8.2-2  grammar checking plugin for AbiWor
ii  abiword-plugin-mathview 2.8.2-2  equation editor plugin for AbiWord
ii  aspell-en [aspell-dictionar 6.0-0-5.1English dictionary for GNU Aspell
ii  poppler-utils   0.8.7-1  PDF utilitites (based on libpopple
ii  ttf-liberation  1.04~beta2-2 Free fonts with the same metrics a

abiword 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#470027: installation report

2008-03-10 Thread Tom




Frans Pop wrote:

  On Saturday 08 March 2008, Tom wrote:

First of all, thank you for your report.
  

You're welcome.
I disagree that the gdm segfault issue is not an installation issue,
but let's focus on something more important.

  
It's a bit presumptuous to just grub install (hd0) without an opportunity
to change drive.

  
  
That's why grub-installer does not do that. You will always get an initial 
dialog that asks whether if you want to install grub on the MBR of the 
first disk. If you answer no there, you _can_ choose alternative locations.
  

The point is that it assumes the FIRST physical hard drive and
that's not a safe assumption. When I enter the BIOS and change the boot
order, your installer should respect the intent of the change
and assume the current BOOT drive in the BIOS is the first hard drive,
regardless of which adapter happens to show up "first". Bypassing the
BIOS boot order renders BIOS boot order changes meaningless and is a
guarantee you'll trash a working MBR.

  
Sounds like the installer may not have detected your Windows installation. 
If that is the case, please send us the files 'syslog' (gzipped!) and
'hardware-summary' from the /var/log/installer directory.

  

The installer detected it just fine, then when I said "yes" to "write
MBR to the FIRST hard drive", which to me is the BIOS boot drive, it
TRASHED my Vista MBR, even though the BIOS boot drive is the the drive
I was installing it on. BAD, NASTY, UNNECESSARY. See how Ubuntu
installer does it, much more sane...

The way it is it's very difficult to understand which drive you are
going to write on and that's the problem. 

If you don't want to change the way it is, at least fetch and
display a description of the drive and it's partitions so I know which
drive you intend to write a boot sector on. Better yet, display a list
of bootable drives and ASK me which one I want to use, and whether or
not I want other operating systems included in the Grub menu. It's not
too hard for me to change the grub menu but some people get all in a
tizzy over such things.

Think of it this way:
If I enter the BIOS and change the drive order, I expect your installer
to respect that change, not decide for me which drive is the first
drive. From an installer point of view the first drive is always the
drive that the system was booted from or will be booted from next time
the system starts, not always drive 0.

If I know enough about the system to have changed the BIOS boot drive,
it's a safe bet I can figure out that my new Linux won't boot because I
just installed it on my drive 1 but my BIOS boots from drive 0.

What would also work better is to use a UUID in fstab so you can find
the appropriate partition, but that's a feature request, not a bug or
an error.

The bottom line is that to run this installer on a drive other than
hard drive 0 and have it work correctly,  I need to disable any "other"
adapters or they end up part of a semi-permanent "whole machine" Grub
boot scheme. That's the issue. 


  
The sound driver does not allow me to set the speaker mode and defaults
to the "front" speaker, should be PCM I have only 4 speakers but cannot
set the output correctly using the volume control.

  
  
Again outside the scope of the installer.
  

Huh?
Installer just blindly installs packages?
Ok, I guess that's the way it works but that default got there from
somewhere and if I reinstall the sound driver from the same
distribution as the installer, it shows up CORRECTLY. So, something is
amiss in the installation process 
A possible BUG? 
Maybe it's an Aunt Betty...
Or an Avuncular Frankshire Relative...
:)

-Tom






Bug#603378: navit-data does not specify what data is used

2010-11-13 Thread Tom
Package: navit-data
Version: 0.2.0~svn3501+dfsg.1-1
Severity: normal

It is not clear which data source is used (probably OpenStreetap?)
Furthermore, the data scope (Europe? US? World?) and the data depth 
(all road types? highways only?) is not specified. 

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (550, 'stable'), (450, 'unstable')
Architecture: i386 (i686)

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



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



Bug#601526: Ruby Package Naming Conventions Don't Make Any Sense

2010-10-26 Thread Tom
Package: ruby1.9.1
Version: 1.9.2.0-1

So Ruby 1.9.2 is now in the Debian package ruby1.9.1. In the mean time
there is a Debian package named ruby1.9 that seems to be abandoned.
For the Ruby 1.8 branch there is a package called ruby1.8 (aka ruby)
which always has the latest 1.8.x version of Ruby.

What is the logic of having a ruby1.9 package and a ruby1.9.1 package?
What is the logic of packaging Ruby 1.9.2 in ruby1.9.1?
Why not just use ruby1.9 for the latest Ruby 1.9.x release?
What will the package name be for Ruby 1.9.3, 1.9.4, 1.9.5, etc? Are
those going to have their own packages or are they also going to be in
1.9.1?

I have searched the web for an answer without any luck. I'm sure many
people would like to understand the logic of future packaging or at
least the logic of how things got to be where they are today.

Thanks for all the great work!



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



Bug#601526: Ruby Package Naming Conventions Don't Make Any Sense

2010-10-26 Thread Tom
Hello Lucas,

Thank you for that answer. I can now see there is a logical reason for
the numbering. May I suggest adding a line to the package description
stating simply "This is the Ruby version compatible with Ruby 1.9.1"
or something similar to clarify this for posterity. It would be very
useful for someone who wants to maintain a clean server with Ruby but
who does not necessarily work with Ruby development close enough to
know the logic behind the package names.

Again thanks for the answer. As far as I'm concerned, you may close the bug.


On Tue, Oct 26, 2010 at 11:57 PM, Lucas Nussbaum
 wrote:
> On 26/10/10 at 22:05 -0500, Tom wrote:
>> Package: ruby1.9.1
>> Version: 1.9.2.0-1
>>
>> So Ruby 1.9.2 is now in the Debian package ruby1.9.1. In the mean time
>> there is a Debian package named ruby1.9 that seems to be abandoned.
>> For the Ruby 1.8 branch there is a package called ruby1.8 (aka ruby)
>> which always has the latest 1.8.x version of Ruby.
>>
>> What is the logic of having a ruby1.9 package and a ruby1.9.1 package?
>> What is the logic of packaging Ruby 1.9.2 in ruby1.9.1?
>> Why not just use ruby1.9 for the latest Ruby 1.9.x release?
>> What will the package name be for Ruby 1.9.3, 1.9.4, 1.9.5, etc? Are
>> those going to have their own packages or are they also going to be in
>> 1.9.1?
>>
>> I have searched the web for an answer without any luck. I'm sure many
>> people would like to understand the logic of future packaging or at
>> least the logic of how things got to be where they are today.
>
> This is partially answered in http://www.lucas-nussbaum.net/blog/?p=566
>
> In ruby1.9.1, "1.9.1" is the ruby compatibility version. You can see it
> as the SONAME, even if I'm not completely sure whether it matches the
> definition of SONAME exactly. (I don't think that anybody knows, really
> ;)
>
> Ruby 1.9.3 will be packaged as ruby1.9.1 if 1.9.3 stays compatible with
> 1.9.1 (which is the case for 1.9.2). And as ruby1.9.3 if not (which
> would require a painful migration in Debian, like the ruby1.9 ->
> ruby1.9.1 one)
>
> ruby1.9 isn't abandonned: it was tracking the 1.9.0 branch in lenny. And
> it won't be part of squeeze.
>
> Can I close this bug?
>
> - Lucas
>



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



Bug#593742: iceweasel: caps lock toggls bookmarks sidebar

2010-08-20 Thread Tom
Package: iceweasel
Version: 3.5.11-1
Severity: important


(retrying this bug report due to setup problem)

In testing, caps lock toggles the bookmarks bar. View->Sidebar->Bookmarks
shows ctrl-b as the shortcut, which also works. I created a new user and it
had the same problem.

--
Tom Vier 
Senior Net/Sys Admin
Triad Systems Engineering, Inc.

-- Package-specific info:

-- Extensions information
Name: Archaic
Location: ${PROFILE_EXTENSIONS}/{366D68E8-8E61-4009-B3FC-69FC2CEBC7AB}
Status: app-disabled

Name: Default
Location: /usr/lib/iceweasel/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}
Package: iceweasel
Status: enabled

-- Plugins information
Name: DivX® Web Player
Location: /usr/lib/mozilla/plugins/libtotem-mully-plugin.so
Package: totem-mozilla
Status: enabled

Name: QuickTime Plug-in 7.6.6
Location: /usr/lib/mozilla/plugins/libtotem-narrowspace-plugin.so
Package: totem-mozilla
Status: enabled

Name: VLC Multimedia Plugin (compatible Totem 2.30.2)
Location: /usr/lib/mozilla/plugins/libtotem-cone-plugin.so
Package: totem-mozilla
Status: enabled

Name: Windows Media Player Plug-in 10 (compatible; Totem)
Location: /usr/lib/mozilla/plugins/libtotem-gmp-plugin.so
Package: totem-mozilla
Status: enabled

Name: iTunes Application Detector
Location: /usr/lib/mozilla/plugins/librhythmbox-itms-detection-plugin.so
Package: rhythmbox-plugins
Status: enabled


-- Addons package information
ii  iceweasel  3.5.11-1   Web browser based on Firefox
ii  rhythmbox-plug 0.12.8-2   plugins for rhythmbox music player
ii  totem-mozilla  2.30.2-2+b1Totem Mozilla plugin

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

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

Versions of packages iceweasel depends on:
ii  debianutils   3.4Miscellaneous utilities specific t
ii  fontconfig2.8.0-2.1  generic font configuration library
ii  libc6 2.11.2-2   Embedded GNU C Library: Shared lib
ii  libglib2.0-0  2.24.1-1   The GLib library of C routines
ii  libgtk2.0-0   2.20.1-1   The GTK+ graphical user interface 
ii  libnspr4-0d   4.8.4-2NetScape Portable Runtime Library
ii  libstdc++64.4.4-8The GNU Standard C++ Library v3
ii  procps1:3.2.8-9  /proc file system utilities
ii  xulrunner-1.9.1   1.9.1.11-1 XUL + XPCOM application runner

iceweasel recommends no packages.

Versions of packages iceweasel suggests:
ii  libgssapi-krb5-2  1.8.3+dfsg~beta1-1 MIT Kerberos runtime libraries - k
pn  mozplugger (no description available)
ii  ttf-lyx   1.6.7-1TrueType versions of some TeX font
pn  ttf-mathematica4.1 (no description available)
ii  xfonts-mathml 4  Type1 Symbol font for MathML
pn  xprint (no description available)

Versions of packages xulrunner-1.9.1 depends on:
ii  libasound2  1.0.23-1 shared library for ALSA applicatio
ii  libatk1.0-0 1.30.0-1 The ATK accessibility toolkit
ii  libbz2-1.0  1.0.5-4  high-quality block-sorting file co
ii  libc6   2.11.2-2 Embedded GNU C Library: Shared lib
ii  libcairo2   1.8.10-4 The Cairo 2D vector graphics libra
ii  libdbus-1-3 1.2.24-3 simple interprocess messaging syst
ii  libfontconfig1  2.8.0-2.1generic font configuration library
ii  libfreetype62.4.2-1  FreeType 2 font engine, shared lib
ii  libgcc1 1:4.4.4-8GCC support library
ii  libglib2.0-02.24.1-1 The GLib library of C routines
ii  libgtk2.0-0 2.20.1-1 The GTK+ graphical user interface 
ii  libhunspell-1.2-0   1.2.11-1 spell checker and morphological an
ii  libjpeg62   6b1-1The Independent JPEG Group's JPEG 
ii  libmozjs2d  1.9.1.11-1   The Mozilla SpiderMonkey JavaScrip
ii  libnspr4-0d 4.8.4-2  NetScape Portable Runtime Library
ii  libnss3-1d  3.12.6-3 Network Security Service libraries
ii  libpango1.0-0   1.28.1-1 Layout and rendering of internatio
ii  libpng12-0  1.2.44-1 PNG library - runtime
ii  libreadline66.1-3GNU readline and history libraries
ii  libsqlite3-03.7.0-1.1SQLite 3 shared library
ii  libstartup-notification 0.10-1   library for program launch feedbac
ii  libstdc++6  4.4.4-8  The GNU Standard C++ Library v3
ii  libx11-62:1.3.3-3X11 client-side library
ii  libxrender1 

Bug#594089: keyboard-configuration: caps lock keycode problem

2010-08-23 Thread Tom
Package: keyboard-configuration
Version: 1.55
Severity: important


Testing apparently is sending the wrong keycodes from caps lock. This causes
icedove to open the addressbook and iceweasel to open the bookmarks sidebar
(also happens in firefox on win xp running in vmware). I have reboot with
vmware disabled, same problem. I've tried the generic 100+ key maps and the
logitech media elite keymap (which is the keyboard I'm using - it's usb).
The model name is logimel, which is set in both /etc/default/keyboard and
/etc/X11/xorg.conf. Stable dist doesn't have this problem.

I originally reported this in bug 593742 against iceweasel.

Here's xev's output. The initial keypress is keycode 66, repeat and release
are both 164.

KeyRelease event, serial 105, synthetic NO, window 0x341,
root 0x110, subw 0x0, time 1729143, (166,-8), root:(190,128),
state 0x12, keycode 66 (keysym 0xffe5, Caps_Lock), same_screen YES,
XLookupString gives 0 bytes:
XFilterEvent returns: False

KeyRelease event, serial 106, synthetic NO, window 0x341,
root 0x110, subw 0x0, time 1729166, (166,-8), root:(190,128),
state 0x10, keycode 164 (keysym 0x1008ff30, XF86Favorites), same_screen
YES,
XLookupString gives 0 bytes:
XFilterEvent returns: False

KeyPress event, serial 106, synthetic NO, window 0x341,
root 0x110, subw 0x0, time 1729166, (166,-8), root:(190,128),
state 0x10, keycode 164 (keysym 0x1008ff30, XF86Favorites), same_screen
YES,
XLookupString gives 0 bytes:
XmbLookupString gives 0 bytes:
XFilterEvent returns: False

KeyRelease event, serial 106, synthetic NO, window 0x341,
root 0x110, subw 0x0, time 1729168, (166,-8), root:(190,128),
state 0x10, keycode 164 (keysym 0x1008ff30, XF86Favorites), same_screen
YES,
XLookupString gives 0 bytes:
XFilterEvent returns: False


--
Tom Vier 
Senior Net/Sys Admin
Triad Systems Engineering, Inc.

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

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

Versions of packages keyboard-configuration depends on:
ii  debconf [debconf-2.0] 1.5.35 Debian configuration management sy

keyboard-configuration recommends no packages.

keyboard-configuration suggests no packages.

-- debconf-show failed



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



Bug#560300: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=560300

2009-12-10 Thread tom
Unfortunately, commenting out the check isn't enough as you then get errors 
along the lines of

Processing listings for '4Music' (4music.channel4.com)
http://xmltv.radiotimes.com/xmltv/1544.dat: bad delta +0:0:+0:0:0:0:0 at
/usr/share/perl5/XMLTV/TZ.pm line 101.

The only solution I've found so far is to roll-back to the earlier 
libdate-manip-perl.




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



Bug#533219: probably EXIF related, new upstream report

2009-10-22 Thread Tom
Hi,

I can confirm that this issue has now been resolved (either in 1.0.0
beta 4 or beta5). Feel free to close this bug.

I have also closed the upstream report -
https://bugs.kde.org/show_bug.cgi?id=196668

Regards,
Tom



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



Bug#562593: openssh-server fails to install - hangs at generating DSA2 key (Debian MIPS on SGI Indy R5000)

2009-12-26 Thread tom
Package: openssh-server
Version: 1:5.1p1-5
Severity: grave
Justification: renders package unusable

The .postinst script successfully generates an RSA host_key, but the system 
then hangs at:

"Creating SSH2 DSA key: This may take some time ..."


The system is not completely unresponsive: I can switch to another tty. top 
shows ssh-keygen running and CPU usage at 99%.

I have left the ssh-keygen process running for more than 24 hours but it never 
completes.

If I ^C and break the script, logins from other boxes intermittently fail due 
to missing DSA2 host_key.



*** /tmp/reportbug-openssh-server-20091226-14585-Ez_8mj
Subject: openssh-server fails to install (will not generate DSA2 key) [running 
Debain MIPS on SGI Indy R5000]
Package: openssh-server
Version: 1:5.1p1-5
Severity: normal



-- System Information:
Debian Release: 5.0.3
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: mips (mips64)

Kernel: Linux 2.6.26-2-r4k-ip22
Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages openssh-server depends on:
ii  adduser 3.110add and remove users and groups
ii  debconf [debcon 1.5.24   Debian configuration management sy
ii  dpkg1.14.25  Debian package management system
ii  libc6   2.7-18   GNU C Library: Shared libraries
ii  libcomerr2  1.41.3-1 common error description library
ii  libkrb531.6.dfsg.4~beta1-5lenny1 MIT Kerberos runtime libraries
ii  libpam-modules  1.0.1-5+lenny1   Pluggable Authentication Modules f
ii  libpam-runtime  1.0.1-5+lenny1   Runtime support for the PAM librar
ii  libpam0g1.0.1-5+lenny1   Pluggable Authentication Modules l
ii  libselinux1 2.0.65-5 SELinux shared libraries
ii  libssl0.9.8 0.9.8g-15+lenny5 SSL shared libraries
ii  libwrap07.6.q-16 Wietse Venema's TCP wrappers libra
ii  lsb-base3.2-20   Linux Standard Base 3.2 init scrip
ii  openssh-blackli 0.4.1list of default blacklisted OpenSS
ii  openssh-client  1:5.1p1-5secure shell client, an rlogin/rsh
ii  procps  1:3.2.7-11   /proc file system utilities
ii  zlib1g  1:1.2.3.3.dfsg-12compression library - runtime

Versions of packages openssh-server recommends:
pn  openssh-blacklist-extra(no description available)
pn  xauth  (no description available)

Versions of packages openssh-server suggests:
pn  molly-guard(no description available)
pn  rssh   (no description available)
pn  ssh-askpass(no description available)

-- debconf information:
  ssh/new_config: true
* ssh/use_old_init_script: true
  ssh/vulnerable_host_keys:
  ssh/encrypted_host_key_but_no_keygen:
  ssh/disable_cr_auth: false


-- System Information:
Debian Release: 5.0.3
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: mips (mips64)

Kernel: Linux 2.6.26-2-r4k-ip22
Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages openssh-server depends on:
ii  adduser 3.110add and remove users and groups
ii  debconf [debcon 1.5.24   Debian configuration management sy
ii  dpkg1.14.25  Debian package management system
ii  libc6   2.7-18   GNU C Library: Shared libraries
ii  libcomerr2  1.41.3-1 common error description library
ii  libkrb531.6.dfsg.4~beta1-5lenny1 MIT Kerberos runtime libraries
ii  libpam-modules  1.0.1-5+lenny1   Pluggable Authentication Modules f
ii  libpam-runtime  1.0.1-5+lenny1   Runtime support for the PAM librar
ii  libpam0g1.0.1-5+lenny1   Pluggable Authentication Modules l
ii  libselinux1 2.0.65-5 SELinux shared libraries
ii  libssl0.9.8 0.9.8g-15+lenny5 SSL shared libraries
ii  libwrap07.6.q-16 Wietse Venema's TCP wrappers libra
ii  lsb-base3.2-20   Linux Standard Base 3.2 init scrip
ii  openssh-blackli 0.4.1list of default blacklisted OpenSS
ii  openssh-client  1:5.1p1-5secure shell client, an rlogin/rsh
ii  procps  1:3.2.7-11   /proc file system utilities
ii  zlib1g  1:1.2.3.3.dfsg-12compression library - runtime

Versions of packages openssh-server recommends:
pn  openssh-blacklist-extra(no description available)
pn  xauth  (no description available)

Versions of packages openssh-server suggests:
pn  molly-guard(no description available)
pn  rssh   (no description available)
pn 

Bug#454548: apache2-doc: All index pages are invalid (index.html)

2008-03-24 Thread tom
Stefan Fritsch wrote:
> On Saturday 01 March 2008, tom wrote:
>> I don't see any change. It is still (or again?) broken in
>> 2.2.3-4+etch4. It is only corrected in 2.2.8-1. Etch users still
>> can't read the apache documentation.
[snip]
> http://localhost/manual/";
> 
> The latter works only if apache2 is running, but I consider the 

ok, got it: it works if apache2 2.2.3-4+etch4 is running. if apache2
2.2.3-4+etch1 is running, it does not work. So apache2-doc 2.2.3-4+etch4
is fixed if you also upgrade apache2...
cheers,
tom



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



Bug#633621: Dev packages may need to provide archives with multiple word lengths

2011-07-12 Thread Tom
Package: gcc-4.6
Version: 4.6.1-3

Development packages like (gcc-4.6-plugin-dev, libmudflap0-4.6-dev, &
libstdc++6-4.6-dev) provide .a files built only for the package
architecture's word length.


For example libstdc++6-4.6-dev for amd64 provides me the headers I need
to build against libstdc++, but only an .a file for linking into 64-bit
binaries, not 32-bit.

Not sure if we should provide both when built on 64-bit arch, or if we
should make separate packages for .a files (which I hate).
- Tom



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



Bug#922189: cups: HP LJ 3320 reports paper out on next print job

2019-02-12 Thread tom
Package: cups
Version: 2.2.1-8+deb9u2
Severity: normal

If the HP LJ 3320 printer runs out of paper during a print job,
the error is correctly relayed to the computer in a dialog box.

But if the error occurs between print jobs, such as changing 
the paper, and the error is no longer there, it still reports
it in a dialog box on the subsequent print job.

I always have to check if there is enough paper. I apologize 
if this is a hplip bug. I rerally don't know

-- System Information:
Debian Release: 9.7
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 4.9.0-8-amd64 (SMP w/8 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages cups depends on:
ii  cups-client2.2.1-8+deb9u2
ii  cups-common2.2.1-8+deb9u2
ii  cups-core-drivers  2.2.1-8+deb9u2
ii  cups-daemon2.2.1-8+deb9u2
ii  cups-filters   1.11.6-3
ii  cups-ppdc  2.2.1-8+deb9u2
ii  cups-server-common 2.2.1-8+deb9u2
ii  debconf [debconf-2.0]  1.5.61
ii  ghostscript9.26a~dfsg-0+deb9u1
ii  libavahi-client3   0.6.32-2
ii  libavahi-common3   0.6.32-2
ii  libc-bin   2.24-11+deb9u3
ii  libc6  2.24-11+deb9u3
ii  libcups2   2.2.1-8+deb9u2
ii  libcupscgi12.2.1-8+deb9u2
ii  libcupsimage2  2.2.1-8+deb9u2
ii  libcupsmime1   2.2.1-8+deb9u2
ii  libcupsppdc1   2.2.1-8+deb9u2
ii  libgcc11:6.3.0-18+deb9u1
ii  libstdc++6 6.3.0-18+deb9u1
ii  libusb-1.0-0   2:1.0.21-1
ii  poppler-utils  0.48.0-2+deb9u2
ii  procps 2:3.3.12-3+deb9u1

Versions of packages cups recommends:
ii  avahi-daemon 0.6.32-2
ii  colord   1.3.3-2
ii  cups-filters [ghostscript-cups]  1.11.6-3
ii  printer-driver-gutenprint5.2.11-1+b2

Versions of packages cups suggests:
ii  cups-bsd   2.2.1-8+deb9u2
pn  cups-pdf   
ii  foomatic-db-compressed-ppds [foomatic-db]  20161201-1
ii  hplip  3.16.11+repack0-3
ii  printer-driver-hpcups  3.16.11+repack0-3
pn  smbclient  
ii  udev   232-25+deb9u8

-- debconf information:
  cupsys/backend: lpd, socket, usb, snmp, dnssd
  cupsys/raw-print: true



Bug#905404: firmware-iwlwifi firmware won't load without reboot

2018-08-03 Thread tom
Package: firmware-iwlwifi
Version: 20161130-3
Severity: normal

I installed the package firmware-iwlwifi, and the firmware
for my adapter would not load (according to dmesg).

I expected the firmware to load after I installed the 
firmware package. It use to work that way. 

I rebooted, and the firmware loaded properly.

I wish the firmware package would at least print 
to the log that a reboot may be necessary, or that iwlwifi 
module needs to be manually loaded in order to load the
firmware.

There is really no way to tell why the firmware fails 
to load or what steps to take in the event it doesn't.

I think the problem is due to a missing or incomplete
udev rule for the iwlwifi module. I apologize, but I failed 
to condirm whether the module was loaded before I rebooted 
and got the firmware to load.

-- System Information:
Debian Release: 9.5
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 4.9.0-7-amd64 (SMP w/8 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

firmware-iwlwifi depends on no packages.

firmware-iwlwifi recommends no packages.

Versions of packages firmware-iwlwifi suggests:
ii  initramfs-tools  0.130

-- no debconf information



Bug#882702: synaptic: Synaptic starts the firefox with root priviligation by clicking on "Visit Hompage"

2017-11-25 Thread tom
Package: synaptic
Version: 0.84.2
Severity: important

Dear Maintainer,

*** Reporter, please consider answering these questions, where appropriate ***

   * What led up to the situation?
   * What exactly did you do (or not do) that was effective (or
 ineffective)?
   * What was the outcome of this action?
   * What outcome did you expect instead?

*** End of the template - remove these template lines ***


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

Kernel: Linux 4.9.0-4-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8), 
LANGUAGE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages synaptic depends on:
ii  hicolor-icon-theme   0.15-1
ii  libapt-inst2.0   1.4.8
ii  libapt-pkg5.01.4.8
ii  libatk1.0-0  2.22.0-1
ii  libc62.24-11+deb9u1
ii  libcairo-gobject21.14.8-1
ii  libcairo21.14.8-1
ii  libept1.5.0  1.1+nmu3+b1
ii  libgcc1  1:6.3.0-18
ii  libgdk-pixbuf2.0-0   2.36.5-2+deb9u1
ii  libglib2.0-0 2.50.3-2
ii  libgnutls30  3.5.8-5+deb9u3
ii  libgtk-3-0   3.22.11-1
ii  libpango-1.0-0   1.40.5-1
ii  libpangocairo-1.0-0  1.40.5-1
ii  libpcre2-8-0 10.22-3
ii  libstdc++6   6.3.0-18
ii  libvte-2.91-00.46.1-1
ii  libx11-6 2:1.6.4-3
ii  libxapian30  1.4.3-2
ii  policykit-1  0.105-18
ii  zlib1g   1:1.2.8.dfsg-5

Versions of packages synaptic recommends:
ii  libgtk2-perl   2:1.2499-1
ii  rarian-compat  0.8.1-6+b1
ii  xdg-utils  1.1.1-1

Versions of packages synaptic suggests:
pn  apt-xapian-index 
pn  deborphan
pn  dwww 
pn  menu 
pn  software-properties-gtk  
ii  tasksel  3.39

-- no debconf information



Bug#971063: systemsettings > display/monitor window is empty

2020-09-26 Thread tom
Package: systemsettings
Version: 4:5.14.5-1.1
Severity: normal

Dear Maintainer,

I ran systemsettings5 > hardware > display and monitors; and
the righthand pane: "configure monitors and displays"
is empty except for the blue dot with an 'i', which
does nothing.

Below are the messages/errors: 

rex@debian11:~$ systemsettings5
QCoreApplication::arguments: Please instantiate the QApplication object first
Warning: Ignoring XDG_SESSION_TYPE=wayland on Gnome. Use 
QT_QPA_PLATFORM=wayland to run on Wayland anyway.
Using Wayland-EGL
Using the 'xdg-shell-v6' shell integration
WARNING: viewBackgroundColor is deprecated, use backgroundColor with colorSet: 
Theme.View instead
KActivities: Database connection:  
"kactivities_db_resources_139767671356608_readonly" 
query_only:  QVariant(qlonglong, 1) 
journal_mode:QVariant(QString, "wal") 
wal_autocheckpoint:  QVariant(qlonglong, 100) 
synchronous: QVariant(qlonglong, 0)
Nothing to load - the client id is empty
Nothing to load - the client id is empty
qt.qpa.wayland: Wayland does not support QWindow::requestActivate()
kscreen.kwayland: Connection to Wayland server at socket: "wayland-0" timed out.
kscreen.kwayland: Loading Wayland backend.
kscreen.kwayland: Connection to Wayland server at socket: "wayland-0" timed out.
kf5.kcoreaddons.kdirwatch: Cannot watch QRC-like path 
":/icons/hicolor/index.theme"
KActivitiesStats( 0x564f025e6bb0 ) ResultModelPrivate::onResultScoreUpdated  
result added: "kcm:kcm_kscreen.desktop" score: 3.9077 last: 1601145839 first: 
1601013704

end

I realize the transition to wayland is fraught with pitfalls, 
extra work for everyone, and just one big PITA. But the open-source/Linux 
community really needs to correct a number of issues with X. I don't think 
it will be as difficult as some have imagined. 

The unwillingness of certain maintainers to update their packages
for wayland appears to be contagious in a "Then I don't have to 
either!" sort of way, and everyone jumping on the gnome developers 
for defaulting to wayland.

I know there will be problems, even with 'stable'. Don't worry!
It's very frustrating for developers when documentation is incorrect,
incomplete and/or nonexistent. 

We can each do our part to figure this thing out.   
 


-- System Information:
Debian Release: 10.6
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 4.19.0-10-amd64 (SMP w/8 CPU cores)
Kernel taint flags: TAINT_OOT_MODULE, TAINT_UNSIGNED_MODULE
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8) (ignored: LC_ALL 
set to en_US.utf8), LANGUAGE=en_US.utf8 (charmap=UTF-8) (ignored: LC_ALL set to 
en_US.utf8)
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages systemsettings depends on:
ii  kio   5.54.1-1
ii  kpackagetool5 5.54.0-1
ii  libc6 2.28-10
ii  libkf5activities5 5.54.0-1
ii  libkf5activitiesstats15.54.0-1
ii  libkf5auth5   5.54.0-2
ii  libkf5completion5 5.54.0-1
ii  libkf5configcore5 5.54.0-1+deb10u1
ii  libkf5configgui5  5.54.0-1+deb10u1
ii  libkf5configwidgets5  5.54.0-1
ii  libkf5coreaddons5 5.54.0-1
ii  libkf5crash5  5.54.0-1
ii  libkf5dbusaddons5 5.54.0-1
ii  libkf5declarative55.54.0-1
ii  libkf5i18n5   5.54.0-1
ii  libkf5iconthemes5 5.54.0-1
ii  libkf5itemviews5  5.54.0-1
ii  libkf5kcmutils5   5.54.0-1
ii  libkf5khtml5  5.54.0-1
ii  libkf5kiowidgets5 5.54.1-1
ii  libkf5package55.54.0-1
ii  libkf5quickaddons55.54.0-1
ii  libkf5service-bin 5.54.0-1
ii  libkf5service55.54.0-1
ii  libkf5widgetsaddons5  5.54.0-1
ii  libkf5windowsystem5   5.54.0-1
ii  libkf5xmlgui5 5.54.0-1
ii  libkworkspace5-5  4:5.14.5.1-1
ii  libqt5core5a  5.11.3+dfsg1-1+deb10u4
ii  libqt5dbus5   5.11.3+dfsg1-1+deb10u4
ii  libqt5gui55.11.3+dfsg1-1+deb10u4
ii  libqt5qml55.11.3-4
ii  libqt5quick5  5.11.3-4
ii  libqt5quickwidgets5   5.11.3-4
ii  libqt5widgets55.11.3+dfsg1-1+deb10u4
ii  libstdc++610.2.0-7
ii  qml-module-org-kde-kcm5.54.0-1
ii  qml-module-org-kde-kirigami2  5.54.0-1
ii  qml-module-qtquick-controls   5.11.3-2
ii  qml-module-qtquick-layouts5.11.3-4
ii  qml-module-qtquick2   5.11.3-4

systemsettings recommends no packages.

systemsettings suggests no packages.

-- no debconf information



Bug#971406: gnome-control-center: cannot set external display only, freezes

2020-09-29 Thread tom
Package: gnome-control-center
Version: 1:3.30.3-2~deb10u1
Severity: important

Gnome-conrol-center > devices > displays > external monitor set
to primary in 'join displays'> 'single display'
turns off both LVDS and external monitor, freezes keyboard and 
mouse control, hard reboot only solution.

If 'mirror' is used, the external monitor is available, but only at
the resolution of the LVDS or lower. 

I expected it was possible to have just the external monitor, and LVDS 
off.

-- System Information:
Debian Release: 10.6
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 4.19.0-10-amd64 (SMP w/8 CPU cores)
Kernel taint flags: TAINT_OOT_MODULE, TAINT_UNSIGNED_MODULE
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8) (ignored: LC_ALL 
set to en_US.utf8), LANGUAGE=en_US.utf8 (charmap=UTF-8) (ignored: LC_ALL set to 
en_US.utf8)
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages gnome-control-center depends on:
ii  accountsservice0.6.45-2
ii  apg2.2.3.dfsg.1-5
ii  colord 1.4.3-4
ii  desktop-base   10.0.2
ii  desktop-file-utils 0.23-4
ii  gnome-control-center-data  1:3.30.3-2~deb10u1
ii  gnome-desktop3-data3.30.2.1-2
ii  gnome-settings-daemon  3.30.2-3
ii  gsettings-desktop-schemas  3.28.1-1
ii  libaccountsservice00.6.45-2
ii  libatk1.0-02.30.0-2
ii  libc6  2.28-10
ii  libcairo-gobject2  1.16.0-4
ii  libcairo2  1.16.0-4
ii  libcanberra-gtk3-0 0.30-7
ii  libcanberra0   0.30-7
ii  libcheese-gtk253.31.90-1
ii  libcheese8 3.31.90-1
ii  libclutter-1.0-0   1.26.2+dfsg-10
ii  libclutter-gtk-1.0-0   1.8.4-4
ii  libcolord-gtk1 0.1.26-2
ii  libcolord2 1.4.3-4
ii  libcups2   2.2.10-6+deb10u3
ii  libfontconfig1 2.13.1-2
ii  libgdk-pixbuf2.0-0 2.38.1+dfsg-1
ii  libglib2.0-0   2.58.3-2+deb10u2
ii  libgnome-bluetooth13   3.28.2-4~deb10u1
ii  libgnome-desktop-3-17  3.30.2.1-2
ii  libgoa-1.0-0b  3.30.1-2
ii  libgoa-backend-1.0-1   3.30.1-2
ii  libgrilo-0.3-0 0.3.7-1
ii  libgtk-3-0 3.24.5-1
ii  libgtop-2.0-11 2.38.0-4
ii  libgudev-1.0-0 232-2
ii  libibus-1.0-5  1.5.19-4+deb10u1
ii  libkrb5-3  1.17-3
ii  libmm-glib01.10.0-1
ii  libnm0 1.14.6-2+deb10u1
ii  libnma01.8.20-1.1
ii  libpango-1.0-0 1.42.4-8~deb10u1
ii  libpangocairo-1.0-01.42.4-8~deb10u1
ii  libpolkit-gobject-1-0  0.105-25
ii  libpulse-mainloop-glib012.2-4+deb10u1
ii  libpulse0  12.2-4+deb10u1
ii  libpwquality1  1.4.0-3
ii  libsecret-1-0  0.18.7-1
ii  libsmbclient   2:4.9.5+dfsg-5+deb10u1
ii  libsoup2.4-1   2.64.2-2
ii  libupower-glib30.99.10-1
ii  libwacom2  0.32-1
ii  libwayland-server0 1.16.0-1
ii  libx11-6   2:1.6.7-1+deb10u1
ii  libxi6 2:1.7.9-1
ii  libxml22.9.4+dfsg1-7+b3

Versions of packages gnome-control-center recommends:
ii  cracklib-runtime  2.9.6-2
ii  cups-pk-helper0.2.6-1+b1
ii  gkbd-capplet  3.26.1-1
ii  gnome-online-accounts 3.30.1-2
ii  gnome-user-docs   3.30.2-1
ii  gnome-user-share  3.28.0-2
ii  iso-codes 4.2-1
ii  libcanberra-pulse 0.30-7
ii  libnss-myhostname 241-7~deb10u4
ii  mousetweaks   3.12.0-5
ii  network-manager-gnome 1.8.20-1.1
ii  policykit-1   0.105-25
ii  pulseaudio-module-bluetooth   12.2-4+deb10u1
ii  realmd0.16.3-2
ii  rygel 0.36.2-4
ii  rygel-tracker 0.36.2-4
ii  system-config-printer-common  1.5.11-4

Versions of packages gnome-control-center suggests:
ii  gnome-software   3.30.6-5
ii  gstreamer1.0-pulseaudio  1.14.4-1
pn  libcanberra-gtk-module   
ii  libcanberra-gtk3-module  0.30-7
ii  x11-xserver-utils7.7+8

-- no debconf information



Bug#979025: gimp: Crash while increasing depth of fractal trace filter

2021-01-01 Thread tom
Package: gimp
Version: 2.10.8-2
Severity: normal


I was using the filters > map > "fractal trace",
adjusting the depth parameter, and a dialog appeared.

"Press 'copy to clipboard'. Then press 'report bug'." I did 
that, and a web page opened that was an instruction for
using reportbug.

So, the program crashed. Below are the clipboard contents 
that the crash dialog requested I copy.

If you want me to install dbg packages and repeat the exercise,
let me know.   

```
GNU Image Manipulation Program version 2.10.8
git-describe: GIMP_2_10_6-294-ga967e8d2c2
C compiler:
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/8/lto-wrapper
OFFLOAD_TARGET_NAMES=nvptx-none
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Debian 
8.2.0-13' --with-bugurl=file:///usr/share/doc/gcc-8/README.Bugs 
--enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr 
--with-gcc-major-version-only --program-suffix=-8 
--program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id 
--libexecdir=/usr/lib --without-included-gettext --enable-threads=posix 
--libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug 
--enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new 
--enable-gnu-unique-object --disable-vtable-verify --enable-libmpx 
--enable-plugin --enable-default-pie --with-system-zlib 
--with-target-system-zlib --enable-objc-gc=auto --enable-multiarch 
--disable-werror --with-arch-32=i686 --with-abi=m64 
--with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic 
--enable-offload-targets=nvptx-none --without-cuda-driver 
--enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu 
--target=x86_64-linux-gnu
Thread model: posix
gcc version 8.2.0 (Debian 8.2.0-13) 

using GEGL version 0.4.12 (compiled against version 0.4.12)
using GLib version 2.58.3 (compiled against version 2.58.1)
using GdkPixbuf version 2.38.1 (compiled against version 2.38.0)
using GTK+ version 2.24.32 (compiled against version 2.24.32)
using Pango version 1.42.3 (compiled against version 1.42.3)
using Fontconfig version 2.13.1 (compiled against version 2.13.1)
using Cairo version 1.16.0 (compiled against version 1.16.0)

```
> fatal error: Segmentation fault

Stack trace:
```

# Stack traces obtained from PID 24825 - Thread 27301 #

[New LWP 24826]
[New LWP 24827]
[New LWP 24828]
[New LWP 24829]
[New LWP 24830]
[New LWP 24831]
[New LWP 24832]
[New LWP 24833]
[New LWP 24834]
[New LWP 24835]
[New LWP 24863]
[New LWP 27283]
[New LWP 27299]
[New LWP 27300]
[New LWP 27301]
[New LWP 27302]
[New LWP 27303]
[New LWP 27304]
[New LWP 27305]
[New LWP 27306]
[New LWP 27307]
[New LWP 27308]
[New LWP 27309]
[New LWP 27310]
[New LWP 27311]
[New LWP 27312]
[New LWP 27313]
[New LWP 27314]
[New LWP 27315]
[New LWP 27316]
[New LWP 27317]
[New LWP 27318]
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
0x7f0472672544 in read () from /lib/x86_64-linux-gnu/libpthread.so.0
  Id   Target Id   Frame 
* 1Thread 0x7f04708c6e00 (LWP 24825) "gimp"0x7f0472672544 in 
read () from /lib/x86_64-linux-gnu/libpthread.so.0
  2Thread 0x7f046ee7a700 (LWP 24826) "gmain"   0x7f047258c819 in 
poll () from /lib/x86_64-linux-gnu/libc.so.6
  3Thread 0x7f046e679700 (LWP 24827) "gdbus"   0x7f047258c819 in 
poll () from /lib/x86_64-linux-gnu/libc.so.6
  4Thread 0x7f045f6f4700 (LWP 24828) "async"   0x7f0472591f59 in 
syscall () from /lib/x86_64-linux-gnu/libc.so.6
  5Thread 0x7f045eef3700 (LWP 24829) "worker"  0x7f0472591f59 in 
syscall () from /lib/x86_64-linux-gnu/libc.so.6
  6Thread 0x7f045e6f2700 (LWP 24830) "worker"  0x7f0472591f59 in 
syscall () from /lib/x86_64-linux-gnu/libc.so.6
  7Thread 0x7f045def1700 (LWP 24831) "worker"  0x7f0472591f59 in 
syscall () from /lib/x86_64-linux-gnu/libc.so.6
  8Thread 0x7f045d6f0700 (LWP 24832) "worker"  0x7f0472591f59 in 
syscall () from /lib/x86_64-linux-gnu/libc.so.6
  9Thread 0x7f045ceef700 (LWP 24833) "worker"  0x7f0472591f59 in 
syscall () from /lib/x86_64-linux-gnu/libc.so.6
  10   Thread 0x7f0457fff700 (LWP 24834) "worker"  0x7f0472591f59 in 
syscall () from /lib/x86_64-linux-gnu/libc.so.6
  11   Thread 0x7f04577fe700 (LWP 24835) "worker"  0x7f0472591f59 in 
syscall () from /lib/x86_64-linux-gnu/libc.so.6
  12   Thread 0x7f0435ffb700 (LWP 24863) "swap writer" 0x7f0472591f59 in 
syscall () from /lib/x86_64-linux-gnu/libc.so.6
  13   Thread 0x7f0456575700 (LWP 27283) "pool"0x7f0472672544 in 
read () from /lib/x86_64-linux-gnu/libpthread.so.0
  14   Thread 0x7f03faffd700 (LWP 27299) "pool"0x7f0472672544 in 
read () from /lib/x86_64-linux-gnu/libpthre

Bug#977053: dselect: can't find libgnutls30 (3.6.7-4+deb10u5)

2020-12-10 Thread tom
Package: dselect
Version: 1.19.7
Severity: important

"libgnutls-dane0 depends on libgnutls30 (3.6.7-4+deb10u5)"
breaks update using dselect.

-- Package-specific info:
System tainted due to merged-usr-via-symlinks.

-- System Information:
Debian Release: 10.6
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 4.19.0-11-amd64 (SMP w/8 CPU cores)
Kernel taint flags: TAINT_OOT_MODULE, TAINT_UNSIGNED_MODULE
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8) (ignored: LC_ALL 
set to en_US.utf8), LANGUAGE=en_US.utf8 (charmap=UTF-8) (ignored: LC_ALL set to 
en_US.utf8)
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages dselect depends on:
ii  libc6 2.28-10
ii  libncursesw6  6.1+20181013-2+deb10u2
ii  libtinfo6 6.1+20181013-2+deb10u2

dselect recommends no packages.

Versions of packages dselect suggests:
ii  perl  5.28.1-6+deb10u1

-- no debconf information



Bug#978046: bless: ignore/reload nonresponsive unless scrolled to top

2020-12-24 Thread tom
Package: bless
Version: 0.6.0-5.1
Severity: important

I opened a file in bless, from Nautilus file
manager.

I just wanted to view it to find out if I needed 
it for anything. A message said, file on disk 
has changed, with two buttons:
ignore
reload
and a warning, "reload is the only safe option".

The buttons were nonresponsive. The program would not close.
I expected the program would at least close,
making no changes. 

kill proved ineffective, but I only tried the 
default signal.

Scrolling to the top of the file made the ignore/reload
buttons active. Choosing one made the 
message and buttons disappear.

The program could then be closed. No other 
program works this way. It is not intuitive that
scrolling to the top of an open file does not
logically relate to closing an application.

I also don't know why the message 'file on disk has changed' 
appeared in the first place. None of this is 
particularly disturbing.

But the documentation is a bit lacking in how 
bless handles files. Without knowing that, it's
impossible to ever figure this stuff out.

I mean everything in the nicest possible 
way.

Merry Christmas and Happy New Year.  

-- System Information:
Debian Release: 10.7
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 4.19.0-11-amd64 (SMP w/8 CPU cores)
Kernel taint flags: TAINT_OOT_MODULE, TAINT_UNSIGNED_MODULE
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8) (ignored: LC_ALL 
set to en_US.utf8), LANGUAGE=en_US.utf8 (charmap=UTF-8) (ignored: LC_ALL set to 
en_US.utf8)
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages bless depends on:
ii  libc6  2.28-10
ii  libglade2.0-cil2.12.40-2
ii  libglib2.0-cil 2.12.40-2
ii  libgtk2.0-cil  2.12.40-2
ii  libmono-corlib4.5-cil  5.18.0.240+dfsg-3
ii  libmono-posix4.0-cil   5.18.0.240+dfsg-3
ii  libmono-system-xml4.0-cil  5.18.0.240+dfsg-3
ii  libmono-system4.0-cil  5.18.0.240+dfsg-3
ii  mono-runtime   5.18.0.240+dfsg-3

bless recommends no packages.

bless suggests no packages.

-- no debconf information



Bug#973379: gimp: print dialog no labels on unselected tabs

2020-10-29 Thread tom
Package: gimp
Version: 2.10.8-2
Severity: minor

I opened the print dialog, and the upper tabs
had no labels. Only the one that is selected.
So, I have to select each one to see the label, 
until I find the one I want.



-- System Information:
Debian Release: 10.6
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 4.19.0-10-amd64 (SMP w/8 CPU cores)
Kernel taint flags: TAINT_OOT_MODULE, TAINT_UNSIGNED_MODULE
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8) (ignored: LC_ALL 
set to en_US.utf8), LANGUAGE=en_US.utf8 (charmap=UTF-8) (ignored: LC_ALL set to 
en_US.utf8)
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages gimp depends on:
ii  gimp-data2.10.8-2
ii  libaa1   1.4p5-46
ii  libbabl-0.1-00.1.62-1
ii  libbz2-1.0   1.0.6-9.2~deb10u1
ii  libc62.28-10
ii  libcairo21.16.0-4
ii  libfontconfig1   2.13.1-2
ii  libfreetype6 2.9.1-3+deb10u2
ii  libgcc-s1 [libgcc1]  10.2.0-7
ii  libgcc1  1:8.3.0-6
ii  libgdk-pixbuf2.0-0   2.38.1+dfsg-1
ii  libgegl-0.4-00.4.12-2
ii  libgexiv2-2  0.10.9-1
ii  libgimp2.0   2.10.8-2
ii  libglib2.0-0 2.58.3-2+deb10u2
ii  libgs9   9.27~dfsg-2+deb10u4
ii  libgtk2.0-0  2.24.32-3
ii  libgudev-1.0-0   232-2
ii  libharfbuzz0b2.3.1-1
ii  libheif1 1.3.2-2~deb10u1
ii  libilmbase23 2.2.1-2
ii  libjpeg62-turbo  1:1.5.2-2+b1
ii  liblcms2-2   2.9-3
ii  liblzma5 5.2.4-1
ii  libmng1  1.0.10+dfsg-3.1+b5
ii  libmypaint-1.3-0 1.3.0-2.1
ii  libopenexr23 2.2.1-4.1+deb10u1
ii  libopenjp2-7 2.3.0-2+deb10u1
ii  libpango-1.0-0   1.42.4-8~deb10u1
ii  libpangocairo-1.0-0  1.42.4-8~deb10u1
ii  libpangoft2-1.0-01.42.4-8~deb10u1
ii  libpng16-16  1.6.36-6
ii  libpoppler-glib8 0.71.0-5
ii  librsvg2-2   2.44.10-2.1
ii  libstdc++6   10.2.0-7
ii  libtiff5 4.1.0+git191117-2~deb10u1
ii  libwebp6 0.6.1-2
ii  libwebpdemux20.6.1-2
ii  libwebpmux3  0.6.1-2
ii  libwmf0.2-7  0.2.8.4-14
ii  libx11-6 2:1.6.7-1+deb10u1
ii  libxcursor1  1:1.1.15-2
ii  libxext6 2:1.3.3-1+b2
ii  libxfixes3   1:5.0.3-1
ii  libxmu6  2:1.1.2-2+b3
ii  libxpm4  1:3.5.12-1
ii  xdg-utils1.1.3-1+deb10u1
ii  zlib1g   1:1.2.11.dfsg-1

Versions of packages gimp recommends:
ii  ghostscript  9.27~dfsg-2+deb10u4

Versions of packages gimp suggests:
ii  gimp-data-extras  1:2.0.2-1
ii  gimp-help-en [gimp-help]  2.8.2-1
ii  gimp-python   2.10.8-2
ii  gvfs-backends 1.38.1-5
ii  libasound21.1.8-1

-- no debconf information



Bug#888893: password-gorilla: After upgrade, password-gorilla refuses to start with "Couldn't find the package Itcl" message

2018-01-30 Thread Tom
Package: password-gorilla
Version: 1.5.3.7-1
Severity: grave
Justification: renders package unusable

Dear Maintainer,

   * What led up to the situation?

# apt-get update && apt-get upgrade && apt-get dist-upgrade

Now, starting password-gorilla gives an error message:
Couldn't find the package Itcl.
Itcl is required for Password Gorilla
The file /home/user/gorilla-debug-log was created for debugging purposes.
Password Gorilla will now terminate.

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

checked that itcl is indeed installed:

# dpkg -l itcl3
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name   Version  Architecture 
Description
+++-==---==
ii  itcl3:amd643.4.3-2  amd64
[incr Tcl] OOP extension for Tcl - run-time files 


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

Kernel: Linux 4.14.0-3-amd64 (SMP w/8 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US:en (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)
LSM: AppArmor: enabled

Versions of packages password-gorilla depends on:
ii  itcl3   3.4.3-2
ii  tcl8.5  8.5.19-3
ii  tcllib  1.18-dfsg-3
ii  tk8.5   8.5.19-2
ii  tklib   0.6-3

password-gorilla recommends no packages.

password-gorilla suggests no packages.

-- no debconf information



Bug#458803: hplip fails from LXQt menu

2017-10-14 Thread Tom
Package: hplip
Version: 3.17.9+repack0-1+b1
Followup-For: Bug #458803

Dear Maintainer,

*** Reporter, please consider answering these questions, where appropriate ***

   * What led up to the situation? Clicked HP-Toolbox in Preferences menu to 
setup printer 
   * What exactly did you do (or not do) that was effective (or
 ineffective)? Clicked menu choice
   * What was the outcome of this action? HP-Toolbox didn't come up
   * What outcome did you expect instead? Expected it to appear on screen

*** End of the template - remove these template lines ***


-- Package-specific info:
Saving output in log file: /home/goineasy9/hp-check.log

HP Linux Imaging and Printing System (ver. 3.17.9)
Dependency/Version Check Utility ver. 15.1

Copyright (c) 2001-15 HP Development Company, LP
This software comes with ABSOLUTELY NO WARRANTY.
This is free software, and you are welcome to distribute it
under certain conditions. See COPYING file for more details.

Note: hp-check can be run in three modes:
1. Compile-time check mode (-c or --compile): Use this mode before compiling 
the HPLIP supplied tarball (.tar.gz or   
.run) to determine if the proper dependencies are installed to successfully 
compile HPLIP.
2. Run-time check mode (-r or --run): Use this mode to determine if a distro 
supplied package (.deb, .rpm, etc) or an 
already built HPLIP supplied tarball has the proper dependencies installed to 
successfully run.   
3. Both compile- and run-time check mode (-b or --both) (Default): This mode 
will check both of the above cases (both 
compile- and run-time dependencies).
  

Check types:
  
a. EXTERNALDEP - External Dependencies  
  
b. GENERALDEP - General Dependencies (required both at compile and run time)
  
c. COMPILEDEP - Compile time Dependencies   
  
d. [All are run-time checks]
  
PYEXT SCANCONF QUEUES PERMISSION
  

Status Types:
OK
MISSING   - Missing Dependency or Permission or Plug-in
INCOMPAT  - Incompatible dependency-version or Plugin-version

warning: 2-buster/sid version is not supported. Using 2-8.8 versions 
dependencies to verify and install...

---
| SYSTEM INFO |
---

 Kernel: 4.13.7-towo.1-siduction-amd64 #1 SMP PREEMPT siduction 4.13-13 
(2017-10-14) GNU/Linux
 Host: EEEpc-1015px
 Proc: 4.13.7-towo.1-siduction-amd64 #1 SMP PREEMPT siduction 4.13-13 
(2017-10-14) GNU/Linux
 Distribution: 2 buster/sid
 Bitness: 64 bit


---
| HPLIP CONFIGURATION |
---

HPLIP-Version: HPLIP 3.17.9
HPLIP-Home: /usr/share/hplip
warning: HPLIP-Installation: Auto installation is not supported for 2 distro  
buster/sid version 

Current contents of '/etc/hp/hplip.conf' file:
# hplip.conf.  Generated from hplip.conf.in by configure.

[hplip]
version=3.17.9

[dirs]
home=/usr/share/hplip
run=/var/run
ppd=/usr/share/ppd/hplip/HP
ppdbase=/usr/share/ppd/hplip
doc=/usr/share/doc/hplip
html=/usr/share/doc/hplip-doc
icon=no
cupsbackend=/usr/lib/cups/backend
cupsfilter=/usr/lib/cups/filter
drv=/usr/share/cups/drv
bin=/usr/bin
apparmor=/etc/apparmor.d
# Following values are determined at configure time and cannot be changed.
[configure]
network-build=yes
libusb01-build=no
pp-build=yes
gui-build=yes
scanner-build=yes
fax-build=yes
dbus-build=yes
cups11-build=no
doc-build=yes
shadow-build=no
hpijs-install=yes
foomatic-drv-install=yes
foomatic-ppd-install=yes
foomatic-rip-hplip-install=no
hpcups-install=yes
cups-drv-install=yes
cups-ppd-install=no
internal-tag=3.17.9
restricted-build=no
ui-toolkit=qt5
qt3=no
qt4=no
qt5=yes
policy-kit=yes
lite-build=no
udev_sysfs_rules=no
hpcups-only-build=no
hpijs-only-build=no
apparmor_build=no


Current contents of '/var/lib/hp/hplip.state' file:
Plugins are not installed. Could not access file: No such file or directory

Current contents of '~/.hplip/hplip.conf' file:
[installation]
date_time = 10/15/17 00:49:33
version = 3.17.9


 


-
| External Dependencies |
-

 error: cups  CUPS - Common Unix Printing System
   REQUIRED1.1 -   INCOMPAT   'CUPS may not be 
installed or not running'
 gs   GhostScript - PostScript and PDF language interpreter and 
previewer REQUIRED7.059.22OK -
 xsanexsane - Graphical scanner frontend 

Bug#855251: easytag corrupts ogg files and causes data loss

2017-10-19 Thread Tom
Control: severity -1 grave
Hi
As stated in the upstream bug report (https://bugzilla.gnome.org/show_b
ug.cgi?id=776110#c4), the corruption can not be undone because of a
data loss. According to debian severity definition
(https://www.debian.org/Bugs/Developer#severities), I therefore raise
the severity to "grave".
It seems to me that the bug was not present in the jessie version of
easytag (2.2.x), but I'll check if I can downgrade and verify that.
thanks
Tom

Bug#880499: apt-cache rdepends outputs too many dependencies

2017-11-01 Thread Tom
Package: apt
Version: 1.4.8
Severity: normal

Dear Maintainer,

I try to find all reverse dependencies of a certain package. I'm only 
interested in "Depends" relations, no Recommends, Suggests, etc. So, for 
instance, for the aptitude package, I do:

$ apt-cache rdepends "aptitude" --installed --no-pre-depends --no-suggests 
--no-recommends --no-conflicts --no-breaks --no-replaces --no-enhances
aptitude
Reverse Depends:
aptitude:i386
aptitude:i386
aptitude:i386
aptitude:i386
aptitude:i386

But there are no reverse dependencies on aptitude, as reported be aptitude:
i aptitude

[... some lines skipped ...]

--\ Packages which depend on aptitude (23)
--\ Depends (5)
p aptitude-robot 1.5.1-1   stable   
0  26.3 kB
p design-desktop 3.0.7 stable   
0  8,566 B
p parl-desktop 1.9.10  stable   
0  13.9 kB
p pkgsync 1.26 stable   
0  13.0 kB
p wajig 2.18.1 stable   
1  55.2 kB
--\ Recommends (1)
i aptitude-common 0.8.7-1  stable   
2  1,593 kB
--\ Suggests (15)
i apt 1.4.8stable   
22 1,232 kB
p aptitude-doc-cs 0.8.7-1  stable   
0  366 kB
i aptitude-doc-en 0.8.7-1  stable   
4  434 kB
p aptitude-doc-es 0.8.7-1  stable   
0  412 kB
p aptitude-doc-fi 0.8.7-1  stable   
0  274 kB
p aptitude-doc-fr 0.8.7-1  stable   
0  314 kB
p aptitude-doc-it 0.8.7-1  stable   
0  275 kB
p aptitude-doc-ja 0.8.7-1  stable   
0  371 kB
p aptitude-doc-nl 0.8.7-1  stable   
0  375 kB
p aptitude-doc-ru 0.8.7-1  stable   
0  392 kB
p daptup 0.12.7stable   
0  24.7 kB
p fai-server 5.3.6 stable   
0  66.7 kB
p fai-server 5.4~bpo9+1
stretch-backports0  67.0 kB
p games-minesweeper 2  stable   
0  7,954 B
p ibid 0.1.1+dfsg-4stable   
0  320 kB
--\ Suggests on provided aptitude:i386 (1)
p apt:i386 1.4.8   stable   
1  1,264 kB
--\ Enhances (1)
p aptitude-robot 1.5.1-1   stable   
0  26.3 kB
--\ Conflicts (1)
p aptitude:i386 0.8.7-1stable   
2  1,567 kB
--\ Conflicts on provided aptitude:i386 (1)
i aptitude 0.8.7-1 stable   
6  1,478 kB
  --\ Versions of aptitude (2)
i0.8.7-1   stable   
6  1,478 kB
paptitude:i386 0.8.7-1 stable   
2  1,567 kB

There should not be any reverse dependencies reported, for I excluded alle the 
dependency types except for "Depends"

Cheers
Tom

-- Package-specific info:

-- apt-config dump --

APT "";
APT::Architecture "amd64";
APT::Build-Essential "";
APT::Build-Essential:: "build-essential";
APT::Install-Recommends "1";
APT::Install-Suggests "0";
APT::Sandbox "";
APT::Sandbox::User "_apt";
APT::Authentication "";
APT::Authentication::TrustCDROM "true";
APT::NeverAutoRemove "";
APT::NeverAutoRemove:: "^firmware-linux.*";
APT::NeverAutoRemove:: "^linux-firmware$";
APT::NeverAutoRemove:: "^linux-image-4\.9\.0-3-amd64$";
APT::NeverAutoRemove:: "^linux-image-4\.9\.0-4-amd64$";
APT::NeverAutoRemove:: "^linux-headers-4\.9\.0-3-amd64$";
APT::NeverAutoRemove:: &

Bug#204156: [apt-cache] depends and rdepends should also output dependency types

2017-11-01 Thread Tom
retitle 204156 [apt-cache] depends and rdepends should also output
dependency types
Hi

Filtering is possible with the --no-pre-depends --no-suggests --no-
recommends --no-conflicts --no-breaks --no-replaces --no-enhances
switches, so you can control that.

But the output should also indicate the dependency type in order to
make it more useful. apt-cache would also be much more easy to debug
with this information (and the indication of the version).

Thanks

Tom

Bug#204156: [apt-cache] depends and rdepends should also output dependency types

2017-11-01 Thread Tom
retitle 204156 [apt-cache] depends and rdepends should also output dependency 
types

thanks


Bug#897975: gdm3: System fails to boot due to GDM restarting constantly.

2018-05-12 Thread Tom
Package: gdm3
Version: 3.22.3-3+deb9u1
Followup-For: Bug #897975

Dear Maintainer,

I observe the same problem on my notebook and would like to add some additional
information.

1) CPU Intel(R) Celeron(R) CPU  N3160 with integrated graphics. This might be
interesting, as there is one (EE) entry from the X-Server seen in the gdm3
debug log (see 3)

2) I enabled debugging in the gdm3 configuration - in my case gdm3 still fails.
The error message in the logs (see attachment) is:

(EE) open /dev/fb0: Permission denied

3) I disabled wayland in the gdm3 configuration - gdm3 still doesn't start

4) As a workaround I installed lightdm - which works fine.

Best regards,

Tom



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

Kernel: Linux 4.9.0-6-amd64 (SMP w/4 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8), 
LANGUAGE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages gdm3 depends on:
ii  accountsservice   0.6.43-1
ii  adduser   3.115
ii  dconf-cli 0.26.0-2+b1
ii  dconf-gsettings-backend   0.26.0-2+b1
ii  debconf [debconf-2.0] 1.5.61
ii  gir1.2-gdm-1.03.22.3-3+deb9u1
ii  gnome-session [x-session-manager] 3.22.3-1
ii  gnome-session-bin 3.22.3-1
ii  gnome-settings-daemon 3.22.2-2+deb9u2
ii  gnome-shell   3.22.3-3
ii  gnome-terminal [x-terminal-emulator]  3.22.2-1
ii  gsettings-desktop-schemas 3.22.0-1
ii  libaccountsservice0   0.6.43-1
ii  libaudit1 1:2.6.7-2
ii  libc6 2.24-11+deb9u3
ii  libcanberra-gtk3-00.30-3
ii  libcanberra0  0.30-3
ii  libgdk-pixbuf2.0-02.36.5-2+deb9u2
ii  libgdm1   3.22.3-3+deb9u1
ii  libglib2.0-0  2.50.3-2
ii  libglib2.0-bin2.50.3-2
ii  libgtk-3-03.22.11-1
ii  libkeyutils1  1.5.9-9
ii  libpam-modules1.1.8-3.6
ii  libpam-runtime1.1.8-3.6
ii  libpam-systemd232-25+deb9u3
ii  libpam0g  1.1.8-3.6
ii  librsvg2-common   2.40.16-1+b1
ii  libselinux1   2.6-3+b3
ii  libsystemd0   232-25+deb9u3
ii  libwrap0  7.6.q-26
ii  libx11-6  2:1.6.4-3
ii  libxau6   1:1.0.8-1
ii  libxcb1   1.12-1
ii  libxdmcp6 1:1.1.2-3
ii  lsb-base  9.20161125
ii  mutter [x-window-manager] 3.22.3-2
ii  policykit-1   0.105-18
ii  ucf   3.0036
ii  x11-common1:7.7+19
ii  x11-xserver-utils 7.7+7+b1

Versions of packages gdm3 recommends:
ii  at-spi2-core2.22.0-6+deb9u1
ii  desktop-base9.0.2+deb9u1
ii  x11-xkb-utils   7.7+3+b1
ii  xserver-xephyr  2:1.19.2-1+deb9u2
ii  xserver-xorg1:7.7+19
ii  zenity  3.22.0-1+b1

Versions of packages gdm3 suggests:
ii  gnome-orca3.22.2-3
ii  libpam-gnome-keyring  3.20.0-3

-- Configuration Files:
/etc/gdm3/daemon.conf changed:
[daemon]
[security]
[xdmcp]
[chooser]
[debug]
Enable=true


-- debconf information:
* shared/default-x-display-manager: lightdm
  gdm3/daemon_name: /usr/sbin/gdm3
May 12 09:32:16 debian /usr/lib/gdm3/gdm-wayland-session[3362]: 
gnome-session-binary[3366]: WARNING: IceLockAuthFile failed: Die Datei 
existiert bereits
May 12 09:32:16 debian gdm3: Child process -3362 was already dead.
May 12 09:32:16 debian gdm3: Child process 3347 was already dead.
May 12 09:32:16 debian gdm3: Unable to kill session worker process
May 12 09:32:17 debian /usr/lib/gdm3/gdm-wayland-session[3391]: 
gnome-session-binary[3395]: DEBUG(+): Enabling debugging
May 12 09:32:17 debian /usr/lib/gdm3/gdm-wayland-session[3391]: 
gnome-session-binary[3395]: DEBUG(+): Using systemd for session tracking
May 12 09:32:17 debian /usr/lib/gdm3/gdm-wayland-session[3391]: 
gnome-session-binary[3395]: DEBUG(+): GsmManager: setting client store 
0x7f3380007a10
May 12 09:32:22 debian gdm3: Child process -3391 was already dead.
May 12 09:32:22 debian gdm3: Child process 3376 was already dead.
May 12 09:32:22 debian gdm3: Unable to kill session worker process
May 12 09:32:22 debian /usr/lib/gdm3/gdm-wayland-session[3418]: 
gnome-session-binary[3422]: DEBUG(+): Enabling debugging
May 12 09:32:22 debian /usr/lib/gdm3/gdm-wayland-sess

Bug#953529: keepassxc: Compiling with disable networking support

2020-03-10 Thread Tom
Package: keepassxc
Version: 2.3.4+dfsg.1-1
Severity: wishlist
Tags: upstream

Kepassxc provides a cmake option (-DWITH_XC_NETWORKING=OFF) to disable
networking support(like download the favicon something). I believe most of the
people don't want their password manager to connect somewhere they don't know
and it will improve user privacy.

The details of cmake options:
https://github.com/keepassxreboot/keepassxc/blob/develop/INSTALL.md



-- System Information:
Debian Release: 10.3
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 4.9.0-9-amd64 (SMP w/4 CPU cores)
Kernel taint flags: TAINT_OOT_MODULE
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8), LANGUAGE=en_US:en 
(charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages keepassxc depends on:
ii  libargon2-1   0~20171227-0.2
ii  libc6 2.28-10
ii  libgcrypt20   1.8.4-5
ii  libqt5core5a  5.11.3+dfsg1-1+deb10u3
ii  libqt5dbus5   5.11.3+dfsg1-1+deb10u3
ii  libqt5gui55.11.3+dfsg1-1+deb10u3
ii  libqt5network55.11.3+dfsg1-1+deb10u3
ii  libqt5widgets55.11.3+dfsg1-1+deb10u3
ii  libqt5x11extras5  5.11.3-2
ii  libsodium23   1.0.17-1
ii  libstdc++68.3.0-6
ii  libx11-6  2:1.6.7-1
ii  libxi62:1.7.9-1
ii  libxtst6  2:1.2.3-1
ii  libykpers-1-1 1.19.3-3+deb10u1
ii  libzxcvbn02.4+dfsg-2
ii  zlib1g1:1.2.11.dfsg-1

keepassxc recommends no packages.

keepassxc suggests no packages.

-- no debconf information



  1   2   3   4   5   6   7   8   9   10   >