Bug#254243: Patch for netstat to prevent chopping IPv6 addresses

2008-11-11 Thread martin f krafft
tags 254243 patch
thanks

@Phil, net-tools upstream: here is a patch proposal for netstat, you
can find information and the discussion leading up to it here:
  http://bugs.debian.org/254243
If you could acknowledge that you like the solution and want to
integrate it into netstat, then we could try to push it into our
forthcoming stable release, which has IPv6 as a release goal.

@Luk, Debian release team: I'd appreciate a short note whether this
is NMU-able and potentially could become part of lenny.



also sprach Luar Roji [EMAIL PROTECTED] [2008.11.11.0837 +0100]:
 Well, I've finally done it!
[...]
 The URL is: http://roji.net/net-tools-files.tar.gz

Hi Luar, this is *really good* work. The patch is minimal and
non-intrusive, I wish more people would work like you. Don't worry
about taking a bit longer, we all have our lives to live. It's the
result in the end which counts. And yours is great.

I've tried the new package and I've created a patch as follows, and
also added the patch tag to the bug report (this email is BCC'd to
[EMAIL PROTECTED]).

Let's hope upstream/Phil likes it as much as I do. I'll wait for his
word before I upload an NMU.


$ debdiff net-tools_1.60-21.dsc net-tools_1.60-21.1.dsc
diffstat for net-tools_1.60-21 net-tools_1.60-21.1

 debian/changelog |7 +++
 netstat.c|   18 +-
 2 files changed, 20 insertions(+), 5 deletions(-)

diff -u net-tools-1.60/netstat.c net-tools-1.60/netstat.c
--- net-tools-1.60/netstat.c
+++ net-tools-1.60/netstat.c
@@ -149,6 +149,7 @@
 int flag_igmp= 0;
 int flag_rom = 0;
 int flag_exp = 1;
+int flag_wide= 0;
 int flag_prg = 0;
 int flag_arg = 0;
 int flag_ver = 0;
@@ -786,16 +787,20 @@
 get_sname(htons(local_port), tcp,
 flag_not  FLAG_NUM_PORT));
 
-   if ((strlen(local_addr) + strlen(buffer))  22)
-   local_addr[22 - strlen(buffer)] = '\0';
+   if (!flag_wide) {
+   if ((strlen(local_addr) + strlen(buffer))  22)
+   local_addr[22 - strlen(buffer)] = '\0';
+   }
 
  strcat(local_addr, :);
  strcat(local_addr, buffer);
  snprintf(buffer, sizeof(buffer), %s,
 get_sname(htons(rem_port), tcp, flag_not  FLAG_NUM_PORT));
 
-   if ((strlen(rem_addr) + strlen(buffer))  22)
-   rem_addr[22 - strlen(buffer)] = '\0';
+   if (!flag_wide) {
+   if ((strlen(rem_addr) + strlen(buffer))  22)
+   rem_addr[22 - strlen(buffer)] = '\0';
+   }
 
  strcat(rem_addr, :);
  strcat(rem_addr, buffer);
@@ -1595,7 +1600,7 @@
 getroute_init();   /* Set up AF routing support */
 
 afname[0] = '\0';
