Bug#1051402: emacspeak fails byte-compile during install or upgrade since emacs 29

2024-04-05 Thread Michiel
I believe this specific issue (emacspeak-proced.el:156:4: Error: 
Misplaced t or ‘otherwise’ clause) is fixed upstream by this commit:


https://github.com/tvraman/emacspeak/commit/806c044b08ccf8c53ce744a1578103037c622048

Hope this helps in some way,

Michiel



Bug#1068015: python3-binwalk: Please consider new upstream, project is abandoned

2024-03-29 Thread Michiel
Package: python3-binwalk
Version: 2.3.4+dfsg1-5
Severity: normal
Tags: upstream

Dear Maintainer,

python3-binwalk uses as https://github.com/ReFirmLabs/binwalk their upstream.
However this repository is abandoned by their owner and indicated as such. It
has not seen any new releases in over a year.

There is an active fork at https://github.com/OSPG/binwalk/ which does make
releases and fixes actual bugs, including Python 3.12 compatibility as pointed
out in https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1063826

Please consider switching the upstream of this package to the new location, so
we can continue to receive upstream bugfixes and features in debian.


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

Kernel: Linux 6.6.15-amd64 (SMP w/8 CPU threads; PREEMPT)
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: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages python3-binwalk depends on:
ii  python3 3.11.6-1
ii  python3-zombie-imp  0.0.2-2

Versions of packages python3-binwalk recommends:
ii  7zip [p7zip-full]  23.01+dfsg-8
ii  arj3.10.22-27
ii  bzip2  1.0.8-5.1
ii  cramfsswap 1.4.2
ii  mtd-utils  1:2.1.6-1+b1
ii  ncompress  5.0-1
pn  p7zip  
ii  p7zip-full 16.02+transitional.1
ii  python3-pyqtgraph  0.13.4-2
ii  sleuthkit  4.12.1+dfsg-1
ii  squashfs-tools 1:4.6.1-1

python3-binwalk suggests no packages.

-- no debconf information



Bug#868861: Mitigation

2021-09-22 Thread Michiel Hazelhof
The complete and better walkthrough (systemd users only!), some parts
might be redundant if you allready migrated to the proper systemd
invocations:

This completely fixed the "There are processes named 'apache2' running
which do not match your pid file which are left untouched in the name of
safety, Please review the situation by hand. ..." warning (and the
application kill that follows).

0: systemctl disable apache2-instancename && systemctl stop
apache2-instancename
1: delete /etc/init.d/apache2 and /etc/init.d/apache2-instancename
3: ln -s /usr/sbin/apache2 /usr/sbin/apache2-instancename
4: edit /usr/sbin/apache2ctl:
- Find: HTTPD=${APACHE_HTTPD:-/usr/sbin/apache2}
- Replace with: HTTPD=${APACHE_HTTPD:-/usr/sbin/apache2$SUFFIX}
5: systemctl enable apache2@instancename && systemctl start
apache2@instancename

Important notices:
0: that your envvars in the apache config should change the suffix from
@instancename to -instancename as is debians default (if not simply do
the ln -s with @ instead of -)!
1: After every apache upgrade the /usr/sbin/apache2ctl mod needs to be
performed again!

On Tue, 6 Jul 2021 09:47:09 +0200 Michiel Hazelhof 
wrote:

> Made two small tweaks to hopefully mitigate this behaviour:
... Do not follow this post anymore!


OpenPGP_signature
Description: OpenPGP digital signature


Bug#868861: High priority

2021-09-22 Thread Michiel Hazelhof
Can we set this bug to high priority?

This is a sneaky bug that causes instances to get whacked by systemd and
causes random dropouts that are (very) hard to diagnose depending on the
users skill level.

-- 
With regards,

Michiel Hazelhof.



OpenPGP_signature
Description: OpenPGP digital signature


Bug#868861: Mitigation

2021-07-06 Thread Michiel Hazelhof
Made two small tweaks to hopefully mitigate this behaviour:

ln -s /usr/sbin/apache2 /usr/sbin/apache2-instancename

edit /usr/sbin/apache2ctl:

change:

SUFFIX="${APACHE_CONFDIR##/etc/apache2-}"
case "$SUFFIX" in
    /etc/apache2)
    SUFFIX=""
    ;;
    *)
    SUFFIX="@$SUFFIX"
    ;;
esac

to:

EXTRA=""
SUFFIX="${APACHE_CONFDIR##/etc/apache2-}"
case "$SUFFIX" in
    /etc/apache2)
    SUFFIX=""
    ;;
    *)
    EXTRA="-$SUFFIX"
    SUFFIX="@$SUFFIX"
    ;;
esac


change:

HTTPD=${APACHE_HTTPD:-/usr/sbin/apache2}

to:

HTTPD=${APACHE_HTTPD:-/usr/sbin/apache2$EXTRA}


This at least gets it running with a different "name", lets hope this
resolves the "There are processes named 'apache2' running which do not
match your pid file which are left untouched in the name of safety," issue.

With regards,

Michiel Hazelhof.



OpenPGP_signature
Description: OpenPGP digital signature


Bug#977957: spamassassin: installing sa-compile during debian installation (custom) fails on chmod

2020-12-24 Thread Michiel van den Berg
> > We have included spamassassin in a custom installer. During 
> > installation 'start-stop-daemon' is not available (fake) sa-compile 
> > relies on start-stop-daemon to be working (sa-compile.postinst line 17-19) 
> > or it wil error trying to 'chmod' a directory which does not exist. 
> > (sa-compile.postinst line 23-24).
> > This was changed with commit 446572164382f2ab4e6781ba751b6ca90364da9

> start-stop-daemon is provided by dpkg, which is Priority: required.
> Thus, the assumption that it is available during the postinst execution is a 
> valid one.  As stated in the policy document, "Removing a required package 
> may cause your system to become totally broken"  If you choose to break 
> your system in this way, that's fine, > but it's not a bug in spamassassin.

> My recommendation is that you don't break dpkg in your custom installer.
> This can probably be fixed in spamassassin, and it's probably not too 
> difficult to do, so I'll leave this open with a wishlist severity.
> However, it's very likely that you'll find other packages that also break 
> when you remove (parts of) required packages.

Sorry I think this is a misunderstanding, we did not do anything with dpkg or 
start-stop-daemon. My collegue has posted a merge request with a possible fix. 
And a better explanation is in the first paragraph of the commit message.

If spamassassin is installed via the debian installer while
start-stop-daemon is diverted via dpkg-divert, sa-compile will not have
run, so the output dir doesn't exist when the postinst script tries to
change its permissions. That causes an error while configuring
sa-compile.



Bug#977957: spamassassin: installing sa-compile during debian installation (custom) fails on chmod

2020-12-23 Thread Michiel van den Berg
Package: spamassassin
Version: 3.4.5~pre1-3
Severity: important
X-Debbugs-Cc: mich...@1afa.com

Dear Maintainer,

We have included spamassassin in a custom installer. During installation 
'start-stop-daemon' is not available (fake)
sa-compile relies on start-stop-daemon to be working (sa-compile.postinst line 
17-19)
or it wil error trying to 'chmod' a directory which does not exist. 
(sa-compile.postinst line 23-24).
This was changed with commit 446572164382f2ab4e6781ba751b6ca90364da9

Outcome: "Errors were encounterd while processing: sa-compile"
Expected outcome: no errors during installation.

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

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

Versions of packages spamassassin depends on:
ii  adduser 3.118
ii  curl7.72.0-1
ii  init-system-helpers 1.60
ii  libhtml-parser-perl 3.75-1+b1
ii  libhttp-date-perl   6.05-1
ii  libmail-dkim-perl   1.20200907-1
ii  libnet-dns-perl 1.29-1
ii  libnetaddr-ip-perl  4.079+dfsg-1+b5
ii  libsocket6-perl 0.29-1+b3
ii  libsys-hostname-long-perl   1.5-1
ii  libwww-perl 6.50-1
ii  lsb-base11.1.0
ii  perl [libarchive-tar-perl]  5.32.0-6

Versions of packages spamassassin recommends:
ii  gnupg  2.2.20-1
ii  libio-socket-inet6-perl2.72-2
ii  libmail-spf-perl   2.9.0-4
ii  perl [libsys-syslog-perl]  5.32.0-6
pn  sa-compile 
ii  spamc  3.4.5~pre1-3

Versions of packages spamassassin suggests:
pn  libbsd-resource-perl  
ii  libdbi-perl   1.643-3+b1
pn  libencode-detect-perl 
pn  libgeoip2-perl
ii  libio-socket-ssl-perl 2.068-1
pn  libnet-patricia-perl  
ii  perl [libcompress-zlib-perl]  5.32.0-6
pn  pyzor 
pn  razor 



Bug#921075: postfix: Email Address Internationalization (EAI) is missing, breaking UTF8 support (smtputf8_enable)

2019-02-01 Thread Michiel Hazelhof
Package: postfix
Version: 3.3.2-1+b1
Severity: important
Tags: l10n

Dear Maintainer,

Please reinstate EAI support, this is a vital component for modern mailservers.

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

Kernel: Linux 4.19.0-1-amd64 (SMP w/2 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 postfix depends on:
ii  adduser3.118
ii  cpio   2.12+dfsg-6
ii  debconf [debconf-2.0]  1.5.70
ii  dpkg   1.19.2
ii  e2fsprogs  1.44.5-1
ii  libc6  2.28-5
ii  libdb5.3   5.3.28+dfsg1-0.2
ii  libsasl2-2 2.1.27+dfsg-1
ii  libssl1.1  1.1.1a-1
ii  lsb-base   10.2018112800
ii  netbase5.5
ii  ssl-cert   1.0.39

Versions of packages postfix recommends:
ii  python3  3.7.2-1

Versions of packages postfix suggests:
ii  bsd-mailx [mail-reader]8.1.2-0.20180807cvs-1
ii  dovecot-core [dovecot-common]  2:2.3.4-2~stretch
ii  libsasl2-modules   2.1.27+dfsg-1
pn  postfix-cdb
pn  postfix-doc
pn  postfix-ldap   
pn  postfix-lmdb   
ii  postfix-mysql  3.3.2-1+b1
ii  postfix-pcre   3.3.2-1+b1
pn  postfix-pgsql  
ii  postfix-sqlite 3.3.2-1+b1
ii  procmail   3.22-26
ii  resolvconf 1.79
ii  s-nail [mail-reader]   14.9.11-2
pn  sasl2-bin  
pn  ufw

-- Configuration Files:
/etc/postfix/postfix-files changed [not included]
/etc/ppp/ip-down.d/postfix [Errno 2] No such file or directory: 
'/etc/ppp/ip-down.d/postfix'
/etc/ppp/ip-up.d/postfix [Errno 2] No such file or directory: 
'/etc/ppp/ip-up.d/postfix'

-- debconf information excluded



Bug#821939: Possible extra information

2016-05-08 Thread Michiel Holtkamp
Had the same problem. After trying different smb.conf options, googling and 
reading the release notes of the changes, I tried upgrading to unstable package 
(2:4.4.3+dfsg-4 at the time of writing). This fixed my problems, I could revert 
all the changes I had made to the smb.conf.

I’m not sure if this is the same problem though, since in my situation I could 
access guest shares from Linux, Windows, but not OS X. I suspect my issues was 
more similar to: https://bugs.launchpad.net/ubuntu/+source/samba/+bug/1572301.

Maybe upgrading to a newer version also helps to locate the problem.


Bug#816505: Compile Differences sendmail 8.14.4 vs 8.15.2 [SOCKETMAP missing]

2016-03-02 Thread Michiel Brandenburg
Package: sendmail
Version: 8.15.2

It seems that SOCKETMAP support for 8.15.2 was dropped, this may be
because of a change in the "default" options between 8.14 and 8.15 but
it is not consistent.

sendmail -d0.1 -bt < /dev/null

Version 8.14.4
 Compiled with: DNSMAP LDAPMAP LDAP_REFERRALS LOG MAP_REGEX MATCHGECOS
MILTER MIME7TO8 MIME8TO7 NAMED_BIND NETINET NETINET6 NETUNIX
NEWDB NIS NISPLUS PIPELINING SASLv2 SCANF SOCKETMAP STARTTLS
TCPWRAPPERS USERDB USE_LDAP_INIT XDEBUG

Version 8.15.2
 Compiled with: DNSMAP IPV6_FULL LDAPMAP LDAP_REFERRALS LOG MAP_REGEX
MATCHGECOS MILTER MIME7TO8 MIME8TO7 NAMED_BIND NETINET
NETINET6
NETUNIX NEWDB NIS NISPLUS PIPELINING SASLv2 SCANF STARTTLS
TCPWRAPPERS USERDB USE_LDAP_INIT XDEBUG


I suggest 8.15.2 also be compiled with SOCKETMAP support, to streamline
upgrading between the versions.

With kind regards,
Michiel



Bug#764551: irssi: Irssi segfaults when dbd-mysql connection is attempted in perl script

2014-10-08 Thread Michiel Holtkamp
Package: irssi
Version: 0.8.16-1+b1
Severity: important

Dear Maintainer,

   * What led up to the situation?

I have some scripts that use a connection to mysql and after I restarted
my irssi it reliably segfaults each time a mysql connection is attempted
in a script.

I'm not sure when exactly this happened, but I upgrade my packages regularly
(I run debian testing). I have tested with packages from stable, everything
seems to work normally.

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

Quick way to test is to run the following command in (bare, no scripts) irssi:

  /script exec use DBI; DBI-connect(DBI:mysql:_db:_host:3306:, _user, 
_pass);

This will try to connect to a non-existing host with a non-existing user/pass.

   * What was the outcome of this action?

A segmentation fault (see below for more information and gdb backtrace).

   * What outcome did you expect instead?

An error message like the following:

  DBI connect('_db:_host:3306:','_user',...) failed: Unknown MySQL server host 
'_host' (0)


   * Package versions affected/NOT affected

Versions of packages that DO cause segfaults:
ii  irssi  0.8.16-1+b1 
ii  libdbd-mysql-perl  4.028-2+b1 
ii  libdbi-perl1.631-3+b1
ii  libmysqlclient18:amd64 5.5.37-0+wheezy1
ii  libperl5.205.20.1-1

Also tried irssi from experimental (0.8.17~rc1-1+b1, also segfaults),
and with libmysqlclient18 from testing (5.5.39-1, also segfaults).

The versions from stable do NOT segfault:
ii  irssi0.8.15-5
ii  libdbd-mysql-perl4.021-1+b1
ii  libdbi-perl  1.622-1+deb7u1
ii  libmysqlclient18:amd64   5.5.37-0+wheezy1
ii  libperl5.14  5.14.2-21+deb7u1

Since the irssi version and the perl versions are closely linked, I could
not easily test different versions of libaries seperately.

* Irssi dependence

A simple test without irssi behaves as expected for ALL package versions and
gives the expected error message (and no segfault):

  $ perl -e 'use DBI; DBI-connect(DBI:mysql:_db:_host:3306:, _user, 
_pass);'
  DBI connect('_db:_host:3306:','_user',...) failed: Unknown MySQL server host 