-while ((i = getopt_long(argc, argv, MCFA:acdegphinNorstuVv?wxl64, 
longopts, lop)) != EOF)
+while ((i = getopt_long(argc, argv, MCFA:acdegphinNorstuWVv?wxl64, 
longopts, lop)) != EOF)
  switch (i) {
  case -1:
  break;
@@ -1639,6 +1644,9 @@
  case 'i':
  flag_int++;
  break;
+   case 'W':
+   flag_wide++;
+   break;
  case 'n':
  flag_not |= FLAG_NUM;
  break;
diff -u net-tools-1.60/debian/changelog net-tools-1.60/debian/changelog
--- net-tools-1.60/debian/changelog
+++ net-tools-1.60/debian/changelog
@@ -1,3 +1,10 @@
+net-tools (1.60-21.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Added new parameter -W to not truncate IP addresses (Closes: #254243)
+
+ -- Luar Roji [EMAIL PROTECTED]  Tue, 11 Nov 2008 05:15:42 -0200
+
 net-tools (1.60-21) unstable; urgency=low
 
   * Update maintainer to net-tools Team.

-- 
 .''`.   martin f. krafft [EMAIL PROTECTED]
: :'  :  proud Debian developer, author, administrator, and user
`. `'`   http://people.debian.org/~madduck - http://debiansystem.info
  `-  Debian - when you have better things to do than fixing systems
 
aus der kriegsschule des lebens -
 was mich nicht umbringt, macht mich härter.
 - friedrich nietzsche


digital_signature_gpg.asc
Description: Digital signature (see http://martin-krafft.net/gpg/)


Bug#505261: audit: Bashism in debian/rules

2008-11-11 Thread Michael Bienia
Package: audit
Version: 1.7.9-1
Severity: normal
Tags: patch

Hello,

your package FTBFS on Ubuntu (jaunty) as it contains some bashism in
debian/rules. Attached is a patch to fix it.

Thanks.
Michael
diff -u audit-1.7.9/debian/rules audit-1.7.9/debian/rules
--- audit-1.7.9/debian/rules
+++ audit-1.7.9/debian/rules
@@ -138,10 +138,12 @@
dh_compress
dh_fixperms
#chmod o-wx debian/auditd/usr/bin/aulastlog
-   #chmod o-wx debian/auditd/sbin/{auditctl,auditd,autrace}
+   #chmod o-wx debian/auditd/sbin/auditctl
+   #chmod o-wx debian/auditd/sbin/auditd
+   #chmod o-wx debian/auditd/sbin/autrace
#chmod 750 debian/auditd/sbin/audispd
chmod -R o-rwx debian/auditd/var/log/audit
-   chmod -R o-rwx debian/auditd/etc/audit 
debian/auditd/etc/audisp{,/plugins.d}
+   chmod -R o-rwx debian/auditd/etc/audit debian/auditd/etc/audisp 
debian/auditd/etc/audisp/plugins.d
dh_pysupport
dh_makeshlibs
dh_installdeb


Bug#405951: Misplaced toolbar icons reproduced

2008-11-11 Thread Mike Hommey
On Sat, Nov 08, 2008 at 08:06:44PM -0500, Ron Bentley wrote:
 I've confirmed what Andreas Metzler saw last year, but this time with  
 Iceape 1.1.9-1 and 1.1.12-1.

 The following should reproduce the problem:

 1.  In Edit | Preferences | Appearance | Themes, select the Classic theme.

 2.  In Edit | Preferences | Appearance, check Pictures only under  
 Show toolbars as.

 3.  Restart Iceape.  At this point, all toolbar icons are correct.

 4.  Drag the mouse across the toolbar (not clicking anything).  Now the  
 Go Forward and Reload icons are identical to the Go Back icon, and  
 the Stop icon looks just like the Print icon.

 5.  Re-position the window (just click and drag the border).  The icons  
 go back to their original, correct forms.

 This is independent of the X driver (tried it on two different  
 computers, one Intel, the other Radeon), and it's independent of  
 window manager.

Is it also independent of XAA vs. EXA ? Does it happen with the cairo
packages you can get on http://glandium.org/blog/?p=209 ?

Mike



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



Bug#499821: upgrade-reports: VIA EPIA Mini-ITX kernel 2.6.26-1-686 boot crash

2008-11-11 Thread Jerome Warnier
Are you sure your CPU is implementing the full 686 instruction set?
Some Via processors actually did not some time ago.

Did you try with a -486 or -586 kernel?




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



Bug#505262: Time missmatch in remind in calendar after synchronisation PDA with evolution

2008-11-11 Thread Radek Valášek
Package: synce
Version: 0.11.1-1

Package: opensync
Version: 0.2-22

Package: evolution
Version: 2.22.3.1-11

When i create any remind in calendar in my PDA (Pocket LOOX n500) and
try to synchronize it with PC then I get in evolution in calendar this
new remind with higher time about 1 hour. But if I create new remind
in calendar in evolution and synchronize it then I get in PDA this new
remind with right time. What is wrong?


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

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: LANG=cs_CZ.UTF-8, LC_TYPE=cs_CZ.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Radek Valášek




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



Bug#504220: setting package to libpostproc-dev libavfilter0 libavdevice52 ffmpeg-doc libavdevice-dev libavutil49 libavcodec52 libavfilter-dev libpostproc51 ffmpeg libavcodec-dev ffmpeg-debian ffmpeg-d

2008-11-11 Thread Reinhard Tartler
# Automatically generated email from bts, devscripts version 2.10.26ubuntu15
#
# ffmpeg-debian (3:0.svn20081108-2) experimental; urgency=low
#
#  * Adjust pkg-files to no longer put unnecessary dependencies in the generated
#.pc files. Closes: #504220
#

package libpostproc-dev libavfilter0 libavdevice52 ffmpeg-doc libavdevice-dev 
libavutil49 libavcodec52 libavfilter-dev libpostproc51 ffmpeg libavcodec-dev 
ffmpeg-debian ffmpeg-dbg libavformat52 libavformat-dev libswscale0 
libswscale-dev libavutil-dev
tags 504220 + pending




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



Bug#504866: opensync-plugin-moto depends on libopensync0-dev

2008-11-11 Thread Evgeni Golov
On Fri, 7 Nov 2008 23:40:13 +0100 Evgeni Golov wrote:

 (I've never worked with cdbs and simple-patchsys.)

Well, simple-patchsys is really simple, find a proper debdiff
attached :)
I've uploaded the NMU to
http://mentors.debian.net/debian/pool/main/l/libopensync-plugin-moto/libopensync-plugin-moto_0.22-1.1.dsc
Who wants to sponsor? ;)

regards
Evgeni
diff -u libopensync-plugin-moto-0.22/debian/changelog libopensync-plugin-moto-0.22/debian/changelog
--- libopensync-plugin-moto-0.22/debian/changelog
+++ libopensync-plugin-moto-0.22/debian/changelog
@@ -1,3 +1,11 @@
+libopensync-plugin-moto (0.22-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Don't call pkg-config to find out, that Debian ships its libs in
+/usr/lib. (Closes: #504866)
+
+ -- Evgeni Golov [EMAIL PROTECTED]  Fri, 07 Nov 2008 23:30:27 +0100
+
 libopensync-plugin-moto (0.22-1) unstable; urgency=low
 
   * New upstream release.
only in patch2:
unchanged:
--- libopensync-plugin-moto-0.22.orig/debian/patches/hardcode-libdir.patch
+++ libopensync-plugin-moto-0.22/debian/patches/hardcode-libdir.patch
@@ -0,0 +1,16 @@
+--- libopensync-plugin-moto-0.22.orig/mototool
 libopensync-plugin-moto-0.22/mototool
+@@ -12,11 +12,8 @@
+ except ImportError:
+ # motosync wasn't in our standard import path
+ # try looking in the opensync python plugin dir for it
+-child = popen2.Popen3('pkg-config opensync-1.0 --variable=libdir')
+-libdir = child.fromchild.readline().rstrip('\n')
+-if child.wait() != 0 or not os.path.isdir(libdir):
+-sys.stderr.write(Error: couldn't locate OpenSync library directory\n)
+-sys.exit(1)
++# hardcode libdir to /usr/lib as a workaround for #504866
++libdir = '/usr/lib'
+ sys.path.append(os.path.join(libdir, 'opensync', 'python-plugins'))
+ import motosync
+ 


pgpBfmUimxkQW.pgp
Description: PGP signature


Bug#505221: libpisock9: Fix syncing with Sony Clie SJ-22

2008-11-11 Thread Ludovic Rousseau

tags 505221 upstream
forwarded 505221 http://bugs.pilot-link.org/1956
thank

Martin Pitt a écrit :

Package: libpisock9
Version: 0.12.3-5
Tags: patch
User: [EMAIL PROTECTED]
Usertags: origin-ubuntu ubuntu-patch jaunty

Hello,

In https://launchpad.net/bugs/282491 it was reported that pilot-link
doesn't work out of the box for the Sony Clie SJ-22. A fix was
proposed upstream a while ago [1], but was unfortunately mistaken as
another fix [2] and thus not applied. I wish upstream had a proper bug
tracker...

Thanks for considering,


Forwarded upstream. Upstream _has_ a bug tracker. They use mantis.

Maybe it is possible to add pilot-link and jpilot (same bug tracker) to 
the Upstream bug report for Ubuntu page [1].


bye

[1] https://edge.launchpad.net/ubuntu/+upstreamreport

--
 Dr. Ludovic Rousseau



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



Bug#457318: netqmail_1.06-2_powerpc.changes is NEW

2008-11-11 Thread Gerrit Pape
On Mon, Sep 01, 2008 at 10:17:22PM +, Debian Installer wrote:
 (new) netqmail_1.06-2.diff.gz extra mail
 (new) netqmail_1.06-2.dsc extra mail
 (new) netqmail_1.06.orig.tar.gz extra mail
 (new) qmail-uids-gids_1.06-2_all.deb extra mail

Hi, do you have any further comments on the netqmail and related
packages, or an estimation when you get to process them?

Regards, Gerrit.



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



Bug#489058: 2.6.25-2-amd64: acpi_cpufreq won't load on Xeon E5420

2008-11-11 Thread Kevin Mitchell
Unfortunately, I'm no longer administering the system in question and
so don't have a Xeon cpu to test it out on. I still have access to the
machine, but it has been rolled back to 2.6.25 due to intermittent
soft lockups occuring in 2.6.26. I've been meaning to report these,
but I'm not sure if I really have enough useful information on what's
causing them.

Kevin

On Fri, Nov 7, 2008 at 4:13 PM, Moritz Muehlenhoff [EMAIL PROTECTED] wrote:
 On Thu, Jul 03, 2008 at 05:03:55PM +0200, maximilian attems wrote:
 On Wed, 02 Jul 2008, Kevin Mitchell wrote:

  Package: linux-image-2.6.25-2-amd64
  Version: 2.6.25-5
  Severity: normal
  File: 2.6.25-2-amd64
 
 
  I am unable to load the acpi-cpufreq module on my Xeon E5420 which uses 
  the core microarchitecture and
  as I understand it should therefore use this module for frequency scaling.
 
  #modprobe acpi-cpufreq
  FATAL: Error inserting acpi_cpufreq 
  (/lib/modules/2.6.25-2-amd64/kernel/arch/x86/kernel/cpu/cpufreq/acpi-cpufreq.ko):
   No such device
 
  I've even got /etc/init.d/loadcpufreq and /etc/init.d/cpufrequtils staring 
  in runlevel 2, but
 
  #cpufreq-info
  cpufrequtils 002: cpufreq-info (C) Dominik Brodowski 2004-2006
  Report errors and bugs to [EMAIL PROTECTED], please.
  analyzing CPU 0:
no or unknown cpufreq driver is active on this CPU
  analyzing CPU 1:
no or unknown cpufreq driver is active on this CPU
  analyzing CPU 2:
no or unknown cpufreq driver is active on this CPU
  analyzing CPU 3:
no or unknown cpufreq driver is active on this CPU
 
  Finally,

 please checkout 2.6.26-rc8 images, see trunk apt lines
 - http://wiki.debian.org/DebianKernel

 Kevin, does the error still occur with the current kernel from Lenny?

 Cheers,
Moritz




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



Bug#505252: b43-fwcutter: PHY transmission error

2008-11-11 Thread Rene Engelhard
reassign 505252 linux-image-2.6.26-1-amd64
retitle 505252 b43: PHY transmission error 
tag 505252 + moreinfo
thanks

César Muñoz A. wrote:
 Package: b43-fwcutter

No.

 I lost conection to my AP frecuently, i recently reinstall my system 
 (saturday).
 When conection lost i gotta reconnect from nm-applet.

And how is this related to be43-fwcuuter which is only the tool to extract the 
firmware?
It extracts the one which is recommended on the website and it won't change 
doing that.

For driver issues bug reports should go to the kernel. Reassigning. Tagging it 
moreinfo, too,
as I don't think the current information is sufficient to them debugging it...

(And maybe you should try without NetworkManager or the nm-applet first to be 
sure it
doesn#t interfere in sane network configuration, I've never had it to work 
sanely)

Grüße/Regards,

René
-- 
 .''`.  René Engelhard -- Debian GNU/Linux Developer
 : :' : http://www.debian.org | http://people.debian.org/~rene/
 `. `'  [EMAIL PROTECTED] | GnuPG-Key ID: 248AEB73
   `-   Fingerprint: 41FA F208 28D4 7CA5 19BB  7AD9 F859 90B0 248A EB73




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



Bug#254243: Patch for netstat to prevent chopping IPv6 addresses

2008-11-11 Thread martin f krafft
also sprach Luar Roji [EMAIL PROTECTED] [2008.11.11.0909 +0100]:
 I forgot to add a description of the flag in the help page, do you 
 want I add it?
 
 What about the manpage?

Yes, that would make sense. Also, it has been suggested to add
--wide as a synonym.

You can just recreate the diff, no need to create a new changelog
entry.

-- 
 .''`.   martin f. krafft [EMAIL PROTECTED]
: :'  :  proud Debian developer, author, administrator, and user
`. `'`   http://people.debian.org/~madduck - http://debiansystem.info
  `-  Debian - when you have better things to do than fixing systems
 
if confronted with a choice between all the truth in god's right hand
 and the ever live struggle for truth, coupled with eternal error, in
 god's left, i would choose the left.
   -- gotthold lessing


digital_signature_gpg.asc
Description: Digital signature (see http://martin-krafft.net/gpg/)


Bug#505189: Please allow tags to be added/removed in one command

2008-11-11 Thread Patrick Schoenfeld
Hi,

On Mon, Nov 10, 2008 at 01:51:59PM -0800, Don Armstrong wrote:
  Tags -1 +security -patch
 
 why not just
 
 tags -1 +security
 tags -1 -patch

well, because this variant is longer. Of course this is Okay, but if I'd
would be able to specify it in one command this would be great.
Its just that I'm one of the people who write their own mails to the
BTS and don't use bts, but I'm still lazy.

 I suppose I could alter it to allow leading +/- to do what you're
 showing (and consequently disallow them from ever being the first
 character in a tag.)

That would be great. And the consequence shouldn't be that great deal,
right?

Best Regards,
Patrick



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



Bug#505264: debdiff: --reverse option to invert the diff

2008-11-11 Thread martin f krafft
Package: devscripts
Version: 2.10.40
Severity: wishlist
File: /usr/bin/debdiff

When preparing an NMU, I often find myself wanting to do

  debdiff *.dsc

in the temporary directory I use. Unfortunately, this will output
a reverse diff, since

  piper:~|master|.tmp/cdt.OjGXfwnN% ls *.dsc
   #10041
  net-tools_1.60-21.1.dsc  net-tools_1.60-21.dsc

'1' sorts before 'd'. It would be nice to be able to pass --reverse
to debdiff, or set DEBDIFF_REVERSE=yes, to cause it to switch the
two inputs.

It might also be worth to investigate whether it couldn't auto-sort
them; the version numbers are clearly identifiable, and dpkg
--compare-versions does the work...

Cheers,

-- Package-specific info:

--- /etc/devscripts.conf ---

--- ~/.devscripts ---
DEBSIGN_KEYID=$DEBKEYID
DEBCOMMIT_RELEASE_USE_CHANGELOG=yes
DEBCHANGE_MULTIMAINT_MERGE=yes
DEBCHANGE_MAINTTRAILER=yes
BTS_CACHE_MODE=mbox
BTS_INCLUDE_RESOLVED=no
BTS_SUPPRESS_ACKS=yes
DEBUILD_LINTIAN=yes
DEBUILD_LINTIAN_OPTS=-i
DEBDIFF_SHOW_DIFFSTAT=yes

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

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

Versions of packages devscripts depends on:
ii  dpkg-dev  1.14.22Debian package development tools
ii  libc6 2.7-16 GNU C Library: Shared libraries
ii  perl  5.10.0-17  Larry Wall's Practical Extraction 

Versions of packages devscripts recommends:
ii  at 3.1.10.2  Delayed job execution and batch pr
ii  bsd-mailx [mailx]  8.1.2-0.20071201cvs-3 A simple mail user agent
ii  bzr1.5-1.1   easy to use distributed version co
ii  curl   7.18.2-7  Get a file from an HTTP, HTTPS or 
ii  cvs1:1.12.13-12  Concurrent Versions System
ii  dctrl-tools2.13.0Command-line tools to process Debi
ii  debian-keyring 2008.09.23GnuPG (and obsolete PGP) keys of D
ii  debian-maintainers 1.47  GPG keys of Debian maintainers
ii  dillo [www-browser 0.8.6-3   Small and fast web browser
ii  dput   0.9.2.35  Debian package upload tool
ii  equivs 2.0.7-0.1 Circumvent Debian package dependen
ii  fakeroot   1.10.1Gives a fake root environment
ii  git-core   1:1.6.0.2-1   fast, scalable, distributed revisi
ii  gnupg  1.4.9-3   GNU privacy guard - a free PGP rep
ii  iceweasel [www-bro 3.0.3-3   lightweight web browser based on M
pn  libauthen-sasl-per none(no description available)
ii  libcrypt-ssleay-pe 0.57-1+b1 Support for https protocol in LWP
ii  libparse-debcontro 2.005-2   Easy OO parsing of Debian control-
ii  libsoap-lite-perl  0.710.08-1Client and server side SOAP implem
pn  libterm-size-perl  none(no description available)
ii  libtimedate-perl   1.1600-9  Time and date functions for Perl
ii  liburi-perl1.35.dfsg.1-1 Manipulates and accesses URI strin
ii  libwww-perl5.813-1   WWW client/server library for Perl
ii  libyaml-syck-perl  1.05-1Fast, lightweight YAML loader and 
ii  lintian2.0.0 Debian package checker
ii  lsb-release3.2-20Linux Standard Base version report
ii  lynx-cur [www-brow 2.8.7dev10-2.1Text-mode WWW Browser with NLS sup
ii  man-db 2.5.2-3   on-line manual pager
ii  mercurial  1.0.1-5.1 Scalable distributed version contr
ii  openssh-client [ss 1:5.1p1-3 secure shell client, an rlogin/rsh
ii  patch  2.5.9-5   Apply a diff file to an original
ii  patchutils 0.2.31-4  Utilities to work with patches
ii  strace 4.5.17+cvs080723-2A system call tracer
ii  subversion 1.5.1dfsg1-1  Advanced version control system
ii  unzip  5.52-12   De-archiver for .zip files
ii  w3m [www-browser]  0.5.2-2+b1WWW browsable pager with excellent
ii  wdiff  0.5-18Compares two files word by word
ii  wget   1.11.4-2  retrieves files from the web

Versions of packages devscripts suggests:
ii  build-essential   11.4   Informational list of build-essent
pn  cvs-buildpackage  none (no description available)
pn  devscripts-el none (no description available)
ii  gnuplot   4.2.4-1A command-line driven interactive 
pn  libfile-desktopentry-perl none (no 

Bug#505040: graphviz: Build-Depends of swig must set relation

2008-11-11 Thread Cyril Brulebois
severity 505040 normal
thanks

Cyril Brulebois [EMAIL PROTECTED] (11/11/2008):
 I'm not very sure about that. I've asked RMs, and will act
 accordingly.

Lowering severity: Etch version builds within etch. Lenny version builds
within lenny. I'll probably add the v-B-D post-lenny anyway.

Mraw,
KiBi.


signature.asc
Description: Digital signature


Bug#505263: Kernel-Package 11.0011

2008-11-11 Thread J. L. Lee

Package:   kernel-package
Version:   11.0011

Failed to compile linux source 2.6.27 as well as 2.6.27.5 (donwloaded 
from www.kernel.org) using make-kpkg. The only change to the default 
.config file was the enabling of the option USB High Speed Mobile 
Devices to be compiled as a module. All other options were as they came 
with the linux source. I was able to compile successfully a new kernel 
using make-kpkg with the previous version of kernel-package and using my 
ZTE HSDPA USB modem with no problem. The error msgs are as follows:


QUOTE
make[1]: Leaving directory `/usr/src/linux-2.6.27.5'
/usr/bin/make  EXTRAVERSION=.5-ztemf628  ARCH=i386 \
-C Documentation/lguest
make[1]: Entering directory `/usr/src/linux-2.6.27.5/Documentation/lguest'
cc -Wall -Wmissing-declarations -Wmissing-prototypes -O3 
-I../../includelguest.c  -lz -o lguest

lguest.c:34:18: error: zlib.h: No such file or directory
make[1]: *** [lguest] Error 1
make[1]: Leaving directory `/usr/src/linux-2.6.27.5/Documentation/lguest'
make: *** [debian/stamp/build/kernel] Error 2
UNQUOTE


I am using Debian GNU/Linux lenny, linux-image-2.6.26-1-686 version 
2.6.26-8. The command I used was make-kpkg --append-to-version 
-ztemf628 --initrd --arch i386 kernel_image as root.


Please let me know if you need more info.



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



Bug#499821: upgrade-reports: VIA EPIA Mini-ITX kernel 2.6.26-1-686 boot crash

2008-11-11 Thread Alessandro De Zorzi
The system boot with:
Linux version 2.6.26-1-486 (Debian 2.6.26-8) ([EMAIL PROTECTED]) (gcc
version 4.1.3 20080623 (prerelease) (Debian 4.1.2-23)) #1 Thu Oct 9
14:22:52 UTC 2008

I report a upgrade problem: with etch my system works with
2.6.18-6-686, upgrade install
2.6.26-1-686 without any questions... After upgrade the system does not
boot.

cheers,
Alessandro



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



Bug#502105: mutt 1.5.18-4: Bad IDN in from: prevents sending mail

2008-11-11 Thread ennio
* Christoph Berg [EMAIL PROTECTED] [201008, 23:38]:
[...]

Hi Christoph,

coming back to this bug as I think to have finally detected what was
wrong, so the (would-be)bug may be closed!

Although my LC_ALL was set to en_US, I had these lines in .muttrc:

set locale = it_IT.ISO-8859-1
set charset = iso-8859-15
set send_charset = us-ascii:iso-8859-1:iso-8859-15:utf-8
iconv-hook iso-8859-1 8859-1

and just found out that the last one ('iconv-hook') is responsible for the
 Bad IDN from: 'tin.it'  error.

I'm still curious about what prevented mutt_1.5.13 to fire out the same
error...

I perused through the files of both versions but as my knowledge of C
language is very limited I could only understand that the 'reason' could
be in the 'send.c' file, that differs in various lines from the previous
version. One for all:

1.5.18 reads   fc=fgetconv_open(fpin,a-charset  
1.5.13 reads   fc=fgetconv_open(fpin,Charset  

attracted my attention, but I'm unable to judge whether or not it matters
at all.

Thanks again for your help.
Regards,
Ennio

-- 
[Perche' usare Win$ozz (dico io) se ...anche uno sciocco sa farlo.\\?//
 Fa' qualche cosa di cui non sei capace!   (diceva Henry Miller) ](°|°)
 Ricevo solo messaggi Content-Type: plain/text (no html o multipart).   )=(
 !!! -- e-mail a mio nome via OE (M$) sono false  e infette -- !!!



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



Bug#504866: Subject: Re: opensync-plugin-moto depends on libopensync0-dev

2008-11-11 Thread Evgeni Golov
On Tue, 11 Nov 2008 10:04:39 +0100 Michael Banck wrote:

 I'll upload a fixed package crediting you in the changelog, is that
 fine?  Otherwise, I can as well upload the NMU if you insist.

Nah, uploading a fixed one is fine :)
Regards
Evgeni


pgpajMkFbbVST.pgp
Description: PGP signature


Bug#481243: wish: configuration option to allow apt-p2p to function as LAN-wide mirror/proxy

2008-11-11 Thread Egon Willighagen
Hi Chris,

being rather interested in your patch, I tried to find where you added
the line, but could not find it. Maybe it's because I'm running 0.1.5
and on Ubuntu, not Debian, but could you give some details (patch?)
where you added that addr.startswith('192.168.') line...

BTW, I'm running it on my laptop, so the 'local' network actually
changes often, but it seems that was discussed in this wishlist report
too...

Egon

-- 

http://chem-bla-ics.blogspot.com/



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



Bug#504866: Subject: Re: opensync-plugin-moto depends on libopensync0-dev

2008-11-11 Thread Michael Banck
Hi,

looks like I failed to subscribe to the opensync-plugin-moto bugs, I
only now got notified due to your upload to mentors.debian.net.

I'll upload a fixed package crediting you in the changelog, is that
fine?  Otherwise, I can as well upload the NMU if you insist.


Michael



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



Bug#432350: Fedora 10

2008-11-11 Thread Dominic Evans
Fedora 10 has Eclipse 3.4 included
(http://fedoraproject.org/wiki/Releases/10/FeatureList).

Debian/Ubuntu need to catch up on this.

What are the issues preventing .deb packages being built?



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



Bug#495567: gnucash: Please make HBCI support optional (for systems with little disk space)

2008-11-11 Thread Vincent Lefevre
reassign 495567 libaqbanking20
retitle 495567 please make libaqbanking-data optional (Recommends)
thanks

On 2008-08-18 19:38:15 -0700, Thomas Bushnell BSG wrote:
 On Mon, 2008-08-18 at 19:01 +0200, Vincent Lefevre wrote:
  Package: gnucash
  Version: 2.2.6-1
  Severity: wishlist
  
  The upgrade to gnucash 2.2.6 needs 25.9MB of additional disk space[*],
  mainly due to aqbanking, that was added for HBCI support:
  
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=303234
  
  Not all users need HBCI, and 25.9MB is a lot on old machines or other
  machines with little disk space. So, HBCI support should be optional.
 
 Of the non-Recommended packages involved,

FYI, recommended packages packages were automatically installed by
apt-get, and I didn't know that (this was not documented in the
apt-get man page, but since then, the documentation has been fixed).
Now, the only remaining problem is:

 the only really big one is libaqbanking-data, and that's big because
 it has a giant database of all the banks in the world and their bank
 ID. This part, at least, should be optional, but it would be up to
 the aqbanking maintainer to decide how feasible that is.

So, let's reassign the bug to libaqbanking20.

Since libaqbanking-data contains *configuration* files, it should
probably be sufficient to move libaqbanking-data from Depends:
to Recommends: in libaqbanking20.

-- 
Vincent Lefèvre [EMAIL PROTECTED] - Web: http://www.vinc17.org/
100% accessible validated (X)HTML - Blog: http://www.vinc17.org/blog/
Work: CR INRIA - computer arithmetic / Arenaire project (LIP, ENS-Lyon)



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



Bug#505071: [Pkg-shadow-devel] Bug#505071: login tty mis-determination (see bug#332198)

2008-11-11 Thread Nicolas François
clone 505071 -1
retitle -1 symlink attack in login leading to arbitrary file ownership
tags -1 security
severity -1 serious
tags -1 patch
thanks

Somebody with write access to the utmp database can create the conditions
for a symlink attack in login, leading to gaining ownership of an
arbitrary file.

Proposed fix: Changing chown (tty, ...) to fchown (0, ...) in chowntty()

Best Regards,
-- 
Nekral



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



Bug#505274: libqt4-ruby1.8 fails to install due to extraneous libsmokeqt4 dependency

2008-11-11 Thread Vincent Fourmond
Package: libqt4-ruby1.8
Version: 4:4.1.3-1
Severity: important

  Hello,

  The title says it all. I'm working on it, just filing it for the record.

  Cheers,

Vincent


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

Kernel: Linux 2.6.26-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages libqt4-ruby1.8 depends on:
ii  libc6 2.7-16 GNU C Library: Shared libraries
ii  libgcc1   1:4.3.2-1  GCC support library
ii  libqt4-dbus   4.4.3-1Qt 4 D-Bus module
ii  libqt4-network4.4.3-1Qt 4 network module
ii  libqt4-opengl 4.4.3-1Qt 4 OpenGL module
ii  libqt4-sql4.4.3-1Qt 4 SQL module
ii  libqt4-svg4.4.3-1Qt 4 SVG module
ii  libqt4-webkit 4.4.3-1Qt 4 WebKit module
ii  libqt4-xml4.4.3-1Qt 4 XML module
ii  libqtcore44.4.3-1Qt 4 core module
ii  libqtgui4 4.4.3-1Qt 4 GUI module
ii  libruby1.81.8.7.72-1 Libraries necessary to run Ruby 1.
ii  libsmokeqt4-1 1.4.10-3   Smoke library for Qt4
ii  libstdc++64.3.2-1The GNU Standard C++ Library v3
ii  ruby1.8   1.8.7.72-1 Interpreter of object-oriented scr

libqt4-ruby1.8 recommends no packages.

Versions of packages libqt4-ruby1.8 suggests:
ii  qt4-doc   4.4.3-1Qt 4 API documentation

-- no debconf information



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



Bug#483297: thanks!

2008-11-11 Thread Matt Taggart
 Thanks for updating on the status of ITP
 
 please don't forget to let us know whenever there are some alpha-state
 packages to try ;-)

OK I have some built from SVN for testing (just i386, amd64, and source for 
now)

deb http://fossology.org/~taggart/debian/ ./

Please try them.

Thanks,

-- 
Matt Taggart
[EMAIL PROTECTED]





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



Bug#501678: Files copied/moved to cifs filesystems getattributes changed

2008-11-11 Thread Chris Carr
Just wanted to add another possibly-relevant piece of information to this
bug: I have recently noticed this same behaviour (+x attribute added when
file is moved/copied) on internally mounted fat32 filesystems. So it is not
a phenomenon restricted to cifs. I am still trying to pin down the exact
conditions under which it happens - on my main workstation it happens to
every file copied/moved to a writable mounted filesystem (either cifs or
fat32), but I need to see if it happens on a different machine. 

Sorry to complicate things. 

Regards,

Chris




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



Bug#504638: abort (*** glibc detected *** lftp: malloc(): memory corruption) when trying to use zless

2008-11-11 Thread Alexander V. Lukyanov
This patch should fix the bug.

--
   Alexander.
Index: OutputJob.cc
===
RCS file: /home/lav/cvsroot/lftp/src/OutputJob.cc,v
retrieving revision 1.21
diff -u -p -r1.21 OutputJob.cc
--- OutputJob.cc22 May 2008 13:20:37 -  1.21
+++ OutputJob.cc11 Nov 2008 11:05:04 -
@@ -329,7 +329,10 @@ void OutputJob::PreFilter(const char *ne
if(!filter)
   filter.set(newfilter);
else
-  filter.vset(newfilter, | ,filter.get(),NULL);
+   {
+  char *old_filter=alloca_strdup(filter);
+  filter.vset(newfilter, | ,old_filter,NULL);
+   }
 }
 
 /* Return the width of the output.  If there's a filter, we can either


Bug#303346: Just the best available intternet store for mans!

2008-11-11 Thread Labier Morillo
Just the best available  internet store for mans!

http://happinesscapital.cjb.net/
   
  

After all she has i don't think i can, said carey. You came
along and cut him it would have taken dignity)i think, ernest,
you might have given reasons of mrs catanach's, she closed
it as silently, albert dykes ought to be left behind, and
i shan't.



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



Bug#500734: Debian bug #500734 (fwd)

2008-11-11 Thread Matt Taggart

--- Forwarded Message

From: [EMAIL PROTECTED] (Christos Zoulas)
Date: Fri, 7 Nov 2008 10:51:25 -0500
In-Reply-To: [EMAIL PROTECTED]
   from Matt Taggart (Nov  7,  4:55am)
To: Matt Taggart [EMAIL PROTECTED]
Subject: Re: Debian bug #500734

On Nov 7,  4:55am, [EMAIL PROTECTED] (Matt Taggart) wrote:
- -- Subject: Debian bug #500734

| Hi Christos,
| 
| I just realized when I sent mail to Debian bug #500734 I forgot to cc 
you.
| Can you take a look?
| 
| http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=500734

Can you try this patch?

Thanks,

christos

Index: apprentice.c
===
RCS file: /p/file/cvsroot/file/src/apprentice.c,v
retrieving revision 1.145
diff -u -u -r1.145 apprentice.c
--- apprentice.c6 Nov 2008 23:22:54 -   1.145
+++ apprentice.c7 Nov 2008 15:50:21 -
@@ -107,7 +107,7 @@
 private uint16_t swap2(uint16_t);
 private uint32_t swap4(uint32_t);
 private uint64_t swap8(uint64_t);
-private void mkdbname(const char *, char **, int);
+private char *mkdbname(struct magic_set *, const char *, int);
 private int apprentice_map(struct magic_set *, struct magic **, uint32_t *,
 const char *);
 private int apprentice_compile(struct magic_set *, struct magic **, 
uint32_t *,
@@ -2059,7 +2059,7 @@
char *dbname = NULL;
void *mm = NULL;
 
-   mkdbname(fn, dbname, 0);
+   dbname = mkdbname(ms, fn, 0);
if (dbname == NULL)
goto error2;
 
@@ -2156,7 +2156,7 @@
char *dbname;
int rv = -1;
 
-   mkdbname(fn, dbname, 1);
+   dbname = mkdbname(ms, fn, 1);
 
if (dbname == NULL) 
goto out;
@@ -2194,24 +2194,45 @@
 /*
  * make a dbname
  */
-private void
-mkdbname(const char *fn, char **buf, int strip)
+private char *
+mkdbname(struct magic_set *ms, const char *fn, int strip)
 {
-   const char *p;
+   const char *p, *q;
+   char *buf;
+
if (strip) {
if ((p = strrchr(fn, '/')) != NULL)
fn = ++p;
}
 
-   if ((p = strstr(fn, ext)) != NULL  p[sizeof(ext) - 1] == '\0')
-   *buf = strdup(fn);
-   else
-   (void)asprintf(buf, %s%s, fn, ext);
+   for (q = fn; *q; q++)
+   continue;
+   /* Look for .mgc */
+   for (p = ext + sizeof(ext) - 1; p = ext  q = fn; p--, q--)
+   if (*p != *q)
+   break;
 
-   if (buf  *buf  strlen(*buf)  MAXPATHLEN) {
-   free(*buf);
-   *buf = NULL;
-   }
+   /* Did not find .mgc, restore q */
+   if (p = ext)
+   while (*q)
+   q++;
+
+   q++;
+   /* Compatibility with old code that looked in .mime */
+   if (ms-flags  MAGIC_MIME) {
+   asprintf(buf, %.*s.mime%s, (int)(q - fn), fn, ext);
+   if (access(buf, R_OK) != -1) {
+   ms-flags = MAGIC_MIME_TYPE;
+   return buf;
+   }
+   free(buf);
+   }
+   asprintf(buf, %.*s%s, (int)(q - fn), fn, ext);
+
+   /* Compatibility with old code that looked in .mime */
+   if (strstr(p, .mime) != NULL)
+   ms-flags = MAGIC_MIME_TYPE;
+   return buf;
 }
 
 /*


--- End of Forwarded Message






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



Bug#481191: gnome-settings-daemon under vnc segfaults

2008-11-11 Thread Josselin Mouette
Le mardi 11 novembre 2008 à 11:49 +, Julian Hall a écrit :
 Not the original reporter, but I was seeing similar symptoms and error 
 message -- mine looked like this:
 
 Nov 11 10:48:21 iris kernel: gnome-settings-[11408]: segfault at 10 rip 
 2bb22a1d rsp 7fffe118f9b0 error 4
 
 I followed the rebuild instructions in the how to get a backtrace page 
 you linked to, and the resulting build worked flawlessly, despite the 
 fact that the version number of the package it replaced was the same.  I 
 guess this means there's a slightly broken build of this package in the 
 amd64 port of lenny.

This could also be a heisenbug. If you rebuild the package without
debugging symbols (i.e. without noopt nostrip options), does it work
as well?

Thanks,
-- 
 .''`.
: :' :  We are debian.org. Lower your prices, surrender your code.
`. `'   We will add your hardware and software distinctiveness to
  `-our own. Resistance is futile.


signature.asc
Description: Ceci est une partie de message	numériquement signée


Bug#483412: scala build-depends on gcj-4.1 which is not availabe anymore on arm, alpha, hppa

2008-11-11 Thread Lex Spoon
I am not so sure the dependency can be dropped.  Before doing so, we  
need to verify that not only does the package rebuild with minimal  
dependencies (which takes over half an hour), but that the scala  
command by itself gives a working command prompt.  If those can be  
verified, then we could adjust the dependencies.


I would prefer, though, to simply wait until the Sun JDK can be  
depended on by packages in main.  To that end, is there another full  
gcj package that can be depended on, without needing to be specific  
about the version?



Lex Spoon




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



Bug#505294: fails to remember empty passwords (HTTP auth)

2008-11-11 Thread martin f krafft
Package: iceweasel
Version: 3.0.3-3
Severity: normal
Tags: upstream

A site with HTTP auth using an empty password will bring up the
remember this password bar at the top of the screen, but clicking
'remember' does not have an effect. 'not now' or the X do work.

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

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

Versions of packages iceweasel depends on:
ii  debianutils   2.30   Miscellaneous utilities specific t
ii  fontconfig2.6.0-1generic font configuration library
ii  libc6 2.7-16 GNU C Library: Shared libraries
ii  libglib2.0-0  2.16.6-1   The GLib library of C routines
ii  libgtk2.0-0   2.12.11-4  The GTK+ graphical user interface 
ii  libnspr4-0d   4.7.1-4NetScape Portable Runtime Library
ii  libstdc++64.3.2-1The GNU Standard C++ Library v3
ii  procps1:3.2.7-9  /proc file system utilities
ii  psmisc22.6-1 Utilities that use the proc filesy
ii  xulrunner-1.9 1.9.0.3-1  XUL + XPCOM application runner

iceweasel recommends no packages.

Versions of packages iceweasel suggests:
pn  latex-xft-fonts   none (no description available)
ii  libkrb53  1.6.dfsg.4~beta1-4 MIT Kerberos runtime libraries
pn  mozpluggernone (no description available)
pn  ttf-mathematica4.1none (no description available)
pn  xfonts-mathml none (no description available)
pn  xprintnone (no description available)
pn  xulrunner-1.9-gnome-s none (no description available)

-- no debconf information


-- 
 .''`.   martin f. krafft [EMAIL PROTECTED]
: :'  :  proud Debian developer, author, administrator, and user
`. `'`   http://people.debian.org/~madduck - http://debiansystem.info
  `-  Debian - when you have better things to do than fixing systems


digital_signature_gpg.asc
Description: Digital signature (see http://martin-krafft.net/gpg/)


Bug#505291: splashy: Splashy no longer starts before encrypted root

2008-11-11 Thread Byron Clark
Package: splashy
Version: 0.3.12-1
Severity: normal

In version 0.3.10-2.1, splashy started in init-top in the initramfs so
that I could enter the passphrase for my encrypted root device using the
splashy graphical prompt.  The 0.3.12-1 upgrade moves the start to
local-premount which occurs after the encrypted root setup in local-top.

I can still boot the system, but the splashy prompt looked much better
than the text prompt.


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

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

Versions of packages splashy depends on:
ii  initramfs-tools0.92l tools for generating an initramfs
ii  libc6  2.7-16GNU C Library: Shared libraries
ii  libdirectfb-1.0-0  1.0.1-11  direct frame buffer graphics - sha
ii  libgcc11:4.3.2-1 GCC support library
ii  libglib2.0-0   2.16.6-1  The GLib library of C routines
ii  libmagic1  4.26-1File type determination library us
ii  libsplashy10.3.12-1  Library to draw splash screen on b
ii  lsb-base   3.2-20Linux Standard Base 3.2 init scrip
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

splashy recommends no packages.

Versions of packages splashy suggests:
ii  console-common0.7.80 basic infrastructure for text cons
ii  splashy-themes0.4.1  A complete user-space boot splash 
pn  upstart   none (no description available)

-- no debconf information

-- 
Byron Clark



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



Bug#454363: severity of 454363 is serious

2008-11-11 Thread LI Daobing (李道兵)
On Tue, Nov 11, 2008 at 9:59 PM, Samuel Thibault
[EMAIL PROTECTED] wrote:
 LI Daobing, le Sun 09 Nov 2008 11:37:21 +0800, a écrit :
 severity 454363 serious

 Mmm, why so?
 Does it in any way render the fcitx package unusable?

yes, all GTK application can't use fcitx input method without this
patch. (if the application does not support select input method, such
as firefox and openoffice.org, but pidgin still work, because it
support select input method)

-- 
Best Regards,
 LI Daobing



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



Bug#491229: tagging 491229

2008-11-11 Thread Cyril Brulebois
# Automatically generated email from bts, devscripts version 2.10.35
# tagging so (at least for now) for reasons already given in a previous message.
tags 491229 wontfix




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



Bug#505293: openssh-server: sshd should AcceptEnv COLORFGBG

2008-11-11 Thread James Bunton
Package: openssh-server
Version: 1:5.1p1-2
Severity: wishlist
Tags: patch

Various terminal software such as urxvt and iTerm.app set the COLORFGBG
environment variable. This variable allows software such as Vim to
detect the terminal colours and display itself appropriately.
For example, Vim does :set background=light or :set background=dark
depending on whether the terminal has a light or a dark background
respectively.

This is a very convenient feature and it would be great for sshd to pass
this environment variable through by default. This would save me the
effort of editing sshd_config on every machine I use in order for
COLORFGBG to propagate when I ssh there.

The necessary line to change in sshd_config is:
AcceptEnv COLORFGBG

Thanks.

---

James


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

Kernel: Linux 2.6.25-2-686 (SMP w/1 CPU core)
Locale: LANG=en_AU, LC_CTYPE=en_AU (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages openssh-server depends on:
ii  adduser   3.108  add and remove users and groups
ii  debconf [debconf-2.0] 1.5.22 Debian configuration management sy
ii  dpkg  1.14.20Debian package management system
ii  libc6 2.7-13 GNU C Library: Shared libraries
ii  libcomerr21.41.0-3   common error description library
ii  libkrb53  1.6.dfsg.4~beta1-3 MIT Kerberos runtime libraries
ii  libpam-modules1.0.1-2Pluggable Authentication Modules f
ii  libpam-runtime1.0.1-2Runtime support for the PAM librar
ii  libpam0g  1.0.1-2Pluggable Authentication Modules l
ii  libselinux1   2.0.65-2   SELinux shared libraries
ii  libssl0.9.8   0.9.8g-13  SSL shared libraries
ii  libwrap0  7.6.q-15   Wietse Venema's TCP wrappers libra
ii  lsb-base  3.2-19 Linux Standard Base 3.2 init scrip
ii  openssh-blacklist 0.4.1  list of default blacklisted OpenSS
ii  openssh-client1:5.1p1-2  secure shell client, an rlogin/rsh
ii  zlib1g1:1.2.3.3.dfsg-12  compression library - runtime

Versions of packages openssh-server recommends:
ii  openssh-blacklist-extra   0.4.1  list of non-default blacklisted Op
ii  xauth 1:1.0.3-2  X authentication utility

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

-- debconf information excluded



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



Bug#505279: libgnutls26: segfault in _gnutls_x509_crt_get_raw_dn2

2008-11-11 Thread Simon Josefsson
Lincoln de Sousa [EMAIL PROTECTED] writes:

 I had the same problem and I started to investigate.

 I got the libgnutls26 source package with apt-get source and just recompilied
 it, after that I did the following:

 $ export LD_PRELOAD=lib/.libs/libgnutls.so.26
 $ mutt

 and everything worked. weird, isn't it?

Which libgnutls26 source package did you retrieve?  Are you sure it was
the same version?  If it was the same version, maybe the build was
corrupt?

 data requested:

Because your server-name did not match with the certificate, you'll need
to provide --insecure as well.  Please try again.

/Simon


 [EMAIL PROTECTED]:~$ gnutls-cli -p 143 mail.alfaiati.net -s
 Resolving 'mail.alfaiati.net'...
 Connecting to '72.232.18.204:143'...

 - Simple Client Mode:

 * OK [CAPABILITY IMAP4rev1 UIDPLUS CHILDREN NAMESPACE THREAD=ORDEREDSUBJECT 
 THREAD=REFERENCES SORT QUOTA IDLE ACL ACL2=UNION STARTTLS] Courier-IMAP 
 ready. Copyright 1998-2008 Double Precision, Inc.  See COPYING for 
 distribution information.
 . STARTTLS
 . OK Begin SSL/TLS negotiation now.
 *** Starting TLS handshake
 - Certificate type: X.509
  - Got a certificate list of 1 certificates.

  - Certificate[0] info:
  # The hostname in the certificate does NOT match 'mail.alfaiati.net'.

 -- 
 Lincoln de Sousa - AlfaiaTI/MinasLivre

 xmpp:[EMAIL PROTECTED]
 http://alfaiati.net
 http://minaslivre.org

 +55 31 9209 4987
 -- 
 Pkg-gnutls-maint mailing list
 [EMAIL PROTECTED]
 http://lists.alioth.debian.org/mailman/listinfo/pkg-gnutls-maint



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



Bug#505295: ITP: tfdocgen -- TiLP framework documentation generator

2008-11-11 Thread Krzysztof Burghardt
Package: wnpp
Severity: wishlist
Owner: Krzysztof Burghardt [EMAIL PROTECTED]

* Package name: tfdocgen
  Version : 1.0.0
  Upstream Author : Romain LIEVIN [EMAIL PROTECTED]
* URL : http://repo.calcforge.org/debian/source/
* License : GPL
  Programming Lang: C
  Description : TiLP framework documentation generator

The tfdocgen program is a program used by the libti*2 libraries to generate
their HTML documentation from sources and misc files. You don't need this
package unless you want to develop on the libti*2 libraries.

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



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



Bug#505296: smbfs: mount error 2 = No such file or directory (with sec=krb5)

2008-11-11 Thread George B.
Package: smbfs
Version: 2:3.2.4-1
Severity: important

Hello,

I am unable to mount a share on my Windows XP machine using 
mount.cifs/smbmount. Connecting via smbclient works fine. Using smbmount in 
Etch works fine (as I understand, that worked in a different way?)

Workstation is part of a domain.

---
# mount.cifs //machine.fqn.com/Werk mnt/ --verbose -o 
user=user,dom=fqn.com,sec=krb5
parsing options: user=borisov,dom=olympus.f5net.com,sec=krb5
Password:

mount.cifs kernel mount options 
unc=//machine.fqn.com\Werk,ip=10.0.2.2,pass=password,ver=1,user=user,dom=fqn.com,sec=krb5
mount error 2 = No such file or directory
Refer to the mount.cifs(8) manual page (e.g.man mount.cifs)
---

Using any other sec option results in a mount error 13 = Permission denied 
and a failed login entry in the WinXP event log.

I attach a network capture file. Looks like the server replies to the protocol 
negotiation request with STATUS_SUCCESS and then the client drops the 
connection. If this is true then it is a classic case of WTF??? ;-)

I'm not sure why smbclient authenticates successfully - looks like it is using 
some sort of NTLM authentication mode, but none of the NTLM sec options 
helped mount.cifs.

I would be happy to help troubleshoot this, as I really need to get this 
working. Please ask.


Thanks,

George.

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

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages smbfs depends on:
ii  libc62.7-15  GNU C Library: Shared libraries
ii  libcomerr2   1.41.2-1common error description library
ii  libkeyutils1 1.2-9   Linux Key Management Utilities (li
ii  libkrb53 1.6.dfsg.4~beta1-4  MIT Kerberos runtime libraries
ii  libldap-2.4-22.4.11-1OpenLDAP libraries
ii  libpopt0 1.14-4  lib for parsing cmdline parameters
ii  libtalloc1   1.2.0~git20080616-1 hierarchical pool based memory all
ii  libwbclient0 2:3.2.4-1   client library for interfacing wit
ii  netbase  4.34Basic TCP/IP networking system
ii  samba-common 2:3.2.4-1   Samba common files used by both th

smbfs recommends no packages.

Versions of packages smbfs suggests:
ii  smbclient 2:3.2.4-1  a LanManager-like simple client fo

-- no debconf information


samba.cap
Description: Binary data


Bug#505251: ITP: libnet-amazon-s3-tools-perl -- Command line tools for Amazon AWS S3

2008-11-11 Thread gregor herrmann
On Tue, 11 Nov 2008 11:02:13 +0900, Charles Plessy wrote:

   Package name: libnet-amazon-s3-tools-perl
   Version : 0.07
   Upstream Author : Mark Atwood
   URL : http://search.cpan.org/dist/Net-Amazon-S3-Tools/
   License : LGPL
   Programming Lang: Perl
   Description : Command line tools for Amazon AWS S3

 I did not manage to set ACLs with s3cmd, so I did a Google search and found
 this set of tools that fit my purpose. Is the Perl team interested in having 
 it
 in its repository ?

If it's not particularly nasty I see no problem with maintaining it
in our repo.
Maybe you could prepare a package and svn-inject it, then I'm sure
you will find some help (if necessary) by someone from our group.

(You probably know the location of the relevant docs, but just in
case:
http://pkg-perl.alioth.debian.org/ (especially policy.html and
subversion.html.
And you know where to find us :))

Cheers,
gregor 
-- 
 .''`.   Home: http://info.comodo.priv.at/{,blog/} / GPG Key ID: 0x00F3CFE4
 : :' :  Debian GNU/Linux user, admin,  developer - http://www.debian.org/
 `. `'   Member of VIBE!AT, SPI Inc., fellow of FSFE | http://got.to/quote/
   `-NP: Bob Dylan: Blowin' In The Wind


signature.asc
Description: Digital signature


Bug#505279: libgnutls26: segfault in _gnutls_x509_crt_get_raw_dn2

2008-11-11 Thread Simon Josefsson
Michael Meskes [EMAIL PROTECTED] writes:

 On Tue, Nov 11, 2008 at 02:41:39PM +0100, Simon Josefsson wrote:
 ...
 and then press Ctrl-D, and cut'n'paste the output?  I'm interested to
 see the certificate chain of the server.

 Here we go:

 * OK Dovecot ready.
 . STARTTLS
 . OK Begin TLS negotiation now.
 *** Starting TLS handshake
 - Ephemeral Diffie-Hellman parameters
  - Using prime: 1032 bits
  - Secret key: 1016 bits
  - Peer's public key: 1024 bits
 - Certificate type: X.509
  - Got a certificate list of 1 certificates.

  - Certificate[0] info:
  # The hostname in the certificate does NOT match 'localhost'.

I think we have identified the problem, see:

http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3216/focus=3230

That patch at least solves the vulnerability and the crash, so possibly
it could be uploaded to debian to avoid further troubles until we have
released a 2.6.2 with a good fix.

/Simon



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



Bug#505224: RFP: freecad -- An extensible CAx program (alpha)

2008-11-11 Thread Robert Millan
On Tue, Nov 11, 2008 at 02:09:17AM +0100, Teemu Ikonen wrote:
 On Mon, Nov 10, 2008 at 11:46 PM, Robert Millan [EMAIL PROTECTED] wrote:
  Package: wnpp
  Severity: wishlist
  Owner: Robert Millan [EMAIL PROTECTED]
 
  * Package name: freecad
 [...]
  A preliminary package is available at:
 
   http://people.debian.org/~rmh/freecad/
 
 Hi,
 
 I've also worked on FreeCAD packaging for a while, and a preliminary
 package is at
 http://git.debian.org/?p=debian-science/packages/freecad.git
 Unfortunately I forgot to file an ITP.
 
 You're welcome to join the effort in the Debian Science repository or
 if you like, take over the maintenance completely. There are still
 some copyright / license problems present in the source, and some of
 the stuff in the source package should really be a separate package,
 which is why I haven't tried to upload this to ftp-master yet. I
 actually just made some cleanups in the copyright file just today, but
 did not push my changes to git.debian.org yet. I'll do it tomorrow
 though.

Hi Teemu,

I was unaware of your preliminar work.  I knew you intended to work on it,
though [1].

Needless to say, I'd be glad if we can work together.  I marked the bug as
RFP because I wouldn't have time to maintain freecad all on my own.

I'll check your package, compare it with mine, and see if anything I wrote
is worthy of being merged with your tree.

[1] Leo put me on CC on a ping mail sent a while ago, but I received no
reply.

-- 
Robert Millan

  The DRM opt-in fallacy: Your data belongs to us. We will decide when (and
  how) you may access your data; but nobody's threatening your freedom: we
  still allow you to remove your data and not access it at all.



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



Bug#504467: More

2008-11-11 Thread David Baron
Links may also be disabled after one is exercised,



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



Bug#504563: xtables-addons-source: need for few patches and for another dependency

2008-11-11 Thread mtths
Package: xtables-addons-source
Version: 1.5.7-2
Followup-For: Bug #504563

Using a kernel built from linux-source-2.6.26-10 the compiling of
xtables-addons-source failed because some paths were not adapted properly,
or they are not adaptable; cf. attachment.
Secondly there is a constriction on gcc-4.1 and an apparent dependency on
iptables-dev insofar as this package provides a suitable include file
xtables.h (the kernel-tree does not).

Besides, after that alternatively make-kpkg can be used for building
xtables-addons-source.

Cheers,
Matthias


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

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

Versions of packages xtables-addons-source depends on:
ii  bzip2 1.0.5-1high-quality block-sorting file co
ii  debhelper 7.0.17 helper programs for debian/rules
ii  make  3.81-5 The GNU version of the make util
ii  module-assistant  0.10.11.0  tool to make module package creati

xtables-addons-source recommends no packages.

xtables-addons-source suggests no packages.

-- no debconf information
diff -ru ./debian/rules ../xtables-addons.new/debian/rules
--- ./debian/rules	2008-10-27 22:33:03.0 +0100
+++ ../xtables-addons.new/debian/rules	2008-11-11 16:24:45.0 +0100
@@ -95,7 +95,7 @@
 	dh_testdir
 
 	# Add here command to compile/build the package.
-	$(MAKE) kbuilddir=/lib/modules/$(KERNELVERSION)-$(ARCH)/build
+	$(MAKE) kbuilddir=/lib/modules/$(KVERS)/build
 	$(MAKE) xtables-addons.8
 
 	touch $@
@@ -143,7 +143,7 @@
 	rm -f build-arch-stamp build-indep-stamp 
 
 	# Add here commands to clean up after the build process.
-	[ ! -f Makefile ] || $(MAKE) kbuilddir=/lib/modules/$(KERNELVERSION)-$(ARCH)/build distclean
+	[ ! -f Makefile ] || $(MAKE) kbuilddir=/lib/modules/$(KVERS)/build distclean
 	rm -f config.sub config.guess
 	rm -f xtables-addons.8 extensions/matches.man extensions/targets.man
 
@@ -160,7 +160,7 @@
 	dh_installdirs -p$(psource)  usr/src/modules/$(sname)/debian
 
 	# Copy only the driver source to the proper location
-	$(MAKE) -C extensions kbuilddir=/lib/modules/$(KERNELVERSION)-$(ARCH)/build clean
+	$(MAKE) -C extensions kbuilddir=/lib/modules/$(KVERS)/build clean
 	cp -r mconfig extensions  debian/$(psource)/usr/src/modules/$(sname)
 	# Copy the needed debian/ pieces to the proper location
 	cp debian/*modules.in* debian/*.defs \
@@ -174,7 +174,7 @@
 	cd debian/$(psource)/usr/src  tar c modules | bzip2 -9  $(sname).tar.bz2  rm -rf modules
 
 	# Add here commands to install the package into debian/xtables-addons.
-	$(MAKE) DESTDIR=$(CURDIR)/debian/xtables-addons-common kbuilddir=/lib/modules/$(KERNELVERSION)-$(ARCH)/build install
+	$(MAKE) DESTDIR=$(CURDIR)/debian/xtables-addons-common kbuilddir=/lib/modules/$(KVERS)/build install
 	rm -rf $(CURDIR)/debian/xtables-addons-common/lib/modules
 
 	dh_install
diff -ru ./extensions/GNUmakefile ../xtables-addons.new/extensions/GNUmakefile
--- ./extensions/GNUmakefile	2008-10-27 22:33:03.0 +0100
+++ ../xtables-addons.new/extensions/GNUmakefile	2008-11-11 16:24:45.0 +0100
@@ -17,14 +17,14 @@
 libdir  := ${exec_prefix}/lib
 libexecdir  := /lib
 xtlibdir:= ${libexecdir}/xtables
-kbuilddir   := /lib/modules/2.6.26-1-amd64/build
+kbuilddir   := /lib/modules/$(KVERS)/build
 
-CC  := gcc-4.1
+CC  := gcc
 CCLD:= ${CC}
 CFLAGS  := -g -O2 -O2
 LDFLAGS := 
 regular_CFLAGS  := -D_LARGEFILE_SOURCE=1 -D_LARGE_FILES -D_FILE_OFFSET_BITS=64 	-D_REENTRANT -Wall -Waggregate-return -Wmissing-declarations 	-Wmissing-prototypes -Wredundant-decls -Wshadow -Wstrict-prototypes 	-Winline -pipe -DXTABLES_LIBDIR=\${xtlibdir}\
-kinclude_CFLAGS :=  -I /lib/modules/2.6.26-1-amd64/build/include
+kinclude_CFLAGS :=  -I /lib/modules/$(KVERS)/build/include
 xtables_CFLAGS  := 
 
 AM_CFLAGS  := ${regular_CFLAGS} -I${top_srcdir}/include ${xtables_CFLAGS} ${kinclude_CFLAGS}
diff -ru ./extensions/ipset/GNUmakefile ../xtables-addons.new/extensions/ipset/GNUmakefile
--- ./extensions/ipset/GNUmakefile	2008-10-27 22:33:03.0 +0100
+++ ../xtables-addons.new/extensions/ipset/GNUmakefile	2008-11-11 16:24:45.0 +0100
@@ -18,15 +18,15 @@
 libdir  := ${exec_prefix}/lib
 libexecdir  := /lib
 xtlibdir:= ${libexecdir}/xtables
-kbuilddir   := /lib/modules/2.6.26-1-amd64/build
+kbuilddir   := /lib/modules/$(KVERS)/build
 man8dir := ${prefix}/share/man/man8
 
-CC  := gcc-4.1
+CC  := gcc
 CCLD:= ${CC}
 CFLAGS  := -g -O2 -O2
 LDFLAGS := 
 regular_CFLAGS  := -D_LARGEFILE_SOURCE=1 -D_LARGE_FILES -D_FILE_OFFSET_BITS=64 	-D_REENTRANT -Wall -Waggregate-return -Wmissing-declarations 	-Wmissing-prototypes 

Bug#461190: malformatted help output

2008-11-11 Thread Stephan Peijnik
Hello,

as uploading of ipython 0.9.1 to Debian is blocked until foolscap is
accepted (it's in the new queue right now) you might want to give the
packages of foolscap and ipython 0.9.1 I built a try.

If you want to give them a try have a look at http://archive.sp-its.at/
(my personal Debian package repository). I am using both for more than
two weeks now and haven't noticed any problems.

I am curious as to if you can also reproduce this problem with ipython
0.9.1.

Regards,

Stephan


signature.asc
Description: This is a digitally signed message part


Bug#489007: pre-upload approval (Bug#489007: ttf-liberation looks ugly)

2008-11-11 Thread Luk Claes
Holger Levsen wrote:
 Hi,
 
 On Monday 27 October 2008 22:16, Adeodato Simó wrote:
 I'm fairly sure that the bug report and fix are valid, considering how
 picky and fanatic quite many people are about fonts :-)
 
 So far I got one reply from a user saying that indeed all fonts look nice 
 now :)
 
 Ok, please upload and ping us back when uploaded.
 
 pung.

unblocked

Cheers

Luk



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



Bug#505306: ms-sys: New upstream release

2008-11-11 Thread Daniel Baumann
Package: ms-sys
Severity: wishlist

Hi,

please upgrade to the current upstream release (2.1.3).

Regards,
Daniel

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  [EMAIL PROTECTED]
Internet:   http://people.panthera-systems.net/~daniel-baumann/



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



Bug#505307: mseide-msegui: FTBFS: build_all.sh: line 18: ppc386: command not found

2008-11-11 Thread Kurt Roeckx
Package: mseide-msegui
Version: 1.8-1
Severity: important

Hi,

Your package is failing to build on all arches except i386 with
the error:
mseide-msegui-1.8/debian/build_all.sh: line 18: ppc386: command not found


Kurt




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



Bug#307980: kill vserver-copy?

2008-11-11 Thread Micah Anderson
* Tomas Pospisek [EMAIL PROTECTED] [2008-11-10 12:46-0500]:
 Hello Micah,

 On Mon, 10 Nov 2008, Micah Anderson wrote:

 * Tomas Pospisek [EMAIL PROTECTED] [2008-11-10 09:57-0500]:
 It seems to me that vserver-copy is easier to use and more powerful than
 vserver -s build blah blah. But whatever vserver-copy as shipped by
 Debian has been dead now for three years. What about killing it before
 lenny comes out so that it doesn't confuse yet another generation of
 sysadmins?
 *t

 Can you be more specific? You are saying that vserver-copy is easier to
 use than 'vserver -s build...', but that the version of vserver-copy
 shipped with the debian util-vserver package is out of date? Where is
 the newer, easier to use vserver-copy you are referring to?

 Are you talking about the vserver-debianutils package?

 I'm talking about the util-vserver package referenced by bug #307980.

 The vserver-copy tool as shipped in Debian etch isn't able to copy with 
 vserver's current configuration format. I have not tried whether the one  
 in lenny is able or not.

 If it does understand the new (a few years old by now) format, then  
 you could close the bug. If it can't then it'd be good to move  
 vserver-copy to the side (as suggested by yourself here [1].)

Wow, thanks for pointing this out to me, for some reason I did not
receive the follow-ups to this bug after I closed it. Those follow-ups
were people telling me that the bug actually wasn't closed properly. 

I've just committed the proper fix, which removes the legacy binaries,
and man pages. I've also asked for a release exception for this (along
with a POSIX fix and a potential future security fix), with some luck
we'll get it and Lenny will not ship with this unfortuante confusion.

Micah


signature.asc
Description: Digital signature


Bug#495697: linux-image-2.6.25-2-686: System hang when loading ACPI video module

2008-11-11 Thread Stephan Peijnik
Hi,

On Fri, 2008-11-07 at 23:55 +0100, Moritz Muehlenhoff wrote:
 On Thu, Aug 21, 2008 at 05:37:33PM +0200, Stephan Peijnik wrote:
  
  The bug is still present in 2.6.26. As soon as I modprobe video the
  system freezes.
 
 Is this bug still reproducible with current 2.6.28-rcX kernels?
 
 If so, please file a report at bugzilla.kernel.org and pass the
 bugnumber to this bug.

I am sorry, but I haven't had the time to give this a try yet, but am
planning on doing so sometime soon. I will keep you posted on whether
this problem still exists and file a bug report at bugzilla.kernel.org
in case the problem can still be reproduced here.

Regards,

Stephan




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



Bug#505311: cannot represent mind-maps, only trees

2008-11-11 Thread martin f krafft
Package: kdissert
Version: 1.0.7-4
Severity: normal

kdissert promises to be a mindmapping tool, supporting the creation
of complex documents. However, it can only represent directed
acyclic graphs, and worse, an object can only have one parent. This
means it can only represent trees.

Since the long description also says: the very first goal of
kdissert is to create general-purpose documents, not mindmaps,
I strongly suggest you amend the short description and probably
remove any mention of mindmapping altogether. Call it a tree-drawing
application, or somesuch.

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

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

Versions of packages kdissert depends on:
ii  kdelibs4c2a4:3.5.10.dfsg.1-1 core libraries and binaries for al
ii  libc6  2.7-16GNU C Library: Shared libraries
ii  libgcc11:4.3.2-1 GCC support library
ii  libqt3-mt  3:3.3.8b-5Qt GUI Library (Threaded runtime v
ii  libstdc++6 4.3.2-1   The GNU Standard C++ Library v3

kdissert recommends no packages.

Versions of packages kdissert suggests:
ii  dillo [www-browser]  0.8.6-3 Small and fast web browser
ii  epdfview [pdf-viewer]0.1.6-7 Lightweight pdf viewer based on po
ii  evince-gtk [postscript-v 2.22.2-4Document (postscript, pdf) viewer 
ii  ghostscript [postscript- 8.62.dfsg.1-3.1 The GPL Ghostscript PostScript/PDF
ii  gv [postscript-viewer]   1:3.6.5-2   PostScript and PDF viewer for X
ii  iceweasel [www-browser]  3.0.3-3 lightweight web browser based on M
pn  kaffenone  (no description available)
pn  kate none  (no description available)
ii  kghostview [postscript-v 4:3.5.9-3   PostScript viewer for KDE
pn  kile none  (no description available)
ii  latex-beamer 3.07-1.1LaTeX class to produce presentatio
ii  lynx-cur [www-browser]   2.8.7dev10-2.1  Text-mode WWW Browser with NLS sup
pn  openoffice.org | kpresen none  (no description available)
pn  openoffice.org | kword   none  (no description available)
pn  prosper  none  (no description available)
ii  texlive  2007.dfsg.1-4   TeX Live: A decent selection of th
ii  w3m [www-browser]0.5.2-2+b1  WWW browsable pager with excellent
ii  xpdf-reader [pdf-viewer] 3.02-1.4Portable Document Format (PDF) sui

-- no debconf information


-- 
 .''`.   martin f. krafft [EMAIL PROTECTED]
: :'  :  proud Debian developer, author, administrator, and user
`. `'`   http://people.debian.org/~madduck - http://debiansystem.info
  `-  Debian - when you have better things to do than fixing systems


digital_signature_gpg.asc
Description: Digital signature (see http://martin-krafft.net/gpg/)


Bug#505310: bristuff/app-meetme-avoid-overflows screws up conferences

2008-11-11 Thread Björn Boschman
Package: asterisk

While trying to setup a conference call using app_meetme it terminates the 
conference user when a second caller enters with the following errormessage:

[Nov 11 16:56:26] WARNING[22074]: app_meetme.c:1624 conf_run: Unable to set 
buffering information: Invalid argument

When I disable bristuff/app-meetme-avoid-overflows before compile it's working 
fine.


BR
Bjoern



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



Bug#505047: #505047: is actually libmodplug's problem

2008-11-11 Thread Eugene V. Lyubimkin
package qmmp
reassign 505047 libmodplug-dev
thanks

Zed Pobre wrote:
 On Tue, Nov 11, 2008 at 04:17:37PM +0200, Eugene V. Lyubimkin wrote:
 typedef int8_t CHAR;
 typedef uint8_t UCHAR;
 typedef uint8_t* PUCHAR;
 typedef uint16_t USHORT;
 typedef uint32_t ULONG;
 typedef uint32_t UINT;
 typedef uint32_t DWORD;
 typedef int32_t LONG;
 typedef int64_t LONGLONG;
 typedef int32_t* LPLONG;
 typedef uint32_t* LPDWORD;
 typedef uint16_t WORD;
 typedef uint8_t BYTE;
 typedef uint8_t* LPBYTE;
 typedef bool BOOL;
 typedef char* LPSTR;
 typedef void* LPVOID;
 typedef uint16_t* LPWORD;
 typedef const char* LPCSTR;
 typedef void* PVOID;
 typedef void VOID;
 -8-

 are not under #ifdef and located in stdafx.h, so they rely on stdint.h
 unconditionally and, therefore, header should include it unconditionally.
 
 Er, no, the point of having an ifdef at all is that they *don't* rely
 on stdint.h unconditionally -- they can be provided either by
 inttypes.h (most commonly seen on HP-UX and AIX, IIRC) or by stdint.h,
 so what this code is doing is allowing a system that has the defines
 in one and completely misses the other to still compile the code.
 They're only unconditionally provided by stdint.h *on Debian systems*.
 While it's technically feasible for me to force it in a
 Debian-specific patch, this will cause other code depending on
 libmodplug to behave this way to break as soon as it is placed into a
 typed-via-inttypes environment.
 
 If anything, the bug in modplug is that it doesn't have *enough*
 ifdefs, because there's actually a *third* place that these defines
 can be found: sys/types.h.  Unless someone with an Interix system
 actually complains, however, I'm going to ignore that.
Ok, then libmodplug should do #if defined(one) #elif defined(two) #else
#error intXYZ_t types are unavailable #endif rather than generate errors in
applications linked to libmodplug. This is a correct approach, and approach
which I currently see in libmodplug's stdafx.h is wrong and needs fixing. You
can't rely on intXYZ_t types without checking that at least one of
inttypes.h or stdint.h headers are included (see above example of check).

 In any case, the technically correct solution is for all packages
 making use of known-size defines, even indirectly, to test for the
 source of those defines and include as appropriate.
[snip]
Then why stdafx.h header define such types? Header it_defs.h use BYTE, WORD
rather than int8_t (or unsigned char) and int16_t, why? (well, no problem, use
it, but make headers correct (again, see above :))).

 P.S. IMHO, it would be good if these Windows-related defines went to
 /dev/null in future.
 
 Windows-related?  I think you misunderstand either the scope of the
 problem, or the entire purpose of the defines.
This is unrelated to this bug and thus off-topic on this bug thread, but I can
say that 'LPVOID' and company are Windows API crap under Linux code base of
libmodplug and I don't see a reason why a Linux code should even see such
types. But it's my own IMHO and wish.

-- 
Eugene V. Lyubimkin aka JackYF, JID: jackyf.devel(maildog)gmail.com
Ukrainian C++ Developer, Debian APT contributor



signature.asc
Description: OpenPGP digital signature


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

2008-11-11 Thread Thomas Mashos
I've contacted the upstream author about this bug and patch and they
have committed this fix to CVS.  

I've included the reply I got from upstream below in quotes


Patch incorporated in CVS.

Thomas Mashos wrote:
 I'm a developer and user of Mythbuntu, a derivative of Ubuntu, which 
 uses Debian as its base.  One of the plugins we've packaged 
 (MythNetTV) uses btdownloadheadless to download torrent files.  This 
 works perfectly until we try to place it in a cron job, which then 
 fails.  I've had users apply the following patch found in the Debian 
 bug tracker, and they report that it works.  I was hoping that you 
 could apply this patch, which would then trickle down to us, fixing 
 everyone along the way.

 The patch and bug report are located at 
 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=327505

 Thanks,

 Thomas






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



Bug#505316: [lilo-config] Choosing a kernel from kde-shutdown menu renders system with grub unbootable

2008-11-11 Thread Mark Brandis
Package: lilo-config
Version: 4:3.5.9-2
Severity: grave

--- Please enter the report below this line. ---
On a system with grub, it is possible in kde to choose between different 
kernel for reboot. After choosing one of the kernels and reboot, grub tries 
to boot any kernel and stops with:

selected item cannot fit into memory

Only after a boot from CD and a 'grub-install /dev/X' the system boots again. 
memtest is unaffected from that. 

--- System information. ---
Architecture: i386
Kernel:   Linux 2.6.25

Debian Release: lenny/sid
  990 testing mirror.home-dn.net 
  990 testing ftp.debian-unofficial.org 
  990 testing ftp-stud.hs-esslingen.de 
  500 unstablemirror.home-dn.net 
  500 unstableftp.debian-unofficial.org 
  500 stable  mirror.home-dn.net 
  500 stable  ftp.debian-unofficial.org 
  300 unstableftp-stud.hs-esslingen.de 

--- Package information. ---
Depends (Version) | Installed
=-+-==
kdelibs4c2a  (= 4:3.5.9) | 4:3.5.9.dfsg.1-6
libc6  (= 2.7-1) | 2.7-15
libgcc1  (= 1:4.1.1) | 1:4.3.2-1
libqt3-mt   (= 3:3.3.8b) | 3:3.3.8b-5
libstdc++6 (= 4.2.1) | 4.3.2-1
kcontrol  | 4:3.5.9.dfsg.1-5



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



Bug#504424: [Reportbug-maint] Bug#504424: Bug#504424: crashes when trying to report bugs of reportbug

2008-11-11 Thread Sandro Tosi
Hi Ryo,

On Fri, Nov 7, 2008 at 02:54, Ryo IGARASHI [EMAIL PROTECTED] wrote:
 retitle 504424 reportbug sometimes crash when trying to display bugs
 thanks

 Hi,

 I reproduce this bug again when trying to report a bug to zsh package.
 Seeming that this issue is global, I change the title.

I prepared a preliminary version here[1]: may you please check if it
fixes your bug? I tried to replicate it with reportbug and zsh on a
LAND=de_DE env and it works.

[1] http://people.debian.org/~morph/

Thanks,
-- 
Sandro Tosi (aka morph, Morpheus, matrixhasu)
My website: http://matrixhasu.altervista.org/
Me at Debian: http://wiki.debian.org/SandroTosi



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



Bug#331414: [Pkg-xfce-devel] Bug#331414: Bug#331414: Bug#331414: #331414: xfce4-battery-plugin Consumes too much CPU time

2008-11-11 Thread Michael Gilbert
 You can check with strace if it does that. It should use /sys files
 these days.

 Ok, what's the status on this? Can the bug be closed?

bug still exists.  how can i strace a plugin?



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



Bug#501628: gc_approx - Not_found

2008-11-11 Thread Brian J. Murrell
On Tue, 2008-11-11 at 12:08 -0500, Eric Cooper wrote:
 The fix should be simple.

Is that a hint that I should be able to fix it myself?  :-)  If so, I'm
afraid not.  I've looked at gc.ml but this ocaml language is completely
new and foreign to me.  Any chance you can provide a patch?  If that was
your intention, my apologies for being impatient.  Actually impatience
is not the issue, just uncertainty as to your intentions.

Thanx much!

b.



signature.asc
Description: This is a digitally signed message part


Bug#442189: state of #442189

2008-11-11 Thread Eugene V. Lyubimkin
Hello Vincent, hello Joey!

Thanks for supplying info regarding this bug. I will try to investigate what
may cause such a problem. Vincent, Joey, can you also show strace output of
gpgv and gzip processes when apt goes to infinite loop?

I also would be glad if you can check latest apt (0.7.18) whether it has this
bug or not.

-- 
Eugene V. Lyubimkin aka JackYF, JID: jackyf.devel(maildog)gmail.com
Ukrainian C++ Developer, Debian APT contributor



signature.asc
Description: OpenPGP digital signature


Bug#505276: Additional info

2008-11-11 Thread Modestas Vainius
Hello,

backup and move away (remove) ~/.kde/share/apps/amarok and 
~/.kde/share/amarokrc. Or you could try removing some directories from the 
collection scanner list (it should be some setting in ~/.kde/share/amarokrc). 
The bug seems to be related to the detection of the directories contents 
changes the collection scanner is set to scan.

-- 
Modestas Vainius [EMAIL PROTECTED]



signature.asc
Description: This is a digitally signed message part.


Bug#142228: Patch

2008-11-11 Thread Jonas Smedegaard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

tag 142228 patch
thanks

On Tue, Nov 11, 2008 at 06:33:17PM +0100, Markus Steinborn wrote:
http://bugs.ghostscript.com/show_bug.cgi?id=688943 contains a working patch.

Thanks, Markus!

(Top voodoo adds hint to out BTS that this bugreport now contains a 
patch)


  - Jonas

- -- 
* Jonas Smedegaard - idealist og Internet-arkitekt
* Tlf.: +45 40843136  Website: http://dr.jones.dk/

  [x] quote me freely  [ ] ask before reusing  [ ] keep private
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkkZxp0ACgkQn7DbMsAkQLj8hgCfZPL8nSa21RYmAN68CI3TvMkZ
Y0wAni3VptjLLYZn6RrprJBYXj9QvFp8
=MNIW
-END PGP SIGNATURE-



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



Bug#478137: NMU diff for 1.8.2+nmu2

2008-11-11 Thread Robert Luberda
Hi,

Attached is diff for doc-central 1.8.2+nmu2, I've just uploaded to
DELAYED/2-day.

Regards,
Robert
diff -Nur doc-central-1.8.2+nmu1/cgi/contents.cgi doc-central-1.8.2+nmu2/cgi/contents.cgi
--- doc-central-1.8.2+nmu1/cgi/contents.cgi	2008-04-27 14:27:22.0 +0200
+++ doc-central-1.8.2+nmu2/cgi/contents.cgi	2008-11-10 18:49:19.0 +0100
@@ -12,7 +12,7 @@
 	hdr=0
 
 	if len(sect):
-		matcher=re.compile(sect+/, re.IGNORECASE)
+		matcher=re.compile(re.escape(sect+/), re.IGNORECASE)
 	else:
 		matcher=re.compile()
 
diff -Nur doc-central-1.8.2+nmu1/cgi/docutils.py doc-central-1.8.2+nmu2/cgi/docutils.py
--- doc-central-1.8.2+nmu1/cgi/docutils.py	2008-04-27 14:36:12.0 +0200
+++ doc-central-1.8.2+nmu2/cgi/docutils.py	2008-11-10 19:13:04.0 +0100
@@ -3,7 +3,7 @@
 # throughout Doc-Central.
 
 # Import all system packages we need
-import os, string, sys, cgi, re
+import os, string, sys, cgi, re, urllib
 # Import all our own packages
 import docinfo, docconfig
 
@@ -78,12 +78,13 @@
 def makesectionlink(sect):
 	'''Create a URL to the section-index. We assume that the current
 	script is already the browser'''
+	# Note: the function is never called since it's overriden at the bottom
 
 	if os.environ.has_key(SCRIPT_NAME):
 		base=os.environ[SCRIPT_NAME]
 	else:
 		base=browse.cgi
-	return base+?section=+sect
+	return base+?section=+urllib.quote(sect)
 
 
 def makedoclink(doc, format=None):
@@ -184,4 +185,4 @@
 	'''Turn a section-name into an URL to the right section-page using
 	browse.cgi'''
 
-	return scriptname(browse.cgi) + ?section=%s % sect
+	return scriptname(browse.cgi) + ?section=%s % urllib.quote(sect)
diff -Nur doc-central-1.8.2+nmu1/debian/changelog doc-central-1.8.2+nmu2/debian/changelog
--- doc-central-1.8.2+nmu1/debian/changelog	2008-04-27 14:47:04.0 +0200
+++ doc-central-1.8.2+nmu2/debian/changelog	2008-11-11 10:43:06.0 +0100
@@ -1,3 +1,12 @@
+doc-central (1.8.2+nmu2) unstable; urgency=medium
+
+  * Non-maintainer upload to fix bugs related to processing of the
+Programming/C++ doc-base section (closes: #502556):
+- browse.cgi: handle section names that contain regex metacharacters;
+- docutils.py: properly encode URLs generated by makesectionlink().
+
+ -- Robert Luberda [EMAIL PROTECTED]  Tue, 11 Nov 2008 10:43:04 +0100
+
 doc-central (1.8.2+nmu1) unstable; urgency=low
 
   * Non-maintainer upload.


signature.asc
Description: Digital signature


Bug#504164: Problem does not occur with new CPU

2008-11-11 Thread Mark Brandis
I changed my CPU from a Intel Pentium D to Intel Core 2 Duo and the problem 
does not occur any more.



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



Bug#499172: completion logic in upstream

2008-11-11 Thread martin f krafft
 Clint madduck: how amenable would upstream be to building completion logic 
into the tg commands?
 madduck Clint: for the moment, I am upstream. So 100%
 Clint madduck: great. do you have bzr installed?
 madduck yes
 Clint madduck: if you run 'bzr s-c' and then 'bzr s-c blame' you'll see what 
i was trying to achieve
 Clint (which failed, of course)



piper:..pkg/mdadm/topgit|master|% bzr s-c
--help:show help on a command or other topic
-?:show help on a command or other topic
-h:show help on a command or other topic
?:show help on a command or other topic
add:add specified files or directories
ann:show the origin of each line in a file
annotate:show the origin of each line in a file
bind:convert the current branch into a checkout of the supplied branch
blame:show the origin of each line in a file
branch:create a new copy of a branch
break-lock:break a dead lock on a repository, branch or working directory
cat:write the contents of a file as of a given revision to standard output
check:validate consistency of branch history
checkin:commit changes into a new revision
checkout:create a new checkout of an existing branch
ci:commit changes into a new revision
clone:create a new copy of a branch
co:create a new checkout of an existing branch
commit:commit changes into a new revision
conflicts:list files with conflicts
deleted:list files deleted in the working tree
di:show differences in the working tree, between revisions or branches
dif:show differences in the working tree, between revisions or branches
diff:show differences in the working tree, between revisions or branches
export:export current or past revision to a destination directory or archive
get:create a new copy of a branch
help:show help on a command or other topic
ignore:ignore specified files or patterns
ignored:list ignored files and the patterns that matched them
info:show information about a working tree, branch or repository
init:make a directory into a versioned branch
init-repo:create a shared repository to hold branches
init-repository:create a shared repository to hold branches
launchpad-login:show or set the launchpad user id
log:show log of a branch, file, or directory
lp-login:show or set the launchpad user id
ls:list files in a tree
merge:perform a three-way merge
missing:show unmerged/unpulled revisions between two branches
mkdir:create a new versioned directory
move:move or rename a file
mv:move or rename a file
nick:print or set the branch nickname. 
pack:compress the data within a repository
plugins:list the installed plugins
praise:show the origin of each line in a file
pull:turn this branch into a mirror of another branch
push:update a mirror of this branch
reconcile:reconcile bzr metadata in a branch
reconfigure:reconfigure the type of a bzr directory
register-branch:register a branch with launchpad.net
remerge:redo a merge
remove:remove files or directories
remove-tree:remove the working tree from a given branch/checkout
rename:move or rename a file
renames:show list of renamed files
resolve:mark a conflict as resolved
resolved:mark a conflict as resolved
revert:revert files to a previous revision
revno:show current revision number
rm:remove files or directories
root:show the tree root directory
send:mail or create a merge-directive for submiting changes
serve:run the bzr server
server:run the bzr server
sign-my-commits:sign all commits by a given committer
split:split a subdirectory of a tree into a separate tree
st:display status summary
stat:display status summary
status:display status summary
switch:set the branch of a checkout and update
tag:create, remove or modify a tag naming a revision
tags:list tags
testament:show testament (signing-form) of a revision
unbind:convert the current checkout into a regular branch
uncommit:remove the last committed revision
up:update a tree to have the latest code committed to its branch
update:update a tree to have the latest code committed to its branch
upgrade:upgrade branch storage to current format
version:show version of bzr
version-info:show version information about this tree
whoami:show or set bzr user id

piper:..pkg/mdadm/topgit|master|% bzr s-c blame
(--all -None){--all,-None}
(--verbose -v){--verbose,-v}
(--help -h){--help,-h}
(--quiet -q){--quiet,-q}
(--long -None){--long,-None}
(--show-ids -None){--show-ids,-None}
(--revision -r){--revision,-r}
filename

-- 
 .''`.   martin f. krafft [EMAIL PROTECTED]
: :'  :  proud Debian developer, author, administrator, and user
`. `'`   http://people.debian.org/~madduck - http://debiansystem.info
  `-  Debian - when you have better things to do than fixing systems


digital_signature_gpg.asc
Description: Digital signature (see http://martin-krafft.net/gpg/)


Bug#505309: RFP: snow -- Steganography using ASCII files

2008-11-11 Thread Jari Aalto
Package: wnpp
Severity: wishlist

* Package name: snow
  Version : 2008
  Upstream Author : Matthew Kwan [EMAIL PROTECTED]
* URL : http://www.darkside.com.au/snow/
* License : GPL
  Programming Lang: C
  Description : Steganography using ASCII files

 The program snow is used to conceal messages in ASCII text by
 appending whitespace to the end of lines. Because spaces and tabs are
 generally not visible in text viewers, the message is effectively
 hidden from casual observers. And if the built-in encryption is used,
 the message cannot be read even if it is detected.

 Snow exploits the steganographic nature of whitespace. Locating
 trailing whitespace in text is like finding a polar bear in a
 snowstorm (which, by the way, explains the logo). And it uses the ICE
 encryption algorithm, so the name is thematically consistent.



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



Bug#440242: closed by Eugene V. Lyubimkin [EMAIL PROTECTED] (closing #440242)

2008-11-11 Thread Zefram
reopen 440242
thanks

Eugene V. Lyubimkin wrote:
'dist-upgrade' command may remove packages without installing any replacement,
it's nature of this command. If you don't want to remove any packages, you
should use 'upgrade' command. All above is documented.

Where is this documented?  The man page describes dist-upgrade thus:

dist-upgrade in addition to performing the function of upgrade,
also intelligently handles changing dependencies with new versions
of packages; apt-get has a smart conflict resolution system,
and it will attempt to upgrade the most important packages at
the expense of less important ones if necessary.

There's no indication here that it might remove requested packages.
Indeed, the description of upgrade, incorporated into the above by
reference, explicitly says

under no circumstances are currently installed packages removed,
or packages not already installed retrieved and installed.

-zefram



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



Bug#505224: RFP: freecad -- An extensible CAx program (alpha)

2008-11-11 Thread Robert Millan
On Tue, Nov 11, 2008 at 04:25:01PM +0100, Robert Millan wrote:
 
 I'll check your package, compare it with mine, and see if anything I wrote
 is worthy of being merged with your tree.

Here, please consider the following changes:

  - Some improvements in debian/control (control.diff)

  - 01_disable_pivy.diff (see 
https://sourceforge.net/tracker/index.php?func=detailaid=2256647group_id=49159atid=455298)

  - 02_fix_make_deps.diff (see 
https://sourceforge.net/tracker/index.php?func=detailaid=2256700group_id=49159atid=455300)

Also, you might want to re-use my debian/rules.  It makes the package
much simpler IMHO, but this is just a matter of preference..

-- 
Robert Millan

  The DRM opt-in fallacy: Your data belongs to us. We will decide when (and
  how) you may access your data; but nobody's threatening your freedom: we
  still allow you to remove your data and not access it at all.
diff --git a/debian/control b/debian/control
index 5263dc2..aea3b7a 100644
--- a/debian/control
+++ b/debian/control
@@ -1,13 +1,12 @@
 Source: freecad
-Section: x11
-Priority: optional
+Priority: extra
 Maintainer: Debian Science Maintainers [EMAIL PROTECTED] 
 Uploaders: Teemu Ikonen [EMAIL PROTECTED]
 Vcs-Browser: http://git.debian.org/?p=debian-science/packages/freecad.git
 Vcs-Git: http://git.debian.org/git/debian-science/packages/freecad.git
-Homepage: http://sourceforge.net/projects/free-cad
-Build-Depends: debhelper (= 7), autotools-dev, libc6-dev (= 2.1.3), 
- libstdc++6, libboost-dev, libboost-date-time-dev, libboost-filesystem-dev, 
+Homepage: http://juergen-riegel.net/FreeCAD/Docu/index.php?title=Main_Page
+Build-Depends: debhelper (= 7), autotools-dev,
+ libboost-dev, libboost-date-time-dev, libboost-filesystem-dev, 
  libboost-graph-dev, libboost-iostreams-dev, libboost-program-options-dev, 
  libboost-regex-dev, libboost-serialization-dev, libboost-signals-dev, 
  python2.5-dev, libqt4-dev, zlib1g-dev, libxerces27-dev, libxt-dev, 
@@ -20,7 +19,7 @@ XS-Python-Version: current
 Package: freecad
 Architecture: any
 Section: science
-Depends: ${shlibs:Depends}, ${python:Depends}
+Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}
 XB-Python-Version: ${python:Versions}
 Conflicts: freecad (= 0.6.472-1)
 Suggests: gnochm | kchmviewer | kchmviewer-nokde | xchm, python-opencv
@@ -30,7 +29,7 @@ Description: An extensible Open Source CAx program (alpha)
  to run as a server and dynamically loadable application extensions and
  it is designed to be platform independent.
  .
- Currently, FreeCAD can import and display CAD models in IGES, STEP, and 
+ Currently, FreeCAD can import and display CAD models in IGES, STEP, and
  BRep formats and meshes in STL, BMS, AST and Wavefront OBJ formats. 
  Editing and modeling features are currently somewhat limited.
 

  $ wc -l coin_wrap.cpp
  335644 coin_wrap.cpp

This beast eats more than 2 GiB of memory to compile...

--- FreeCAD_0.7.1672/src/3rdParty/Makefile.am~	2008-10-24 23:27:58.0 +0200
+++ FreeCAD_0.7.1672/src/3rdParty/Makefile.am	2008-11-10 16:34:00.0 +0100
@@ -1,4 +1,4 @@
-SUBDIRS=Pivy
+#SUBDIRS=Pivy
 
 EXTRA_DIST = \
 		atlas/cblas.h \
--- src/Mod/Part/App/Makefile.am~	2008-10-24 23:23:28.0 +0200
+++ src/Mod/Part/App/Makefile.am	2008-11-10 17:11:26.0 +0100
@@ -194,6 +194,8 @@
 		$(libPart_la_LIBADD) \
 		-lPart
 
+Part_la_DEPENDENCIES = libPart.la
+
 #--
 
 # set the include path found by configure
--- src/Mod/Raytracing/App/Makefile.am~	2008-10-24 23:23:02.0 +0200
+++ src/Mod/Raytracing/App/Makefile.am	2008-11-10 17:20:10.0 +0100
@@ -71,6 +71,8 @@
 		$(libRaytracing_la_LIBADD) \
 		-lRaytracing
 
+Raytracing_la_DEPENDENCIES = libRaytracing.la
+
 #--
 
 # set the include path found by configure
--- src/Mod/Complete/Gui/Makefile.am~	2008-10-24 23:23:54.0 +0200
+++ src/Mod/Complete/Gui/Makefile.am	2008-11-10 17:42:45.0 +0100
@@ -38,6 +38,8 @@
 		Resources/libResources.la \
 		-lCompleteGui
 
+CompleteGui_la_DEPENDENCIES = libCompleteGui.la
+
 #--
 
 # rule for Qt MetaObject Compiler:
--- src/Tools/_TEMPLATE_/App/Makefile.am~	2008-10-24 23:24:40.0 +0200
+++ src/Tools/_TEMPLATE_/App/Makefile.am	2008-11-10 17:44:04.0 +0100
@@ -31,6 +31,8 @@
 		$(lib_TEMPLATE__la_LIBADD) \
 		-l_TEMPLATE_
 
+_TEMPLATE__la_DEPENDENCIES = lib_TEMPLATE_.la
+
 #--
 
 # set the include path found by configure
--- src/Mod/Points/App/Makefile.am~	2008-10-25 01:24:06.0 +0200
+++ src/Mod/Points/App/Makefile.am	2008-11-10 19:01:06.0 +0100
@@ -52,6 +52,8 @@
 		$(libPoints_la_LIBADD) \
 		-lPoints
 
+Points_la_DEPENDENCIES = libPoints.la
+
 

Bug#443564: merging #443564 to MMap

2008-11-11 Thread Eugene V. Lyubimkin
package apt
forcemerge 380509 443564
thanks

Hello people.

It seems that this bug is just another occurrence of MMap bug.
So, I'm merging it.

-- 
Eugene V. Lyubimkin aka JackYF, JID: jackyf.devel(maildog)gmail.com
Ukrainian C++ Developer, Debian APT contributor



signature.asc
Description: OpenPGP digital signature


Bug#505318: python2.5 misses _ctypes.so on armel

2008-11-11 Thread Joachim Breitner
Package: python2.5
Version: 2.5.2-11.1
Severity: important

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi Matthias,

the python armel package does not containt he file
/usr/lib/python2.5/lib-dynload/_ctypes.so (which is present, for
example, in the i386 package). This breaks any program that calls import
ctypes, for example the daemon required to run Debian on an Openmoko
FreeRunner.

A fix would be very appreciated!

Thanks,
Joachim


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

Kernel: Linux 2.6.25-2-486
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages python2.5 depends on:
ii  libbz2-1.01.0.5-1high-quality block-sorting file co
ii  libc6 2.7-16 GNU C Library: Shared libraries
ii  libdb4.5  4.5.20-13  Berkeley v4.5 Database Libraries [
ii  libncursesw5  5.7-2  shared libraries for terminal hand
ii  libreadline5  5.2-3  GNU readline and history libraries
ii  libsqlite3-0  3.5.9-6SQLite 3 shared library
ii  libssl0.9.8   0.9.8g-14  SSL shared libraries
ii  mime-support  3.44-1 MIME files 'mime.types'  'mailcap
ii  python2.5-minimal 2.5.2-11.1 A minimal subset of the Python lan

python2.5 recommends no packages.

Versions of packages python2.5 suggests:
ii  python-profiler   2.5.2-1deterministic profiling of any Pyt
ii  python2.5-doc 2.5.2-2Documentation for the high-level o

- -- no debconf information

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

iEYEARECAAYFAkkZyDMACgkQ9ijrk0dDIGxETgCg1Dqaqh/h2/FBU9i8wyWhcU4G
rKcAoLxQ9KWRIKPNblUTzFEvNP115Ehx
=jujQ
-END PGP SIGNATURE-



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



Bug#505317: tokyocabinet_1.3.15-2(hppa/experimental): FTBFS: error: bzlib.h is required

2008-11-11 Thread Frank Lichtenheld
Package: tokyocabinet
Version: 1.3.15-2
Severity: serious

Hi,

your package failed to build from source.

| Automatic build of tokyocabinet_1.3.15-2 on meitner by sbuild/hppa 98-farm
| Build started at 2008-1328
| **
| Checking available source versions...
| Fetching source files...
| Reading package lists...
| Building dependency tree...
| Reading state information...
| Need to get 456kB of source archives.
| Get:1 http://mirror-ffm.djpig.de experimental/main tokyocabinet 1.3.15-2 
(dsc) [1240B]
| Get:2 http://mirror-ffm.djpig.de experimental/main tokyocabinet 1.3.15-2 
(tar) [447kB]
| Get:3 http://mirror-ffm.djpig.de experimental/main tokyocabinet 1.3.15-2 
(diff) [7627B]
| Fetched 456kB in 0s (2784kB/s)
| Download complete and in download only mode
| ** Using build dependencies supplied by package:
| Build-Depends: debhelper (= 5), autotools-dev, zlib1g-dev, chrpath
| Checking for already installed source dependencies...
[...]
| checking bzlib.h usability... no
| checking bzlib.h presence... no
| checking for bzlib.h... no
| configure: error: bzlib.h is required
| make: *** [config.status] Error 1
| dpkg-buildpackage: failure: /usr/bin/fakeroot debian/rules binary-arch gave 
error exit status 2
| **
| Build finished at 2008-1331
| FAILED [dpkg-buildpackage died]

Full build log(s): 
http://experimental.ftbfs.de/build.php?ver=1.3.15-2pkg=tokyocabinetarch=hppa

Gruesse,
-- 
Frank Lichtenheld [EMAIL PROTECTED]
www: http://www.djpig.de/



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



Bug#495567: gnucash: Please make HBCI support optional (for systems with little disk space)

2008-11-11 Thread Micha Lenk
reassign 495567 gnucash
retitle 495567 gnucash: Please make HBCI support optional (for systems with 
little disk space)
thanks

On Tue, Nov 11, 2008 at 10:27:41AM +0100, Vincent Lefevre wrote:
   Not all users need HBCI, and 25.9MB is a lot on old machines or other
   machines with little disk space. So, HBCI support should be optional.
  
  Of the non-Recommended packages involved,
 
 FYI, recommended packages packages were automatically installed by
 apt-get. [...]

Yes, this is by intention. Maintainers should carefully decide whether
they will have less effort (i.e. really troublesome bug reports) with
having recommended packages installed by default or having suggested
packages not installed by default. For now Thomas Bushnell decided to
have even less effort with having mandatory HBCI support in the gnucash
package.

  the only really big one is libaqbanking-data, and that's big because
  it has a giant database of all the banks in the world and their bank
  ID. This part, at least, should be optional, but it would be up to
  the aqbanking maintainer to decide how feasible that is.
 
 So, let's reassign the bug to libaqbanking20.
 
 Since libaqbanking-data contains *configuration* files, it should
 probably be sufficient to move libaqbanking-data from Depends:
 to Recommends: in libaqbanking20.

This is an absolute no-go. If installed the AqBanking library *needs*
those files in order to work properly. Hence I reassigned the bug back
to Gnucash.

The correct way to make HBCI support optional is to split the package
and distribute the AqBanking plugin as a separate (recommended or
suggested) package.

Regards
  Micha



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



Bug#504292: [checkbashisms] Please detect use of $'...' to expand escape sequences

2008-11-11 Thread Filippo Giunchedi
On Sun, Nov 09, 2008 at 08:13:26PM +, Adam D. Barratt wrote:
 Looking at an earlier set of results, there are still a couple of false
 positives but that's 97% less than before and libtool is full of
 horrible shell:
 
 libtool_1.5.26-4_i386.deb:possible bashism in ./usr/bin/libtool line 4697 
 ($'...' should be $(printf '...')):
 libtool_1.5.26-4_i386.deb-  reload_objs=$objs$old_deplibs `$echo 
 X$libobjs | $SP2NL | $Xsed -e '/\.'${libext}$'/d' -e '/\.lib$/d' -e $lo2o 
 | $NL2SP` $reload_conv_objs ### testsuite: skip nested quoting test
 
 openc++_2.8-9_i386.deb:possible bashism in ./usr/bin/occ2 line 151 ($'...' 
 should be $(printf '...')):
 openc++_2.8-9_i386.deb-   , '\''$'\'' = '\''dlr'\''

these are indeed trickier, I have no idea how to exclude these ATM :(

filippo
--
Filippo Giunchedi - http://esaurito.net
PGP key: 0x6B79D401
random quote follows:

To be learned in an artC, the Theory is sufficient; to be a master of
it, both the Theory and practice are requisite.
-- Charles Hutton



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



Bug#505279: libgnutls26: segfault in _gnutls_x509_crt_get_raw_dn2

2008-11-11 Thread Michael Meskes
Package: libgnutls26
Version: 2.4.2-2
Severity: critical
Justification: breaks unrelated software

Since updating libgnutls26 today I cannot use mutt anymore because it gets a
segfault. Here's what gdb says:

#0  0xf7e13ff4 in _gnutls_x509_crt_get_raw_dn2 (cert=0x11, whom=0xf7e4e367 
issuer, start=0xff9b6a04) at x509.c:1718
#1  0xf7e18c9a in is_issuer (cert=0xf7e4cdce, issuer_cert=0x89c4d90) at 
verify.c:164
#2  0xf7e19b12 in _gnutls_verify_certificate2 (cert=0x11, trusted_cas=value 
optimized out, tcas_size=145, flags=0, output=0xff9b6ac8)
at verify.c:199
#3  0xf7e1a381 in gnutls_x509_crt_list_verify (cert_list=0x8b27a68, 
cert_list_length=0, CA_list=0x8b1e250, CA_list_length=145, CRL_list=0x0,
CRL_list_length=0, flags=0, verify=0xff9b6b8c) at verify.c:396
#4  0xf7dfc64c in _gnutls_x509_cert_verify_peers (session=0x8b26540, 
status=0xff9b6b8c) at gnutls_x509.c:176
#5  0xf7dee921 in gnutls_certificate_verify_peers2 (session=0x8b26540, 
status=0xff9b6b8c) at gnutls_cert.c:606
#6  0xf7dee959 in gnutls_certificate_verify_peers (session=0x8b26540) at 
gnutls_cert.c:639
#7  0x080d46d8 in tls_check_certificate (conn=0x89c38b8) at 
../mutt_ssl_gnutls.c:509
#8  0x080d5ad8 in tls_negotiate (conn=0x89c38b8) at ../mutt_ssl_gnutls.c:269
#9  0x080d5c85 in mutt_ssl_starttls (conn=0x89c38b8) at ../mutt_ssl_gnutls.c:162
#10 0x080de14d in imap_open_connection (idata=0x89c3e30) at 
../../imap/imap.c:436
#11 0x080de3fd in imap_conn_find (account=0xff9b83c4, flags=value optimized 
out) at ../../imap/imap.c:367
#12 0x080df1d1 in imap_open_mailbox (ctx=0x89b8400) at ../../imap/imap.c:567
...

Downgrading to 2.4.2-1 immediately fixes the problem.

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

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

Versions of packages libgnutls26 depends on:
ii  libc6  2.7-16GNU C Library: Shared libraries
ii  libgcrypt111.4.1-2   LGPL Crypto library - runtime libr
ii  libgpg-error0  1.4-2 library for common error values an
ii  libtasn1-3 1.5-1 Manage ASN.1 structures (runtime)
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

libgnutls26 recommends no packages.

Versions of packages libgnutls26 suggests:
pn  gnutls-binnone (no description available)

-- no debconf information



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



Bug#505276: Additional info

2008-11-11 Thread Ben Whyte

Modestas Vainius wrote:

Hello,

backup and move away (remove) ~/.kde/share/apps/amarok and 
~/.kde/share/amarokrc. Or you could try removing some directories from the 
collection scanner list (it should be some setting in ~/.kde/share/amarokrc). 
The bug seems to be related to the detection of the directories contents 
changes the collection scanner is set to scan.


  

Tried that removed both the directory and the rc file.

It now crashes on startup before displaying the initial configuration.

Amarok has crashed! We are terribly sorry about this :(

But, all is not lost! You could potentially help us fix the crash. 
Information describing the crash is below, so just click send, or if you 
have time, write a brief description of how the crash happened first.


Many thanks.







The information below is to help the developers identify the problem, 
please do not modify it.




 DEBUG INFORMATION  ===
Version:1.4.10
Engine:
Build date: Aug 15 2008

CC version: 4.3.1
KDElibs:3.5.9
Qt: 3.3.8b
TagLib: 1.5.0
CPU count:  2
NDEBUG: true
 file `which amarokapp` ===
/usr/bin/amarokapp: ELF 32-bit LSB executable, Intel 80386, version 1 
(SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.8, stripped



 (gdb) bt =
[Thread debugging using libthread_db enabled]
[New Thread 0xb53fe6d0 (LWP 30483)]
0xb7fb8424 in __kernel_vsyscall ()
#0  0xb7fb8424 in __kernel_vsyscall ()
#1  0xb75ed6bb in waitpid () from /lib/i686/cmov/libc.so.6
#2  0x0804d5a2 in Amarok::Crash::crashHandler ()
#3  signal handler called
#4  0xb739d94d in QGListIterator::QGListIterator () from 
/usr/lib/libqt-mt.so.3

#5  0xb70f2e76 in QObject::activate_signal () from /usr/lib/libqt-mt.so.3
#6  0xb6bed021 in KDirLister::newItems () from /usr/lib/libkio.so.4
#7  0xb6bed44b in KDirLister::emitItems () from /usr/lib/libkio.so.4
#8  0xb6c2c8e3 in KDirListerCache::slotEntries () from /usr/lib/libkio.so.4
#9  0xb6c361e9 in KDirListerCache::qt_invoke () from /usr/lib/libkio.so.4
#10 0xb70f2f6d in QObject::activate_signal () from /usr/lib/libqt-mt.so.3
#11 0xb6b5853e in KIO::ListJob::entries () from /usr/lib/libkio.so.4
#12 0xb6ba619c in KIO::ListJob::slotListEntries () from /usr/lib/libkio.so.4
#13 0xb6bc7512 in KIO::ListJob::qt_invoke () from /usr/lib/libkio.so.4
#14 0xb70f2f6d in QObject::activate_signal () from /usr/lib/libqt-mt.so.3
#15 0xb6b59ca1 in KIO::SlaveInterface::listEntries () from 
/usr/lib/libkio.so.4

#16 0xb6bbd334 in KIO::SlaveInterface::dispatch () from /usr/lib/libkio.so.4
#17 0xb6b7786a in KIO::SlaveInterface::dispatch () from /usr/lib/libkio.so.4
#18 0xb6b7f5fc in KIO::Slave::gotInput () from /usr/lib/libkio.so.4
#19 0xb6b7f7b8 in KIO::Slave::qt_invoke () from /usr/lib/libkio.so.4
#20 0xb70f2f6d in QObject::activate_signal () from /usr/lib/libqt-mt.so.3
#21 0xb70f39f0 in QObject::activate_signal () from /usr/lib/libqt-mt.so.3
#22 0xb741de50 in QSocketNotifier::activated () from /usr/lib/libqt-mt.so.3
#23 0xb7110a00 in QSocketNotifier::event () from /usr/lib/libqt-mt.so.3
#24 0xb709518a in QApplication::internalNotify () from 
/usr/lib/libqt-mt.so.3

#25 0xb7095f76 in QApplication::notify () from /usr/lib/libqt-mt.so.3
#26 0xb798bb82 in KApplication::notify () from /usr/lib/libkdecore.so.4
#27 0xb7089a47 in QEventLoop::activateSocketNotifiers () from 
/usr/lib/libqt-mt.so.3

#28 0xb70441d0 in QEventLoop::processEvents () from /usr/lib/libqt-mt.so.3
#29 0xb70abb80 in QEventLoop::enterLoop () from /usr/lib/libqt-mt.so.3
#30 0xb7094c6f in QApplication::enter_loop () from /usr/lib/libqt-mt.so.3
#31 0xb72719c9 in QDialog::exec () from /usr/lib/libqt-mt.so.3
#32 0xb7b76673 in App::firstRunWizard () from /usr/lib/libamarok.so.0
#33 0xb7b785f8 in App::continueInit () from /usr/lib/libamarok.so.0
#34 0xb7b78aeb in App::qt_invoke () from /usr/lib/libamarok.so.0
#35 0xb70f2f6d in QObject::activate_signal () from /usr/lib/libqt-mt.so.3
#36 0xb741d05e in QSignal::signal () from /usr/lib/libqt-mt.so.3
#37 0xb710e8c7 in QSignal::activate () from /usr/lib/libqt-mt.so.3
#38 0xb7115993 in QSingleShotTimer::event () from /usr/lib/libqt-mt.so.3
#39 0xb709518a in QApplication::internalNotify () from 
/usr/lib/libqt-mt.so.3

#40 0xb7095f76 in QApplication::notify () from /usr/lib/libqt-mt.so.3
#41 0xb798bb82 in KApplication::notify () from /usr/lib/libkdecore.so.4
#42 0xb708a56e in QEventLoop::activateTimers () from /usr/lib/libqt-mt.so.3
#43 0xb7044348 in QEventLoop::processEvents () from /usr/lib/libqt-mt.so.3
#44 0xb70abb80 in QEventLoop::enterLoop () from /usr/lib/libqt-mt.so.3
#45 0xb70aba16 in QEventLoop::exec () from /usr/lib/libqt-mt.so.3
#46 0xb7094cff in QApplication::exec () from /usr/lib/libqt-mt.so.3
#47 0x0804be77 in ?? ()
#48 0xbfad40f0 in ?? ()
#49 0xbfad4284 in ?? ()
#50 0x08069c86 in ?? ()
#51 0x08069c75 in ?? ()
#52 0x in ?? ()
#0  0xb7fb8424 in __kernel_vsyscall ()
No symbol table info available.
#1  0xb75ed6bb in waitpid () from 

Bug#505319: Incorrect information in copyright file

2008-11-11 Thread Chris Smith
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Package: phpbb3
Version: 3.0.2-3

The copyright file included with the phpbb3 package contains out of date
information.

The project manager is no longer James Atkinson [1].

The copyright line taken from docs/README.html is also out of date, and
link for the license is incorrect.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)

iD8DBQFJGcmFWNzGzN+tEDMRAhyCAKCU/6D0ic5bjQE2HmWZf0O+gkywXQCdHaX+
cwWFBhyxhgeBRJWrBLHS0Do=
=JRDF
-END PGP SIGNATURE-



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



Bug#501628: gc_approx - Not_found

2008-11-11 Thread Eric Cooper
On Tue, Nov 11, 2008 at 12:47:50PM -0500, Brian J. Murrell wrote:
 On Tue, 2008-11-11 at 12:08 -0500, Eric Cooper wrote:
  The fix should be simple.

 Is that a hint that I should be able to fix it myself?  :-)

No, that was just me daring myself to fix it soon :-)

In fact, I've fixed it already; a patch is attached.  The build
dependencies for approx are rather extensive, but nothing that
pbuilder, etc. can't handle.  Let me know if you need any help.

-- 
Eric Cooper e c c @ c m u . e d u
From da60a6d786ed9b6e847e8abb1deeec1c14605ba3 Mon Sep 17 00:00:00 2001
From: Eric Cooper [EMAIL PROTECTED]
Date: Tue, 11 Nov 2008 12:41:56 -0500
Subject: [PATCH] handle multiple blank lines between paragraphs in control files

---
 control_file.ml |   30 ++
 1 files changed, 18 insertions(+), 12 deletions(-)

diff --git a/control_file.ml b/control_file.ml
index 90b8e89..3dbae7e 100644
--- a/control_file.ml
+++ b/control_file.ml
@@ -45,18 +45,24 @@ let read_paragraph chan =
   with End_of_file - None
 in
 match next with
-| None when lines = [] - raise End_of_file
-| None | Some  - lines
-| Some line when line.[0] = ' ' || line.[0] = '\t' -
-(match lines with
-| last :: others -
-let line =
-  if line =  . then 
-  else substring line ~from: 1
-in
-loop ((last ^ \n ^ line) :: others)
-| [] - failwith (leading white space:  ^ line))
-| Some line - loop (line :: lines)
+| None -
+if lines  [] then lines
+else raise End_of_file
+| Some  -
+if lines  [] then lines
+else loop []
+| Some line -
+if line.[0] = ' ' || line.[0] = '\t' then
+  match lines with
+  | last :: others -
+  let line =
+if line =  . then 
+else substring line ~from: 1
+  in
+  loop ((last ^ \n ^ line) :: others)
+  | [] - failwith (leading white space:  ^ line)
+else
+  loop (line :: lines)
   in
   List.rev_map parse (loop [])
 
-- 
1.5.6.5



Bug#505321: Please remove package from archive

2008-11-11 Thread Onkar Shinde
Package: libjaxp1.2-java

Please remove the package from repositories for following reasons.
1. There are no rdepends on this package except libjaxp1.2-java-gcj
which is created from same source.
2. Even the libjaxp1.3-java has got 'End Of Life' since Februrary
2008. [1] So there is no point keeping 1.2 around.

[1] - https://jaxp.dev.java.net/1.3/EndofLife.html


Onkar



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



Bug#505320: Can not get a complete list of supported output drivers

2008-11-11 Thread Juhapekka Tolvanen

Package: flac123
Version: 0.0.9-3
Severity: normal


% flac123 --help
Usage: flac123 [OPTIONS] FILES...
  -d, --driver=STRING set libao output driver (oss, esd, arts, macosx,
  etc).  Default is oss
  -w, --wav=FILENAME  send output to wav file (use --wav=- and -q for
  stdout)
  -R, --remoteset remote mode for programmatic control
  -q, --quiet suppress text output

Help options:
  -?, --help  Show this help message
  --usage Display brief usage message


etc.? And man-page is not more helpful. Please fix that!

This is how good software do it:

% mpg321 --help
High Performance MPEG 1.0/2.0/2.5 Audio Player for Layer 1, 2, and 3.
Version 0.59q (2002/03/23). Written and copyrights by Joe Drew.
Uses code from various people. See 'README' for more!
THIS SOFTWARE COMES WITH ABSOLUTELY NO WARRANTY! USE AT YOUR OWN RISK!

Usage: mpg321 [options] file(s) | URL(s) | -

Options supported:
   --verbose or -v  Increase verbosity
   --quiet or -qQuiet mode (no title or boilerplate)
   --gain N or -g N Set gain (audio volume) to N (0-100)
   --skip N or -k N Skip N frames into the file
   --verbose or -v  Be more verbose in playing files
   -o dtSet output devicetype to dt
[esd,alsa(09),arts,sun,oss]
(Clip)


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (1100, 'testing'), (990, 'stable'), (500, 
'testing-proposed-updates'), (500, 'proposed-updates'), (101, 'testing'), (99, 
'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: LANG=fi_FI.utf8, LC_CTYPE=fi_FI.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages flac123 depends on:
ii  libao20.8.8-4Cross Platform Audio Output Librar
ii  libc6 2.7-15 GNU C Library: Shared libraries
ii  libflac7  1.1.2-8Free Lossless Audio Codec - runtim
ii  libpopt0  1.14-4 lib for parsing cmdline parameters

flac123 recommends no packages.

flac123 suggests no packages.

-- no debconf information

-- 
Juhapekka naula Tolvanen * http colon slash slash iki dot fi slash juhtolv
ore wo mitsumeteiru anata sama wa ossharu bakari. kesshite dakiyosete wa
kurenai ooki na anata no te. ore no tanjoubi ni wa ai wo kai ataeru. kyou wa
kumori nochi ame.   Dir en grey



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



Bug#505221: libpisock9: Fix syncing with Sony Clie SJ-22

2008-11-11 Thread Martin Pitt
Hi Ludovic,

Ludovic Rousseau [2008-11-11  9:33 +0100]:
 Forwarded upstream. Upstream _has_ a bug tracker. They use mantis.

Ah, thanks! They should put that on http://www.pilot-link.org/ ...

 Maybe it is possible to add pilot-link and jpilot (same bug tracker) to  
 the Upstream bug report for Ubuntu page [1].

I tried. Unfortunately Launchpad doesn't know how to talk to mantis
yet. So I just added it as a bug comment for now.

Thank you!

Martin

-- 
Martin Pitt| http://www.piware.de
Ubuntu Developer (www.ubuntu.com)  | Debian Developer  (www.debian.org)



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



Bug#142228: Patch

2008-11-11 Thread Markus Steinborn
http://bugs.ghostscript.com/show_bug.cgi?id=688943 contains a working patch.





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



Bug#500672: fixed in git

2008-11-11 Thread Klaus Fuerstberger
I can confirm that this is fixed with the files from Marco Amadoris 
repository.


Please implement the changes.

Thanks,
Klaus



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



Bug#502149: Found a subdirectory which generates the error

2008-11-11 Thread Dominique Brazziel
The 'Miles Davis' directory will generate the floating point error, I
checked the others and didn't have a problem.  I will run the server in
debug mode to isolate the failing tune(s).




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



Bug#502018: (no subject)

2008-11-11 Thread Kent Asplund
Problem is still around in libcairo2 1.6.4-6.1. Downgrading to:
 http://glandium.org/files/libcairo2_1.6.4-6.0.1_amd64.deb
solves the problem. 


-- 
I just bought a microwave fireplace... You can spend an evening in
front of it in only eight minutes.
-- Steven Wright



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



Bug#495485: More info

2008-11-11 Thread Ritesh Raj Sarraf
Any update on this???


Initially I wasn't very sure where exactly the problem lied. Especially 
because there were many parties involved.

But todays investigation can confirm that it must be a problem with hal. 
Hal is not adding non-partitioned encrypted devices into its database.

=
From KDE Bug: 113629

In fact, the problem seems to be with HAL. My initial suspicion was that 
udev
might not be generating the device entry/label correctly, but that doesn't 
seem
to be the reason.


Here,

In Problematic case:
Nov 11 23:10:38 learner udevd-event[5814]: udev_node_update_symlinks: 
update
symlink 'disk/by-uuid/bc1026e2-1393-49e7-a6f6-72c01e93b47e' of 
'/block/dm-2'
Nov 11 23:10:38 learner udevd-event[5814]: udev_db_get_devices_by_name: 
found
index directory
'/dev/.udev/names/disk\x2fby-uuid\x2fbc1026e2-1393-49e7-a6f6-72c01e93b47e'
Nov 11 23:10:38 learner udevd-event[5814]: update_link: found 1 devices 
with
name 'disk/by-uuid/bc1026e2-1393-49e7-a6f6-72c01e93b47e'
Nov 11 23:10:38 learner udevd-event[5814]: update_link: found 
'/block/dm-2' for
'disk/by-uuid/bc1026e2-1393-49e7-a6f6-72c01e93b47e'
Nov 11 23:10:38 learner udevd-event[5814]: update_link: compare (our own)
priority of '/block/dm-2' -100 = 0
Nov 11 23:10:38 learner udevd-event[5814]: update_link:
'disk/by-uuid/bc1026e2-1393-49e7-a6f6-72c01e93b47e' with target 'dm-2' has 
the
highest priority -100, create it
Nov 11 23:10:38 learner udevd-event[5814]: node_symlink: found existing 
symlink
'/dev/disk/by-uuid/bc1026e2-1393-49e7-a6f6-72c01e93b47e'
Nov 11 23:10:38 learner udevd-event[5814]: node_symlink: preserve already
existing symlink '/dev/disk/by-uuid/bc1026e2-1393-49e7-a6f6-72c01e93b47e' 
to
'../../dm-2'
Nov 11 23:10:38 learner udevd-event[5814]: udev_node_update_symlinks: 
update
symlink 'disk/by-label/USB_SEAGATE' of '/block/dm-2'
Nov 11 23:10:38 learner udevd-event[5814]: udev_db_get_devices_by_name: 
found
index directory '/dev/.udev/names/disk\x2fby-label\x2fUSB_SEAGATE'
Nov 11 23:10:38 learner udevd-event[5814]: update_link: found 1 devices 
with
name 'disk/by-label/USB_SEAGATE'
Nov 11 23:10:38 learner udevd-event[5814]: update_link: found 
'/block/dm-2' for
'disk/by-label/USB_SEAGATE'
Nov 11 23:10:38 learner udevd-event[5814]: update_link: compare (our own)
priority of '/block/dm-2' -100 = 0
Nov 11 23:10:38 learner udevd-event[5814]: update_link:
'disk/by-label/USB_SEAGATE' with target 'dm-2' has the highest priority 
-100,
create it
Nov 11 23:10:38 learner udevd-event[5814]: node_symlink: found existing 
symlink
'/dev/disk/by-label/USB_SEAGATE'
Nov 11 23:10:38 learner udevd-event[5814]: node_symlink: preserve already
existing symlink '/dev/disk/by-label/USB_SEAGATE' to '../../dm-2'
Nov 11 23:10:38 learner udevd-event[5814]: pass_env_to_socket: passed 751 
bytes
to socket '/org/freedesktop/hal/udev_event',
Nov 11 23:10:38 learner udevd-event[5814]: pass_env_to_socket: passed -1 
bytes
to socket '@/org/kernel/udev/monitor',
Nov 11 23:10:38 learner udevd-event[5814]: udev_event_run: seq 1435 
finished
with 0
Nov 11 23:10:38 learner udevd[1240]: udev_done: seq 1435, pid [5814] exit 
with
0, 0 seconds old

udev did its job. it exited cleanly.

Now the non-problematic case:
Nov 11 23:15:54 learner udevd-event[6064]: udev_node_update_symlinks: 
update
symlink 'disk/by-uuid/b1d29a26-9d95-4aa4-8d9d-9498a874312e' of 
'/block/dm-3'
Nov 11 23:15:54 learner udevd-event[6064]: udev_db_get_devices_by_name: 
found
index directory
'/dev/.udev/names/disk\x2fby-uuid\x2fb1d29a26-9d95-4aa4-8d9d-9498a874312e'
Nov 11 23:15:54 learner udevd-event[6064]: update_link: found 1 devices 
with
name 'disk/by-uuid/b1d29a26-9d95-4aa4-8d9d-9498a874312e'
Nov 11 23:15:54 learner udevd-event[6064]: update_link: found 
'/block/dm-3' for
'disk/by-uuid/b1d29a26-9d95-4aa4-8d9d-9498a874312e'
Nov 11 23:15:54 learner udevd-event[6064]: update_link: compare (our own)
priority of '/block/dm-3' -100 = 0
Nov 11 23:15:54 learner udevd-event[6064]: update_link:
'disk/by-uuid/b1d29a26-9d95-4aa4-8d9d-9498a874312e' with target 'dm-3' has 
the
highest priority -100, create it
Nov 11 23:15:54 learner udevd-event[6064]: node_symlink: found existing 
symlink
'/dev/disk/by-uuid/b1d29a26-9d95-4aa4-8d9d-9498a874312e'
Nov 11 23:15:54 learner udevd-event[6064]: node_symlink: preserve already
existing symlink '/dev/disk/by-uuid/b1d29a26-9d95-4aa4-8d9d-9498a874312e' 
to
'../../dm-3'
Nov 11 23:15:54 learner udevd-event[6064]: udev_node_update_symlinks: 
update
symlink 'disk/by-label/USBDISK' of '/block/dm-3'
Nov 11 23:15:54 learner udevd-event[6064]: udev_db_get_devices_by_name: 
found
index directory '/dev/.udev/names/disk\x2fby-label\x2fUSBDISK'
Nov 11 23:15:54 learner udevd-event[6064]: update_link: found 1 devices 
with
name 'disk/by-label/USBDISK'
Nov 11 23:15:54 learner udevd-event[6064]: update_link: found 
'/block/dm-3' for
'disk/by-label/USBDISK'
Nov 11 23:15:54 learner udevd-event[6064]: update_link: compare (our own)
priority of '/block/dm-3' -100 = 0
Nov 11 23:15:54 learner 

Bug#505272: mrpt-apps: tries to install file owned by inventor-clients

2008-11-11 Thread Ralf Treinen
Package: mrpt-apps
Version: 0.6.4svn585-1
Severity: serious


Hi,

automatic installation tests of packages that share a file and at the
same time do not conflict by their package dependency relationships has
detected the following problem:

Date: 2008-11-10
Architecture: amd64
Distribution: sid
Command: apt-get --assume-yes --allow-unauthenticated install inventor-clients 
mrpt-apps

Reading package lists...
Building dependency tree...
The following extra packages will be installed:
  cpp cpp-4.3 defoma file fontconfig fontconfig-config freeglut3 gconf2-common
  gsfonts gsfonts-x11 lesstif2 lib3ds-dev libatk1.0-0 libavcodec51
  libavformat52 libavutil49 libboost-program-options1.34.1 libcairo2 libcups2
  libcv1 libcvaux1 libdatrie0 libdc1394-22 libdirectfb-1.0-0 libdrm2 libexpat1
  libfaad0 libfontconfig1 libfontenc1 libfreetype6 libftdi1 libgconf2-4
  libgl1-mesa-glx libglib2.0-0 libglu1-mesa libgmp3c2 libgomp1 libgsm1
  libgstreamer-plugins-base0.10-0 libgstreamer0.10-0 libgtk2.0-0
  libgtk2.0-common libhighgui1 libice6 libidl0 libinventor0 libjasper1
  libjpeg62 libkeyutils1 libkrb53 libldap-2.4-2 libmagic1 libmpfr1ldbl
  libmrpt-ann0.6 libmrpt-aria0.6 libmrpt-core0.6 libmrpt-hwdrivers0.6
  libmrpt-reactivenav0.6 libogg0 liborbit2 libpango1.0-0 libpango1.0-common
  libpcre3 libpixman-1-0 libpng12-0 libraw1394-8 libsm6 libsysfs2 libthai-data
  libthai0 libtheora0 libtiff4 libts-0.0-0 libvorbis0a libvorbisenc2
  libwxbase2.8-0 libwxgtk2.8-0 libx11-6 libx11-data libxau6
  libxcb-render-util0 libxcb-render0 libxcb-xlib0 libxcb1 libxcomposite1
  libxcursor1 libxdamage1 libxdmcp6 libxext6 libxfixes3 libxfont1 libxft2
  libxi6 libxinerama1 libxml2 libxp6 libxrandr2 libxrender1 libxt6 libxxf86vm1
  perl perl-modules ucf x11-common xfonts-encodings xfonts-scalable
  xfonts-utils
Suggested packages:
  cpp-doc gcc-4.3-locales defoma-doc dfontmgr psfontmgr x-ttcidfont-conf
  cups-common libfreetype6-dev libvisual-0.4-plugins gnome-app-install
  gstreamer0.10-tools gstreamer0.10-plugins librsvg2-common libjasper-runtime
  krb5-doc krb5-user ttf-kochi-gothic ttf-kochi-mincho ttf-thryomanes
  ttf-baekmuk ttf-arphic-gbsn00lp ttf-arphic-bsmi00lp ttf-arphic-gkai00mp
  ttf-arphic-bkai00mp libraw1394-doc libgnomeprintui2.2-0
  libterm-readline-gnu-perl libterm-readline-perl-perl xfs xserver
Recommended packages:
  libft-perl libatk1.0-data libglib2.0-data hicolor-icon-theme libgtk2.0-bin
  xpdf-reader xml-core perl-doc
The following NEW packages will be installed:
  cpp cpp-4.3 defoma file fontconfig fontconfig-config freeglut3 gconf2-common
  gsfonts gsfonts-x11 inventor-clients lesstif2 lib3ds-dev libatk1.0-0
  libavcodec51 libavformat52 libavutil49 libboost-program-options1.34.1
  libcairo2 libcups2 libcv1 libcvaux1 libdatrie0 libdc1394-22
  libdirectfb-1.0-0 libdrm2 libexpat1 libfaad0 libfontconfig1 libfontenc1
  libfreetype6 libftdi1 libgconf2-4 libgl1-mesa-glx libglib2.0-0 libglu1-mesa
  libgmp3c2 libgomp1 libgsm1 libgstreamer-plugins-base0.10-0
  libgstreamer0.10-0 libgtk2.0-0 libgtk2.0-common libhighgui1 libice6 libidl0
  libinventor0 libjasper1 libjpeg62 libkeyutils1 libkrb53 libldap-2.4-2
  libmagic1 libmpfr1ldbl libmrpt-ann0.6 libmrpt-aria0.6 libmrpt-core0.6
  libmrpt-hwdrivers0.6 libmrpt-reactivenav0.6 libogg0 liborbit2 libpango1.0-0
  libpango1.0-common libpcre3 libpixman-1-0 libpng12-0 libraw1394-8 libsm6
  libsysfs2 libthai-data libthai0 libtheora0 libtiff4 libts-0.0-0 libvorbis0a
  libvorbisenc2 libwxbase2.8-0 libwxgtk2.8-0 libx11-6 libx11-data libxau6
  libxcb-render-util0 libxcb-render0 libxcb-xlib0 libxcb1 libxcomposite1
  libxcursor1 libxdamage1 libxdmcp6 libxext6 libxfixes3 libxfont1 libxft2
  libxi6 libxinerama1 libxml2 libxp6 libxrandr2 libxrender1 libxt6 libxxf86vm1
  mrpt-apps perl perl-modules ucf x11-common xfonts-encodings xfonts-scalable
  xfonts-utils
0 upgraded, 109 newly installed, 0 to remove and 0 not upgraded.
Need to get 56.3MB of archives.
After this operation, 163MB of additional disk space will be used.
WARNING: The following packages cannot be authenticated!
  x11-common libxau6 libxdmcp6 libxcb1 libxcb-xlib0 libx11-data libx11-6
  libxfixes3 libice6 libsm6 libxt6 libmagic1 file libkeyutils1 libkrb53
  libpcre3 perl-modules perl libgmp3c2 libmpfr1ldbl cpp-4.3 cpp defoma
  libexpat1 libfreetype6 ucf gsfonts libfontenc1 libxfont1 xfonts-encodings
  xfonts-utils gsfonts-x11 fontconfig-config libfontconfig1 fontconfig libdrm2
  libxdamage1 libxext6 libxxf86vm1 libgl1-mesa-glx libglu1-mesa freeglut3
  gconf2-common libxp6 lesstif2 libjpeg62 libxi6 xfonts-scalable libinventor0
  inventor-clients lib3ds-dev libglib2.0-0 libatk1.0-0 libavutil49 libfaad0
  libgsm1 libogg0 libtheora0 libvorbis0a libvorbisenc2 libavcodec51
  libavformat52 libboost-program-options1.34.1 libsysfs2 libts-0.0-0
  libdirectfb-1.0-0 libpixman-1-0 libpng12-0 libxcb-render0
  libxcb-render-util0 libxrender1 libcairo2 libcups2 libgomp1 libcv1 libcvaux1
  libdatrie0 libftdi1 libldap-2.4-2 libidl0 liborbit2 libxml2 

Bug#481191: gnome-settings-daemon under vnc segfaults

2008-11-11 Thread Julian Hall
Not the original reporter, but I was seeing similar symptoms and error 
message -- mine looked like this:


Nov 11 10:48:21 iris kernel: gnome-settings-[11408]: segfault at 10 rip 
2bb22a1d rsp 7fffe118f9b0 error 4


I followed the rebuild instructions in the how to get a backtrace page 
you linked to, and the resulting build worked flawlessly, despite the 
fact that the version number of the package it replaced was the same.  I 
guess this means there's a slightly broken build of this package in the 
amd64 port of lenny.






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



Bug#504726: pre-approving universalindentgui/0.8.1-1.1

2008-11-11 Thread Eddy Petrișor
2008/11/10 Thomas Schweitzer [EMAIL PROTECTED]:
 Hello Adeodato, hello Eddy,

 I've some comments to the mentioned bugs.

 Adeodato Simó wrote:

 * Eddy Petrișor [Fri, 07 Nov 2008 14:10:41 +0200]:

 Hello,

 The package universalindentgui is currently in RFA state and has a bug
 that prevents its usage by default.

 The program relies on a temporary location which should be, in theory,
 a directory $TMPDIR/UniversalIndentGUI, but the code fails to add a
 '/' after $TMPDIR, thus trying to create a directory
 /tmpUniversalIndentGUI, which, of course fails.

 This is bug#486577 and it is already fixed in version 1.0.2 by commit 868
 (http://universalindent.svn.sourceforge.net/viewvc/universalindent?view=revrevision=868).

404

 I prepared an NMU for the package which is available from the BR or from:


 http://users.alioth.debian.org/~eddyp-guest/upload/universalindentgui-0.8.1-1.1/

 ( dget
 http://users.alioth.debian.org/~eddyp-guest/upload/universalindentgui-0.8.1-1.1/universalindentgui_0.8.1-1.1.dsc
 )

 Hello Eddy, Thomas sent you a copy of #504726, did you get to see that
 message? Incidentally, upstream of this pacakge has said in the RFA bug
 (#483068) that he's interested on adopting this pacakge; I've asked him
 if he has a fix for #504726, though I forgot to tell him we need it
 fast (BCCed now).

 Concerning bug#504726 I am not sure what's the problem with that? Why is
 there a risk to create a static (where static only means that the name will
 never change) subdir for temporary data?

When a certain file in that directory is opened, let's say
universalindentguimain.cpp, at least one temp file with a
predetermined filename (e.g.:
/tmp/UniversalIndentGui/universalindentguimain.cpp) is created.

A malicious user could run the following commands:

mkdir /tmp/UniversalIndentGui
ln -s /home/thomas/some_precious_file_of_yours
/tmp/UniversalIndentGui/universalindentguimain.cpp


then it will wait for you to open that file for indentation and watch
you destroy your some_precious_file_of_yours[1].


Having a randomized name for the directory (mkdtemp - stdlib.h) makes
the problem go away. Also, having random names for the temporary files
could solve the problem, too.


 Thanks to both of you for helping me getting the package forward!

No problem.

[1]  If that file is the recording of your wedding, you can imagine the damage
-- 
Regards,
EddyP
=
Imagination is more important than knowledge A.Einstein


Bug#505288: False logging for 'crontab -l -u not-allowed-user' as root

2008-11-11 Thread Jan Sievers
Package: cron
Version: 3.0pl1-100
Severity: minor

When root executes the following command:

crontab -l -u someuser

and the user 'someuser' is not allowed to execute cron-jobs,
crontab writes following message in the syslog file:

Nov 11 13:27:15 host crontab[6792]: (root) AUTH (crontab command
not allowed)

For me this suggests, that the user 'root' is not allowed to run crontab.

It think, since there is also an error message on the stderr:

You (someuser) are not allowed to use this program (crontab)

it is not necessary to write anything to syslog, when root is executing the
command. If it's sensefull to write such messages at all is another question.

Thanks for your activity,
Jan


-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-6-686
Locale: LANG=C, [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages cron depends on:
ii  adduser3.102 Add and remove users and groups
ii  debianutils2.17  Miscellaneous utilities specific t
ii  libc6  2.3.6.ds1-13etch7 GNU C Library: Shared libraries
ii  libpam0g   0.79-5Pluggable Authentication Modules l
ii  libselinux11.32-3SELinux shared libraries
ii  lsb-base   3.1-23.2etch1 Linux Standard Base 3.1 init scrip

Versions of packages cron recommends:
ii  exim4 4.63-17metapackage to ease exim MTA (v4) 
ii  exim4-daemon-light [mail-tran 4.63-17lightweight exim MTA (v4) daemon

-- no debconf information



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



Bug#505242: subversion: segfault when fetching external reference

2008-11-11 Thread Andreas Metzler
On 2008-11-11 Michael Biebl [EMAIL PROTECTED] wrote:
[...]
 I think the backtrace led me in the correct direction, as it was
 segfaulting in libgnutls. I checked when libgnutls was last updated, and
 it was yesterday.
 I checked the changelog:

 gnutls26 (2.4.2-2) unstable; urgency=medium

   * [CVE-2008-4989.diff] Fix man in the middle attack for certificate
 verification. CVE-2008-4989 GNUTLS-SA-2008-3

  -- Andreas Metzler [EMAIL PROTECTED]  Mon, 10 Nov 2008 19:42:54 +0100

 And indeed, this is the culprit. If I revert to version 2.4.2-1, the
 crashes in subversion are gone.

 I don't know the code, so I'm not sure if this is a bug in subversion or
 gnutls, so If CCed Andreas, maybe he can comment on this and if this bug
 should be reassigned to gnutls.

Is there a self-signed certificate involved? If yes this is probably a
duplicate of 505242.

A backtrace with libgnutls26-dbg will probably show it clearer.
cu andreas
-- 
`What a good friend you are to him, Dr. Maturin. His other friends are
so grateful to you.'
`I sew his ears on from time to time, sure'



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



Bug#495219: [Freetalk-dev] Re: Bug#495219: freetalk: Hangs on start-up, works fine after pressing CTRL-C once.

2008-11-11 Thread Anand Babu Periasamy

Hi Jeffrin,
Which version are you using?. Can you show me your ./freetalk/freetalk.scm file (without 
confidential password)?


--
Anand Babu Periasamy
GPG Key ID: 0x62E15A31
Blog [http://ab.freeshell.org]
GlusterFS [http://www.gluster.org]
The GNU Operating System [http://www.gnu.org]



Jeffrin Jose wrote:

hello all,

iam experiencing  this hang up and CTRL-C issue


Jeffrin Jose.

--- On *Tue, 11/11/08, Kartik Mistry /[EMAIL PROTECTED]/* wrote:

From: Kartik Mistry [EMAIL PROTECTED]
Subject: [Freetalk-dev] Re: Bug#495219: freetalk: Hangs on start-up,
works fine after pressing CTRL-C once.
To: Hagen Fuchs [EMAIL PROTECTED],
[EMAIL PROTECTED], [EMAIL PROTECTED]
Date: Tuesday, 11 November, 2008, 12:44 PM

On Wed, Oct 29, 2008 at 12:15 AM, Hagen Fuchs
[EMAIL PROTECTED] wrote:
 The aforementioned behaviour stopped a few days ago.  I am neither able
 to restore the buggy version nor am I able to point towards anything I

 may have fixed.  I haven't worked on it since quite a while and
haven't
 found anything interesting before.  Sorry.

No problem. You are welcome!

 If no one else experiences this problem you can probably close this bug
 report.

Should we close this?

-- 
 Cheers,

 Kartik Mistry | 0xD1028C8D | IRC: kart_
 Homepage: people.debian.org/~kartik
 Blog.en: ftbfs.wordpress.com
 Blog.gu: kartikm.wordpress.com


___
Freetalk-dev mailing list
[EMAIL PROTECTED]
http://lists.gnu.org/mailman/listinfo/freetalk-dev



Add more friends to your messenger and enjoy! Invite them now. 
http://in.rd.yahoo.com/tagline_messenger_6/*http://messenger.yahoo.com/invite/ 






___
Freetalk-dev mailing list
[EMAIL PROTECTED]
http://lists.gnu.org/mailman/listinfo/freetalk-dev




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



Bug#247225: RFS: postfixadmin (2nd try)

2008-11-11 Thread Norman Messtorff
Hi Paul,

thanks for your review!

Am Sonntag, den 02.11.2008, 17:43 +0900 schrieb Paul Wise: 
 A review of your source package:
 
 Please send your changes upstream if you haven't already.

my small changes in backup.php are ported from upstream [1]


 The cp calls can be moved into debian/postfixadmin.install.

thanks for the hint, implemented.


 Some of the postinst might be replaced by wwwconfig-common and you
 might want to extend wwwconfig-common to support stuff it doesn't yet.
 
 #448682 is fixed, do you need to make an changes as a result?

Just closed bug #237292 in this context.


 Would it be possible to make dbconfig-common do the stuff listed in
 DOCUMENTS/SECURITY.txt? If not, please file a bug about it.

There is already such an reported bug: #400567.


 Standards-Version does not need the final .1 since only typos and
 minor changes occur in policy 3.8.0.X

adjusted.


 I don't know enough about debconf or web stuff to review the rest of
 the package.

I would be glad if someone could review that parts of my package!
I've uploaded a new version on mentors.debian.net
- URL: http://mentors.debian.net/debian/pool/main/p/postfixadmin
- Source repository: deb-src http://mentors.debian.net/debian unstable
main contrib non-free
- dget
http://mentors.debian.net/debian/pool/main/p/postfixadmin/postfixadmin_2.2.1.1-1.dsc


Thanks a lot,


Norman


[1]
http://sourceforge.net/forum/forum.php?thread_id=2387333forum_id=676076




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



Bug#440049: apt: most of debian/copyright is outdated

2008-11-11 Thread Eugene V. Lyubimkin
Andre Felipe Machado wrote:
 Hello,
 I tried to get more info regarding this issue at 2 threads [0] [1], but
 need more info.
 Is (was) there some Qt code into APT source tree? Where? When?
 Regards.
 Andre Felipe Machado
 
 [0] http://lists.debian.org/debian-mentors/2008/11/msg00097.html
 [1] http://lists.debian.org/debian-legal/2008/11/msg00039.html
I guess clarifying this needs thorough looking into all source files and their
headers. You may start this work at your own and report the result. However,
some experienced apt developers should verify this result IMHO. (Michael, your
opinion?).

-- 
Eugene V. Lyubimkin aka JackYF



signature.asc
Description: OpenPGP digital signature


Bug#505310: bristuff/app-meetme-avoid-overflows screws up conferences

2008-11-11 Thread Faidon Liambotis
Björn Boschman wrote:
 Package: asterisk
 
 While trying to setup a conference call using app_meetme it terminates the 
 conference user when a second caller enters with the following errormessage:
 
 [Nov 11 16:56:26] WARNING[22074]: app_meetme.c:1624 conf_run: Unable to set 
 buffering information: Invalid argument
 
 When I disable bristuff/app-meetme-avoid-overflows before compile it's 
 working fine.
Please use reportbug to report bugs, it includes valuable information
for us.

The most significant of it being the version number of the package on
which you encountered the bug. Could you tell us which it is?

Thanks in advance,
Faidon



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



Bug#502925: #502925

2008-11-11 Thread Michael Gilbert
reassign 502925 libvte9
retitle 502925 libvte9: new fonts are not available until all terminals closed
severity 502925 normal
thank you

 Not sure if we can do something for that. Did you look in gnome-terminal
 or another vte-based terminal? I'm not sure it's in xfce4-terminal, but
 maybe in vte or even gtk.

this bug exists in gnome-terminal as well, so i am reassigning to vte
(assuming that vte is responsible for making fonts available to both
xfce4- and gnome-terminal).



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



Bug#505322: [mozplugger] Unable to load a PDF generated by PHP into KPDF if the URL is not ended by .pdf

2008-11-11 Thread Laurent Léonard
Package: mozplugger
Version: 1.10.2-2
Severity: important

--- Please enter the report below this line. ---
For example, the PDF articles self-generated by Joomla! can't be directly 
opened in Iceweasel/KPDF, I get a Unable to 
open /tmp/plugtmp/plugin-index.php error message. If I deactivate mozplugger 
it works great but obviously KPDF is not integrated in the Iceweasel window. 

--- System information. ---
Architecture: i386
Kernel:   Linux 2.6.26-1-686

Debian Release: lenny/sid
 1001 testing security.debian.org 
 1001 testing ftp.fr.debian.org 

--- Package information. ---
Depends   (Version) | Installed
===-+-===
m4  | 1.4.11-1
libc6(= 2.7-1) | 2.7-15
libx11-6| 2:1.1.5-2
iceweasel   | 3.0.3-3
 OR iceape-browser  | 
 OR epiphany-browser| 
 OR galeon  | 
 OR konqueror   | 4:3.5.9.dfsg.1-5
 OR opera   | 9.51.2061.gcc4.qt3

-- 
Laurent Léonard


signature.asc
Description: This is a digitally signed message part.


Bug#505298: upstream is at 78

2008-11-11 Thread martin f krafft
Package: kvm
Version: 72+dfsg-2
Severity: wishlist

It would be nice to get KVM-78 into experimental. It has lots of
good fixes: http://kvm.qumranet.com/kvmwiki/ChangeLog

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

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


-- 
 .''`.   martin f. krafft [EMAIL PROTECTED]
: :'  :  proud Debian developer, author, administrator, and user
`. `'`   http://people.debian.org/~madduck - http://debiansystem.info
  `-  Debian - when you have better things to do than fixing systems


digital_signature_gpg.asc
Description: Digital signature (see http://martin-krafft.net/gpg/)


Bug#500672: fixed in git

2008-11-11 Thread Klaus Fuerstberger

Daniel Baumann said the following on 11.11.2008 18:10:

as the message that closed the bug says - this was included in 1.139.1-4.


ahh, I should have read the bugreport to the end...

Sorry for the noise!

Bye,
Klaus




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



Bug#505267: roundcube: some form of log output on failed logins

2008-11-11 Thread Kris Popendorf
Package: roundcube
Version: 0.1.1-8
Severity: wishlist


Roundcube is awesome and I like it lots, but the lack of any log output 
or hooks of any kind makes it annoyingly vulnerable to brute force 
attacks. I added a little error output into the login page to dump an 
apache-style line to stderr so it can be easily picked up by firewalling 
programs like fail2ban (see included patch).

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

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
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 roundcube depends on:
ii  roundcube-core0.1.1-8skinnable AJAX based webmail solut
ii  roundcube-mysql [roundcube-db 0.1.1-8metapackage providing MySQL depend

roundcube recommends no packages.

roundcube suggests no packages.

Versions of packages roundcube-core depends on:
ii  apache2   2.2.9-10   Apache HTTP Server metapackage
ii  apache2-mpm-prefork [httpd]   2.2.9-10   Apache HTTP Server - traditional n
ii  dbconfig-common   1.8.39 common framework for packaging dat
ii  debconf [debconf-2.0] 1.5.22 Debian configuration management sy
ii  libmagic1 4.26-1 File type determination library us
ii  php-auth  1.6.1-1PHP PEAR modules for creating an a
ii  php-db1.7.13-2   PHP PEAR Database Abstraction Laye
ii  php-mail-mime 1.5.2-0.1  PHP PEAR module for creating MIME 
ii  php-net-smtp  1.3.1-1PHP PEAR module implementing SMTP 
ii  php-net-socket1.0.8-2PHP PEAR Network Socket Interface 
ii  php5  5.2.6-5server-side, HTML-embedded scripti
ii  php5-mcrypt   5.2.6-5MCrypt module for php5
ii  roundcube-mysql [roundcube-db 0.1.1-8metapackage providing MySQL depend
ii  tinymce2  2.1.3-1platform independent web based Jav
ii  ucf   3.0010 Update Configuration File: preserv

-- debconf information excluded
diff -Naur 0.1.1-8/index.php 0.1.1-8.slab/index.php
--- roundcube-0.1.1/index.php	2008-11-11 18:17:37.939438895 +0900
+++ roundcube-0.1.1-secured/index.php	2008-11-11 18:01:06.0 +0900
@@ -177,6 +177,9 @@
   else
   {
 $OUTPUT-show_message($IMAP-error_code == -1 ? 'imaperror' : 'loginfailed', 'warning');
+if($IMAP-error_code != -1){
+  file_put_contents('php://stderr',[.strftime(%c).] [roundcube] [client .$_SERVER['REMOTE_ADDR'].] failed login attempt.\n);
+}
 rcmail_kill_session();
   }
 }


Bug#405951: Misplaced toolbar icons reproduced

2008-11-11 Thread Ron Bentley
Is it also independent of XAA vs. EXA ? 


Yes.  I tested with 'Option AccelMethod EXA' and 'Option 
AccelMethod XAA' using the Intel driver.  I verified in Xorg.0.log 
that the appropriate acceleration method was indeed in place, and then 
reproduced the problem in both cases.  Tested both cases in Gnome/Compiz 
and IceWM.



Does it happen with the cairo packages you can get on
http://glandium.org/blog/?p=209 ?


I went to that site, retrieved libcairo2_1.6.4-6.0.1_i386.deb, and 
installed it over my existing version of libcairo2.  I started Iceape 
(did not restart X), and it had no effect.  I could still reproduce the 
problem.  Did I get the right package?


For what it's worth, this really does look like a simple case of having 
misplaced icons.  Only the toolbar icons are affected, and hovering over 
them with the mouse is all it takes to throw them off.  Plus, it *only* 
happens in Classic theme with Pictures only checked.


I don't know anything about the Iceape code, though, so that may be way off.



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



  1   2   3   4   5   >