'_host' (0) at -e line 1.

This shows that the problem only occurs when it is run inside irssi, but not
with a standalone perl (i.e. NO segfaults with the perl5.20 nor with the
perl5.14 versions).

* Backtrace

The following backtrace was generated from a core file from an affected irssi.
It was run with a new home-directory (~/.irssi-bare), so it uses default
configuration and NO scripts were loaded.

The backtrace always shows that the segfault is always in the same spot, in
vfprintf:

$ gdb irssi core.14456
GNU gdb (Debian 7.7.1+dfsg-3) 7.7.1
Copyright (C) 2014 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later http://gnu.org/licenses/gpl.html
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type show copying
and show warranty for details.
This GDB was configured as x86_64-linux-gnu.
Type show configuration for configuration details.
For bug reporting instructions, please see:
http://www.gnu.org/software/gdb/bugs/.
Find the GDB manual and other documentation resources online at:
http://www.gnu.org/software/gdb/documentation/.
For help, type help.
Type apropos word to search for commands related to word...
Reading symbols from irssi...(no debugging symbols found)...done.
[New LWP 14456]
[Thread debugging using libthread_db enabled]
Using host libthread_db library /lib/x86_64-linux-gnu/libthread_db.so.1.
Core was generated by `irssi --home=~/.irssi-bare'.
Program terminated with signal SIGSEGV, Segmentation fault.
#0  0x7fa1fdea0e70 in vfprintf () from /lib/x86_64-linux-gnu/libc.so.6
(gdb) bt
#0  0x7fa1fdea0e70 in vfprintf () from /lib/x86_64-linux-gnu/libc.so.6
#1  0x7fa1fdf4ccc5 in __fprintf_chk () from /lib/x86_64-linux-gnu/libc.so.6
#2  0x7fa1fe20877b in my_malloc () from 
/usr/lib/x86_64-linux-gnu/libsres.so.14
#3  0x7fa1fc04863a in my_error_register () from 
/usr/lib/x86_64-linux-gnu/libmysqlclient.so.18
#4  0x7fa1fc02769d in mysql_server_init () from 
/usr/lib/x86_64-linux-gnu/libmysqlclient.so.18
#5  0x7fa1fc02d7df in mysql_init () from 
/usr/lib/x86_64-linux-gnu/libmysqlclient.so.18
#6  0x7fa1fc53aba9 in mysql_dr_connect () from 
/usr/lib/x86_64-linux-gnu/perl5/5.20/auto/DBD/mysql/mysql.so
#7  0x7fa1fc53cf79 in ?? () from 
/usr/lib/x86_64-linux-gnu/perl5/5.20/auto/DBD/mysql/mysql.so
#8  0x7fa1fc53d08a in mysql_db_login () from 
/usr/lib/x86_64-linux-gnu/perl5/5.20/auto/DBD/mysql/mysql.so
#9  0x7fa1fc549550 in ?? () from 
/usr/lib/x86_64-linux-gnu/perl5/5.20/auto/DBD/mysql/mysql.so
#10 0x7fa2000315ab in Perl_pp_entersub () from 
/usr/lib/x86_64-linux-gnu/libperl.so.5.20
#11 0x7fa200029e46 in Perl_runops_standard () 

Bug#751277: python-biopython: FTBFS on mips* powerpc s390x

2014-08-29 Thread Michiel de Hoon
Dear all,

With Dave kindly offering access to a PowerPC, I was able to fix this bug.
I have uploaded a fixed version of Bio/Cluster/clustermodule.c to the Biopython 
github repository; see
https://github.com/biopython/biopython/blob/master/Bio/Cluster/clustermodule.c
Can you try this version? This should solve the test failures.

Best,
-Michiel.


On Mon, 8/18/14, Andreas Tille andr...@an3as.eu wrote:

 Subject: Re: Bug#751277: python-biopython: FTBFS on mips* powerpc s390x
 To: Michiel de Hoon mjldeh...@yahoo.com, debian-powe...@lists.debian.org, 
debian-m...@lists.debian.org, debian-s...@lists.debian.org
 Cc: Peter Cock p.j.a.c...@googlemail.com, Dejan Latinovic 
dejan.latino...@imgtec.com, Biopython discussion list 
biopyt...@lists.open-bio.org, 751...@bugs.debian.org 
751...@bugs.debian.org, biopython-...@biopython.org 
biopython-...@biopython.org
 Date: Monday, August 18, 2014, 5:01 PM
 
 Hi porters,
 
 could you please be so kind to
 check this issue?  It would be great to
 find out why the test suite of biopython fails
 on these architectures.
 
 Thanks a lot
 
        Andreas.
 
 On Mon, Aug 18, 2014 at 12:35:53AM -0700,
 Michiel de Hoon wrote:
  Hi Andreas,
  
  Without access to
 powerpc, I have no way to test the code.
  Can you try recompiling Biopython and
 checking what exactly happens inside the distance_converter
 function in Bio/Cluster/clustermodule.c ?
  For example, I am really wondering what
 strlen(data) inside this function returns on powerpc.
  
  Best,
  -Michiel.
  
 
 
  On Sat, 8/16/14, Andreas Tille andr...@an3as.eu
 wrote:
  
   Subject:
 Re: Bug#751277: python-biopython: FTBFS on mips* powerpc
 s390x
   To: Peter Cock
 p.j.a.c...@googlemail.com
   Cc: Dejan Latinovic dejan.latino...@imgtec.com,
 Michiel de Hoon mjldeh...@yahoo.com,
 Biopython discussion list biopyt...@lists.open-bio.org,
 751...@bugs.debian.org
 751...@bugs.debian.org,
 biopython-...@biopython.org
 biopython-...@biopython.org
   Date: Saturday, August 16, 2014, 5:37
 AM
   
   Hi
 Peter,
   
   On
 Thu, Aug 14, 2014 at
   09:52:40AM
 +0100, Peter Cock wrote:
   
   
   
    1. waiting for
   your
 confirmation / patch
   
      2. deactivating the specific
 test
       3. exclude mips
 for
   biopython
  
     4. ? any
   better idea
 ?
    
  
 
    In the current state all
 the work we spent in biopython
   over
 the last
     monthes will
 not
   migrate to testing for the simple
 reason that the
     current
 package in testing just does
   not run
 the test suite at build
    
   time and moreover python3 is not
 supported.
    
     Kind
  
 regards
    
   
        
 Andreas.
    
  
  I would suggest (2), deactivate this test
   (at least for for mips) as
    the most
  
 practical short term solution for the Debian packages.
    Or if you prefer (3), don't
 target
   mips for the Biopython
 package
   
  
 (yet).
    
  
  Medium
   term, I hope we can fix
 the C code to handle either
   
 Endian platform - option (1).
   
   It seems after having fixed
   the issue caused by wise we have one
   remaining problem:
   
     On powerpc[1]
 and s390x[2] test_Cluster
   fails even
 with Python 2.7 with:
   
  
 ==
   ERROR: test_clusterdistance
   (test_Cluster.TestCluster)
  
 --
   Traceback (most recent call last):
     File
  
 
/«BUILDDIR»/python-biopython-1.64+dfsg/.pybuild/pythonX.Y_3.4/build/Tests/test_Cluster.py,
   line 212, in test_clusterdistance
      
  
 method='a', transpose=0)
  
 ValueError:
   method should be a single
 character
   
  
 ==
   ERROR: test_kcluster
   (test_Cluster.TestCluster)
  
 --
   Traceback (most recent call last):
     File
  
 
/«BUILDDIR»/python-biopython-1.64+dfsg/.pybuild/pythonX.Y_3.4/build/Tests/test_Cluster.py,
   line 141, in test_kcluster
      
  
 method='a', dist='e')
  
 ValueError: method should be a single
  
 character
   
  
 ==
   ERROR: test_somcluster
   (test_Cluster.TestCluster)
  
 --
   Traceback (most recent call last):
     File
  
 
/«BUILDDIR»/python-biopython-1.64+dfsg/.pybuild/pythonX.Y_3.4/build/Tests/test_Cluster.py,
   line 557, in test_somcluster
      
  
 inittau=0.02, niter=100, dist='e')
   ValueError: distance should be a
 single
   character
   
  
 ==
   ERROR: test_treecluster
   (test_Cluster.TestCluster)
  
 --
   Traceback (most recent call last):
     File
  
 
/«BUILDDIR»/python-biopython-1.64

Bug#751277: python-biopython: FTBFS on mips* powerpc s390x

2014-08-23 Thread Michiel de Hoon
Hi Andreas,

I was able to replicate this bug on a PowerPC with Python 2.7, but only if I 
replace the single character into a single unicode character
(e.g. in line 212 of test_Cluster.py, if I replace method='a' by method=u'a').
Can you confirm that you get this bug with Python 2.7 even with simple strings 
rather than unicode?

Thanks,
-Michiel.


On Sat, 8/16/14, Andreas Tille andr...@an3as.eu wrote:

 Subject: Re: Bug#751277: python-biopython: FTBFS on mips* powerpc s390x
 To: Peter Cock p.j.a.c...@googlemail.com
 Cc: Dejan Latinovic dejan.latino...@imgtec.com, Michiel de Hoon 
mjldeh...@yahoo.com, Biopython discussion list 
biopyt...@lists.open-bio.org, 751...@bugs.debian.org 
751...@bugs.debian.org, biopython-...@biopython.org 
biopython-...@biopython.org
 Date: Saturday, August 16, 2014, 5:37 AM
 
 Hi Peter,
 
 On Thu, Aug 14, 2014 at
 09:52:40AM +0100, Peter Cock wrote:
 
 
     1. waiting for
 your confirmation / patch
 
    2. deactivating the specific test
     3. exclude mips for
 biopython
     4. ? any
 better idea ?
  
 
  In the current state all the work we spent in biopython
 over the last
   monthes will not
 migrate to testing for the simple reason that the
   current package in testing just does
 not run the test suite at build
  
 time and moreover python3 is not supported.
  
   Kind
 regards
  
 
       Andreas.
  
  I would suggest (2), deactivate this test
 (at least for for mips) as
  the most
 practical short term solution for the Debian packages.
  Or if you prefer (3), don't target
 mips for the Biopython package
 
 (yet).
  
  Medium
 term, I hope we can fix the C code to handle either
  Endian platform - option (1).
 
 It seems after having fixed
 the issue caused by wise we have one
 remaining problem:
 
   On powerpc[1] and s390x[2] test_Cluster
 fails even with Python 2.7 with:
 
 ==
 ERROR: test_clusterdistance
 (test_Cluster.TestCluster)
 --
 Traceback (most recent call last):
   File
 
/«BUILDDIR»/python-biopython-1.64+dfsg/.pybuild/pythonX.Y_3.4/build/Tests/test_Cluster.py,
 line 212, in test_clusterdistance
    
 method='a', transpose=0)
 ValueError:
 method should be a single character
 
 ==
 ERROR: test_kcluster
 (test_Cluster.TestCluster)
 --
 Traceback (most recent call last):
   File
 
/«BUILDDIR»/python-biopython-1.64+dfsg/.pybuild/pythonX.Y_3.4/build/Tests/test_Cluster.py,
 line 141, in test_kcluster
    
 method='a', dist='e')
 ValueError: method should be a single
 character
 
 ==
 ERROR: test_somcluster
 (test_Cluster.TestCluster)
 --
 Traceback (most recent call last):
   File
 
/«BUILDDIR»/python-biopython-1.64+dfsg/.pybuild/pythonX.Y_3.4/build/Tests/test_Cluster.py,
 line 557, in test_somcluster
    
 inittau=0.02, niter=100, dist='e')
 ValueError: distance should be a single
 character
 
 ==
 ERROR: test_treecluster
 (test_Cluster.TestCluster)
 --
 Traceback (most recent call last):
   File
 
/«BUILDDIR»/python-biopython-1.64+dfsg/.pybuild/pythonX.Y_3.4/build/Tests/test_Cluster.py,
 line 290, in test_treecluster
    
 transpose=0, method='a', dist='e')
 ValueError: method should be a single
 character
 
 --
 Ran 210 tests in 293.712 seconds
 
 FAILED (failures = 1)
 
 
 On sparc[3]
 there is a problem with dialign but sparc is no release
 architecture and wie might ignore this.  It
 might be a helpful hint
 anyway.
 
 Any hint for the test_Cluster
 problem?  If not I would also consider to
 hide it cowardly under the carpet for the
 moment.  The new package is so
 much better
 tested than the one in the testing distribution which
 does
 not even dare about any unit tests and
 only for this reason reached the
 testing
 distribution.
 
 What do you
 think?
 
 Kind regards
 
    
    Andreas.
 
 scrool these links to the end to see the
 problem:
 
 [1] 
https://buildd.debian.org/status/fetch.php?pkg=python-biopythonarch=powerpcver=1.64%2Bdfsg-3stamp=1408116532
 [2] 
https://buildd.debian.org/status/fetch.php?pkg=python-biopythonarch=s390xver=1.64%2Bdfsg-3stamp=1408107524
 [3]
 
https://buildd.debian.org/status/fetch.php?pkg=python-biopythonarch=sparcver=1.64%2Bdfsg-3stamp=1408130792
 
 -- 
 http://fam-tille.de



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



Bug#751277: python-biopython: FTBFS on mips* powerpc s390x

2014-08-18 Thread Michiel de Hoon
Hi Andreas,

Without access to powerpc, I have no way to test the code.
Can you try recompiling Biopython and checking what exactly happens inside the 
distance_converter function in Bio/Cluster/clustermodule.c ?
For example, I am really wondering what strlen(data) inside this function 
returns on powerpc.

Best,
-Michiel.


On Sat, 8/16/14, Andreas Tille andr...@an3as.eu wrote:

 Subject: Re: Bug#751277: python-biopython: FTBFS on mips* powerpc s390x
 To: Peter Cock p.j.a.c...@googlemail.com
 Cc: Dejan Latinovic dejan.latino...@imgtec.com, Michiel de Hoon 
mjldeh...@yahoo.com, Biopython discussion list 
biopyt...@lists.open-bio.org, 751...@bugs.debian.org 
751...@bugs.debian.org, biopython-...@biopython.org 
biopython-...@biopython.org
 Date: Saturday, August 16, 2014, 5:37 AM
 
 Hi Peter,
 
 On Thu, Aug 14, 2014 at
 09:52:40AM +0100, Peter Cock wrote:
 
 
     1. waiting for
 your confirmation / patch
 
    2. deactivating the specific test
     3. exclude mips for
 biopython
     4. ? any
 better idea ?
  
 
  In the current state all the work we spent in biopython
 over the last
   monthes will not
 migrate to testing for the simple reason that the
   current package in testing just does
 not run the test suite at build
  
 time and moreover python3 is not supported.
  
   Kind
 regards
  
 
       Andreas.
  
  I would suggest (2), deactivate this test
 (at least for for mips) as
  the most
 practical short term solution for the Debian packages.
  Or if you prefer (3), don't target
 mips for the Biopython package
 
 (yet).
  
  Medium
 term, I hope we can fix the C code to handle either
  Endian platform - option (1).
 
 It seems after having fixed
 the issue caused by wise we have one
 remaining problem:
 
   On powerpc[1] and s390x[2] test_Cluster
 fails even with Python 2.7 with:
 
 ==
 ERROR: test_clusterdistance
 (test_Cluster.TestCluster)
 --
 Traceback (most recent call last):
   File
 
/«BUILDDIR»/python-biopython-1.64+dfsg/.pybuild/pythonX.Y_3.4/build/Tests/test_Cluster.py,
 line 212, in test_clusterdistance
    
 method='a', transpose=0)
 ValueError:
 method should be a single character
 
 ==
 ERROR: test_kcluster
 (test_Cluster.TestCluster)
 --
 Traceback (most recent call last):
   File
 
/«BUILDDIR»/python-biopython-1.64+dfsg/.pybuild/pythonX.Y_3.4/build/Tests/test_Cluster.py,
 line 141, in test_kcluster
    
 method='a', dist='e')
 ValueError: method should be a single
 character
 
 ==
 ERROR: test_somcluster
 (test_Cluster.TestCluster)
 --
 Traceback (most recent call last):
   File
 
/«BUILDDIR»/python-biopython-1.64+dfsg/.pybuild/pythonX.Y_3.4/build/Tests/test_Cluster.py,
 line 557, in test_somcluster
    
 inittau=0.02, niter=100, dist='e')
 ValueError: distance should be a single
 character
 
 ==
 ERROR: test_treecluster
 (test_Cluster.TestCluster)
 --
 Traceback (most recent call last):
   File
 
/«BUILDDIR»/python-biopython-1.64+dfsg/.pybuild/pythonX.Y_3.4/build/Tests/test_Cluster.py,
 line 290, in test_treecluster
    
 transpose=0, method='a', dist='e')
 ValueError: method should be a single
 character
 
 --
 Ran 210 tests in 293.712 seconds
 
 FAILED (failures = 1)
 
 
 On sparc[3]
 there is a problem with dialign but sparc is no release
 architecture and wie might ignore this.  It
 might be a helpful hint
 anyway.
 
 Any hint for the test_Cluster
 problem?  If not I would also consider to
 hide it cowardly under the carpet for the
 moment.  The new package is so
 much better
 tested than the one in the testing distribution which
 does
 not even dare about any unit tests and
 only for this reason reached the
 testing
 distribution.
 
 What do you
 think?
 
 Kind regards
 
    
    Andreas.
 
 scrool these links to the end to see the
 problem:
 
 [1] 
https://buildd.debian.org/status/fetch.php?pkg=python-biopythonarch=powerpcver=1.64%2Bdfsg-3stamp=1408116532
 [2] 
https://buildd.debian.org/status/fetch.php?pkg=python-biopythonarch=s390xver=1.64%2Bdfsg-3stamp=1408107524
 [3]
 
https://buildd.debian.org/status/fetch.php?pkg=python-biopythonarch=sparcver=1.64%2Bdfsg-3stamp=1408130792
 
 -- 
 http://fam-tille.de



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



Bug#751277: python-biopython: FTBFS on mips* powerpc s390x

2014-08-18 Thread Michiel de Hoon
 I can provide SSH access
 to a PowerMac G5 running 7.6 if you'd like to test this.

That would be great. Then I can test it.

Best,
-Michiel. 


On Mon, 8/18/14, David Gosselin d...@appleside.org wrote:

 Subject: Re: Bug#751277: python-biopython: FTBFS on mips* powerpc s390x
 To: Andreas Tille andr...@an3as.eu
 Cc: Michiel de Hoon mjldeh...@yahoo.com, debian-powe...@lists.debian.org 
debian-powe...@lists.debian.org, debian-m...@lists.debian.org 
debian-m...@lists.debian.org, debian-s...@lists.debian.org 
debian-s...@lists.debian.org, Peter Cock p.j.a.c...@googlemail.com, 
Dejan Latinovic dejan.latino...@imgtec.com, Biopython discussion list 
biopyt...@lists.open-bio.org, 751...@bugs.debian.org 
751...@bugs.debian.org, biopython-...@biopython.org 
biopython-...@biopython.org
 Date: Monday, August 18, 2014, 8:43 PM
 
 I can provide SSH access
 to a PowerMac G5 running 7.6 if you'd like to test this.
 
 
  On Aug 18, 2014, at
 4:01, Andreas Tille andr...@an3as.eu
 wrote:
  
  Hi
 porters,
  
  could
 you please be so kind to check this issue?  It would be
 great to
  find out why the test suite of
 biopython fails on these architectures.
 
 
  Thanks a lot
  
        Andreas.
  
  On Mon, Aug 18,
 2014 at 12:35:53AM -0700, Michiel de Hoon wrote:
  Hi Andreas,
 
 
  Without access to powerpc, I have
 no way to test the code.
  Can you
 try recompiling Biopython and checking what exactly happens
 inside the distance_converter function in
 Bio/Cluster/clustermodule.c ?
  For
 example, I am really wondering what strlen(data) inside this
 function returns on powerpc.
  
  Best,
 
 -Michiel.
  
 
 
  On Sat, 8/16/14, Andreas Tille andr...@an3as.eu
 wrote:
  
 
 Subject: Re: Bug#751277: python-biopython: FTBFS on mips*
 powerpc s390x
  To: Peter
 Cock p.j.a.c...@googlemail.com
  Cc: Dejan Latinovic dejan.latino...@imgtec.com,
 Michiel de Hoon mjldeh...@yahoo.com,
 Biopython discussion list biopyt...@lists.open-bio.org,
 751...@bugs.debian.org
 751...@bugs.debian.org,
 biopython-...@biopython.org
 biopython-...@biopython.org
  Date: Saturday, August 16, 2014, 5:37
 AM
  
  Hi
 Peter,
  
  On
 Thu, Aug 14, 2014 at
  09:52:40AM
 +0100, Peter Cock wrote:
  
  
     1. waiting for
  your confirmation / patch
  
    
 2. deactivating the specific test
     3. exclude mips for
  biopython
     4. ? any
  better idea ?
  
  In
 the current state all the work we spent in biopython
  over the last
  monthes will not
  migrate to testing for the simple
 reason that the
  current
 package in testing just does
  not
 run the test suite at build
  time
 and moreover python3 is not supported.
  
  Kind
 
 regards
  
        Andreas.
  
  I
 would suggest (2), deactivate this test
  (at least for for mips) as
  the most
 
 practical short term solution for the Debian packages.
  Or if you prefer (3), don't
 target
  mips for the Biopython
 package
  (yet).
  
 
 Medium
  term, I hope we can fix the
 C code to handle either
  Endian
 platform - option (1).
  
  It seems after having fixed
  the issue caused by wise we have
 one
  remaining problem:
  
    On powerpc[1] and
 s390x[2] test_Cluster
  fails even
 with Python 2.7 with:
  
 
 ==
  ERROR: test_clusterdistance
  (test_Cluster.TestCluster)
 
 --
  Traceback (most recent call last):
    File
 
 
/«BUILDDIR»/python-biopython-1.64+dfsg/.pybuild/pythonX.Y_3.4/build/Tests/test_Cluster.py,
  line 212, in test_clusterdistance
     
 
 method='a', transpose=0)
 
 ValueError:
  method should be a
 single character
  
 
 ==
  ERROR: test_kcluster
  (test_Cluster.TestCluster)
 
 --
  Traceback (most recent call last):
    File
 
 
/«BUILDDIR»/python-biopython-1.64+dfsg/.pybuild/pythonX.Y_3.4/build/Tests/test_Cluster.py,
  line 141, in test_kcluster
     
 
 method='a', dist='e')
  ValueError: method should be a
 single
  character
  
 
 ==
  ERROR: test_somcluster
  (test_Cluster.TestCluster)
 
 --
  Traceback (most recent call last):
    File
 
 
/«BUILDDIR»/python-biopython-1.64+dfsg/.pybuild/pythonX.Y_3.4/build/Tests/test_Cluster.py,
  line 557, in test_somcluster
     
 
 inittau=0.02, niter=100, dist='e')
  ValueError: distance should be a
 single
  character
  
 
 ==
  ERROR: test_treecluster
  (test_Cluster.TestCluster)
 
 --
  Traceback (most recent call last):
    File
 
 
/«BUILDDIR»/python-biopython-1.64+dfsg/.pybuild/pythonX.Y_3.4/build/Tests

Bug#755501: ircd-ratbox resolver daemon hits 100% cpu on irc client connect, fails to resolve hostname.

2014-07-21 Thread Michiel Holtkamp
Package: ircd-ratbox
Version: 3.0.8.dfsg-2
Severity: important

Dear Maintainer,

After upgrading to 3.0.8-dfsg-2, I noticed connecting to the IRC server was
very slow and resulted in hostnames not being (reverse) resolved.

Upon inspection, it seemed that the ircd resolver daemon was using a lot of
CPU (100% in top). A systrace did not yield anything, but an ltrace showed a
continuous stream of the same line:

rb_get_pseudo_random(0x7fffa62abc86, 2, 0x7f583268fba0, 0) = 1

(I'll get back to this later).

I tried killing the ircd resolver daemon (had to kill it with SIGKILL) and it
came back at 0% CPU usage. However, everytime a client connected, the same
thing happened (cpu to 100%, ip not reverse resolved).

I did a quick check in the source code and it seemed that this function was
called in a tight loop if the random number that was returned is always
0x (a 16-bit short was requested).


ADDITIONAL INFORMATION
 * tested with 3.0.7.dfsg-3, does NOT suffer from this problem
 * tested on two different machines, both virtualized (one OpenVZ, one LXC)
   (I don't know if it matters, but I included it for completeness).

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

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

Versions of packages ircd-ratbox depends on:
ii  libc6  2.19-7
ii  libgnutls-deb0-28  3.2.15-3
ii  libltdl7   2.4.2-1.7
ii  libsqlite3-0   3.8.5-2
ii  lsb-base   4.1+Debian13
ii  multiarch-support  2.19-7

ircd-ratbox recommends no packages.

Versions of packages ircd-ratbox suggests:
pn  ntp | openntpd | time-daemon  none

-- Configuration Files:
/etc/default/ircd-ratbox changed [not included]

-- no debconf information


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



Bug#751277: python-biopython: FTBFS on mips* powerpc s390x

2014-06-15 Thread Michiel de Hoon
  This commit verifies the errors are thrown (and they are not
  under Python 3 on the Mac):
  https://github.com/peterjc/biopython/commit/5b99854a82f08321ad78feaf0b362002d2d1fd2b
 
  I'm going to have to pass this one to Michiel to look at... but it
  looks like a glitch in the bytes vs unicode handling, which for
  some reason mostly works - but breaks under some unusual
  platforms?
 
Was there a bug report filed for this issue? Then I can have a look at it.
Best,
-Michiel


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



Bug#725702: Additional information, wide-dhcpv6-server also suffers this problem

2014-05-09 Thread Michiel Holtkamp
Hi all,

While installing wide-dhcpv6-server (NOT the client),
I also got this error message with 20080615-12:

# /usr/sbin/dhcp6s -c /etc/wide-dhcpv6/dhcp6s.conf -Df eth0
[snip...]
May/09/2014 14:16:56: server6_init: setsockopt(insock, SO_REUSEPORT): Protocol 
not available

After installing 20080615-11.1, the problem disappeared.

I'm running Debian testing (jessie).

Kind regards,
Michiel Holtkamp


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



Bug#726600: otrs2: Internal server error when replying to email ticket

2013-11-04 Thread Michiel Beijen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Hi Niko, Patrick, 

Thanks for all your investigating and research.

11/04/2013 08:54 - Patrick Matthäi wrote:

 Am 03.11.2013 15:04, schrieb Niko Tyni:
  I'm reassigning this against libmime-tools-perl again - if this is an
  intentional limitation there, it should at least be documented better.
  Preferrably, I suppose MIME::Body::InCore should transparently encode
  Unicode data before making an in-memory file out of it. (This needs to
  be discussed upstream, of course.)

I'm not sure this is correct. I think it *does* need documentation in 
MIME::Entity.

  In this case, OTRS hits it in Kernel::System::Email::Send() when it gets
  a body containing HTML elements that map onto non-latin characters,
  for instance spades; . The $Self-{HTMLUtilsObject}-ToAscii() call
  around line 288 of Kernel/System/Email.pm then converts the elements into
  Unicode characters, which are later passed to MIME::Entity-build() as-is.
 
  If necessary, OTRS could work around the problem by encoding the string
  first. It already does for some cases, around line 316 or so:
 
   # body encode if utf8 and base64 is used
   if ( $Header{Encoding} =~ /utf(8|-8)/i  $Header{Encoding} =~ 
  /base64/i ) {
   $Self-{EncodeObject}-EncodeOutput( \$Param{Body} );
   }

These conditions will not be true at the same time, I think.

  Making this EncodeOutput() call unconditional fixes the crash for me,
  probably at the cost of some double encoding later. (I don't use OTRS
  myself so I didn't really test that any further, but it seems too simple
  minded to be a proper fix.)
 
 
 Much thanks for working this out, I have also sent the information to 
 OTRS upstream, so that they also could workaround this problem.

It is related to this change in Perl 5.18:
http://blogs.perl.org/users/tony_cook/2013/02/perl-io-on-scalars.html

I think while it might *seem* too simple it really is the proper fix for OTRS.

it's fixed in rel-3_2:
https://github.com/OTRS/otrs/commit/3200f38e4ece3b73c1d8f98642b0bf30f5e39043

and master:
https://github.com/OTRS/otrs/commit/eda2b2b9a19eeaf513be3d214ab5b680d87c49e3

- --
Mike
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iF4EAREIAAYFAlJ3hpsACgkQoLql6G61CtrtkgD/ad9Mq60ORu/6ARXFTfcqrEld
3fw3YGKJKgbvAwxXZZYA/1zf6cAhkaoUmYpgUrhPaD5oGTtna42SuhNGitD2FZ3O
=Bm9e
-END PGP SIGNATURE-


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



Bug#702539: grep: Misleading error message when presenting [:digit:] outside character class

2013-03-07 Thread Michiel Holtkamp
Package: grep
Version: 2.14-1
Severity: minor
Tags: upstream

Dear Maintainer,

   * What led up to the situation?

I was configuring logcheck and made an error and got the following in the mail:

egrep: character class syntax is [[:space:]], not [:space:]

First I checked my recent changes, but there were no [:space:] used at all. I
then searched the system logcheck files for any '[:space:]' outside a
character class, but couldn't find one. I figured out that it was actually
'[:digit:]' that caused this problem.

I realize the error message might be giving an example, but in this case it
was really confusing, as there were many patterns (most of them not maintained
by me) and it took some time to figure out what the problem was since the egrep
was run a while after I made the changes.

I tested this on both testing/wheezy (2.12-2) as well as unstable/sid (2.14-1),
both give the same result.

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

# Minimal working example with missing outer brackets:
echo This is 1 test | egrep '[:digit:]'

   * What was the outcome of this action?

egrep: character class syntax is [[:space:]], not [:space:]

   * What outcome did you expect instead?

egrep: character class syntax is [[:digit:]], not [:digit:]

-- System Information:
Debian Release: 7.0
  APT prefers testing
  APT policy: (900, 'testing'), (600, 'unstable')
Architecture: amd64 (x86_64)

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

Versions of packages grep depends on:
ii  dpkg  1.16.9
ii  install-info  4.13a.dfsg.1-10
ii  libc6 2.13-38

grep recommends no packages.

Versions of packages grep suggests:
ii  libpcre3  1:8.30-5

-- 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#577967: Patch to fix warning

2012-08-21 Thread Michiel Holtkamp
Hi,

This patch fixes the warning. Would very much appreciate if this patch could
be applied, so my build logs are cleaner. The patch is against version 0.6.17
but I think it can be applied cleanly against most versions.

Related, I think another bug (#604935) is a duplicate of this.

Thanks!



pycentral-0.6.17-bug577967.diff
Description: Binary data


Bug#630556: (no subject)

2011-07-26 Thread Michiel Rook

I've had a similar problem after upgrading to 1.4.7-1

usb 5-2: usbfs: process 19435 (usb) did not claim interface 1 before use

(this is on an HP Deskjet 930C)

Reverting to 1.4.6-11+b1 restores the normal behavior.



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



Bug#623284: [Pkg-openssl-devel] Bug#623284: openssl: CApath option does not find certificates for verification

2011-04-19 Thread Michiel de Boer
On 04/19/2011 09:16 AM, Kurt Roeckx wrote:

 Can you try running c_rehash and see if that fixes the problem?


 Kurt

Works for me. And Irssi works again as well. I guess this somehow failed
to happen automatically after dist-upgrade?

Michiel



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



Bug#623284: openssl: CApath option does not find certificates for verification

2011-04-18 Thread Michiel de Boer
Package: openssl
Version: 1.0.0d-2
Severity: normal
Tags: d-i


When connecting with openssl to for example, the Freenode irc network, with the 
following command:

openssl s_client -CApath /etc/ssl/certs/ -connect chat.freenode.net:7000

Verification of the certificate fails. However, a command such as:

openssl s_client -CAfile ( find /etc/ssl/certs/ -name '*.crt' -exec cat {} + ) 
-connect chat.freenode.net:7000

*does* succeed. Inspection of openssl with strace reveals:

stat64(/usr/share/ca-certificates//b13cc6df.0, 0xbfc8badc) = -1 ENOENT (No 
such file or directory)

The two consecutive slashes indicate an empty variable might be the cause, and 
openssl
does not properly recurse through the certificate directories with the -CApath 
option.

openssl then gives up with:

Verify return code: 20 (unable to get local issuer certificate)

This error affects an irc client like irssi as well, and a bug was filed 
against irssi, which should
have been filed against openssl. Will notify irssi devs that this report was 
filed.

Previous versions of Debian's openssl (0.9.8) were said not to exhibit the bug.

One other non-Debian (Gentoo) using irssi user reported they *could* connect 
correctly using
openssl-1.0.0d.

The command using the -CAfile option above is an effective workaround.

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

Kernel: Linux 2.6.38-3.slh.2-aptosid-686 (SMP w/1 CPU core; PREEMPT)
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 openssl depends on:
ii  libc6   2.11.2-11Embedded GNU C Library: Shared lib
ii  libssl1.0.0 1.0.0d-2 SSL shared libraries
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

openssl recommends no packages.

Versions of packages openssl suggests:
ii  ca-certificates20090814+nmu3 Common CA certificates

-- 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#506764: Confirmed and alternate workaround

2011-01-23 Thread Michiel
I also had the problem with siproxd not resolving hosts. After
-REMOVING- the localhost entry in /etc/hosts it did work. This confirms
that siproxd tries to load the resolver libraries by looking up
localhost. However since localhost can be resolved without DNS the DNS
libraries aren't loaded. After the chroot is complete siproxd can't load
them anymore and fails.





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



Bug#596927: PATCH for libsoap-lite-perl

2010-12-17 Thread Michiel Beijen
It's a little bit more complicated than reporter mentioned; it depends
on wether or not you run mod_perl; there's a patch in
https://rt.cpan.org/Public/Bug/Display.html?id=58538 (see below) which
I would very much like to see included in the Debian package.

--- lib/SOAP/Transport/HTTP.pm.orig 2010-10-05 16:06:05.563710856 +0100
+++ lib/SOAP/Transport/HTTP.pm 2010-10-05 16:09:20.142813758 +0100
@@ -566,9 +566,16 @@
if ( !$chunked ) {
my $buffer;
binmode(STDIN);
- while ( sysread( STDIN, $buffer, $length ) ) {
- $content .= $buffer;
- last if ( length($content) = $length );
+ if ( defined $ENV{'MOD_PERL'} ) {
+ while ( read( STDIN, $buffer, $length ) ) {
+ $content .= $buffer;
+ last if ( length($content) = $length );
+ }
+ } else {
+ while ( sysread( STDIN, $buffer, $length ) ) {
+ $content .= $buffer;
+ last if ( length($content) = $length );
+ }
}
}



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



Bug#602809: /usr/sbin/snmptrapd: snmptrapd: unknown token authCommunity

2010-11-24 Thread Michiel Appelman
Has there been any progress on this bug? We are experiencing the same
problem (same versions) and would somehow like to resolve it!

Thanks,

-- Michiel Appelman




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



Bug#601630: drupal6-mod-ldap-integration: package should depend on php5-ldap, but it doesn't.

2010-10-27 Thread Michiel Fokke
Package: drupal6-mod-ldap-integration
Version: 1.0~beta2-1
Severity: important

As stated in the subjectline, the package is not depending on php5-ldap, which 
is necessary to run properly.


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

Kernel: Linux 2.6.27-openvz-chistyakov.1 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash



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



Bug#587729: Apache::Reload issue with OTRS 2.4.7

2010-07-02 Thread Michiel Beijen
Hi guys,

I **guess** this issue is actually caused by a bug that was introduced
in Perl 5.10.1. It is not present in 5.10.0 or earlier, and it was
addressed in version 5.12.0. See:
http://rt.perl.org/rt3//Public/Bug/Display.html?id=72866

We track the issue in the OTRS tracker here:
http://bugs.otrs.org/show_bug.cgi?id=4967

We implemented a workaround in upcoming 2.4.8; it consists of adding
three lines to the Apache configuration file for OTRS. See our FAQ:
http://faq.otrs.org/otrs/public.pl?Action=PublicFAQCategoryID=31ItemID=364

Hope this helps,

Mike




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



Bug#519395: gnuplot-nox: depends indirectly on a lot of X libraries

2009-03-16 Thread Michiel Scholten
Just wanted to chime in that I have the same issue; the dependency on
libcairo2 likely doesn't help either. Too bad it happened in a minor
release too.

It would be really nice if this could be resolved, as 24.7MB of extra
(X-related) packages (64.4MB unpacked) is really unneeded on my
headless VPS.

Thanks in advance and always happy to test!

Regards,
Michiel

-- 
Those who would give up Essential Liberty to purchase a little Temporary
Safety, deserve neither Liberty nor Safety   - Benjamin Franklin



signature.asc
Description: PGP signature


Bug#491200: Version 2.21-02 released

2009-02-03 Thread Michiel
Package: webalizer
Version: 2.01.10-32.4
Severity: wishlist

On January 13, 2009, version 2.21-02 was released. Changes since
current debian version include matching on whitespace useragent, which
feature I'm really interested in. Also security fixes are included.

Including this version in debian would be greatly appreciated.

Thanks,
Michiel



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



Bug#465601: Thanks :)

2008-09-14 Thread Michiel
Thank you very much!

Michiel



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



Bug#493202: Bug is still there

2008-09-08 Thread Wouter Michiel Koolen-Wijkstra

Dear maintainer,

I think I suffer from this bug as well. Insserv segfaults somewhere 
during the installation process of other packages.


I built insserv from source as you described above. When I run insserv 
-v -n under gdb it gives the following backtrace:


Program received signal SIGSEGV, Segmentation fault.
0xb7f8ccea in strcmp () from /lib/i686/cmov/libc.so.6
(gdb) bt
#0  0xb7f8ccea in strcmp () from /lib/i686/cmov/libc.so.6
#1  0x080512ab in makeprov (serv=0x8bf5240, script=0x0) at listing.c:187
#2  0x0804d5fa in main (argc=0, argv=0xbf9a69c0) at insserv.c:1730


Hope that helps,

Wouter Koolen-Wijkstra



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



Bug#490071: Use radeon instead of ati

2008-07-18 Thread Michiel Scholten
Hi,

I encountered this bug today too when upgrading my laptop running a
Mobility Radeon 9700. After switching to fglrx it went away, so I then
tried radeon in xorg.conf instead of the auto-choosing ati driver. Now
it works fine, so I suspect some oddity in the ati wrapper.

Cheers,
Michiel

-- 
aquariusoft.org   software | web log   aquariusoft.org/~mbscholt
morphix.orgmorphix | pgp   aquariusoft.org/files/key.asc
Those who would give up Essential Liberty to purchase a little Temporary
Safety, deserve neither Liberty nor Safety   - Benjamin Franklin



signature.asc
Description: PGP signature


Bug#490071: Problem still exists

2008-07-18 Thread Michiel Scholten
I just rebooted the laptop and had the problem popping up again. I
tried various settings in xorg.conf, but only after I used the vesa
driver did I get a working X.org again. Before that, it often freezed
on the gdm welcome screen, or shortly after logging into xfce4.

My current xorg.conf:



Section ServerLayout
Identifier  Default
#Screen Screen 0 0
Option  AllowDeactivateGrabs 1
Option  AllowClosedownGrabs 1

Screen 0Screen0

InputDevice Synaptics Touchpad
EndSection
Section Device
Identifier  ATi
#   Driver  radeon
#   Driver  fglrx
#   Driver  ati
Driver  vesa
Option  NoLogo 1
Option  DynamicTwinView 0
Option  AddARGBGLXVisuals 1

#   Option  AccelMethod exa
Option  AccelMethod XAA #tried with and without
#   Option  Dpi 105 x 105
EndSection
Section Screen
Identifier  Screen0
Device  ATi

DefaultDepth24

Monitor TFT Panel
EndSection

Section InputDevice
Identifier  Synaptics Touchpad
Driver  synaptics
Option  SendCoreEventstrue
Option  Device/dev/psaux
Option  Protocol  auto-dev
Option  HorizScrollDelta  0
EndSection

Section Module
Loaddri
EndSection
Section Monitor
Identifier  TFT Panel
DisplaySize 305 230
EndSection

Section Extensions
Option  Composite false
EndSection



Regards,
Michiel

-- 
aquariusoft.org   software | web log   aquariusoft.org/~mbscholt
morphix.orgmorphix | pgp   aquariusoft.org/files/key.asc
Those who would give up Essential Liberty to purchase a little Temporary
Safety, deserve neither Liberty nor Safety   - Benjamin Franklin



signature.asc
Description: PGP signature


Bug#309051: 15 tips on mind blowing foreplay

2008-03-26 Thread Michiel Parkkali

I get to screw all night with the help of this

http://www.molhomot.com/
See What You Missed Out In 2008



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



Bug#465601: linux-image-2.6-vserver-amd64: Please include vs2.2.0.6 patch

2008-02-13 Thread Michiel Holtkamp
Package: linux-image-2.6-vserver-amd64
Version: 2.6.22+11
Severity: wishlist


Current linux image includes vserver 2.2.0.5 patch, I need something
that is included in 2.2.0.6 so I would appreciate it if this is
included.


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

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



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



Bug#448235: volatile mirror

2007-10-29 Thread Michiel van Baak
Hi,

The email issue is fixed. I added the alias
[EMAIL PROTECTED] to our mailserver.

The bandwidth of this server is 100mbit unmetered.
the rsync script is scheduled to run daily at midnight local
time.

I altered the rsync script to use volatile.debian.org as
sync master. I also altered the HOSTNAME variable to
debian.three-dimensional.net for the project/trace/ files
etc.

If anything else needs to be done please let me know.

-- 

Michiel van Baak



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



Bug#448235: mirror submission for debian.three-dimensional.net

2007-10-27 Thread Michiel van Baak
Package: mirrors
Severity: wishlist

Submission-Type: new
Site: debian.three-dimensional.net
Type: leaf
Archive-architecture: ALL alpha amd64 arm hppa hurd-i386 i386 ia64 m68k mips 
mipsel powerpc s390 sparc 
Volatile-http: /debian-volatile/
IPv6: yes
Volatile-upstream: volatile.debian.net
Maintainer: Michiel van Baak [EMAIL PROTECTED]
Country: DK Denmark
Sponsor: Three-Dimensional VZW http://www.three-dimensional.net



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



Bug#442359: RFP: python-pysamba -- Fully functional python bindings for samba, allowing the developer to interface any samba-capable device much like python's ftplib does.

2007-09-15 Thread Michiel Holtkamp
Package: wnpp
Severity: wishlist


* Package name: python-pysamba
  Version : 1.0.0
  Upstream Author : Juan M. Casillas [EMAIL PROTECTED]
* URL : 
http://www.jmcresearch.com/src/projecthelper.php?action=viewid=18
* License : GPL
  Programming Lang: C, Python
  Description : Fully functional python bindings for samba, allowing the 
developer to interface any samba-capable device much like python's ftplib does.

PySamba is a full wrapper based in the work of Tim Potter. In fact,
PySamba is built as a Python C extension over the cli library provided
with samba and a Python module that hides the complexity of the
lower layer (smb) providing high-level commands like Mkdir or DiskAvail.

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

Kernel: Linux 2.4.29-grsec
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to en_US.UTF-8)
Shell: /bin/sh linked to /bin/bash



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



Bug#435843: libfreetype6: Kerning is incorrect

2007-08-03 Thread Michiel Roos
Package: libfreetype6
Version: 2.2.1-5+etch1
Severity: important


Related to bug http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=361076

Exactly the same problem occurs in 2.2.1-5+etch1 for certain font sizes and
fonts.

We would like to use freetype to dynamically render headers for websites. This
bug currently makes this undoable on the whole webserver.


-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

Versions of packages libfreetype6 depends on:
ii  libc6   2.3.6.ds1-13 GNU C Library: Shared libraries
ii  zlib1g  1:1.2.3-13   compression library - runtime

libfreetype6 recommends no packages.

-- no debconf information


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



Bug#435207: Small spelling errors and erratic sentences in debian-policy

2007-07-29 Thread Michiel de Boer

Package: debian-policy
Version: 3.7.2.2


While reading debian-policy for the first time I decided
to write down any spelling errors or erratic sentences.
Below is a patch; let me know if it's acceptable.

Please improve, scrap or change any part of it that I
modified inappropriately.

Kind regards,

Michiel de Boer
[EMAIL PROTECTED]

diff -Nru debian-policy-3.7.2.2.orig/policy.sgml 
debian-policy-3.7.2.2/policy.sgml
--- debian-policy-3.7.2.2.orig/policy.sgml  2006-10-03 00:36:50.0 
+0200
+++ debian-policy-3.7.2.2/policy.sgml   2007-07-26 10:14:26.0 +0200
@@ -675,7 +675,7 @@
Packages which are necessary for the proper
functioning of the system (usually, this means that
dpkg functionality depends on these packages).
-   Removing an ttrequired/tt package may cause your
+   Removing a ttrequired/tt package may cause your
system to become totally broken and you may not even
be able to use prgndpkg/prgn to put things back,
so only do so if you know what you are doing.  Systems
@@ -3223,7 +3223,7 @@
  prgnstart-stop-daemon/prgn, prgninstall-info/prgn,
  and prgnupdate-rc.d/prgn can be found via the
  ttPATH/tt environment variable. Those programs, and any
- other program that one would expect to be on the
+ other program that one would expect to be in the
  ttPATH/tt, should thus be invoked without an absolute
  pathname. Maintainer scripts should also not reset the
  ttPATH/tt, though they might choose to modify it by
@@ -3526,7 +3526,7 @@
   If the error-unwind fails, the package is in an
   Half Installed phase, and requires a
   reinstall. If the error unwind works, the
-  package is in an not installed state.
+  package is in a not installed state.
  /item
 /enumlist
/item
@@ -3903,7 +3903,7 @@
  list of Debian architecture names separated by whitespace.
  Exclamation marks may be prepended to each of the names.
  (It is not permitted for some names to be prepended with
- exclamation marks and others not.) If the current Debian
+ exclamation marks while others aren't.) If the current Debian
  host architecture is not in this list and there are no
  exclamation marks in the list, or it is in the list with a
  prepended exclamation mark, the package name and the
@@ -7785,7 +7785,7 @@
/p

p
- Such package should check for the existence of this file
+ Such a package should check for the existence of this file
  when it is being configured.  If it exists, it should be
  used without comment, although an MTA's configuration script
  may wish to prompt the user even if it finds that this file


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



Bug#435211: Add show asterisks functionality to password widget in CDialog backend

2007-07-29 Thread Michiel de Boer


Package: libui-dialog-perl
Version: 1.08-1

The patch below adds the --insecure option to the CDialog backend of
UI::Dialog. This option makes the password widget friendlier, by
showing asterisks when a user types a password. This functionality
exists in in the dialog program, but unfortunately not in this
Perl module. Ofcourse, this feature is only activated when the
appropriate parameter is passed when the UI::Dialog::Backend::CDialog
object is created:

$d = new UI::Dialog::Backend::CDialog( insecure = 1 ) or die;

The unless not constructions seen around the added line seem
very ugly to me, because unless not essentially means the same
as if. However I've decided not to touch those lines yet. Perhaps
I will do so in the future should I decide to ask for upstream
maintainership of the module on CPAN. Ofcourse, anybody is free to
still change that regadless of what I decide to do. This is also
the reason why I sent the bug to Debian and not to upstream: the
project seems to have been inactive since 2004.

Kind regards,

Michiel de Boer
[EMAIL PROTECTED]

diff -Nru libui-dialog-perl-1.08.orig/lib/UI/Dialog/Backend/CDialog.pm 
libui-dialog-perl-1.08/lib/UI/Dialog/Backend/CDialog.pm
--- libui-dialog-perl-1.08.orig/lib/UI/Dialog/Backend/CDialog.pm 
2004-10-04 05:16:43.0 +0200
+++ libui-dialog-perl-1.08/lib/UI/Dialog/Backend/CDialog.pm 2007-07-30 
05:12:56.0 +0200

@@ -84,6 +84,7 @@
 $self-{'_opts'}-{'extra-label'} = $cfg-{'extra-label'} || undef();
 $self-{'_opts'}-{'help-button'} = $cfg-{'help-button'} || 0;
 $self-{'_opts'}-{'help-label'} = $cfg-{'help-label'} || undef();
+$self-{'_opts'}-{'insecure'} = $cfg-{'insecure'} || 0;
 $self-{'_opts'}-{'max-input'} = $cfg-{'max-input'} || 0;
 $self-{'_opts'}-{'no-cancel'} = $cfg-{'no-cancel'} || 
$cfg-{'nocancel'} || 0;

 $self-{'_opts'}-{'no-collapse'} = $cfg-{'no-collapse'} || 0;
@@ -176,6 +177,7 @@
$cmnd .= ' --extra-label '.$args-{'extra-label'}.'' unless 
not $args-{'extra-label'};
$cmnd .= ' --help-button' unless not $args-{'help-button'} and 
not $args-{'help-label'};
$cmnd .= ' --help-label '.$args-{'help-label'}.'' unless not 
$args-{'help-label'};

+   $cmnd .= ' --insecure' if $args-{'insecure'};
$cmnd .= ' --max-input '.$args-{'max-input'}.'' unless not 
$args-{'max-input'};
$cmnd .= ' --no-cancel' unless not $args-{'nocancel'} and not 
$args-{'no-cancel'};
$cmnd .= ' --no-collapse' unless not $args-{'no-collapse'} and 
not $args-{'literal'};




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



Bug#435211: Diff as attachment

2007-07-29 Thread Michiel de Boer

To prevent problems with the diff (lines were wrapped)
I send it again as attachment. I hope this works.

Regards,

Michiel de Boer
diff -Nru libui-dialog-perl-1.08.orig/lib/UI/Dialog/Backend/CDialog.pm libui-dialog-perl-1.08/lib/UI/Dialog/Backend/CDialog.pm
--- libui-dialog-perl-1.08.orig/lib/UI/Dialog/Backend/CDialog.pm	2004-10-04 05:16:43.0 +0200
+++ libui-dialog-perl-1.08/lib/UI/Dialog/Backend/CDialog.pm	2007-07-30 05:12:56.0 +0200
@@ -84,6 +84,7 @@
 $self-{'_opts'}-{'extra-label'} = $cfg-{'extra-label'} || undef();
 $self-{'_opts'}-{'help-button'} = $cfg-{'help-button'} || 0;
 $self-{'_opts'}-{'help-label'} = $cfg-{'help-label'} || undef();
+$self-{'_opts'}-{'insecure'} = $cfg-{'insecure'} || 0;
 $self-{'_opts'}-{'max-input'} = $cfg-{'max-input'} || 0;
 $self-{'_opts'}-{'no-cancel'} = $cfg-{'no-cancel'} || $cfg-{'nocancel'} || 0;
 $self-{'_opts'}-{'no-collapse'} = $cfg-{'no-collapse'} || 0;
@@ -176,6 +177,7 @@
 		$cmnd .= ' --extra-label '.$args-{'extra-label'}.'' unless not $args-{'extra-label'};
 		$cmnd .= ' --help-button' unless not $args-{'help-button'} and not $args-{'help-label'};
 		$cmnd .= ' --help-label '.$args-{'help-label'}.'' unless not $args-{'help-label'};
+		$cmnd .= ' --insecure' if $args-{'insecure'};
 		$cmnd .= ' --max-input '.$args-{'max-input'}.'' unless not $args-{'max-input'};
 		$cmnd .= ' --no-cancel' unless not $args-{'nocancel'} and not $args-{'no-cancel'};
 		$cmnd .= ' --no-collapse' unless not $args-{'no-collapse'} and not $args-{'literal'};


Bug#427643: Please reassign this bug as critical

2007-07-05 Thread michiel

Hello,

I did an update on my system and suddenly I had an unbootable system for 
hours before I figured out how to solve this (thx to this bugreport; 
mkdir -p vs mkdir).


My rootpartition is on lvm so it will happen to everybody who has that.

Thanks!

Michiel


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



Bug#428150: amule will not start, due to Illegal instruction

2007-06-29 Thread michiel
Works for me! Thanx a lot for your quick response!!

Michiel


On Fri, 2007-06-29 at 18:17 +0200, Adeodato Simó wrote:
 * Anders Lagerås [Sat, 09 Jun 2007 13:46:16 +0200]:
 
  When trying to start
  localhost:~$ amule
  Illegal instruction
 
 * michiel [Thu, 28 Jun 2007 22:34:11 +0200]:
 
  BOETZ-download:~# amuled
  Illegal instruction
 
 Hello guys.
 
 I can't reproduce this problem, but michiel gave me a hint as to what
 could the problem be:
 
  BOETZ-download:~# cat /proc/cpuinfo 
  model name  : Pentium II (Klamath)
 
 Anders, do you run amule on a Pentium II system as well (or similar)?
 
 I suspect the problem to be in libcrypto++, which may be compiled with
 optimization flags not suitable for PII. I've prepared a new version
 which does not use those flags, could you both please install this
 version and report if amule works now? Thanks.
 
 The package to install is:
 
   
 http://people.debian.org/~adeodato/tmp/2007-06-29/libcrypto++/libcrypto++6_5.5-2.1_i386.deb
  
 
 Please report back.
 




Bug#428150: I have the problem too

2007-06-28 Thread michiel
BOETZ-download:~# amuled
Illegal instruction

* latest unstable (dd 28-6)

BOETZ-download:~# cat /proc/cpuinfo 
processor   : 0
vendor_id   : GenuineIntel
cpu family  : 6
model   : 3
model name  : Pentium II (Klamath)
stepping: 4
cpu MHz : 233.868
cache size  : 512 KB
fdiv_bug: no
hlt_bug : no
f00f_bug: no
coma_bug: no
fpu : yes
fpu_exception   : yes
cpuid level : 2
wp  : yes
flags   : fpu vme de pse tsc msr pae mce cx8 sep mtrr pge mca
cmov mmx up
bogomips: 468.67
clflush size: 32

BOETZ-download:~# uname -r
2.6.21-2-686

BOETZ-download:~# dpkg -l | grep amule
ii  amule-common  2.1.3-3
common files for the rest of aMule packages
ii  amule-daemon  2.1.3-3+b1
non-graphic version of aMule, a client for t

BOETZ-download:~# strace amuled
execve(/usr/bin/amuled, [amuled], [/* 15 vars */]) = 0
brk(0)  = 0x83d5000
uname({sys=Linux, node=BOETZ-download, ...}) = 0
access(/etc/ld.so.nohwcap, F_OK)  = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1,
0) = 0xb7fc6000
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=18420, ...}) = 0
mmap2(NULL, 18420, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb7fc1000
close(3)= 0
access(/etc/ld.so.nohwcap, F_OK)  = 0
open(/lib/libpthread.so.0, O_RDONLY)  = 3
read(3, \177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0`G\0\000...,
512) = 512
fstat64(3, {st_mode=S_IFREG|0755, st_size=107995, ...}) = 0
mmap2(NULL, 90592, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0)
= 0xb7faa000
mmap2(0xb7fbd000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|
MAP_DENYWRITE, 3, 0x12) = 0xb7fbd000
mmap2(0xb7fbf000, 4576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|
MAP_ANONYMOUS, -1, 0) = 0xb7fbf000
close(3)= 0
access(/etc/ld.so.nohwcap, F_OK)  = 0
open(/usr/lib/libz.so.1, O_RDONLY)= 3
read(3, \177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\240\30...,
512) = 512
fstat64(3, {st_mode=S_IFREG|0644, st_size=80180, ...}) = 0
mmap2(NULL, 82908, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0)
= 0xb7f95000
mmap2(0xb7fa9000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|
MAP_DENYWRITE, 3, 0x13) = 0xb7fa9000
close(3)= 0
access(/etc/ld.so.nohwcap, F_OK)  = 0
open(/usr/lib/libcrypto++.so.6, O_RDONLY) = 3
read(3, \177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\`\33...,
512) = 512
fstat64(3, {st_mode=S_IFREG|0644, st_size=4161888, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1,
0) = 0xb7f94000
mmap2(NULL, 4174412, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3,
0) = 0xb7b98000
mmap2(0xb7f5a000, 225280, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|
MAP_DENYWRITE, 3, 0x3c1) = 0xb7f5a000
mmap2(0xb7f91000, 8780, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|
MAP_ANONYMOUS, -1, 0) = 0xb7f91000
close(3)= 0
access(/etc/ld.so.nohwcap, F_OK)  = 0
open(/usr/lib/libwx_baseu_net-2.6.so.0, O_RDONLY) = 3
read(3, \177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0P\346\0...,
512) = 512
fstat64(3, {st_mode=S_IFREG|0644, st_size=174400, ...}) = 0
mmap2(NULL, 173924, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3,
0) = 0xb7b6d000
mmap2(0xb7b96000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|
MAP_DENYWRITE, 3, 0x29) = 0xb7b96000
close(3)= 0
access(/etc/ld.so.nohwcap, F_OK)  = 0
open(/usr/lib/libwx_baseu-2.6.so.0, O_RDONLY) = 3
read(3, \177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\220\304...,
512) = 512
fstat64(3, {st_mode=S_IFREG|0644, st_size=1164992, ...}) = 0
mmap2(NULL, 1222000, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3,
0) = 0xb7a42000
mmap2(0xb7b58000, 32768, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|
MAP_DENYWRITE, 3, 0x115) = 0xb7b58000
mmap2(0xb7b6, 50544, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|
MAP_ANONYMOUS, -1, 0) = 0xb7b6
close(3)= 0
access(/etc/ld.so.nohwcap, F_OK)  = 0
open(/usr/lib/libstdc++.so.6, O_RDONLY) = 3
read(3, \177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\340$\4...,
512) = 512
fstat64(3, {st_mode=S_IFREG|0644, st_size=925480, ...}) = 0
mmap2(NULL, 951948, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3,
0) = 0xb7959000
mmap2(0xb7a37000, 20480, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|
MAP_DENYWRITE, 3, 0xdd) = 0xb7a37000
mmap2(0xb7a3c000, 22156, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|
MAP_ANONYMOUS, -1, 0) = 0xb7a3c000
close(3)= 0
access(/etc/ld.so.nohwcap, F_OK)  = 0
open(/lib/libm.so.6, O_RDONLY)= 3
read(3, \177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0P4\0\000...,
512) = 512
fstat64(3, {st_mode=S_IFREG|0644, st_size=153424, ...}) = 0

Bug#172702: site If does

2007-04-03 Thread Michiel Keeton
boost sales done button no
http://img444.imageshack.us/my.php?image=opik7.png
Best Forex Trading How Massive



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



Bug#222020: crows since God

2007-04-03 Thread Michiel Leysen
dealt additional stylesheet inclusion
http://img444.imageshack.us/my.php?image=w7xp5.png
Avant Anderson Che groups wearing improved rendering



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



Bug#399423: lastfm: Lastfm uses more and more memory

2006-11-19 Thread Wouter Michiel Koolen-Wijkstra
Package: lastfm
Version: 1.1.90-4
Severity: normal


When I use lastfm continuously, it slowly eats more and more memory. After ca. 
3 hours, my 
machine (512MB ram) needs to start using swap memory. Today after 8 hours of 
continuous use I 
observed the follwing line using 'top'
  PID USER  PR  NI  VIRT  RES  SHR S %CPU %MEMTIME+  COMMAND
20965 wouter15   0  564m 211m 9472 S6 41.8   8:02.90 lastfm

I have configured lastfm to use OSS, and use the artsdsp wrapper to play via 
aRts, in order 
to be able to use the alsa dmix plugin.

Kind regards,

Wouter Koolen-Wijkstra



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

Versions of packages lastfm depends on:
ii  gconf2   2.16.0-2GNOME configuration database syste
ii  libasound2   1.0.13-1ALSA library
ii  libaudio21.8-2   The Network Audio System (NAS). (s
ii  libc62.3.6.ds1-7 GNU C Library: Shared libraries
ii  libfontconfig1   2.4.1-2 generic font configuration library
ii  libfreetype6 2.2.1-5 FreeType 2 font engine, shared lib
ii  libgcc1  1:4.1.1-19  GCC support library
ii  libglib2.0-0 2.12.4-1The GLib library of C routines
ii  libice6  1:1.0.1-2   X11 Inter-Client Exchange library
ii  libpng12-0   1.2.8rel-7  PNG library - runtime
ii  libqt4-core  4.2.1-2 Qt 4 core non-GUI functionality ru
ii  libqt4-gui   4.2.1-2 Qt 4 core GUI functionality runtim
ii  libsamplerate0   0.1.2-2 audio rate conversion library
ii  libsm6   1:1.0.1-3   X11 Session Management library
ii  libstdc++6   4.1.1-19The GNU Standard C++ Library v3
ii  libx11-6 2:1.0.3-3   X11 client-side library
ii  libxcursor1  1.1.7-4 X cursor management library
ii  libxext6 1:1.0.1-2   X11 miscellaneous extension librar
ii  libxfixes3   1:4.0.1-4   X11 miscellaneous 'fixes' extensio
ii  libxinerama1 1:1.0.1-4.1 X11 Xinerama extension library
ii  libxrandr2   2:1.1.0.2-4 X11 RandR extension library
ii  libxrender1  1:0.9.1-3   X Rendering Extension client libra
ii  libxt6   1:1.0.2-2   X11 toolkit intrinsics library
ii  zlib1g   1:1.2.3-13  compression library - runtime

Versions of packages lastfm recommends:
ii  epiphany-browser [www 2.14.3-3   Intuitive GNOME web browser
ii  firefox [www-browser] 1.5.dfsg+1.5.0.7-2 lightweight web browser based on M
ii  galeon [www-browser]  2.0.2-3GNOME web browser for advanced use
ii  konqueror [www-browse 4:3.5.5a.dfsg.1-1  KDE's advanced file manager, web b
ii  lynx [www-browser]2.8.5-2sarge2.1Text-mode WWW Browser
ii  mozilla-browser [www- 2:1.7.13-0.3   The Mozilla Internet application s
ii  w3m [www-browser] 0.5.1-5WWW browsable pager with excellent

-- no debconf information


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



Bug#387400: librra0-tools: rra-appointment-from-vevent segfaults on supposedly valid VEVENT

2006-09-14 Thread Wouter Michiel Koolen-Wijkstra
Package: librra0-tools
Version: 0.9.1-1
Severity: normal


The attached VEVENT file causes rra-appointment-from-vevent to segfault. This 
VEVENT file was obtained 
using the synchronization command of the raki program, which comes with the 
synce-kde package. I think 
that raki uses librra0 internally. My handheld is a Compaq Aero 1520 
palm-size-pc running windows ce 2.11.

Kind regards,

Wouter Koolen-Wijkstra



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

Versions of packages librra0-tools depends on:
ii  libc62.3.6.ds1-4 GNU C Library: Shared libraries
ii  libmimedir0 [libmimedir] 0.4-4   A library to parse RFC 2425 Direct
ii  librapi2 0.9.1-2 Make RAPI calls to a WinCE device,
ii  librra0  0.9.1-1 Library to deal with synchronisati
ii  libsynce00.9.1-2 A helper library for synce, a tool

librra0-tools recommends no packages.

-- no debconf information
BEGIN:VEVENT
DTSTAMP:20060914T054742Z
ORGANIZER:MAILTO:
CREATED:20060911T084228Z
UID:RRA-ID-00030c90
SEQUENCE:0
LAST-MODIFIED:20060911T084228Z
SUMMARY:First 5 exercises
CLASS:PUBLIC
PRIORITY:5
DTSTART:20060915T13Z
DTEND:20060915T16Z
TRANSP:OPAQUE
BEGIN:VALARM
DESCRIPTION:
ACTION:DISPLAY
TRIGGER;VALUE=DURATION:-PT15M
END:VALARM

END:VEVENT


Bug#385136: kcemirror: installs invalid screensnap.exe on compaq aero 1520

2006-08-29 Thread Wouter Michiel Koolen-Wijkstra
Package: kcemirror
Version: 0.1.5-1
Severity: normal


When running kcemirror, screensnap.exe is installed on the pda, which is a 
compaq aero 1500 
mips r4000 running windows CE 2.11. The executable can not be executed however, 
and the error 
message is not informative. I managed to install screensnap 4.0 myself from the 
cab file that 
can be found in the installer at 
http://www.pocketpcfaq.com/developerone/devonescreensnap4setup.exe. I had to 
choose the MIPS 
pro version, hpc and ppc do not work. The cab file installation installs files 
into Program 
Files. I copied screensnap.exe from there to the Windows directory (where 
kcemirror places 
the executable) with no result. kcemirror outputs:
[CeGetSystemInfo:105] last_error = 0
[CeCreateProcess:37] last_error = 0
[CeCreateProcess:39] result = 1

Kind regards,

Wouter


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

Versions of packages kcemirror depends on:
ii  kdelibs4c2a 4:3.5.4-3core libraries and binaries for al
ii  libacl1 2.2.41-1 Access control list shared library
ii  libart-2.0-22.3.17-1 Library of functions for 2D graphi
ii  libattr12.4.32-1 Extended attribute shared library
ii  libaudio2   1.8-2The Network Audio System (NAS). (s
ii  libc6   2.3.6-15 GNU C Library: Shared libraries
ii  libfam0 2.7.0-10 Client library to control the FAM 
ii  libfontconfig1  2.3.2-7  generic font configuration library
ii  libfreetype62.2.1-2  FreeType 2 font engine, shared lib
ii  libgcc1 1:4.1.1-5GCC support library
ii  libice6 1:1.0.0-3X11 Inter-Client Exchange library
ii  libidn110.6.5-1  GNU libidn library, implementation
ii  libjpeg62   6b-13The Independent JPEG Group's JPEG 
ii  libpng12-0  1.2.8rel-5.2 PNG library - runtime
ii  libqt3-mt   3:3.3.6-2Qt GUI Library (Threaded runtime v
ii  librapi20.9.1-2  Make RAPI calls to a WinCE device,
ii  libsm6  1:1.0.0-4X11 Session Management library
ii  libstdc++6  4.1.1-5  The GNU Standard C++ Library v3
ii  libsynce0   0.9.1-2  A helper library for synce, a tool
ii  libx11-62:1.0.0-8X11 client-side library
ii  libxcursor1 1.1.5.2-5X cursor management library
ii  libxext61:1.0.0-4X11 miscellaneous extension librar
ii  libxft2 2.1.8.2-8FreeType-based font drawing librar
ii  libxi6  1:1.0.0-5X11 Input extension library
ii  libxinerama11:1.0.1-4.1  X11 Xinerama extension library
ii  libxrandr2  2:1.1.0.2-4  X11 RandR extension library
ii  libxrender1 1:0.9.0.2-4  X Rendering Extension client libra
ii  libxt6  1:1.0.0-5X11 toolkit intrinsics library
ii  zlib1g  1:1.2.3-13   compression library - runtime

kcemirror recommends no packages.

-- no debconf information


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



Bug#333855: zope2.8: Fails to unregister logrotate

2005-10-14 Thread Wouter Michiel Koolen-Wijkstra
Package: zope2.8
Version: 2.8.1-5
Severity: normal


After I uninstalled zope2.8, I get the following from anacron:
/etc/cron.daily/logrotate:
error: error accessing /var/log/zope2.8: No such file or directory
error: zope2.8:3 glob failed for /var/log/zope2.8/*/Z2.log
run-parts: /etc/cron.daily/logrotate exited with return code 1

I am not really sure wether this is logrotate or zope's problem.

Kind regards,

Wouter Koolen-Wijkstra

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

Versions of packages zope2.8 depends on:
ii  debconf  1.4.58  Debian configuration management sy
ii  dpkg 1.13.11.0.1 package maintenance system for Deb
ii  libc62.3.5-6 GNU C Library: Shared libraries an
ii  lsb-base 3.0-9   Linux Standard Base 3.0 init scrip
ii  python2.32.3.5-8 An interactive high-level object-o
ii  python2.3-xml0.8.4-1 XML tools for Python (2.3.x)
pn  zope-common  none  (no description available)

zope2.8 recommends no packages.


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



Bug#327572: not exactly

2005-09-15 Thread Wouter Michiel Koolen-Wijkstra

Dear Hamish Moffatt,

I think you misunderstood the bug report by Mahesh T. Pai.

When xpdf starts, its window has a certain size (say 600x800 px). The 
content of the document is shown in this size too. When you maximize the 
window (say to 1600x1200), the document is still shown in the original 
600x800 rectangle, and the extra space is grayed out.


Now when you zoom the document (for example, by pressing 'w' or 
shift-'+'), the displayed document enlarges, but it remains cropped to 
the 600x800 region. (As Mahesh T. Pai indicated, the scrollbars adapt 
correctly and allow you to see the whole document.) It is not the case 
(as you understood it) that we zoom the document first and then desire 
the window to adapt, it is the other way around.


So this is indeed a very important, even critical bug, as it renders the 
xpdf viewer practically unusable.


Wouter Koolen-Wijkstra


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



Bug#327572: xpdf-reader: not exactly

2005-09-15 Thread Wouter Michiel Koolen-Wijkstra
Package: xpdf-reader
Version: 3.01-1
Followup-For: Bug #327572


Dear Hamish Moffatt,

I think you misunderstood the bug report by Mahesh T. Pai.

When xpdf starts, its window has a certain size (say 600x800 px). The
content of the document is shown in this size too. When you maximize the
window (say to 1600x1200), the document is still shown in the original
600x800 rectangle, and the extra space is grayed out.

Now when you zoom the document (for example, by pressing 'w' or
shift-'+'), the displayed document enlarges, but it remains cropped to
the 600x800 region. (As Mahesh T. Pai indicated, the scrollbars adapt
correctly and allow you to see the whole document.) It is not the case
(as you understood it) that we zoom the document first and then desire
the window to adapt, it is the other way around.

So this is indeed a very important, even critical bug, as it renders the
xpdf viewer practically unusable.

Wouter Koolen-Wijkstra


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

Versions of packages xpdf-reader depends on:
ii  gsfonts   8.14+v8.11+urw-0.2 Fonts for the Ghostscript interpre
ii  lesstif2  1:0.93.94-11.4 OSF/Motif 2.1 implementation relea
ii  libc6 2.3.5-6GNU C Library: Shared libraries an
ii  libfreetype6  2.1.7-2.4  FreeType 2 font engine, shared lib
ii  libgcc1   1:4.0.1-2  GCC support library
ii  libice6   6.8.2.dfsg.1-6 Inter-Client Exchange library
ii  libpaper1 1.1.14-3   Library for handling paper charact
ii  libsm66.8.2.dfsg.1-6 X Window System Session Management
ii  libstdc++64.0.1-2The GNU Standard C++ Library v3
ii  libt1-5   5.1.0-2Type 1 font rasterizer library - r
ii  libx11-6  6.8.2.dfsg.1-6 X Window System protocol client li
ii  libxext6  6.8.2.dfsg.1-6 X Window System miscellaneous exte
ii  libxp66.8.2.dfsg.1-6 X Window System printing extension
ii  libxpm4   6.8.2.dfsg.1-6 X pixmap library
ii  libxt66.8.2.dfsg.1-6 X Toolkit Intrinsics
ii  xlibs 6.8.2.dfsg.1-6 X Window System client libraries m
ii  xpdf-common   3.01-1 Portable Document Format (PDF) sui
ii  zlib1g1:1.2.2-4  compression library - runtime

xpdf-reader recommends no packages.

-- no debconf information


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



Bug#312799: droidbattles: inflexible w.r.t. themed fonts/widgets

2005-06-10 Thread Wouter Michiel Koolen-Wijkstra
Package: droidbattles
Version: 1.0.6-3
Severity: normal


I use gtk2-engines-gtk-qt to display gtk widgets using qt. Droidbattles
does not adapt to these different widget/font sizes, and is only barely
usable because of this. I can not read most text, simply because there
is another widget drawn over it. The editor works fine though...

Thanks,

Wouter


-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.8wouter-6
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages droidbattles depends on:
ii  libaudio21.7-2   The Network Audio System (NAS). (s
ii  libc62.3.2.ds1-22GNU C Library: Shared libraries an
ii  libfontconfig1   2.3.2-1 generic font configuration library
ii  libfreetype6 2.1.7-2.4   FreeType 2 font engine, shared lib
ii  libgcc1  1:3.4.3-13  GCC support library
ii  libice6  4.3.0.dfsg.1-14 Inter-Client Exchange library
ii  libpng12-0   1.2.8rel-1  PNG library - runtime
ii  libqt3c102-mt3:3.3.4-3   Qt GUI Library (Threaded runtime v
ii  libsm6   4.3.0.dfsg.1-14 X Window System Session Management
ii  libstdc++5   1:3.3.5-13  The GNU Standard C++ Library v3
ii  libx11-6 4.3.0.dfsg.1-14 X Window System protocol client li
ii  libxcursor1  1.1.3-1 X cursor management library
ii  libxext6 4.3.0.dfsg.1-14 X Window System miscellaneous exte
ii  libxft2  2.1.7-1 FreeType-based font drawing librar
ii  libxrandr2   4.3.0.dfsg.1-14 X Window System Resize, Rotate and
ii  libxrender1  1:0.8.3-1   X Rendering Extension client libra
ii  libxt6   4.3.0.dfsg.1-14 X Toolkit Intrinsics
ii  xlibs4.3.0.dfsg.1-14 X Keyboard Extension (XKB) configu
ii  zlib1g   1:1.2.2-4   compression library - runtime

-- no debconf information


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



Bug#301275: Requested proftpd.conf file

2005-03-26 Thread Michiel Brandenburg
Frankie,
Als per request the proftd.conf file on one of the machines.  If I can 
help with other requests please let me know.

--
Michiel Brandenburg


proftpd.conf.gz
Description: GNU Zip compressed data


Bug#301275: proftpd: dies with sig11 due to mod_delay breaking it's data file

2005-03-24 Thread Michiel Brandenburg
Package: proftpd
Version: 1.2.10-10
Severity: important

Hi,
I have had several machines now ( identical setups ) that have had their 
proftpd 
die with signal 11.  Proftpd will start ( standalone or via inetd ) with no 
detectable problem.  Upon a connect it will product the banner and the login
prompt.  Typing any username ( correct or incorrect ) will cause the server
to crash with signal 11 giving a comment that the server hung up.

I have traced the problem to mod_delay. A quick workaround is to stop the server
and remove the following file: /var/run/proftpd/proftpd.delay. 
Then restart and problems are gone.  Although I have no idea how this happened
as no unusual activity has occured at any server in question.

I have some of the broken files archived here:
http://down.xepa.nl/proftpd/proftpd.delay.serv1-broken
http://down.xepa.nl/proftpd/proftpd.delay.tandjes-broken

Yours truly,
Michiel Brandenburg

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (777, 'testing'), (333, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.7
Locale: LANG=nl_NL, LC_CTYPE=nl_NL (charmap=ISO-8859-1)

Versions of packages proftpd depends on:
ii  adduser 3.63 Add and remove users and groups
ii  debconf 1.4.30.11Debian configuration management sy
ii  libc6   2.3.2.ds1-20 GNU C Library: Shared libraries an
ii  libcap1 1:1.10-14support for getting/setting POSIX.
ii  libpam0g0.76-22  Pluggable Authentication Modules l
ii  libssl0.9.7 0.9.7e-2 SSL shared libraries
ii  libwrap07.6.dbs-6Wietse Venema's TCP wrappers libra
ii  netbase 4.20 Basic TCP/IP networking system
ii  proftpd-common  1.2.10-10Versatile, virtual-hosting FTP dae
ii  ucf 1.14 Update Configuration File: preserv

-- debconf information:
* shared/proftpd/warning:
* shared/proftpd/inetd_or_standalone: inetd


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



Bug#295370: mozilla-calendar: Recurring events not in sort order

2005-02-15 Thread Wouter Michiel Koolen-Wijkstra
Package: mozilla-calendar
Version: 2:1.7.5-1
Severity: normal


Dear maintainer,

In the mozilla-calendar event list (top right of display), the recurring
events are shown only once. This is already strange. Even stranger is
the fact that when the events are sorted on start time, the recurring
events are sorted on their first occurrence, while the start time
displayed is their next occurrence (At least when in Events next ...
display mode, which is selectable from the top of the event list view).
This is totally unexpected, and incorrect due to my opinion. There are
two possibile solutions
- show repeating events as many times as necessary, each in the right
  place in sort order
- show the repeating events only once, but when in Events next ...
  mode, sort them on their next occurrence, not on their first
  occurrence.
I personally prefer the first solution, as it is much more transparent
and clean.

Thanks,

Wouter


-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.8wouter-2
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages mozilla-calendar depends on:
ii  mozilla-browser   2:1.7.5-1  The Mozilla Internet application s

-- no debconf information


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



Bug#295063: mail-notification: New mail icon does not appear

2005-02-13 Thread Wouter Michiel Koolen-Wijkstra
Package: mail-notification
Version: 1.0-3
Severity: important



When new mail is detected, the new-mail program is run by
mail-notification. But the new mail icon does not appear in the system
tray. When resizing the system tray, the icon becomes visible. I think
it is a question of refreshing the window, or maybe setting the size
correctly. When starting out with new mail in the inbox, the icon does
apperar. When the mail is read however, the icon dissapears and  it does 
not show on new mail.

Thanks,

Wouter

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.8wouter-2
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages mail-notification depends on:
ii  gconf2   2.8.1-4 GNOME configuration database syste
ii  libart-2.0-2 2.3.17-1Library of functions for 2D graphi
ii  libatk1.0-0  1.8.0-4 The ATK accessibility toolkit
ii  libbonobo2-0 2.8.0-4 Bonobo CORBA interfaces library
ii  libbonoboui2-0   2.8.0-2 The Bonobo UI library
ii  libc62.3.2.ds1-20GNU C Library: Shared libraries an
ii  libeel2-22.8.2-1 Eazel Extensions Library (for GNOM
ii  libgail-common   1.8.2-1 GNOME Accessibility Implementation
ii  libgail171.8.2-1 GNOME Accessibility Implementation
ii  libgconf2-4  2.8.1-4 GNOME configuration database syste
ii  libglade2-0  1:2.4.1-2   library to load .glade files at ru
ii  libglib2.0-0 2.6.1-3 The GLib library of C routines
ii  libgmime2.1  2.1.10-1MIME library, unstable version
ii  libgnome2-0  2.8.0-6 The GNOME 2 library - runtime file
ii  libgnomecanvas2-02.8.0-1 A powerful object-oriented display
ii  libgnomeui-0 2.8.0-3 The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0   2.8.3-11The GNOME virtual file-system libr
ii  libgnutls11  1.0.16-9GNU TLS library - runtime library
ii  libgtk2.0-0  2.4.14-2The GTK+ graphical user interface 
ii  libice6  4.3.0.dfsg.1-10 Inter-Client Exchange library
ii  liborbit21:2.10.2-1.1libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-01.8.0-3 Layout and rendering of internatio
ii  libpopt0 1.7-5   lib for parsing cmdline parameters
ii  libsasl2 2.1.19-1.5  Authentication abstraction library
ii  libsm6   4.3.0.dfsg.1-10 X Window System Session Management
ii  libsoup2.2-7 2.2.1-1 an HTTP library implementation in 
ii  libx11-6 4.3.0.dfsg.1-10 X Window System protocol client li
ii  libxml2  2.6.11-5GNOME XML library
ii  xlibs4.3.0.dfsg.1-10 X Keyboard Extension (XKB) configu
ii  zlib1g   1:1.2.2-3   compression library - runtime

-- no debconf information


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



Bug#293454: qjackctl: Display does not resize with font

2005-02-03 Thread Wouter Michiel Koolen-Wijkstra
Package: qjackctl
Version: 0.2.12-1
Severity: minor



The qjackctl display (the black glassy window in the middle of the UI)
does not resize with the font size. The default setting of 12pt shows up 
cluttered and overlapped on my window (135x126 dpi). Resetting it to 10pt does 
work. It seems funny to offer a font selection dialog (specifically for this 
display), when it cannot be properly handled.

Thanks,

Wouter Koolen-Wijkstra

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.8-2-k7-smp
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages qjackctl depends on:
ii  libasound2   1.0.8-1 ALSA library
ii  libc62.3.2.ds1-20GNU C Library: Shared libraries an
ii  libgcc1  1:3.4.3-6   GCC support library
ii  libjack0.80.0-0  0.99.0-2JACK Audio Connection Kit (librari
ii  libqt3c102-mt3:3.3.3-8   Qt GUI Library (Threaded runtime v
ii  libstdc++5   1:3.3.5-5   The GNU Standard C++ Library v3
ii  libx11-6 4.3.0.dfsg.1-10 X Window System protocol client li
ii  libxext6 4.3.0.dfsg.1-10 X Window System miscellaneous exte
ii  xlibs4.3.0.dfsg.1-10 X Keyboard Extension (XKB) configu

-- no debconf information


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



Bug#293145: mozilla-calendar: Please add mozilla -calendar startup option

2005-02-01 Thread Wouter Michiel Koolen-Wijkstra
Package: mozilla-calendar
Version: 2:1.7.5-1
Severity: wishlist


Please add a mozilla -calendar option to the mozilla startup script that works 
like mozilla -mail, such
that a running mozilla (if there is one) is used to start the calendar. 
Currently the
Mozilla Profile Manager pops up, and tells us that a running copy of mozilla
is blocking the default user. This is quite inconvenient.

Thanks,

Wouter Koolen-Wijkstra

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.8-2-k7-smp
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages mozilla-calendar depends on:
ii  mozilla-browser   2:1.7.5-1  The Mozilla Internet application s

-- no debconf information


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



Bug#292873: 3ddesktop: goto[bla] command line options with mode=flip do not exit

2005-01-30 Thread Wouter Michiel Koolen-Wijkstra
Package: 3ddesktop
Version: 0.2.7-1
Severity: normal


When mode=flip, 3ddesk --goto[bla] only returns when switching to an odd
numbered desktop. (I have only tested this with 4 desktops in KDE). When
switching to an even numbered desktop, the program keeps focus, like on
a normal (goto-less) invocation.

This does not happen in the other modes.

Kind regards,

Wouter Koolen-Wijkstra

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.10-1-k7-smp
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages 3ddesktop depends on:
ii  freeglut32.2.0-8 OpenGL Utility Toolkit
ii  libc62.3.2.ds1-20GNU C Library: Shared libraries an
ii  libfreetype6 2.1.7-2.3   FreeType 2 font engine, shared lib
ii  libgcc1  1:3.4.3-6   GCC support library
ii  libice6  4.3.0.dfsg.1-10 Inter-Client Exchange library
ii  libimlib21.1.2-3 powerful image loading and renderi
ii  libsm6   4.3.0.dfsg.1-10 X Window System Session Management
ii  libstdc++5   1:3.3.5-5   The GNU Standard C++ Library v3
ii  libx11-6 4.3.0.dfsg.1-10 X Window System protocol client li
ii  libxext6 4.3.0.dfsg.1-10 X Window System miscellaneous exte
ii  libxi6   4.3.0.dfsg.1-10 X Window System Input extension li
ii  libxmu6  4.3.0.dfsg.1-10 X Window System miscellaneous util
ii  libxt6   4.3.0.dfsg.1-10 X Toolkit Intrinsics
ii  xlibmesa-gl [libgl1] 4.3.0.dfsg.1-10 Mesa 3D graphics library [XFree86]
ii  xlibmesa-glu [libglu1]   4.3.0.dfsg.1-10 Mesa OpenGL utility library [XFree
ii  xlibs4.3.0.dfsg.1-10 X Keyboard Extension (XKB) configu
ii  zlib1g   1:1.2.2-3   compression library - runtime

-- no debconf information


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



Bug#292873: 3ddesktop: problem is related to zoom option

2005-01-30 Thread Wouter Michiel Koolen-Wijkstra
Package: 3ddesktop
Version: 0.2.7-1
Followup-For: Bug #292873


The problem described above is related to the 'zoom' option. It only
occurs when zoom is off, which is by default the case only for the flip
mode.

Kind regards,

Wouter Koolen-Wijkstra


-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.10-1-k7-smp
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages 3ddesktop depends on:
ii  freeglut32.2.0-8 OpenGL Utility Toolkit
ii  libc62.3.2.ds1-20GNU C Library: Shared libraries an
ii  libfreetype6 2.1.7-2.3   FreeType 2 font engine, shared lib
ii  libgcc1  1:3.4.3-6   GCC support library
ii  libice6  4.3.0.dfsg.1-10 Inter-Client Exchange library
ii  libimlib21.1.2-3 powerful image loading and renderi
ii  libsm6   4.3.0.dfsg.1-10 X Window System Session Management
ii  libstdc++5   1:3.3.5-5   The GNU Standard C++ Library v3
ii  libx11-6 4.3.0.dfsg.1-10 X Window System protocol client li
ii  libxext6 4.3.0.dfsg.1-10 X Window System miscellaneous exte
ii  libxi6   4.3.0.dfsg.1-10 X Window System Input extension li
ii  libxmu6  4.3.0.dfsg.1-10 X Window System miscellaneous util
ii  libxt6   4.3.0.dfsg.1-10 X Toolkit Intrinsics
ii  xlibmesa-gl [libgl1] 4.3.0.dfsg.1-10 Mesa 3D graphics library [XFree86]
ii  xlibmesa-glu [libglu1]   4.3.0.dfsg.1-10 Mesa OpenGL utility library [XFree
ii  xlibs4.3.0.dfsg.1-10 X Keyboard Extension (XKB) configu
ii  zlib1g   1:1.2.2-3   compression library - runtime

-- no debconf information


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