Bug#351751: iproute: tc u32 sample clause calculating wrong hash on 2.6 kernels

2006-02-07 Thread Russell Stuart
Package: iproute
Version: 20051007-2.1
Severity: important
Tags: patch

The hashing algorithm for u32 buckets changed in the kernel
between 2.4 and 2.6.  In 2.4 it was an xor of all bytes of
the hash value.  In 2.6 the hash is just least significant
8 bits of the hashed value.  cf. the function
u32_hash_fold in kernel-source.x.y.z/net/sched/cls_u32.c.
It implements the hashing function.

The sample clause of tc is meant to calculate this hash
value for you.  However it only calculates the 2.4 version,
not the 2.6 one.  Consequently, any u32 filter installed
using the tc sample clause on 2.6 doesn't work.

The attached patch fixes the problem so tc will work in both
2.4 and 2.6.

The bug is present in cvs upstream.  (Are you sending the
patches upstream?  If not let me know and I will.)


-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.15-3.1-lube-686-smp
Locale: LANG=en_AU, LC_CTYPE=en_AU (charmap=ISO-8859-1)

Versions of packages iproute depends on:
ii  libatm1 2.4.1-17 shared library for ATM (Asynchrono
ii  libc6   2.3.2.ds1-22 GNU C Library: Shared libraries an

-- no debconf information
diff -Nur iproute-20051007.keep/tc/f_u32.c iproute-20051007/tc/f_u32.c
--- iproute-20051007.keep/tc/f_u32.c	2006-01-12 17:34:37.0 +1000
+++ iproute-20051007/tc/f_u32.c	2006-02-07 17:10:29.0 +1000
@@ -17,6 +17,7 @@
 #include syslog.h
 #include fcntl.h
 #include sys/socket.h
+#include sys/utsname.h
 #include netinet/in.h
 #include arpa/inet.h
 #include string.h
@@ -874,6 +875,7 @@
 htid = (handle0xF000);
 		} else if (strcmp(*argv, sample) == 0) {
 			__u32 hash;
+			struct utsname utsname;
 			struct {
 struct tc_u32_sel sel;
 struct tc_u32_key keys[4];
@@ -889,8 +891,19 @@
 return -1;
 			}
 			hash = sel2.sel.keys[0].valsel2.sel.keys[0].mask;
-			hash ^= hash16;
-			hash ^= hash8;
+			uname(utsname);
+			if (strncmp(utsname.release, 2.4., 4) == 0) {
+hash ^= hash16;
+hash ^= hash8;
+			}
+			else {
+__u32 mask = sel2.sel.keys[0].mask;
+while (mask  !(mask  1)) {
+  	mask = 1;
+	hash = 1;
+}
+hash = 0xFF;
+			}
 			htid = ((hash12)0xFF000)|(htid0xFFF0);
 			sample_ok = 1;
 			continue;


Bug#351752: xorg: Hangs (white screen with color stripes) after few hours of inactivity

2006-02-07 Thread Marcin Bieńkowski
Package: xorg
Version: xserver-xorg
Severity: important

 
After an hour (I have not measured this time exactly) of inactivity,
when my laptop's lid (Toshiba 2540-S203) is closed the screen becomes
white with many thin vertical stripes of different colors (red, green,
blue, cyan, magenta). Lines go from the bottom to the upper edge of the
screen and are one pixel wide. This happened already with the previous
release of Xorg Xserver (6.8.2). 

The problem with the new release (6.9.0.dfsg.1-4) is that if I leave my
laptop on overnight, in the morning the white screen does not go away
after moving a mouse or pressing keys (as it was the case with 6.8.2). 
The computer still runs, I can connect to it using ssh, but killing xserver
does not help at all. 

I am enclosing my /etc/X11/xorg.conf

best regards,

M.
-- 
[ Marcin 'DrYoung' Bienkowski ** http://valis.rpg.pl/~young/ ]

--- /etc/X11/xorg.conf begin ---

Section Files
FontPath/usr/lib/X11/fonts/misc
FontPath/usr/lib/X11/fonts/75dpi/:unscaled
FontPath/usr/lib/X11/fonts/100dpi/:unscaled   
FontPath/usr/lib/X11/fonts/100dpi
FontPath/usr/lib/X11/fonts/75dpi
FontPath/usr/share/fonts/truetype
FontPath/usr/lib/X11/fonts/Type1
FontPath/usr/lib/X11/fonts/Speedo
EndSection


Section Module
Loadbitmap
Loaddbe
Loadddc
Loaddri
Loadextmod
#   Loadfreetype
Loadglx
Loadint10
Loadrecord
Loadspeedo
Loadtype1
Loadvbe
Loadsynaptics
EndSection

Section InputDevice
Identifier  Generic Keyboard
Driver  keyboard
Option  CoreKeyboard
Option  XkbRules  xfree86
Option  XkbModel  pc105
Option  XkbLayout pl
EndSection

Section InputDevice
  Driversynaptics
  Identifier Touchpad
  OptionDevice/dev/psaux
  OptionProtocol  auto-dev
  OptionLeftEdge  1900
  OptionRightEdge 5400
  OptionTopEdge   1900
  OptionBottomEdge4000
  OptionFingerLow 25
  OptionFingerHigh30
  OptionMaxTapTime180
  OptionMaxTapMove220
  OptionVertScrollDelta 100
  OptionMinSpeed  0.02
  OptionMaxSpeed  0.18
  OptionAccelFactor 0.0010
  OptionSHMConfig on
#  Option   Repeater  /dev/ps2mouse
EndSection

Section InputDevice
Identifier  USB Mouse
Driver  mouse
Option  Protocol  ImPS/2
Option  Device/dev/input/mice
Option  Buttons   5
Option  ZAxisMapping  4 5
EndSection


Section Device
Identifier  Generic Video Card
Driver  nv
EndSection

Section Monitor
Identifier  Generic Monitor
HorizSync   30-60
VertRefresh 50-75
Option  DPMS
EndSection

Section Screen
Identifier  Default Screen
Device  Generic Video Card
Monitor Generic Monitor
Option  NoLogo 1
DefaultDepth24
SubSection Display
Depth   24
Modes   1024x768 800x600 640x480
EndSubSection
EndSection

Section ServerLayout
Identifier  Default Layout
Screen  Default Screen
InputDevice Generic Keyboard
InputDevice Touchpad CorePointer
InputDevice USB Mouse SendCoreEvents
EndSection

Section DRI
Mode0666
EndSection

--- /etc/X11/xorg.conf end --- 


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


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



Bug#351496: samba: connect to share

2006-02-07 Thread Vladimir Stavrinov
On Tue, Feb 07, 2006 at 06:40:10AM +0100, Christian Perrier wrote:

  Are you using security=server?

Yes.

 Also please check whether crashes are still happening with the
 version 3.0.21b-1 which is currently available from
 incoming.debian.org and will move to the archive in about 12
 hours ;

OK. I am waiting.

-- 

*
  Vladimir Stavrinov  ***
***  [EMAIL PROTECTED]  ***
*


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



Bug#351525: dvipdfmx: how to properly implement map files support for dvipdfmx

2006-02-07 Thread Frank Küster
A Lee [EMAIL PROTECTED] wrote:

 If updmap-sys is used to for such fonts, it MUST NOT modify the map file of
 dvipdfm because dvipdfmx also read it. 

Therefore it would make things much easier if upstream (i.e. the TeXlive
people and Thomas Esser) would decide to drop the unmaintained dvipdfm
completely and use dvipdfmx instead.

 As far as i know dvips and ps2pk
 does not support truetype font. If it is true, updmap-sys must not modify
 their map files, either. 

I don't understand this - it of course does modify, or rather create,
map files for dvips and ps2pk.  It just doesn't include information how
to create slanted versions etc., and it must not change this behavior.
I guess you simply can't use these fonts with dvips - or is there an
other trick?

 Furthermore, some fonts like Adobe's OTFs included
 in acroread are supported by only dvipdfmx. In this case, updmap-sys must
 not touch fontmap files for all the other programs.

 I think using updmap-sys for dvipdfmx is not a good idea.

I don't understand why you think that.  The whole point of updmap is
that there should be one central place for font configuration
(updmap.cfg, in Debian a generated file), and one program that knows
about the syntax of the map files for all TeX-related programs, and
created the correct map file for each.  AFAIK, it currently includes the
all fonts in all generated map files, but it already drops some
information about a particular font if it is not needed and/or
understood by the target program.  

Why not simply extend this behavior to not include lines for fonts that
have this how-to-generate-slanted feature, or instead to keep only the
information for the base font?

Regards, Frank
-- 
Frank Küster
Single Molecule Spectroscopy, Protein Folding @ Inst. f. Biochemie, Univ. Zürich
Debian Developer (teTeX)




Bug#207932: Time to fix this bug.

2006-02-07 Thread Jérôme Marant
Quoting Nathanael Nerode [EMAIL PROTECTED]:

 Jérôme Marant wrote:
  Sooner or later, Debian will have to decide if it definitely wants to
  leave the project in the hands of extremists. I hope the GR will lead
  us to the right path, that is getting rid of fundamentalists.


 If Debian goes down your we don't give a damn about freedom path, I
 plan to introduce lots of exciting non-modifiable software to main.
 That would be fun.

I would not be surprised.  You are constantly trying to undermine the
Debian project.

--
Jérôme Marant



Bug#340951: gcc-4.0: [sparc] ICE in invert_exp_1 with -O3 while compiling mysql 5.0.16

2006-02-07 Thread Meelis Roos


While preparing the preprocessed source I found the bug to be a 
duplicate of gcc PR23454 
(http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23454). Gcc bugzilla tells 
it will be fixed in 4.0.2 but it seems it isn't.


--
Meelis Roos ([EMAIL PROTECTED])


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



Bug#340462: gtk-gnutella: version in stable is too old for the network - upload to volatile

2006-02-07 Thread Andreas Barth
* Anand Kumria ([EMAIL PROTECTED]) [060207 04:03]:
 Considering that volatile only useful package is (potentially) clamav
 and that only if you are disconnected I'd say you are better off
 rebuilding the package yourself and never using volatile.

I would prefer if you stop telling lies about volatile. You behave like
you are a kid in a sand-box and now want to destroy someones else
sand-castle because it looks nicer than yours. This is *not* the way
things should work in Debian.



Andi
-- 
  http://home.arcor.de/andreas-barth/


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



Bug#267527: a2ps NMU patch 1:4.13b.dfsg.1-0.2

2006-02-07 Thread Per Olofsson
Hi,

Here's the patch for my NMU 1:4.13b.dfsg.1-0.2 of a2ps:

reverted:
--- a2ps-4.13b.dfsg.1/lib/printlen.c
+++ a2ps-4.13b.dfsg.1.orig/lib/printlen.c
@@ -28,11 +28,14 @@
 unsigned long strtoul ();
 
 static int
+int_printflen (const char *format, va_list *args)
-int_printflen (const char *format, va_list ap)
 {
   const char *cp;
   int total_width = 0;
   int width = 0;
+  va_list ap;
+
+  memcpy (ap, args, sizeof (va_list));
 
   for (cp = format ; *cp ; cp++)
 {
@@ -96,16 +99,7 @@
 int
 vprintflen (const char *format,  va_list args)
 {
+  return int_printflen (format, args);
-  va_list ap;
-  int ret;
-
-  va_copy (ap, args);
-
-  ret = int_printflen (format, ap);
-
-  va_end(ap);
-
-  return ret;
 }
 
 int
reverted:
--- a2ps-4.13b.dfsg.1/lib/title.c
+++ a2ps-4.13b.dfsg.1.orig/lib/title.c
@@ -83,17 +83,11 @@
   VA_START (args, format);
 
   len = vprintflen (format, args);
-
-  va_end (args);
-
   if (format [strlen (format) - 1] == '\n')
 len --;
   if (center_p)
 for (padding = 0 ; padding  79 - len ; padding += 2)
   putc (' ', stream);
-
-  VA_START (args, format);
-
 # if HAVE_VPRINTF || _LIBC
   vfprintf (stream, format, args);
 # else
diff -u a2ps-4.13b.dfsg.1/debian/emacsen-startup 
a2ps-4.13b.dfsg.1/debian/emacsen-startup
--- a2ps-4.13b.dfsg.1/debian/emacsen-startup
+++ a2ps-4.13b.dfsg.1/debian/emacsen-startup
@@ -15,7 +15,7 @@
   (symbol-name flavor)
  /site-lisp/a2ps) load-path))
 ;; a2ps
-(autoload 'a2ps-mode a2ps-mode nil t)
+(autoload 'a2ps-mode a2ps nil t)
 (setq auto-mode-alist
   (cons '(.*\\.a2ps$ . a2ps-mode)
auto-mode-alist))
diff -u a2ps-4.13b.dfsg.1/debian/changelog a2ps-4.13b.dfsg.1/debian/changelog
--- a2ps-4.13b.dfsg.1/debian/changelog
+++ a2ps-4.13b.dfsg.1/debian/changelog
@@ -1,3 +1,22 @@
+a2ps (1:4.13b.dfsg.1-0.2) unstable; urgency=medium
+
+  * NMU.
+  * Medium urgency due to RC bugfix.
+  * Always pass -d to a2ps-lpr-wrapper, regardless of the installed
+printer system when building. Should fix the issue with -P not
+working. Many thanks to Peder Chr. Norgaard for the solution.
+Closes: #267527.
+  * Really pass correct arguments to gv (GNU-style --). Closes: #291749.
+  * Don't treat all filenames which include the substring tar as binary
+files. Closes: #350555.
+  * Fixed Emacs autoload (a2ps.el, not a2ps-mode.el). Thanks to Francesco
+Potorti`. Closes: #331452.
+  * Reverted va_list changes from previous upload which already existed in
+debian/patches/22_va_list_fix.dpatch.
+  * Don't load non-existent make-regexp.el in a2ps.el.
+
+ -- Per Olofsson [EMAIL PROTECTED]  Tue,  7 Feb 2006 08:50:53 +0100
+
 a2ps (1:4.13b.dfsg.1-0.1) unstable; urgency=medium
 
   * NMU.
diff -u a2ps-4.13b.dfsg.1/debian/patches/00list 
a2ps-4.13b.dfsg.1/debian/patches/00list
--- a2ps-4.13b.dfsg.1/debian/patches/00list
+++ a2ps-4.13b.dfsg.1/debian/patches/00list
@@ -23,0 +24,2 @@
+24_tar_files_mismatch
+25_dont_load_make-regexp_in_a2ps_el
diff -u a2ps-4.13b.dfsg.1/debian/patches/23_newer_gv_option.dpatch 
a2ps-4.13b.dfsg.1/debian/patches/23_newer_gv_option.dpatch
--- a2ps-4.13b.dfsg.1/debian/patches/23_newer_gv_option.dpatch
+++ a2ps-4.13b.dfsg.1/debian/patches/23_newer_gv_option.dpatch
@@ -1,35 +1,21 @@
-#! /bin/sh -e
-## 23_newer_gv_option.dpatch by Masayuki Hatta [EMAIL PROTECTED]
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## 23_newer_gv_option.dpatch by Per Olofsson [EMAIL PROTECTED]
 ##
-## All lines beginning with \`## DP:' are a description of the patch.
+## All lines beginning with `## DP:' are a description of the patch.
 ## DP: To give correct option to newer gv
 
-if [ $# -ne 1 ]; then
-echo 2 `basename $0`: script expects -patch|-unpatch as argument
-exit 1
-fi
-case $1 in
--patch) patch -f --no-backup-if-mismatch --dry-run -p1  $0  patch 
-f --no-backup-if-mismatch -p1  $0
-;;
--unpatch) patch -f --no-backup-if-mismatch -R -p1  $0;;
-*)
-echo 2 `basename $0`: script expects -patch|-unpatch as 
argument
-exit 1;;
-esac
-
-exit 0
-
-diff -urN a2ps-4.13b.orig/etc/a2ps_cfg.in a2ps-4.13b/etc/a2ps_cfg.in
 a2ps-4.13b.orig/etc/a2ps_cfg.in2005-08-03 01:32:31.0 +0900
-+++ a2ps-4.13b/etc/a2ps_cfg.in 2005-08-03 01:33:20.0 +0900
[EMAIL PROTECTED]@
+diff -urNad a2ps-4.13b.dfsg.1~/etc/a2ps_cfg.in 
a2ps-4.13b.dfsg.1/etc/a2ps_cfg.in
+--- a2ps-4.13b.dfsg.1~/etc/a2ps_cfg.in 2006-02-07 07:45:47.0 +0100
 a2ps-4.13b.dfsg.1/etc/a2ps_cfg.in  2006-02-07 07:46:25.0 +0100
 @@ -190,8 +190,8 @@
  # Either GV (prefered) or Ghostview will be used as the display printer
  # We give -dNOPLATFONTS so that real fonts are used
  # (Strange results appear with Ogonkify's fonts for instance).
 [EMAIL PROTECTED]@Variable: ghostview @ghostview@ -arguments -dNOPLATFONTS
 [EMAIL PROTECTED]@Variable: ghostview @gv@ -antialias -arguments -dNOPLATFONTS
[EMAIL PROTECTED]@Variable: ghostview @ghostview@ 

Bug#351729: (no subject)

2006-02-07 Thread Michael Koch
On Tue, Feb 07, 2006 at 01:35:33AM +0100, Alexander Bahlo wrote:
 Package: libswt3.1-gtk-jni
 Version: 3.1.1-8
 Subject: libswt3.1-gtk-jni: libswt-pi-gtk-3139.so cannot be mapped and 
 refuses Eclipse to start
 Severity: grave
 Justification: renders package unusable
 
 When starting Eclipse, after showing the splash screen a small error
 window appears and refers to the log. Then, Eclipse quits. Unfortunately
 since I don't do other programming in Java this is the only thing I can
 tell at the moment.
 The following is the content of ~/workspace/.metadata/.log:
 
 !SESSION 2006-02-06 20:10:15.997
 ---
 eclipse.buildId=M20050929-0840
 java.fullversion=GNU libgcj 4.0.3 20060121 (prerelease) (Debian
 4.0.2-7j1)
 BootLoader constants: OS=linux, ARCH=x86, WS=gtk, NL=de_DE
 Command-line arguments:  -os linux -ws gtk -arch x86
 
 !ENTRY org.eclipse.osgi 2006-02-06 20:10:18.931
 !MESSAGE Application error
 !STACK 1
 java.lang.UnsatisfiedLinkError:
 /home/alex/.eclipse/org.eclipse.platform_3.1.1/configuration/org.eclipse.osgi/bundles/4/1/.cp/libswt-pi-gtk-3139.so:
 /home/alex/.eclipse/org.eclipse.platform_3.1.1/configuration/org.eclipse.osgi/bundles/4/1/.cp/libswt-pi-gtk-3139.so:
 Fehler beim Mappen des Shared Objects: Die Operation ist nicht erlaubt

That is really strange. I cannot reproduce this here.

Can you please try to run ldd on libswt-pi-gtk-3139.so and look for
unresolved dependencies?

ldd 
/home/alex/.eclipse/org.eclipse.platform_3.1.1/configuration/org.eclipse.osgi/bundles/4/1/.cp/libswt-pi-gtk-3139.so


Cheers,
Michael
-- 
Escape the Java Trap with GNU Classpath!
http://www.gnu.org/philosophy/java-trap.html

Join the community at http://planet.classpath.org/



Bug#351753: webalizer: Norwegian locale lists .no as Nepal

2006-02-07 Thread Øyvind Hallsteinsen

Package: webalizer
Version: 2.01.10-26
Severity: minor


When using LANG/LC_ALL=no_NO webalizer generates the country name 
Nepal for domains under .no, which is wrong, no == Norway (Norge) 
and np == Nepal. The error is found in the country lookup and 
generated country pie chart PNG.


When using LANG/LC_ALL=C .no is correctly interpreted as Norway.


The bug sounds very similary to bug #343196 
(http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=343196)



--
Regards,
Øyvind Hallsteinsen



Bug#112507: Hiya hottie. Would you like to nail me through the night?.,,.,.,. diction

2006-02-07 Thread Nikki J.
So what do you think? Your profile showed up as just the type Im looking for. 
Would you like to be my bootey call? So do you think you're interested? Send a 
message too hardfuck48.

http://tama9x.com/dpw/


Rich must leadsman if marksman bryan if nov.-ely9j.com/notonlist/


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



Bug#335919: evolution: This bug is really important ! Please fix !

2006-02-07 Thread Xavier Bestel
Package: evolution
Version: 2.4.2.1-1
Followup-For: Bug #335919


Hi,

Evolution is unusable since the bug appeared (in the last version) as I
can't access my IMAP mail. I know there's a patch to fix this bug. Could
someone upload a fixed version ?

Thanks,

Xav

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-10-amd64-k8
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=UTF-8)

Versions of packages evolution depends on:
ii  evolution-dat 1.4.2.1-1  evolution database backend server
ii  gconf22.12.1-8   GNOME configuration database syste
ii  gnome-icon-th 2.12.1-2   GNOME Desktop icon theme
ii  gtkhtml3.83.8.1-1HTML rendering/editing library - b
ii  libart-2.0-2  2.3.17-1   Library of functions for 2D graphi
ii  libatk1.0-0   1.10.3-1   The ATK accessibility toolkit
ii  libaudiofile0 0.2.6-6Open-source version of SGI's audio
ii  libbonobo2-0  2.10.1-1   Bonobo CORBA interfaces library
ii  libbonoboui2- 2.10.1-2   The Bonobo UI library
ii  libc6 2.3.5-12.1 GNU C Library: Shared libraries an
ii  libcairo2 1.0.2-3The Cairo 2D vector graphics libra
ii  libcamel1.2-6 1.4.2.1-1  The Evolution MIME message handlin
ii  libcomerr21.38+1.39-WIP-2005.12.31-1 common error description library
ii  libcompfaceg1 1:1.5.2-3  Compress/decompress images for mai
ii  libdb4.2  4.2.52-23  Berkeley v4.2 Database Libraries [
ii  libebook1.2-5 1.4.2.1-1  Client library for evolution addre
ii  libecal1.2-3  1.4.2.1-1  Client library for evolution calen
ii  libedataserve 1.4.2.1-1  Utility library for evolution data
ii  libedataserve 1.4.2.1-1  GUI utility library for evolution 
ii  libesd-alsa0  0.2.36-3   Enlightened Sound Daemon (ALSA) - 
ii  libfontconfig 2.3.2-1.1  generic font configuration library
ii  libfreetype6  2.1.10-1   FreeType 2 font engine, shared lib
ii  libgail-commo 1.8.8-1GNOME Accessibility Implementation
ii  libgail17 1.8.8-1GNOME Accessibility Implementation
ii  libgconf2-4   2.12.1-8   GNOME configuration database syste
ii  libgcrypt11   1.2.2-1LGPL Crypto library - runtime libr
ii  libglade2-0   1:2.5.1-2  library to load .glade files at ru
ii  libglib2.0-0  2.8.6-1The GLib library of C routines
ii  libgnome-keyr 0.4.6-2GNOME keyring services library
ii  libgnome-pilo 2.0.12-1.6 Support libraries for gnome-pilot
ii  libgnome2-0   2.12.0.1-5 The GNOME 2 library - runtime file
ii  libgnomecanva 2.12.0-2   A powerful object-oriented display
ii  libgnomeprint 2.12.1-3   The GNOME 2.2 print architecture -
ii  libgnomeprint 2.12.1-2   GNOME 2.2 print architecture User 
ii  libgnomeui-0  2.12.0-2   The GNOME 2 libraries (User Interf
ii  libgnomevfs2- 2.12.2-5   GNOME virtual file-system (runtime
ii  libgnutls11   1.0.16-14  GNU TLS library - runtime library
ii  libgpg-error0 1.1-4  library for common error values an
ii  libgtk2.0-0   2.8.10-1   The GTK+ graphical user interface 
ii  libgtkhtml3.8 3.8.1-1HTML rendering/editing library - r
ii  libice6   1:1.0.0-1  X11 Inter-Client Exchange library
ii  libjpeg62 6b-11  The Independent JPEG Group's JPEG 
ii  libkrb53  1.4.3-5MIT Kerberos runtime libraries
ii  libldap2  2.1.30-12  OpenLDAP libraries
ii  libnspr4  2:1.7.12-1.1   Netscape Portable Runtime Library
ii  libnss3   2:1.7.12-1.1   Network Security Service Libraries
ii  liborbit2 1:2.12.4-1 libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0 1.10.2-1   Layout and rendering of internatio
ii  libpisock80.11.8-18  Library for communicating with a P
ii  libpisync00.11.8-0.12.0-pre4-3   synchronization library for PalmOS
ii  libpng12-01.2.8rel-5 PNG library - runtime
ii  libpopt0  1.7-5  lib for parsing cmdline parameters
ii  libsm66.9.0.dfsg.1-4 X Window System Session Management
ii  libsoup2.2-8  2.2.6-1an HTTP library implementation in 
ii  libtasn1-20.2.17-1   Manage ASN.1 structures (runtime)
ii  libx11-6  2:1.0.0-1  X11 client-side library
ii  

Bug#340462: gtk-gnutella: version in stable is too old for the network - upload to volatile

2006-02-07 Thread Anand Kumria
Hello Andreas,

[ I've removed 340462 from further follow-ups ]

On Tue, Feb 07, 2006 at 09:08:58AM +0100, Andreas Barth wrote:
 * Anand Kumria ([EMAIL PROTECTED]) [060207 04:03]:
  Considering that volatile only useful package is (potentially) clamav
  and that only if you are disconnected I'd say you are better off
  rebuilding the package yourself and never using volatile.
 
 I would prefer if you stop telling lies about volatile. 

You can believe whatever you want to believe.

I've done my analysis; I posted it publically.

If there were obvious flaws in it, I'm sure you would have jumped upon
them.  From the lack of any kind of response I have to assume I have
things correct.

 You behave like you are a kid in a sand-box and now want to destroy 
 someones else sand-castle because it looks nicer than yours. This is 
 *not* the way things should work in Debian.

That analogy is like a leaky screwdriver.  

What I'm doing is pointing out that volatile is a good idea executed 
poorly -- the execution is poor enough that there is no inherent 
value in volatile at this time.

You seem offended that that I'm pointing out that the idea is poorly
executed upon.

There are a couple of ways to react:

- move to rectify the (perceived or actual) problem

- ignore things and hope I'll go away

- respond with (attempted) insults

You've done the last of those, I'm hopeful that you'll find the first
one more profitable and rewarding.  

Anand

-- 
 `When any government, or any church for that matter, undertakes to say to
  its subjects, This you may not read, this you must not see, this you are
  forbidden to know, the end result is tyranny and oppression no matter how
  holy the motives' -- Robert A Heinlein, If this goes on --


signature.asc
Description: Digital signature


Bug#351544: Please check whether bug is reproducible with adduser 3.82

2006-02-07 Thread Marc Haber
found #351544 3.81
merge #351681 #351609 #351544
thanks

-- 
-
Marc Haber | I don't trust Computers. They | Mailadresse im Header
Mannheim, Germany  |  lose things.Winona Ryder | Fon: *49 621 72739834
Nordisch by Nature |  How to make an American Quilt | Fax: *49 621 72739835




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



Bug#346031: Please update debconf PO translation for debian-edu-install

2006-02-07 Thread Kenshi Muto
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

At Tue, 7 Feb 2006 00:04:14 +0100,
Morten Werner Olsen wrote:
 you are noted as the last translator of the debconf translation for
 debian-edu-install. The English template has been changed, and now some
 messages are marked fuzzy in your translation or are missing.
 I would be grateful if you could take the time and update it.
 Please send the updated file to me, or submit it as a wishlist bug
 against debian-edu-install.

Sure.
I've already sent old ja.po as #346031, and it still be opened.
So here is an update version. Please replace by this.

Thanks,
- -- 
Kenshi Muto
[EMAIL PROTECTED]
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2 (GNU/Linux)
Comment: Processed by Mailcrypt 3.5.8+ http://mailcrypt.sourceforge.net/

iEYEARECAAYFAkPoW08ACgkQQKW+7XLQPLGJnACgt9v6wTkhibbMKworPxpjzz7r
SCoAn2GrtghgvicipMMdKX1Wg/fOiy9E
=SDGi
-END PGP SIGNATURE-


ja.po.gz
Description: Binary data


Bug#351635: logrotate: First run on wildcard logfiles fails

2006-02-07 Thread Tom Albers
Op maandag 6 februari 2006 14:04, schreef u:

 Could you show me the configuration file you're using, please?

Sure, here is the block:
-

/var/log/apache/virtual/* {
rotate 7
daily
dateext
compress
sharedscripts
olddir /var/log/apache/virtual/old
prerotate
 /var/log/apache/webalizer.pl 21  /dev/null
endscript
}

-


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



Bug#351754: xterm : does not use UTF-8 encoding for window and icon name when set through -n and -T option

2006-02-07 Thread Erwan David
Package: xterm
Version: 6.8.2.dfsg.1-11
Severity: normal

When using the command xterm -n Dépot -T Dépot (in UTF-8 locale) the
window name and icon name are shown as D?pot.

If I use xtermset to set the names, everything works fine. Thus it
seems that the -n and -T options reencode their argument to an iso
charset.

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable'), (1, 
'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.15-1-k7
Locale: LANG=C, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages xterm depends on:
ii  libc62.3.5-8 GNU C Library: Shared libraries an
ii  libexpat11.95.8-3XML parsing C library - runtime li
ii  libfontconfig1   2.3.2-1.1   generic font configuration library
ii  libfreetype6 2.1.7-2.4   FreeType 2 font engine, shared lib
ii  libice6  6.8.2.dfsg.1-11 Inter-Client Exchange library
ii  libncurses5  5.5-1   Shared libraries for terminal hand
ii  libsm6   6.8.2.dfsg.1-11 X Window System Session Management
ii  libxaw8  6.8.2.dfsg.1-11 X Athena widget set library
ii  libxext6 6.8.2.dfsg.1-11 X Window System miscellaneous exte
ii  libxft2  2.1.7-1 FreeType-based font drawing librar
ii  libxmu6  6.8.2.dfsg.1-11 X Window System miscellaneous util
ii  libxp6   6.8.2.dfsg.1-11 X Window System printing extension
ii  libxpm4  6.8.2.dfsg.1-11 X pixmap library
ii  libxrender1  1:0.9.0.2-1 X Rendering Extension client libra
ii  libxt6   6.8.2.dfsg.1-11 X Toolkit Intrinsics
ii  xlibs-data   6.8.2.dfsg.1-11 X Window System client data

Versions of packages xterm recommends:
ii  xutils   6.8.2.dfsg.1-11 X Window System utility programs

-- no debconf information



Bug#350100: eclipse bug

2006-02-07 Thread Michael Koch
On Fri, Jan 27, 2006 at 11:13:03AM +0100, Alexander Camek wrote:
 Package: eclipse
 Maintainer: Debian Java Maintainers 
 http://qa.debian.org/[EMAIL PROTECTED] 
 pkg-java-maintainers@lists.alioth.debian.org
 Version: 3.1.1-8
 
 Hi,
 
 wenn I want to synchronize my source code with the repository i get 
 following error message:
 
 an internal error occured during Synchronizing CVS(name);
 
 the synchroniziation is aborted and nothing happens.
 
 When i will on the other hand to chech out a project from the cvs, i get 
 only a empty list at the project list.
 Press i the back button (choosing the server list) and then the next button 
 (menu for the project list) again, i get hanged in the server list.
 
 Every thing works find if i do a cvs update / commit / co on the command 
 line.

What type of CVS access is used ? Is CVS used over SSH ?


Cheers,
Michael
-- 
Escape the Java Trap with GNU Classpath!
http://www.gnu.org/philosophy/java-trap.html

Join the community at http://planet.classpath.org/


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



Bug#340462: gtk-gnutella: version in stable is too old for the network - upload to volatile

2006-02-07 Thread Andreas Barth
Hi,

* Anand Kumria ([EMAIL PROTECTED]) [060207 09:44]:
 [ I've removed 340462 from further follow-ups ]

just do what you promise to do.

 On Tue, Feb 07, 2006 at 09:08:58AM +0100, Andreas Barth wrote:
  * Anand Kumria ([EMAIL PROTECTED]) [060207 04:03]:
   Considering that volatile only useful package is (potentially) clamav
   and that only if you are disconnected I'd say you are better off
   rebuilding the package yourself and never using volatile.
  
  I would prefer if you stop telling lies about volatile. 
 
 You can believe whatever you want to believe.
 
 I've done my analysis; I posted it publically.
 
 If there were obvious flaws in it, I'm sure you would have jumped upon
 them.  From the lack of any kind of response I have to assume I have
 things correct.

You mean, I need to read and answer each and every mail? I hoped that
you might get more cooled down and reasonable again. I'm sorry that I
was wrong.


 You seem offended that that I'm pointing out that the idea is poorly
 executed upon.

No. I just don't like it when you tell lies. You can tell your opinion
where you want, but you must not say untrue statements and present them
as facts.

 There are a couple of ways to react:
 
   - move to rectify the (perceived or actual) problem
 
   - ignore things and hope I'll go away
 
   - respond with (attempted) insults
 
 You've done the last of those, I'm hopeful that you'll find the first
 one more profitable and rewarding.  

As most of the readers might have noticed, we (the volatile team)
usually respond quite fast to good ideas, like the one with locales
(which was discussed before on IRC, and Felipe Augusto already wrote the
summary from the volatile-teams point of view, so there was no reason
for me to answer directly).

However, if there is a person who can't take a No as a No, and decides
to rather whine around, and start to tell lies, I have to take action.
Not that I like that most, but well, I can stand that.


Andi
-- 
  http://home.arcor.de/andreas-barth/


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



Bug#350100: eclipse: cvs access using extssh doesn't work

2006-02-07 Thread Michael Koch
On Sat, Jan 28, 2006 at 04:10:22PM +0100, Merwan wrote:
 Package: eclipse
 Version: 3.1.1-8
 Followup-For: Bug #350100
 
 
 When adding a new cvs repository, there's a message error 'Error validating 
 location  '
 Just as above, using command line CVS access or ext connection type works
 well. 

I guess this is because you use GCJ 4.0 to run Eclipse and this doesnt
include SSL support yet. We are working on support for this but it can
still take a while.


Cheers,
Michael
-- 
Escape the Java Trap with GNU Classpath!
http://www.gnu.org/philosophy/java-trap.html

Join the community at http://planet.classpath.org/


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



Bug#351757: debian-edu-install: [INTL:da] Updated Danish debconf translation

2006-02-07 Thread Claus Hindsgaul
Package: debian-edu-install
Severity: wishlist
Tags: patch l10n


Please include the attached updated Danish debconf translation
(debian/po/da.po)

Claus Hindsgaul

-- System Information:
Debian Release: testing/unstable
  APT prefers stable
  APT policy: (900, 'stable'), (100, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15
Locale: LANG=da_DK, LC_CTYPE=da_DK (charmap=ISO-8859-1)
# translation of debian-edu-install_0.616_da.po to Danish
# Translators, if you are not familiar with the PO format, gettext
# documentation is worth reading, especially sections dedicated to
# this format, e.g. by running:
# info -n '(gettext)PO Files'
# info -n '(gettext)Header Entry'
# Some information specific to po-debconf are available at
# /usr/share/doc/po-debconf/README-trans
# or http://www.debian.org/intl/l10n/po-debconf/README-trans
# Developers do not need to manually edit POT or PO files.
#
# Claus Hindsgaul [EMAIL PROTECTED], 2004, 2005, 2006.
msgid 
msgstr 
Project-Id-Version: debian-edu-install_0.623_da\n
Report-Msgid-Bugs-To: \n
POT-Creation-Date: 2006-02-06 23:52+0100\n
PO-Revision-Date: 2006-02-07 10:01+0100\n
Last-Translator: Claus Hindsgaul [EMAIL PROTECTED]\n
Language-Team: Danish [EMAIL PROTECTED]\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=ISO-8859-1\n
Content-Transfer-Encoding: 8bit\n
X-Generator: KBabel 1.11.2\n
Plural-Forms:  nplurals=2; plural=(n != 1);\n

#. Type: text
#. Description
#. Debian Installer Main-menu Item
#: ../debian-edu-profile-udeb.templates:4
msgid Choose Debian-Edu profile
msgstr Vælg Debian-Edu profil

#. Type: multiselect
#. Choices
#: ../debian-edu-profile-udeb.templates:46 ../debian-edu-install.templates:41
msgid Main-Server
msgstr Hovedserver

#. Type: multiselect
#. Choices
#: ../debian-edu-profile-udeb.templates:46 ../debian-edu-install.templates:41
msgid Workstation
msgstr Arbejdsstation

#. Type: multiselect
#. Choices
#: ../debian-edu-profile-udeb.templates:46 ../debian-edu-install.templates:41
msgid Thin-Client-Server
msgstr Tyndklient-server

#. Type: multiselect
#. Choices
#: ../debian-edu-profile-udeb.templates:46 ../debian-edu-install.templates:41
msgid Standalone
msgstr Enkeltstående

#. Type: multiselect
#. Choices
#: ../debian-edu-profile-udeb.templates:46 ../debian-edu-install.templates:41
msgid Barebone
msgstr Skrabet

#. Type: multiselect
#. Description
#: ../debian-edu-profile-udeb.templates:47 ../debian-edu-install.templates:42
msgid Please choose which profiles will apply to this machine.
msgstr Vælg hvilke profiler du vil anvende på denne maskine.

#. Type: multiselect
#. Description
#: ../debian-edu-profile-udeb.templates:47 ../debian-edu-install.templates:42
msgid 
The profiles you choose determine how the machine can be used out-of-the-
box. You can choose several profiles, but you have to choose at least one.
msgstr 
De profiler du vælger afgør hvordan maskinen kan anvendes uden yderligere 
tilretning. Du kan vælge flere profiler, men du er nødt til at vælge mindst 
ét.

#. Type: multiselect
#. Description
#: ../debian-edu-profile-udeb.templates:47 ../debian-edu-install.templates:42
msgid 
Every Debian-Edu network needs one, and only one machine running the 'Main-
Server' profile.  This machine provides the (network) services (mainly file/
network and LDAP), so without this machine the network does not work. Since 
this machine will hold all data files it will need a lot of harddisk space. 
Installing this option solely results in a machine without a Graphical User 
Interface(=GUI), if you want a GUI you'll need to include the workstation 
profile or 'Thin-Client-Server'.
msgstr 
Alle Debian-Edu netværk skal bruge én og kun én maskine med profilen 
'Hovedserver'. Denne maskine vil tilbyde netværkstjenester (primært 
arkivadgang og LDAP), så uden denne maskine vil netværket ikke fungere. Da 
denne maskine opbevarer alle brugeres dokumenter kræver den stor lagerplads. 
Hvis du installerer med kun denne profil, fås en maskine uden grafisk 
brugerflade. For at få installeret grafisk brugerflade skal du yderligere 
vælge enten 'Arbejdstation' eller 'Tyndklient-server'.

#. Type: multiselect
#. Description
#: ../debian-edu-profile-udeb.templates:47 ../debian-edu-install.templates:42
msgid 
Machines running the 'Workstation' profile are normal machines. Users 
logging on a workstation are authenticated by the machine running the 'Main-
Server' profile, and have their documents and personal settings stored in 
home directories on the machine running the 'Main-Server' profile.
msgstr 
Maskiner med profilen 'Arbejdsstation' fungerer som helt normale maskiner. 
Brugere som logger på en arbejdsstation bliver autoriseret op imod 
hovedserveren. Dokumenter og personlige indstillinger ligger i 
hjemmemapperne på hovedserveren.

#. Type: multiselect
#. Description
#: ../debian-edu-profile-udeb.templates:47 ../debian-edu-install.templates:42
msgid 
Machines running the 'Thin-Client-Server' profile are able to 

Bug#351076: ant: Java illegalAccess exception with the kaffee compiled version

2006-02-07 Thread Arnaud Vandyck
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

FROHNER Akos wrote:
 Hi Wolfgang,
 
 On Thu, 2006-02-02 18:06:34 +0100, Wolfgang Baer wrote:
 
Frohner Akos wrote:


The example build.xml file reports the following error with 1.6.5-4,
1.6.5-5, but worked up to 1.6.5-3 (explicitly checked with 1.6.2):

Have you explicitly checked with 1.6.5-3 ?
Checking with 1.6.2 does not mean it worked up to 1.6.5-3.
 
 
 I am using ant daily and upgraded almost daily, with the 
 apt-listchanges functionality, so I remember seeing the
 change message and the upgrade happening. But you are right,
 I did not check with 1.6.5-3 _after_ I discovered the bug in
 1.6.5-4, because 1.6.5-3 was not available on any mirrors.

http://snapshot.debian.net/archive/2005/10/02/debian/pool/main/a/ant/

- --
  .''`.
 : :' :rnaud
 `. `'
   `-
Java Trap: http://www.gnu.org/philosophy/java-trap.html
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org

iD8DBQFD6GCw4vzFZu62tMIRArBvAJ9NAzMuoVA8eWQ++VKU0dEBNsrdwACeNmwz
CxtUfTtofx/ZvCbDHlbTx10=
=VzXP
-END PGP SIGNATURE-


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



Bug#351755: include samba.schema in samba-common

2006-02-07 Thread Anand Kumria
Package: samba-common
Version: 3.0.21a-4
Severity: wishlist

Hi,

Please include samba.schema (in the examples/LDAP) directory in
samba-common at /etc/ldap/schema as this will make it simpler for
administrators to setup PDC and BDC synchronised with each other and/or
via a third LDAP machine.

I recommend samba-common as the package is lightwight enough that it can
be installed on an LDAP machine that wouldn't otherwise have anything
samba related on it.

Thanks,
Anand

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (650, 'testing'), (600, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15
Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8)

Versions of packages samba-common depends on:
ii  debconf [debc 1.4.67 Debian configuration management sy
ii  libc6 2.3.5-8GNU C Library: Shared libraries an
ii  libcomerr21.38+1.39-WIP-2005.12.31-1 common error description library
ii  libkrb53  1.4.3-5MIT Kerberos runtime libraries
ii  libldap2  2.1.30-12  OpenLDAP libraries
ii  libpam-module 0.79-3 Pluggable Authentication Modules f
ii  libpopt0  1.7-5  lib for parsing cmdline parameters

samba-common recommends no packages.

-- debconf information:
* samba-common/encrypt_passwords: true
  samba-common/codepage:
  samba-common/character_set:
  samba-common/do_debconf: true
* samba-common/dhcp: false
* samba-common/workgroup:


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



Bug#350533: Wireless card fails after pcmciautils installed

2006-02-07 Thread Per Olofsson
Ben Sargeant:
  Do you have the /etc/udev/rules.d/85-pcmcia.rules symlink?
 
 Yes, I have the symlink.   pcmciautils-012-2 was my first install of this 
 package

OK. Try the following (check if it works after each step):

1. Upgrade to the latest udev and reboot the computer
2. Run modprobe orinoco_cs
3. Run /lib/udev/pcmcia-socket-startup
4. Try running modprobe orinoco_cs again

And let me know the results.

 Yes, the operator had finger trouble at this end with the mail alias.  Can 
 you 
 please reset my email to [EMAIL PROTECTED]

Done.

-- 
Pelle


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



Bug#351758: kernel-patch-suspend2: The exit 0's in initrd/linuxrc.suspend2 prevent kernel from booting

2006-02-07 Thread Russell Stuart
Package: kernel-patch-suspend2
Version: 2.2.rc9-1.1
Severity: normal

In the initrd created when suspend2 is installed, ie in
the changes made by /etc/mkinitrd/scripts/suspend2-VERSION,
the /linuxrc.suspend2 file contains several exit 0
commands.  They are typically executed when something
goes wrong, with the intention of continuing on without
suspend2 - or at least that is what the comments say.
The effect they actually have is to stop the machine from
booting.

The reason they stop the machine from booting is suspend2
replaces linuxrc by a script which goes something like:

  for f in /linuxrc.*; do . $f; done
  . /real-linuxrc

where /real-linuxrc is the original linuxrc script
installed by mkinird.  If /real-linuxrc doesn't get
executed then the machine won't boot (or at least mine
didn't).

Notice that under this new arrangement /linuxrc.suspend2
gets executed by linuxrc running . /linuxrc.suspend2.
If linuxrc.suspend2 does an exit, the /linuxrc exits.

Please get rid of all instances of exit in
/linuxrc.suspend2, unless it really is your intention
to stop the machine from booting if the initialisation
of suspend2 fails.

On an unrelated note, I have added patches for 2.6.14
and 2.6.15 in kernel-patch-suspend2.  This was the
reason suspend2 didn't initialise properly in my case.
They have yet again changed the names of the files
under /proc.  You can find these patches, and a fixed
version of debian/mkinitrd-script, here:

  http://www.stuart.id.au/russell/files/debian/sarge/kernel-patch-suspend2


-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.15-3.1-lube-686-smp
Locale: LANG=en_AU, LC_CTYPE=en_AU (charmap=ISO-8859-1)

-- no debconf information




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



Bug#343085: exim4: Exim SMTP_AUTH hangs since today...

2006-02-07 Thread Florian Weimer
* Marc Haber:

 Older exims use a version of the dh_params file that is not compatible
 with certtool. Backporting that fix would be quite an intrusion into
 exim's sources.

I disagree, the changes would be quite isolated.  But it's your bug,
and in the end, you'll need to fix it in a way you deem most
approriate.


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



Bug#351759: mailman: [INTL:ja] updated Japanese debconf translation

2006-02-07 Thread Kenshi Muto
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Package: mailman
Severity: wishlist
Tags: l10n patch

Hi,

I updated Japanese translation of debconf messages (ja.po).
Please apply this.

Thanks,
- -- 
Kenshi Muto
[EMAIL PROTECTED]
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2 (GNU/Linux)
Comment: Processed by Mailcrypt 3.5.8+ http://mailcrypt.sourceforge.net/

iEYEARECAAYFAkPoZZ8ACgkQQKW+7XLQPLFiWACfdIj1QhbpaYCh5DtJtjaxtFy8
27wAoNr5/H4rQNqgoasoyktp5ZFDM8Lg
=1mmF
-END PGP SIGNATURE-


ja.po.gz
Description: Binary data


Bug#351727: [Pkg-texlive-maint] Bug#351727: texlive-base: Installation breaks usage of LMSlanted10

2006-02-07 Thread Norbert Preining
Hi Andreas!

On Die, 07 Feb 2006, Andreas Pakulat wrote:
 I'm not sure but this might be the cause of texlive-base replacing
 lmodern package but not providing the config files for defoma.

Yes, this is the reason. The TeX live packages do *not* provide fonts
for X of the lmodern fonts. This was due to outdated and incompatible
lmodern package (and orphaned) in Debian, so I kept the lmodern fonts
from TeX live.

We (teTeX and TeX live maintainers) are preparing a new upload of the
lmodern fonts, which will bring back full X/defoma support, and the next
incarnation of the TeX live packages will depend on the updated lmodern
fonts.

Best wishes

Norbert

---
Dr. Norbert Preining preining AT logic DOT at Università di Siena
gpg DSA: 0x09C5B094  fp: 14DF 2E6C 0307 BE6D AD76  A9C0 D2BF 4AA3 09C5 B094
---
CORRIEDOO (n.)
The crucial moment of false recognition in a long passageway
encounter. Though both people are perfectly well aware that the other
is approaching, they must eventually pretend sudden recognition. They
now look up with a glassy smile, as if having spotted each other for
the first time, (and are particularly delighted to have done so)
shouting out 'Haal!' as if to say 'Good grief!! You!!
Here!! Of all people! Will I never. Coo. Stab me vitals, etc.'
--- Douglas Adams, The Meaning of Liff


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



Bug#351076: ant: Java illegalAccess exception with the kaffee compiled version

2006-02-07 Thread FROHNER Akos
On Tue, 2006-02-07 09:56:16 +0100, Arnaud Vandyck wrote:
 http://snapshot.debian.net/archive/2005/10/02/debian/pool/main/a/ant/

Thanks!

1.6.2-2 works

1.6.5-3 works

1.6.5-4 fails:
build.xml:7: java.lang.IllegalAccessError: tried to access field
org.apache.tools.ant.taskdefs.Concat.fileUtils from class
org.apache.tools.ant.taskdefs.Concat$TextElement

1.6.5-5 fails:
build.xml:7: java.lang.IllegalAccessError: tried to access field
org.apache.tools.ant.taskdefs.Concat.fileUtils from class
org.apache.tools.ant.taskdefs.Concat$TextElement

I have used the build.xml file in the bug report to test it.

Cheers,
Akos


smime.p7s
Description: S/MIME cryptographic signature


Bug#351760: gaim: Possible error in README.Debian.dev concerning plugin packages

2006-02-07 Thread Devin Carraway
Package: gaim
Version: 1:1.5.0+1.5.1cvs20051015-1
Severity: minor

The gaim source package includes a README.Debian.dev file which states:

 Gaim plugin packages should be named gaim-plugin name, so for
 Guifications, the package name should be guifications. Plugin packages
 should build-depend on gaim-dev (= minimum gaim version required to
 support plugin).  Normally the minimum version of gaim-dev will just
 be 1:1.0.0 for the 1.x series, or higher if the plugin uses a new
 function introduced in a later version.

In that first sentence, was the suggested package name intended to be
gaim-guifications (as indeed that package is named)?


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

Versions of packages gaim depends on:
ii  gaim-data 1:1.5.0+1.5.1cvs20051015-1 multi-protocol instant messaging c
ii  libao20.8.6-3Cross Platform Audio Output Librar
ii  libaspell15   0.60.4-3   GNU Aspell spell-checker runtime l
ii  libatk1.0-0   1.10.3-1   The ATK accessibility toolkit
ii  libaudiofile0 0.2.6-6Open-source version of SGI's audio
ii  libc6 2.3.5-12.1 GNU C Library: Shared libraries an
ii  libgcrypt11   1.2.2-1LGPL Crypto library - runtime libr
ii  libglib2.0-0  2.8.6-1The GLib library of C routines
ii  libgnutls11   1.0.16-14  GNU TLS library - runtime library
ii  libgtk2.0-0   2.8.10-1   The GTK+ graphical user interface 
ii  libgtkspell0  2.0.10-3   a spell-checking addon for GTK's T
ii  libice6   6.9.0.dfsg.1-4 Inter-Client Exchange library
ii  libpango1.0-0 1.10.2-1   Layout and rendering of internatio
ii  libsm66.9.0.dfsg.1-4 X Window System Session Management
ii  libstartup-no 0.8-1  library for program launch feedbac
ii  libx11-6  6.9.0.dfsg.1-4 X Window System protocol client li
ii  libxext6  6.9.0.dfsg.1-4 X Window System miscellaneous exte
ii  libxss1   6.9.0.dfsg.1-4 X Screen Saver client-side library
ii  xlibs 6.9.0.dfsg.1-4 X Window System client libraries m

gaim recommends no packages.

-- no debconf information


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



Bug#351761: SSL broken

2006-02-07 Thread Michal Čihař
Package: sylpheed-claws-gtk2
Version: 1.9.100-2+b1
Severity: grave

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi

since update to 1.9.100-2+b1 (from 1.9.100-2) I can no longer connect to
IMAP server using SSL. It just tells that it can not connect to IMAP4
server. There is no information in log file, maybe just SSL support is
not compliled in?

- -- 
Michal Čihař | http://cihar.com


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

Versions of packages sylpheed-claws-gtk2 depends on:
ii  libaspell15   0.60.4-3   GNU Aspell spell-checker runtime l
ii  libc6 2.3.5-12.1 GNU C Library: Shared libraries an
ii  libcompfaceg1 1:1.5.2-3  Compress/decompress images for mai
ii  libetpan6 0.42-1 mail handling library
ii  libglib2.0-0  2.8.6-1The GLib library of C routines
ii  libgnomeprint2.2-02.12.1-3   The GNOME 2.2 print architecture -
ii  libgnomeprintui2.2-0  2.12.1-2   GNOME 2.2 print architecture User 
ii  libgtk2.0-0   2.8.10-1   The GTK+ graphical user interface 
ii  libldap2  2.1.30-12  OpenLDAP libraries
ii  libpango1.0-0 1.10.2-1   Layout and rendering of internatio
ii  libpisock80.11.8-18  Library for communicating with a P
ii  libssl0.9.8   0.9.8a-6   SSL shared libraries

Versions of packages sylpheed-claws-gtk2 recommends:
ii  aspell-en [aspell-diction 6.0-0-5English dictionary for GNU Aspell
ii  metamail  2.7-50 implementation of MIME
pn  sylpheed-claws-gtk2-i18n  none (no description available)
ii  sylpheed-claws-scripts1.0.5-2.1  Helper scripts for Sylpheed and Sy
ii  xfonts-100dpi 6.9.0.dfsg.1-4 100 dpi fonts for X
ii  xfonts-75dpi  6.9.0.dfsg.1-4 75 dpi fonts for X

- -- no debconf information

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

iD8DBQFD6Gqi3DVS6DbnVgQRAgjOAKDse/votJvbcN1WcL+P1M+GfnIxYwCeOKLZ
ZTy/PvkX17MEYdkjf9bO0Sk=
=L9S+
-END PGP SIGNATURE-


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



Bug#351727: [Pkg-texlive-maint] Bug#351727: texlive-base: Installation breaks usage of LMSlanted10

2006-02-07 Thread Andreas Pakulat
On 07.02.06 10:05:13, Norbert Preining wrote:
 On Die, 07 Feb 2006, Andreas Pakulat wrote:
  I'm not sure but this might be the cause of texlive-base replacing
  lmodern package but not providing the config files for defoma.
 
 Yes, this is the reason. The TeX live packages do *not* provide fonts
 for X of the lmodern fonts. This was due to outdated and incompatible
 lmodern package (and orphaned) in Debian, so I kept the lmodern fonts
 from TeX live.
 
 We (teTeX and TeX live maintainers) are preparing a new upload of the
 lmodern fonts, which will bring back full X/defoma support, and the next
 incarnation of the TeX live packages will depend on the updated lmodern
 fonts.

Thats good to hear, however do you have any idea why the old defoma
config doesn't work for all lm-fonts that are installed? As I already
said, some (LMSans, LMRoman, LMTypeWriter) are listed after
incorporating the hints-file into defoma in fc-list but the LMSlanted
are missing. They are given in the defoma-hint-file and the font-files
are at the place mentioned in that file.

Andreas

-- 
Today is the first day of the rest of the mess.


pgp6o8b0LQXid.pgp
Description: PGP signature


Bug#349813: Displays a dialog box if a signature cannot be checked because the key is not available

2006-02-07 Thread Dafydd Harries
Ar 25/01/2006 am 05:01, ysgrifennodd Matt Kraai:
 Package: gnome-gpg
 Version: 0.3.0-3
 
 When I open a message in Mutt that is signed by a key that I do not
 have, gnome-gpg displays a dialog box that says that gpg exited
 abnormally.  I don't think it should do so.

Can you tell me if this still happens with 0.3.0-4?

-- 
Dafydd


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



Bug#322373: gnome-gpg: passphrase dialog not on top of other windows

2006-02-07 Thread Dafydd Harries
Ar 10/08/2005 am 14:01, ysgrifennodd Thomas Quas:
 Package: gnome-gpg
 Version: 0.3.0-2.1
 Severity: normal
 
 A few minutes ago I was wondering whether my GNOME desktop was frozen only to
 find out that the passphrase input dialog did not open on top of other windows
 but was hiding beyond.
 
 Neither switching windows using ALT-Tab nor changing (virtual) desktops didn't
 work any longer. I'd suggest to
 
 a) make the input dialog less restrictive; why shouldn't I user other
 applications when a single one asks me for a passphrase
 
 b) make sure the dialog *always* pops up on top of the application that
 initiated the key request... and stay there! This way a single application
 stays blocked until I submit a passphrase or cancel the entire operation.

I think version 0.3.0-4 uploaded to unstable should fix it. If possible, could
you test this version to se if the problem still happens?

-- 
Dafydd


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



Bug#335016: Bug reports for texinfo (and 2 wishes)

2006-02-07 Thread Norbert Preining
Hi Karl!

On Mon, 06 Feb 2006, Karl Berry wrote:
 Wow, XML does not allow comments including the string --?  Pardon me
 for saying so, but that seems even more stupid than usual.  Not that
 it's your doing :).  I changed it.

Thanks. It looks much better.

Using TeX live eplain.texi sources I generated a xml file (all commands
and files are from texinfo cvs) and got only one error:
eplain.xml:1373: element enumerate: validity error : Element enumerate content 
does not follow the DTD, expecting (enumarg? , (item | itemize | enumerate)*), 
got (indexterm item item item )
  /enumerate
  ^


With texinfo.txi (etc) I get one error (with many instances):
texinfo.xml:14897: element menucomment: validity error : Element code is not 
declared in menucomment list of possible children
  menucommentHow to run codeInfo-validate/code./menucomment
   ^

So this seems to be quite good now. Can we fix these items, too?

Best wishes

Norbert

---
Dr. Norbert Preining preining AT logic DOT at Università di Siena
gpg DSA: 0x09C5B094  fp: 14DF 2E6C 0307 BE6D AD76  A9C0 D2BF 4AA3 09C5 B094
---
Yes, it's the right planet, all right, he said again.
Right planet, wrong universe.
 --- Douglas Adams, The Hitchhikers Guide to the Galaxy


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



Bug#204117: Help with installing sgml/xml catalogue stuff

2006-02-07 Thread Norbert Preining
Hi Neil!

On Mon, 06 Feb 2006, Neil Roeth wrote:
 This web page: http://debian-xml-sgml.alioth.debian.org/ has a link to the
 Latest XML Policy Draft which has info on where files should go.  Have you
 seen that?

No, thanks for the link. 

I have still a question concerning the placement in sgml vs xml:

I have a texinfo.dtd, 
a catalogue entry texinfo.cat:
OVERRIDE YES
PUBLIC -//GNU//DTD TexinfoML V4.8//EN texinfo.dtd

and a texinfo.xsl:
?xml version='1.0'?
!-- $Id: texinfo.xsl,v 1.1 2004/04/11 17:56:47 karl Exp $ --
xsl:stylesheet xmlns:xsl=http://www.w3.org/1999/XSL/Transform;
version=1.0
...

I thought to put the dtd and the catalogue (=texinfo.cat) into
/usr/share/sgml/texinfo/texinfo.dtd
/usr/share/sgml/texinfo/catalog

So now my two questions:
- is the above the correct location
- what should I do with texinfo.xsl

Thanks a lot and all the best

Norbert

---
Dr. Norbert Preining preining AT logic DOT at Università di Siena
gpg DSA: 0x09C5B094  fp: 14DF 2E6C 0307 BE6D AD76  A9C0 D2BF 4AA3 09C5 B094
---
CHICAGO (n.)
The foul-smelling wind which precedes an underground railway train.
--- Douglas Adams, The Meaning of Liff


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



Bug#351762: English usage errors in xmltex(1) man page

2006-02-07 Thread Vincent Lefevre
Package: xmltex
Version: 1.9-11.1
Severity: minor

In the xmltex(1) man page:

   xmltex  and  pdfxmltex is a TeX XML parser able to transform
   xml document into .dvi files.   xmltex  know  nothing  about
   
XML documents and knows

   your XML files.  It needs to load some special macros files,
   usually with the .xmt  extensions.   A  configuration  file,
  ^^
extension

   either  named  xmltex.cfg  or  \jobname.cfg  are parsed.  An
    ^^^
There should be a comma after \jobname.cfg.
s/are/is/

   especially  useful  configuration  command  is  \xmltraceoff
   which disable xml elements tracing.
 ^^^ ^^^
disables and XML

   xmltex  already  about  many xml schema, such as TEI, TEI.2,
   ^^   ^^
Insert knows between already and about?
XML schemas

   MathML, SEC, HTML and XSL-FO, the  support  for  the  latest
   being provide by the passivetex package.
 ^^^
provided

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

Versions of packages xmltex depends on:
ii  tetex-base3.0-13 Basic library files of teTeX
ii  tetex-bin 3.0-13 The teTeX binary files
ii  tetex-extra   3.0-13 Additional library files of teTeX

Versions of packages xmltex recommends:
ii  passivetex1.25-2 Macros to process XSL formatting o

-- no debconf information


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



Bug#349815: s-c-gtk2 exposes private messages to third party

2006-02-07 Thread Ricardo Mones
package sylpheed-claws-gtk2
severity 349815 important
tags 349815 moreinfo unreproducibe
thanks

On Wed, 25 Jan 2006 14:10:56 +0100
Martin Samuelsson [EMAIL PROTECTED] wrote:

 Package: sylpheed-claws-gtk2
 Version: 1.9.100-2
 Severity: critical

  Inflating bug severity don't gets it solved faster. (Yes, I saw you
already downgraded it to grave, but that is still inflated).

  Please read what severity means to Debian BTS:
  http://www.debian.org/Bugs/Developer.en.html#severities

  It's not a measure of how important the bug is for you, it has a
quite different and precise meaning.

 When composing a message in s-c-gtk2, it adds the full contents of the
 last message read when sending it.
 
 Steps to reproduce:
 
 1. Start sylpheed-claws-gtk2
 2. Read a message
 3. Compose a message

  Sorry, not reproducible here. Can you provide more details about
your config: type of accounts you're reading and composing, library
versions (you should have used bugreport for this), any other detail
about the system that make it different (custom kernel, custom
libraries you may have).

 Now, the message at the receiving end contains both the message sent
 and the last mail read by the sending user. Since that can very
 likely be revealing information for unintended eyes, that is of
 course NOT acceptable.
 
 I understand that there probably is something in my environment that
 triggers this bug, otherwise it would have already been reported.
 However, the fact that a critical bug is hard to trigger does not
 lower its severity.  

  Don't mess your feelings about the bug with the BTS severity levels.
  Try to isolate what makes your environment different instead.

 I'm not spending more time trying to hunt this down, because I'm not
 willing to mess in my production environment.

  This is not the first time you report a bug and say you're not
willing to help solving it. I don't figure out why do you think that
attitude will encourage me to spend my free time in solving it for you.

 This is not the first time I report an issue like this one. Please
 look at #333498, which was closed without finding the actual cause.

  Certanly the cause was not found but the reason for closing is clearly
stated as well as the actions you could have taken.

 I might set up a test environment, with toy servers - if asked to.

  This is only valid if bug gets exposed in test environment too.
  Can you create a clean chroot in your problematic box and try inside?

 Until this bug is properly fixed, I suggest the removal of the
 package from testing.

  We don't hide problems by removing packages. Furthermore I have the
sensation that the rest of Sylpheed-Claws users in testing won't agree
with your suggestion :-P
-- 
  Ricardo Mones 
  ~
  The world will end in 5 minutes. Please log out.Unknown


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



Bug#351658: [Pkg-spca5xx-devel] Bug#351658: spca5xx-modules-2.6-k7-smp: doesn't depend on the corresponding kernel package

2006-02-07 Thread Gerfried Fuchs
* Kel Modderman [EMAIL PROTECTED] [2006-02-07 06:15]:
 Gerfried Fuchs wrote:
Furthermore, a mailinglist -request address as maintainer address is a
*very* bad idea, I seriously hope you consider changing that, too.
 
 I did not see this in our sources anywhere, can you please be more 
 specific about this problem?
 
 Maintainer: Debian spca5xx Maintainers 
 [EMAIL PROTECTED]

 You seem to have used it for your initial package and changed it later.
The data is stored in the override file maintained by the ftp master
team, you are receiving a mail about this difference with every upload.

 I see it in the Packages files distributed in our archive, you need to
reply to the mail about this changes and tell the ftp master team that
the change is needed, this isn't done automatically.

 So long,
Alfie
-- 
(o)_,-ooO--00--Ooo-.   http://www.gimp.org/ .   .
()_  ,' Gerfried  Fuchs`.   GNU Image Manipulation Program   \`-___-'/
,'  [EMAIL PROTECTED]   `.  http://www.gimp.org/win32/   O-'oo  
 7
` http://alfie.ist.org/ascii/ -'  For users of the other OS!   `-===','


signature.asc
Description: Digital signature


Bug#350809: formatting issues in the digitemp.1 manpage

2006-02-07 Thread Jesus Roncero
On Tuesday 31 January 2006 22:49, Nicolas François wrote:
 Package: digitemp
 Severity: minor
 Tags: patch

 Hello,

 The attached patch fixes some formatting issues in the digetemp.1 manpage.


Thanks. I'll apply it as soon as possible. 
Best wishes.

-- 
Jesus Roncero
http://blog.notreally.org



Bug#351727: [Pkg-texlive-maint] Bug#351727: texlive-base: Installation breaks usage of LMSlanted10

2006-02-07 Thread Norbert Preining
On Die, 07 Feb 2006, Andreas Pakulat wrote:
 Thats good to hear, however do you have any idea why the old defoma
 config doesn't work for all lm-fonts that are installed? As I already

The file names of the fonts have changed.

lmodern in sid is 0.92
lmodern in TeX live is 0.99.3 (AFAIR)
new lmodern in sid will also be 0.99.3

 said, some (LMSans, LMRoman, LMTypeWriter) are listed after
 incorporating the hints-file into defoma in fc-list but the LMSlanted
 are missing. They are given in the defoma-hint-file and the font-files
 are at the place mentioned in that file.

The actual afm and pfb files are there? With the same names? Of the file
names and the FontName entry in the afm? 

To be honest, I have no idea what defoma etc does exactely, so I'm only
guessing.

Best wishes

Norbert

---
Dr. Norbert Preining preining AT logic DOT at Università di Siena
gpg DSA: 0x09C5B094  fp: 14DF 2E6C 0307 BE6D AD76  A9C0 D2BF 4AA3 09C5 B094
---
CHENIES (pl.n.)
The last few sprigs or tassels of last Christmas's decoration you
notice on the ceiling while lying on the sofa on an August afternoon.
--- Douglas Adams, The Meaning of Liff


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



Bug#351761: Probably etpan issue?

2006-02-07 Thread Michal Čihař
Hi

as Sylpheed uses etpan for IMAP access, the problem with not working SSL
will be probably in it.

-- 
Michal Čihař | http://cihar.com


signature.asc
Description: PGP signature


Bug#351761: Downgrade

2006-02-07 Thread Michal Čihař
I just forgot to mention, that downgrade back to previous version fixes
this problem.

-- 
Michal Čihař | http://cihar.com


signature.asc
Description: PGP signature


Bug#351076: ant: Java illegalAccess exception with the kaffee compiled version

2006-02-07 Thread Wolfgang Baer
Hi,

FROHNER Akos wrote:
 On Tue, 2006-02-07 09:56:16 +0100, Arnaud Vandyck wrote:
 
http://snapshot.debian.net/archive/2005/10/02/debian/pool/main/a/ant/
 
 
 Thanks!
 
 1.6.2-2 works
 
 1.6.5-3 works

Build with jikes
 
 1.6.5-4 fails:
 build.xml:7: java.lang.IllegalAccessError: tried to access field
 org.apache.tools.ant.taskdefs.Concat.fileUtils from class
 org.apache.tools.ant.taskdefs.Concat$TextElement
 
 1.6.5-5 fails:
 build.xml:7: java.lang.IllegalAccessError: tried to access field
 org.apache.tools.ant.taskdefs.Concat.fileUtils from class
 org.apache.tools.ant.taskdefs.Concat$TextElement

Both build with ecj

Thanks for testing. So it really looks like ecj produces wrong bytecode
here. I will retry with ecj 3.1.2 (fixed some compiler stuff) as I think
ecj at the time of the ant build was 3.1.1.

Wolfgang


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



Bug#351763: tetex-base: Consider including exceltex.sty

2006-02-07 Thread Nikolaus Rath
Package: tetex-base
Version: 2.0.2c-8
Severity: wishlist

Hello,

Please consider adding exceltex
(http://www.physik.uni-freiburg.de/~doerr/exceltex/ is in german, but
http://www.physik.uni-freiburg.de/~doerr/debian/exceltex_0.3.4-1.tar.gz
contains english documentation). It allows easy inclusion of spreadsheet
data into latex.

Thanks,
Nikolaus


BTW: Please also take a look below at the reportbug generated output.
The please read and follow... instruction appears already *below* the
--package specific info-- line.



-- Package-specific info:
Please read and follow the instructions in the first lines below
the text: -- Package-specific info:.
Thank you.

Press ENTER to continue
If you report an error when running one of the TeX-related binaries 
(latex, pdftex, metafont,...), or if the bug is related to bad or wrong
output, please include a MINIMAL example input file that produces the
error in your report. Don't forget to also include minimal examples of
other files that are needed, e.g. bibtex databases. Often it also helps
to include the logfile. Please, never send included pictures!

If your example file isn't short or produces more than one page of
output (except when multiple pages are needed to show the problem),
you can probably minimize it further. Instructions on how to do that
can be found at

http://www.latex-einfuehrung.de/mini-en.html (english)

or 

http://www.latex-einfuehrung.de/mini.html (german)

##
minimal input file


##
other files

##
 List of ls-R files

-rw-r-  1 nikratio postdrop 14993 2006-01-17 10:31 /home/nikratio/texmf/ls-R
-rw-rw-r--  1 root staff 79 2006-01-17 10:31 /usr/local/share/texmf/ls-R
-rw-rw-r--  1 root users 834 2006-02-07 07:36 /var/lib/texmf/ls-R
lrwxrwxrwx  1 root root 29 2005-12-21 18:26 /usr/share/texmf/ls-R - 
/var/lib/texmf/ls-R-TEXMFMAIN

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

Versions of packages tetex-base depends on:
ii  debconf 1.4.56ubuntu2Debian configuration management sy
ii  dpkg1.13.10ubuntu4   Package maintenance system for Deb
ii  texinfo 4.7-2.2ubuntu2.1 Documentation system for on-line i
ii  ucf 1.18 Update Configuration File: preserv

Versions of packages tetex-base recommends:
ii  tetex-doc 2.0.2c-8   The documentation component of the

Versions of packages tetex-bin depends on:
ii  debconf  1.4.56ubuntu2   Debian configuration management sy
ii  debianutils  2.14.1-ubuntu2  Miscellaneous utilities specific t
ii  dpkg 1.13.10ubuntu4  Package maintenance system for Deb
ii  ed   0.2-20  The classic unix line editor
ii  libc62.3.5-1ubuntu12 GNU C Library: Shared libraries an
ii  libgcc1  1:4.0.1-4ubuntu9GCC support library
ii  libice6  1:6.3.5-4   X11 Inter-Client Exchange library
ii  libkpathsea3 2.0.2-30ubuntu3.4   path search library for teTeX (run
ii  libpaper11.1.14ubuntu8   Library for handling paper charact
ii  libpng12-0   1.2.8rel-1ubuntu3   PNG library - runtime
ii  libsm6   1:6.0.4-4   X11 Session Management library
ii  libstdc++6   4.0.1-4ubuntu9  The GNU Standard C++ Library v3
ii  libt1-5  5.0.2-3 Type 1 font rasterizer library - r
ii  libwww-ssl0  5.4.0-9ubuntu0.5.10 The W3C-WWW library (SSL support)
ii  libx11-6 1:6.2.1+cvs.20050722-8  X11 client-side library
ii  libxaw7  7.0.2-3 X11 Athena Widget library
ii  libxext6 1:6.4.3-3   X11 miscellaneous extension librar
ii  libxmu6  1:6.2.3-5   X11 miscellaneous utility library
ii  libxt6   1:0.99.0+cvs.20050803-3 X11 toolkit intrinsics library
ii  mime-support 3.34-1  MIME files 'mime.types'  'mailcap
ii  perl 5.8.7-5ubuntu1.2Larry Wall's Practical Extraction 
ii  sed  4.1.4-2 The GNU sed stream editor
ii  ucf  1.18Update Configuration File: preserv
ii  zlib1g   1:1.2.3-3ubuntu4compression library - runtime

Versions of packages tetex-extra depends on:
ii  dpkg  1.13.10ubuntu4 Package maintenance system for Deb
ii  gsfonts   8.14+v8.11+urw-0.2 Fonts for the Ghostscript interpre
ii  tetex-bin 2.0.2-30ubuntu3.4  The teTeX binary files
ii  ucf   1.18   Update Configuration File: preserv


Bug#234848: Bug reports for texinfo (and 2 wishes)

2006-02-07 Thread Norbert Preining
On Mon, 06 Feb 2006, Karl Berry wrote:
 $ info/ginfo ./notexistingfile
 
 and I landed at the manpage of top
 
 What is wrong here???
 
 Sorry, I can't explain it.  I do get the No menu item error, with
 precisely your invocation.  Comes from line 2551 in session.c, I guess
 Maybe it's related to the dir file contents somehow (although I can't
 quite imagine)?  I'll attach mine.

I tried with your dir file and got the same. Now its getting strange,
very strange.

 Failing that, maybe run under the debugger and see what happens;
 actually, I guess we'd have to do it simultaneously and see where they
 diverge.  Yikes.

Ugg, still I didn't manage to understand how to run the info under gdb,
I will again read what you wrote me.

Best wishes

Norbert

---
Dr. Norbert Preining preining AT logic DOT at Università di Siena
gpg DSA: 0x09C5B094  fp: 14DF 2E6C 0307 BE6D AD76  A9C0 D2BF 4AA3 09C5 B094
---
`...and the Universe,' continued the waiter, determined
not to be deflected on his home stretch, `will explode
later for your pleasure.'
Ford's head swivelled slowly towards him. He spoke with
feeling.
What sort of drinks do you serve in this
place?'
The waiter laughed a polite little waiter's laugh.
I think sir has perhaps misunderstood me.'
`Oh, I hope not,' breathed Ford.
 --- Ford in paradise.
 --- Douglas Adams, The Hitchhikers Guide to the Galaxy


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



Bug#335016: Bug reports for texinfo (and 2 wishes)

2006-02-07 Thread Norbert Preining
Hi Torsten!

On Die, 07 Feb 2006, Torsten Bronger wrote:
 Hmm... after a look at the source (xml.c, line 1537) I think there
 are two issues: First, the enumarg seems to be obsolete because it
 was replaced by the first attribute.  (By the way, the string
 enumarg only occurs in the DTD in Texinfo's CVS.)

And thus is used by xmllint when loading it from the url as given in the
xml files.

More I cannot contribute, as I am a xml analphabet!

Best wishes

Norbert

---
Dr. Norbert Preining preining AT logic DOT at Università di Siena
gpg DSA: 0x09C5B094  fp: 14DF 2E6C 0307 BE6D AD76  A9C0 D2BF 4AA3 09C5 B094
---
CROMARTY (n.)
The brittle sludge which clings to the top of ketchup bottles and
plastic tomatoes in nasty cafes.
--- Douglas Adams, The Meaning of Liff


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



Bug#349611: joy2key: breaks install

2006-02-07 Thread Gerfried Fuchs
* John Wright [EMAIL PROTECTED] [2006-02-06 16:33]:
 Gerfried Fuchs wrote:
  This even breaks when dhelp isn't installed, making the package
 uninstallable at all. The complete postinst script isn't needed, the
 complete doc-base file for joy2key is wrong, none of the mentioned
 targets within there does exist.
 
 I didn't include a postinst script...

 You made debhelper including it, that's the same. :)  Because the
doc-base file isn't created as non-example file, you at least must have
renamed it.

 And it installs for me if I don't have doc-base installed.

 That's right, but doesn't really help much, doc-base isn't that
uncommonly installed, I guess.

 As for the doc-base issue, I accidentally left the dh_make-generated
 file in the package.

 dh_make creates doc-base.ex, not doc-base.

 I have fixed it; it should be uploaded soon.  In the meantime, the
 package is available at http://movingsucks.org/joy2key .

 If you need a sponsor for the upload (am not sure if dann is informed
already), you can get back with me. In the meantime feel free to tag the
bugreport pending.

 Sorry for the bug!  I'm still a little new at this.

 Mistakes happen. Even to the oldest developers. No problem there, and
you seem to address it (though you should start to document that in the
bugreports, too).

 So long,
Alfie
-- 
From: Bastian Gläßer [EMAIL PROTECTED]
Subject: Bastian Gläßer/PD/Kreditwerk ist außer Haus.
Ich werde ab  26.03.2002 nicht im Büro sein. Ich kehre zurück am  23.12.2024.
Ich werde Ihre Nachricht überhaupt nicht mehr beantworten.


signature.asc
Description: Digital signature


Bug#351722: Rpath is defined for dlllablgtk2.so

2006-02-07 Thread Samuel Mimram
Hi,

Sylvain Le Gall wrote:
 Well, this is just a note that dlllabgtk2 use again a rpath for its .so
 objects.

Right. I'll make an upload soon to correct this.

Cheers,

Sam.


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



Bug#351727: [Pkg-texlive-maint] Bug#351727: texlive-base: Installation breaks usage of LMSlanted10

2006-02-07 Thread Andreas Pakulat
On 07.02.06 10:48:23, Norbert Preining wrote:
 On Die, 07 Feb 2006, Andreas Pakulat wrote:
  Thats good to hear, however do you have any idea why the old defoma
  config doesn't work for all lm-fonts that are installed? As I already
 
 The file names of the fonts have changed.
 
 lmodern in sid is 0.92
 lmodern in TeX live is 0.99.3 (AFAIR)
 new lmodern in sid will also be 0.99.3

Might be, see below...

  said, some (LMSans, LMRoman, LMTypeWriter) are listed after
  incorporating the hints-file into defoma in fc-list but the LMSlanted
  are missing. They are given in the defoma-hint-file and the font-files
  are at the place mentioned in that file.
 
 The actual afm and pfb files are there? With the same names? Of the file

Yes. The same names, filenames.

 names and the FontName entry in the afm? 

And that's what is different, the afm-file which contained LMSlanted in
lmodern 0.92 is lmbxo10.afm, which now contains LMRoman10-BoldOblique. 

There is no file containing LMSlanted in the afm-dir.

Bug Roman10-DemiBoldItalic comes really close to what LMSlanted10 was
looking like, so I have my proper menus back. Thanks for the hints.

Andreas

-- 
Alimony and bribes will engage a large share of your wealth.


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



Bug#351736: Error message refers to /var/log/freeradius/radiusd.conf instead of /etc/radiusd.conf

2006-02-07 Thread Nicolas Baradakis
tags 351736 upstream patch
thanks

Ivan Kohler wrote:

 In this error message:

   Error: Errors reading /var/log/freeradius/radiusd.conf: For more 
 information, please read the tail end of /var/log/freeradius/radius.log

 The correct location of the configuraiton file, /etc/freeradius/radiusd.conf
 should be specified instead of /var/log/freeradius/radiusd.conf.

Thanks for the report. This problem is trivial to fix, so I've added
the following patch in the upstream's CVS.

http://www.freeradius.org/cgi-bin/cvsweb.cgi/radiusd/src/main/mainconfig.c.diff?r1=1.36.2.6r2=1.36.2.6.2.1

-- 
Nicolas Baradakis


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



Bug#256283: [pylucene-dev] Re: PyLucence Debian Package

2006-02-07 Thread Jeff Breidenbach
Hi, I did a little digging. Package gcj-3.4 was removed
from Debian Unstable on Aug 14, 2005 because it was
Not Built by Source

  http://ftp-master.debian.org/removals.txt

Since gcj is the critical path, this suggests to me that
maybe gcj-4.x is the better place to put effort. Andi, do you
and OSAF already have all the communication and clout
you need with gcj devs?

I suppose we could try getting Debian maintainers to lean
on upstream a little bit - not that they responded to my
initial inquiry. And Ubuntu might also care. On the other hand,
gcj is so high profile they may be immune to a little extra
persuasion. Are the bugs rocket sciencish, or can a random C
programmer like me dive in and help? Any other way we can
help?

Other possible TODO items:

* Swig sounds like it is progressing just fine.

* Figure out Java Lucene / Free Software build issues. Barry told me
today on IM that he is interested in this, but he is totally swamped.
I'm also willing to look, I'm just very slow. FYI,  Java Lucene
1.4.3 only builds via a Free Software toolchain in Debian Testing
(etch) and Debian Unstable (sid). Debian Stable (sarge) doesn't
have a powerful enough free software toolchain for Java.

* Andi, think about - eventually - having a future PyLucene source
release that is more sourcetastic. For example, maybe include a
tarball of the SVN snapshot and a new build target that untars,
patches, and rebuilds the .jar files. The precompiled .jar files can
still be included.  If that's a real pain, then defer because it is
not on the critical path. But this or something like it will eventually
be helpful, especially since it sounds like the gcj-3.4 package
got kicked out of Debian for similar reasons.

PyLucene only works with Python 2.4 so to make use of it
ensure you are using /usr/bin/python2.4 and not /usr/bin/python.

* Mathew, the PyLucene module will not be found if one tries to
import it from python 2.3 right? I don't have the PyLucene package
in front of me to double check this.

http://www.debian.org/doc/packaging-manuals/python-policy/ch-python.html#s-paths

* I guess backports.org is still an open question.

Anyway, great job on getting this far with the sarge packages.
Matthew, you've already made a significant positive difference, and
I'm already hearing positive comments. Most recently from a hacker
at PARC (my employer) who is actively migrating an internal application
called UpLib from Java Lucene towards PyLucene.

-Jeff



Bug#351764: vdradmin: [PATCH] Add IPv6 support to web interface

2006-02-07 Thread Jonathan McDowell
Package: vdradmin
Version: 0.97-am3.4.2-3
Severity: wishlist
Tags: patch

The attached patch adds IPv6 support for the web interface in vdradmin;
I find this useful rather than having to port forward things around to
be able to access it from the outside world. It adds an additional
dependancy on libio-socket-inet6-perl, which is already in Debian.


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

Versions of packages vdradmin depends on:
ii  adduser  3.80Add and remove users and groups
ii  libcompress-zlib-perl1.41-1  Perl module for creation and manip
ii  libhtml-parser-perl  3.48-1  A collection of modules that parse
ii  libhtml-template-expr-perl   0.05-1  HTML::Template extension adding ex
ii  libhtml-template-perl2.8-1   HTML::Template : A module for usin
ii  libparse-recdescent-perl 1.94.free-1 Generates recursive-descent parser
ii  libtemplate-perl 2.14-1  template processing system written
ii  liburi-perl  1.35-1  Manipulates and accesses URI strin
ii  perl 5.8.7-10Larry Wall's Practical Extraction 
ii  sendemail1.52-3  email-from-console sending tool

vdradmin recommends no packages.

-- no debconf information
--- vdradmind.pl.orig   2006-01-15 23:53:22.0 +
+++ vdradmind.pl2006-01-16 15:40:26.0 +
@@ -55,6 +55,7 @@
 use Env qw(@PATH LANGUAGE);
 use CGI qw(:no_debug);
 use IO::Socket;
+use IO::Socket::INET6;
 use HTML::Template::Expr();
 use Template;
 use Time::Local qw(timelocal);
@@ -355,7 +356,7 @@
 my @reccmds;
 loadRecCmds();
 
-my($Socket) = IO::Socket::INET-new(
+my($Socket) = IO::Socket::INET6-new(
Proto = 'tcp',
LocalPort = $CONFIG{SERVERPORT},
LocalAddr = $CONFIG{SERVERHOST},


Bug#129847: Hiya cutestuff. Do you want to be the one who fucks me on lonely nights?

2006-02-07 Thread Jen Q.
Are you interested? I found your profile and you are just the type Im looking 
for. Want to be my fuck buddy? So what do you say? Send a message too 
bedroombadgirl59.

http://tori5x.com/dpw/


Kirsten are downstate must alumnae peridotite the pendant.-loni6z.com/notonlist/


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



Bug#351406: Quite similar problem

2006-02-07 Thread Krzysztof Krzyzaniak
I have quite similar problem (probably connected with gstreamer 0.10).

[EMAIL PROTECTED]:~$ rhythmbox

** (rhythmbox:3540): WARNING **: No GConf default audio sink key and
alsasink doesn't work

** (rhythmbox:3540): WARNING **: No GConf default audio sink key and
alsasink doesn't work

It's true because I don't use alsa (I cannot configure it properly with
intel card). I have set in Gnome Center oss sink but it's for gstreamer
0.8. Question is how to set this gconf key for gstreamer 0.10?

ii  gstreamer0.10-gnomevfs   0.10.2-2
Gnome VFS plugin for GStreamer
ii  gstreamer0.10-plugins-base   0.10.2-2
Collection of various GStreamer plugins
ii  gstreamer0.10-plugins-base-apps  0.10.2-2
Simple GStreamer applications
ii  gstreamer0.10-plugins-good   0.10.1-2
Collection of various GStreamer plugins
ii  gstreamer0.10-plugins-ugly   0.10.1-1
Collection of various GStreamer plugins
ii  gstreamer0.10-tools  0.10.2-1
Tools for use with GStreamer
ii  gstreamer0.8-cdparanoia  0.8.11-6
cdparanoia plugin for GStreamer
ii  gstreamer0.8-flac0.8.11-6
FLAC plugin for GStreamer
ii  gstreamer0.8-gnomevfs0.8.11-6
Gnome VFS plugin for GStreamer
ii  gstreamer0.8-lame0.8.11-0.1
GStreamer lame plugins
ii  gstreamer0.8-mad 0.8.11-6
MAD MPEG audio decoder plugin for GStreamer
ii  gstreamer0.8-misc0.8.11-6
Collection of various GStreamer plugins
ii  gstreamer0.8-oss 0.8.11-6
OSS plugin for GStreamer
ii  gstreamer0.8-vorbis  0.8.11-6
Vorbis plugin for GStreamer
ii  libgstreamer-gconf0.8-0  0.8.11-6
GConf support for GStreamer
ii  libgstreamer-plugins-base0.10-0  0.10.2-2
Various GStreamer libraries and library plug
ii  libgstreamer-plugins0.8-00.8.11-6
Various GStreamer libraries and library plug
ii  libgstreamer0.10-0   0.10.2-1
Core GStreamer libraries, plugins, and utili
ii  libgstreamer0.10-dev 0.10.2-1
GStreamer development libraries and headers
ii  libgstreamer0.8-00.8.11-3
Core GStreamer libraries, plugins, and utili


-- 
[EMAIL PROTECTED]

   jak to dobrze, że są oceany - bez nich byłoby jeszcze smutniej



Bug#351722: Rpath is defined for dlllablgtk2.so

2006-02-07 Thread Samuel Mimram
Samuel Mimram wrote:
 Sylvain Le Gall wrote:
 
Well, this is just a note that dlllabgtk2 use again a rpath for its .so
objects.
 
 Right. I'll make an upload soon to correct this.

In fact, I'm having second thoughts. Are we near to have 3.09.1 in
testing? If it's the case I'd rather not slow the migration down (it can
wait for the next upload anyway).

Sam.


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



Bug#351758: kernel-patch-suspend2: The exit 0's in initrd/linuxrc.suspend2 prevent kernel from booting

2006-02-07 Thread martin f krafft
also sprach Russell Stuart [EMAIL PROTECTED] [2006.02.07.1007 +0100]:
 On an unrelated note, I have added patches for 2.6.14
 and 2.6.15 in kernel-patch-suspend2.  This was the

Thanks. Have you done anything about mkinitramfs or yaird? Or do you
require initrd-tools?

-- 
Please do not send copies of list mail to me; I read the list!
 
 .''`. martin f. krafft [EMAIL PROTECTED]
: :'  :proud Debian developer and author: http://debiansystem.info
`. `'`
  `-  Debian - when you have better things to do than fixing a system
 
Invalid/expired PGP (sub)keys? Use subkeys.pgp.net as keyserver!
 
when compared to windoze, unix is an operating system.


signature.asc
Description: Digital signature (GPG/PGP)


Bug#351725: Zonet zcf-1400 is not detected with pcmcia-cs, solution attatched

2006-02-07 Thread Magnus Lundstedt

Hi


Thanks, I'll do that. Could you please send me the output of
cardctl ident too?
 


Great. Here is the output:

MusicBox:/home/magnus# cardctl ident
Socket 0:
 product info: CompactFlash, 10Base-T Ethernet, 1.0, 
 function: 6 (network)
Socket 1:
 no product info available


Regards, Magnus Lundstedt



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



Bug#214729: Bug reports for texinfo (and 2 wishes)

2006-02-07 Thread Norbert Preining
Hi Karl!

On Mon, 06 Feb 2006, Karl Berry wrote:
 WIth HTML 4.01 Transitional for texinfo.html I get only 4 errors.
 
 Just out of curiousity, what are those four errors?

Please see yourself:
http://validator.w3.org/check?uri=http%3A%2F%2Fwww.logic.at%2Fpeople%2Fpreining%2Ftexinfo.htmlcharset=%28detect+automatically%29doctype=HTML+4.01+Transitional

or shorter
http://tinyurl.com/cm93p
the errors are:
Line 6780 column 91: document type does not allow element SMALL here.
...ls(1)/a program small class=dots.../small

Line 8421 column 25: document type does not allow element PRE here;
missing one of MAP, IFRAME, BUTTON start-tag.
pre class=example  This is an example

Line 8424 column 24: document type does not allow element P here;
missing one of MAP, IFRAME, BUTTON start-tag.
p class=noindentThis line is not indented.  As you can see, the

Line 9322 column 24: document type does not allow element UL here;
missing one of MAP, IFRAME, BUTTON start-tag.
ul class=listoffloats

Best wishes

Norbert

---
Dr. Norbert Preining preining AT logic DOT at Università di Siena
gpg DSA: 0x09C5B094  fp: 14DF 2E6C 0307 BE6D AD76  A9C0 D2BF 4AA3 09C5 B094
---
DARENTH (n.)
Measure = 0.176 mg. Defined as that amount of margarine capable of
covering one hundred slices of bread to the depth of one
molecule. This is the legal maximum allowed in sandwich bars in
Greater London.
--- Douglas Adams, The Meaning of Liff


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



Bug#351765: bonsai: FTBFS: Missing Build-Depends on 'libmailtools-perl'

2006-02-07 Thread Andreas Jochens
Package: bonsai
Version: 1.3+cvs20060111-1
Severity: serious
Tags: patch

When building 'bonsai' in a clean 'unstable' chroot,
I get the following error:

checking for perl File::Path.. yes
checking for perl Mail::Internet.. no
checking for perl Mail::Mailer.. no
checking for perl Time::Local.. yes
configure: error: Missing one or more required Perl modules.
make: *** [configure-stamp] Error 1

Please add the missing Build-Depends on 'libmailtools-perl'
to debian/control.

Regards
Andreas Jochens

diff -urN ../tmp-orig/bonsai-1.3+cvs20060111/debian/control ./debian/control
--- ../tmp-orig/bonsai-1.3+cvs20060111/debian/control   2006-02-07 
10:30:17.0 +
+++ ./debian/control2006-02-07 10:30:13.0 +
@@ -2,7 +2,7 @@
 Section: web
 Priority: extra
 Maintainer: Rémi Perrot [EMAIL PROTECTED]
-Build-Depends-Indep: debhelper (= 4.1.16), debconf (= 0.9.95), rcs, cvs, 
perl, libdbd-mysql-perl, libtimedate-perl
+Build-Depends-Indep: debhelper (= 4.1.16), debconf (= 0.9.95), rcs, cvs, 
perl, libdbd-mysql-perl, libtimedate-perl, libmailtools-perl
 Standards-Version: 3.6.2
 
 Package: bonsai


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



Bug#351767: [l10n] Updated Czech translation od debian-edu-install debconf messages

2006-02-07 Thread Miroslav Kure
Package: debian-edu-install
Severity: wishlist
Tags: l10n, patch

Hi,

in attachement there is updated Czech translation (cs.po) of
debian-edu-install debconf messages, please include them with the
package.

-- 
Miroslav Kure


cs.po.gz
Description: Binary data


Bug#351766: cl-iterate: FTBFS: Missing Build-Depends on 'dh-lisp'

2006-02-07 Thread Andreas Jochens
Package: cl-iterate
Version: 1.4.2-1
Severity: serious
Tags: patch

When building 'cl-iterate' in a clean 'unstable' chroot,
I get the following error:

dh_installdocs doc/* README
dh_installchangelogs 
dh_lisp
make: dh_lisp: Command not found
make: *** [binary-arch] Error 127

Please add the missing Build-Depends on 'dh-lisp' to debian/control.

Regards
Andreas Jochens

diff -urN ../tmp-orig/cl-iterate-1.4.2/debian/control ./debian/control
--- ../tmp-orig/cl-iterate-1.4.2/debian/control 2006-02-07 10:31:41.0 
+
+++ ./debian/control2006-02-07 10:31:31.0 +
@@ -2,7 +2,7 @@
 Section: devel
 Priority: optional
 Maintainer: Peter Van Eynde [EMAIL PROTECTED]
-Build-Depends-Indep: debhelper ( 4.0.0)
+Build-Depends-Indep: debhelper, dh-lisp
 Standards-Version: 3.6.2.1
 
 Package: cl-iterate


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



Bug#349256: Workaround

2006-02-07 Thread Michael Hanke
I had a similar problem using the current daily build of the installer
(7.2.2006, i386). I installed on a FujitsuSiemens Esprimo 5600 with SATA
harddisk. Installation went fine with no problems at all. But the final
reboot failed with something like this as the last visible message:

pivot_root: No such file or directory
/sbin/init: 432: cannot open /dev/console: No such file
Kernel panic: Attempted to kill init!

My workaround was to use the same installer to boot a rescue system. A
started a console in the already installed system and changed
/etc/apt/sources.list to an unstable mirror. I finally installed the
current linux-image-k7 (2.6.15) and rebooted. The reboot went fine. No
errors at a first glance.

Cheers,

Michael


-- 
GPG key:  1024D/3144BE0F Michael Hanke
http://apsy.gse.uni-magdeburg.de/hanke
ICQ: 48230050


signature.asc
Description: Digital signature


Bug#348999: banshee segfaults for me too...

2006-02-07 Thread Sebastian Dröge
Hi,
your gdb run isn't too useful, sorry :/

Well... the first segfault is a known problem on amd64, the second one a
known problem with newer mono versions and the dbus bindings :(

only the third one is unknown to me yet... can you please rerun banshee
in gdb and give me a backtrace of that segfault (by simply typing
'backtrace' after the segfault)

Bye

PS: maybe these problems are fixed with the new banshee version I'll get
uploaded later... please report back

PPS: If the problems with avahi / daap are still there with 0.10.5 I'll
split the daap plugin off in another binary package



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



Bug#350019: openoffice.org-draw: Impress/Draw line width greater than zero drawing error

2006-02-07 Thread Javier Ruiz Hidalgo
Hi,

Just wanted to add a me too to the bug report. Hoping this will get
fix soon as for me it converts ooffice-draw unsable... :-( let me know
if I can make any further tests...

later,

--
Javier Ruiz Hidalgo



Bug#351380: debsecan: Please switch to gettext-based debconf templates

2006-02-07 Thread Thomas Huriaux
Florian Weimer [EMAIL PROTECTED] (06/02/2006):
 * Thomas Huriaux:
 
  Please use gettext-based debconf templates to allow translations, as
  recommended by the developers-reference (section 6.5.2.2). See
  po-debconf(7). There is also a lintian warning:
 
 Is this really necessary?  debsecan will present its information in
 English only for the forseeable future, so localizing the templates
 does not make much sense (especially since there aren't any
 high-priority questions).

I don't understand. The only reason I know to disable l10n is in the
debian-installer, if the templates appear before the language has been
chosen. debsecan should present its information in the translated
languages, as soon as it is localized and translated. I have made a
small test with a fake translation, everything is working fine, so I see
no reason to disable l10n. Once it will be done, debsecan will be
detected by l10n bots, so you should receive soonish new translations
(French within 2 weeks for example).

CHeers,

-- 
Thomas Huriaux


signature.asc
Description: Digital signature


Bug#351658: [Pkg-spca5xx-devel] Bug#351658: spca5xx-modules-2.6-k7-smp: doesn't depend on the corresponding kernel package

2006-02-07 Thread Kel Modderman

Gerfried Fuchs wrote:


* Kel Modderman [EMAIL PROTECTED] [2006-02-07 06:15]:
 


Gerfried Fuchs wrote:
   


Furthermore, a mailinglist -request address as maintainer address is a
*very* bad idea, I seriously hope you consider changing that, too.
 

I did not see this in our sources anywhere, can you please be more 
specific about this problem?


Maintainer: Debian spca5xx Maintainers 
[EMAIL PROTECTED]
   



You seem to have used it for your initial package and changed it later.
The data is stored in the override file maintained by the ftp master
team, you are receiving a mail about this difference with every upload.

I see it in the Packages files distributed in our archive, you need to
reply to the mail about this changes and tell the ftp master team that
the change is needed, this isn't done automatically.

So long,
Alfie
 



Cheers Alfie, the bug was found (rather embarrisingly) and fixed. The 
binary module control template was incorrect in spca5xx-source. So 
hopefully Otavio will find a moment to upload the fixed *versions* soon. 
Depends issue was also fixed, pending Otavio's nod of approval.


Is that action sufficient? (not sure about dealing directly with the ftp 
masters)


Thanks, Kel.


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



Bug#351761: sylpheed-claws-gtk2: imap-ssl is broken: Can't connect to IMAP4 server: imap.example.com:993

2006-02-07 Thread Wouter Van Hemel
Package: sylpheed-claws-gtk2
Version: 1.9.100-2+b1
Followup-For: Bug #351761

I concur that the latest update (2006-02-06/07) broke sylpheed's imap-ssl. 
Connecting to an imap server yields the following error message:

  Can't connect to IMAP4 server: imap.example.com:993

Since nothing shows up in the log window, I assume it's a compile-time 
error rather than one in sylpheed's code.

Could you have a look at the new package you uploaded?


Regards,

  Wouter

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

Versions of packages sylpheed-claws-gtk2 depends on:
ii  libaspell15   0.60.4-3   GNU Aspell spell-checker runtime l
ii  libc6 2.3.5-12.1 GNU C Library: Shared libraries an
ii  libcompfaceg1 1:1.5.2-3  Compress/decompress images for mai
ii  libetpan6 0.42-1 mail handling library
ii  libglib2.0-0  2.8.6-1The GLib library of C routines
ii  libgnomeprint2.2-02.12.1-3   The GNOME 2.2 print architecture -
ii  libgnomeprintui2.2-0  2.12.1-2   GNOME 2.2 print architecture User 
ii  libgtk2.0-0   2.8.10-1   The GTK+ graphical user interface 
ii  libldap2  2.1.30-12  OpenLDAP libraries
ii  libpango1.0-0 1.10.2-1   Layout and rendering of internatio
ii  libpisock80.11.8-18  Library for communicating with a P
ii  libssl0.9.8   0.9.8a-6   SSL shared libraries

Versions of packages sylpheed-claws-gtk2 recommends:
ii  aspell-en [aspell-diction 6.0-0-5English dictionary for GNU Aspell
ii  aspell-fr [aspell-diction 0.50-3-6   French dictionary for aspell
ii  aspell-nl [aspell-diction 1:0.1e-41  Dutch dictionary for aspell
ii  metamail  2.7-50 implementation of MIME
pn  sylpheed-claws-gtk2-i18n  none (no description available)
ii  sylpheed-claws-scripts1.0.5-2.1  Helper scripts for Sylpheed and Sy
ii  xfonts-100dpi 6.9.0.dfsg.1-4 100 dpi fonts for X
ii  xfonts-75dpi  6.9.0.dfsg.1-4 75 dpi fonts for X

-- no debconf information


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



Bug#351768: Installation report: lilo fails with mapped boot device cannot be on multiple real devices (LVM2)

2006-02-07 Thread Chris Carr
Package: debian-installer
Version: 2005

Hi,

I can't find any reference to this anywhere in the BTS. I am currently 
downloading the latest daily image in case it has been fixed there. Will follow 
this up tomorrow (or tonight, if successful). 

My system is as follows: 

hda: IDE HD (3.6Gb)
hdb: CDROM
hdc: IDE HD (3.0Gb)

hda1 and hdc1 form LVM2 volume group VG1 (6.6Gb)

VG1 contains 4 logical volumes: 

VG1-Root (2.7Gb)  (this is a partition I'm trying to rescue with a new install, 
but that's another story)
VG1-Swap (128Mb)
VG1-Swap2 (128Mb)
VG1-NewRoot (1.5Gb)

I booted from the netinst CD, chose expert mode. All stages went ok - found the 
hardware and the LVs. I chose to install on VG1-NewRoot after formatting it. 
Base system installed fine, kernel 2.6.12 installed fine, initrd built fine. 
The option to install grub was removed after installing the base system (on the 
Alt-F4 log there was a note to that effect, something like root is on LVM, 
cannot install grub). 

So I chose lilo, and it failed. Checking Alt-F4 showed the error mapped boot 
device cannot be on multiple real devices. I can only find two references to 
this on google (none in the Debian mailing list archives or BTS), both in old 
patches from times when lilo didn't yet work with libdevmapper: 

https://www.redhat.com/archives/linux-lvm/2002-December/msg00140.html

and

http://evms.sourceforge.net/patches/2.4.0/lilo-22.6-devmapper.patch

I checked the system using the Alt-F2 console. The /target/etc/lilo.conf looked 
fine (boot=/dev/hda, root=/dev/mapper/VG1-NewRoot). /target/dev/mapper looks 
like this

VG1-Root254 0
VG1-Swap254 1
VG1-Swap2   254 2
VG1-NewRoot 254 3

... and /proc/devices shows block device 254 as device-mapper.

So, am I doing something wrong? Kernel is 2.6.12, the one on the 2005 
installer image. 

Regards,

CC



Bug#351769: cl-memoization: FTBFS: Missing Build-Depends on 'dh-lisp'

2006-02-07 Thread Andreas Jochens
Package: cl-memoization
Version: 20060125
Severity: serious
Tags: patch

When building 'cl-memoization' in a clean 'unstable' chroot,
I get the following error:

dh_installman
dh_installchangelogs
dh_link
dh_lisp
make: dh_lisp: Command not found
make: *** [binary-arch] Error 127

Please add the missing Build-Depends on 'dh-lisp' to debian/control.

Regards
Andreas Jochens

diff -urN ../tmp-orig/cl-memoization-20060125/debian/control ./debian/control
--- ../tmp-orig/cl-memoization-20060125/debian/control  2005-08-06 
20:09:31.0 +
+++ ./debian/control2006-02-07 10:53:23.0 +
@@ -1,7 +1,7 @@
 Source: cl-memoization
 Section: libs
 Priority: optional
-Build-Depends-Indep: debhelper ( 4)
+Build-Depends-Indep: debhelper, dh-lisp
 Maintainer: Peter Van Eynde [EMAIL PROTECTED]
 Standards-Version: 3.6.2.1
 


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



Bug#351770: cl-pg: FTBFS: Missing Build-Depends on 'dh-lisp'

2006-02-07 Thread Andreas Jochens
Package: cl-pg
Version: 20061225-1
Severity: serious
Tags: patch

When building 'cl-pg' in a clean 'unstable' chroot,
I get the following error:

dh_installchangelogs NEWS ChangeLog
dh_link
dh_strip
dh_lisp
make: dh_lisp: Command not found
make: *** [binary-indep] Error 127

Please add the missing Build-Depends on 'dh-lisp' to debian/control.

Regards
Andreas Jochens

diff -urN ../tmp-orig/cl-pg-20061225/debian/control ./debian/control
--- ../tmp-orig/cl-pg-20061225/debian/control   2006-02-07 10:54:11.0 
+
+++ ./debian/control2006-02-07 10:54:08.0 +
@@ -2,7 +2,7 @@
 Section: devel
 Priority: optional
 Maintainer: Peter Van Eynde [EMAIL PROTECTED]
-Build-Depends-Indep: debhelper ( 4.0.0)
+Build-Depends-Indep: debhelper, dh-lisp
 Standards-Version: 3.6.2.1
 
 Package: cl-pg


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



Bug#306210: acknowledged by developer (libstdc++: Big file support not working with Debian mingw32 package (OK with upstream native binaries))

2006-02-07 Thread Richard Atterer
reopen 306210
thanks

On Fri, Feb 03, 2006 at 07:48:53AM -0800, Debian Bug Tracking System wrote:
 I'm going to tentatively close this bug in the belief that it
 is fixed in the current unstable packages.

I'm sorry, I've just tested it and it still doesn't work. :-/ I compiled my 
example program using mingw 3.4.5.20060117.1-1, mingw32-binutils 
2.16.91-20060119.1-1 and mingw32-runtime 3.9-3, then ran it on an NTFS 
partition on a Windows XP system.

The program wrote 4294963200 bytes of data (that's 0xF000), then exited 
with:
-1
strerror: no space left on device

Did you actually apply my patch? Unfortunately, upstream seems to ignore my 
bug report (no followups on
http://sourceforge.net/tracker/index.php?func=detailaid=1235337group_id=2435atid=102435),
maybe you could prod them about it?

BTW, this bug should probably be reassigned to mingw and not libstdc++, 
because according to http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22388#c3 
the respective bug is in mingw-specific modifications to the standard 
libstdc++.

 The test case you posted, when run under wine, writes out a file
 of 4294971402 bytes -- and though the output there is still not
 correct

I don't think wine is a good test platform for this kind of thing. :-/

Cheers,

  Richard

-- 
  __   _
  |_) /|  Richard Atterer |  GnuPG key: 0x888354F7
  | \/¯|  http://atterer.net  |  08A9 7B7D 3D13 3EF2 3D25  D157 79E6 F6DC 8883 
54F7
  ¯ '` ¯



Bug#331554: [Pbuilder-maint] Bug#351536: please document cdebootstrap --flavour=build in pbuilderrc

2006-02-07 Thread Junichi Uekawa
Hi,

 pbuilderrc contains:
 ...
 # Set the debootstrap variant to 'buildd' type.
 # DEBOOTSTRAPOPTS[0]='--variant=buildd'
 # or work around bug in debootstrap 3.0.0 (314858)
 unset DEBOOTSTRAPOPTS
 ...
 - this should probably mean debootstrap 0.3.0 ?
 - now that debootstrap is fixed, this workaround could be disabled ?
 
 But since the default DEBOOTSTRAP command is cdebootstrap, the proper
 option to create a buildd like chroot with cdebootstrap should be
 documented in the pbuilderrc, too. Perhaps this should be enabled by
 default:

I'm waiting for 331554 to be resolved.



regards,
junichi
-- 
[EMAIL PROTECTED],netfort.gr.jp}   Debian Project


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



Bug#351511: irssi-scripts: missing bitlbee plugins

2006-02-07 Thread Florian Ernst
Hello Norbert,

thanks for your hint.

On Sun, Feb 05, 2006 at 01:08:46PM +0100, Norbert Tretkowski wrote:
 two useful plugins for bitlbee from
 http://the-timing.nl/stuff/irssi-bitlbee are not integrated in the
 irssi-scripts plugin, namely Bitlbee_join_notice.pl and
 Bitlbee_nick_change.pl.
 
 Please add those scripts to the next version of the package.

Just as indicated in a similar bugreport[0] as well as in
README.Debian I hesitate to add scripts from various separate sources
to the package. Of course, a lot of usefull add-ons are not present at
the moment, but as of now I refrain from crawling the web to get them
all together.

Well, I don't use bitlbee myself, so I can't say how useful those
particular scripts may be, but perhaps they could simply be added to
my upstream listing at http://www.irssi.org/scripts/. Once this
is done they will be automatically included in my next new upstream
release of the irssi-scripts package.


Cheers,
Flo


[0] #281281: irssi-scripts: Please consider adding
bitlbee_reconnect-script to the package


signature.asc
Description: Digital signature


Bug#351522: [Pbuilder-maint] Bug#351522: #351522: pbuilder: base.tgz contains var/cache/bootstrap/*.deb

2006-02-07 Thread Junichi Uekawa
reopen 351522
retitle 351522 cdebootstrap leaves crap inside /var/cache/bootstrap 
thanks
Hi,

 
 
 Hi,
 
 I think, /var/cache/bootstrap/ is specific to cdebootstrap and won't be
 touched by apt-get clean.
 I haven't seen any debs remaining after using debootstrap and got
 interested in this problem after seeing a base.tgz created with
 debootstrap having only about half the size of a cdebootstrap one.

Ah, okay.


regards,
junichi.
-- 
[EMAIL PROTECTED],netfort.gr.jp}   Debian Project



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



Bug#351526: [Pbuilder-maint] Bug#351526: sudo pbuilder login --save-after-login includes the apt cache in the base.tgz

2006-02-07 Thread Junichi Uekawa
Hi,

 The base.tgz generated after executing
   sudo pbuilder login --save-after-login
 contains a filled var/cache/apt/archives directory bloating the base.tgz.
 var/cache/apt/archives was initialized by copying the debs from APTCACHE
 after unpacking the base.tgz and should be cleaned before creating a new
 base.tgz like it is done by pbuilder update.

Yes confirmed. It's one of the unimplemented parts of pbuilder.


regards,
junichi
-- 
[EMAIL PROTECTED],netfort.gr.jp}   Debian Project


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



Bug#351631: passwd: Please compile with SE Linux support

2006-02-07 Thread Nicolas François
Hello,

Do you think we need a versionned dependency on libselinux1-dev?

Also, given the current build system, the tools of the login package
(login, su, lastlog, faillog, sg) will have a shared library dependency on
the selinux libraries.
Do you think that may be a problem?

Kind Regards,
-- 
Nekral


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



Bug#351692: mips-tools doesn't build on powerpc and hppa

2006-02-07 Thread Thiemo Seufer
On Mon, Feb 06, 2006 at 10:18:41PM +0100, Aurelien Jarno wrote:
 Martin Michlmayr a écrit :
 Package: mips-tools
 Version: 2.4.27-11.040815-2
 Severity: serious
 
 mips-tools doesn't build on powerpc and hppa; probably a bug in
 kernel-package or something -- needs more investigation.
 
 
 Yes, it is a bug in kernel-package, architecture.mk is not included. It 
 is included in local-vars.mk, but it looks like this file is not 
 included anymore.
 
 architecture.mk convert the architecture name in case the name in Debian 
 and the name in the kernel tree is different, which is the case for 
 powerpc (ppc), and hppa (parisc).

JFTR, it is also the case for mipsel (mips).


Thiemo



Bug#351772: erc: FTBFS: Missing Build-Depends on 'texinfo, texi2html'

2006-02-07 Thread Andreas Jochens
Package: erc
Version: 5.1.1-1
Severity: serious
Tags: patch

When building 'erc' in a clean 'unstable' chroot,
I get the following error:

 debian/rules build
makeinfo erc.texi
make: makeinfo: Command not found
make: *** [build] Error 127

Please add the missing Build-Depends on 'texinfo, texi2html'
to debian/control.

Regards
Andreas Jochens

diff -urN ../tmp-orig/erc-5.1.1/debian/control ./debian/control
--- ../tmp-orig/erc-5.1.1/debian/control2006-02-07 11:06:41.0 
+
+++ ./debian/control2006-02-07 11:06:34.0 +
@@ -3,6 +3,7 @@
 Priority: optional
 Maintainer: Michael W. Olson (GNU address) [EMAIL PROTECTED]
 Uploaders: Mario Lang [EMAIL PROTECTED], Romain Francoise [EMAIL PROTECTED]
+Build-Depends: texinfo, texi2html
 Standards-Version: 3.6.2
 
 Package: erc


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



Bug#234848: Bug reports for texinfo (and 2 wishes)

2006-02-07 Thread Norbert Preining
On Die, 07 Feb 2006, preining wrote:
 On Mon, 06 Feb 2006, Karl Berry wrote:
  $ info/ginfo ./notexistingfile
  
  and I landed at the manpage of top
  
  What is wrong here???
  
  Sorry, I can't explain it.  I do get the No menu item error, with
  precisely your invocation.  Comes from line 2551 in session.c, I guess
  Maybe it's related to the dir file contents somehow (although I can't
  quite imagine)?  I'll attach mine.
 
  Failing that, maybe run under the debugger and see what happens;
  actually, I guess we'd have to do it simultaneously and see where they
  diverge.  Yikes.

Ok, I did the following with info from cvs:

$ ./info-cvs --dribble=save.drib ./kojaojfdokaf
q

now the save.drib contains only the q character, as we are interested
only in the start up.

Then I did:
$ gdb ./info-cvs
(gdb) set args --restore=save.drib ./asdkiafdasdf
(gdb) break info_follow_menus
Breakpoint 2 at 0x805d00f: file session.c, line 2472.
(gdb) run
Starting program:
/src/TeX/debian/pkg-texlive/texinfo/bug-examples/info-cvs --restore=save.drib 
./asdkiafdasdf

Breakpoint 2, info_follow_menus (initial_node=0x806f470, menus=0xbfabe55c,
errstr=0xbfabe4a8, errarg1=0xbfabe4a4, errarg2=0xbfabe4a0)
at session.c:2472
2472  NODE *node = NULL;

then I step through the function and see, that it goes all the way down
to 
node = make_manpage_node (first_arg);
in line 2542, after this it goes to goto maybe_got_node and skips the
error message you mentioned.

Does your info also go to make_manpage_node and returns a if (node)
true?

Best wishes

Norbert

---
Dr. Norbert Preining preining AT logic DOT at Università di Siena
gpg DSA: 0x09C5B094  fp: 14DF 2E6C 0307 BE6D AD76  A9C0 D2BF 4AA3 09C5 B094
---
MILWAUKEE (n.)
The melodious whistling, chanting and humming tone of the milwaukee
can be heard whenever a public lavatory is entered. It is the way the
occupants of the cubicles have of telling you there's no lock on their
door and you can't come in.
--- Douglas Adams, The Meaning of Liff


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



Bug#351771: cl-series: FTBFS: Missing Build-Depends on 'dh-lisp'

2006-02-07 Thread Andreas Jochens
Package: cl-series
Version: 1:2.2.9-1
Severity: serious
Tags: patch

When building 'cl-series' in a clean 'unstable' chroot,
I get the following error:

dh_installdocs
dh_installchangelogs ChangeLog
dh_lisp
make: dh_lisp: Command not found
make: *** [binary-arch] Error 127

Please add the missing Build-Depends on 'dh-lisp' to debian/control.

Regards
Andreas Jochens

diff -urN ../tmp-orig/cl-series-2.2.9/debian/control ./debian/control
--- ../tmp-orig/cl-series-2.2.9/debian/control  2006-02-07 10:56:44.0 
+
+++ ./debian/control2006-02-07 10:56:43.0 +
@@ -1,7 +1,7 @@
 Source: cl-series
 Section: devel
 Priority: optional
-Build-Depends-Indep: debhelper (= 4.0.0)
+Build-Depends-Indep: debhelper, dh-lisp
 Maintainer: Peter Van Eynde [EMAIL PROTECTED]
 Standards-Version: 3.6.2.1
 


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



Bug#351692: mips-tools doesn't build on powerpc and hppa

2006-02-07 Thread Aurelien Jarno

Thiemo Seufer a écrit :

On Mon, Feb 06, 2006 at 10:18:41PM +0100, Aurelien Jarno wrote:


Martin Michlmayr a écrit :


Package: mips-tools
Version: 2.4.27-11.040815-2
Severity: serious

mips-tools doesn't build on powerpc and hppa; probably a bug in
kernel-package or something -- needs more investigation.



Yes, it is a bug in kernel-package, architecture.mk is not included. It 
is included in local-vars.mk, but it looks like this file is not 
included anymore.


architecture.mk convert the architecture name in case the name in Debian 
and the name in the kernel tree is different, which is the case for 
powerpc (ppc), and hppa (parisc).



JFTR, it is also the case for mipsel (mips).


I suppose the problem does not occur here because some more binary 
packages are build from this source package on mips and mipsel.



--
  .''`.  Aurelien Jarno | GPG: 1024D/F1BCDB73
 : :' :  Debian developer   | Electrical Engineer
 `. `'   [EMAIL PROTECTED] | [EMAIL PROTECTED]
   `-people.debian.org/~aurel32 | www.aurel32.net


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



Bug#351685: udev storm: pcmcia CF adapter device file constantly deleted, recreated

2006-02-07 Thread Marco d'Itri
This *is* a bug in ide-cs, but is exposed by udev (0.084-2 has a
workaround).

-- 
ciao,
Marco


signature.asc
Description: Digital signature


Bug#351773: pybliographer: failure to either save or load bib (BibTeX) file

2006-02-07 Thread Filippo Rusconi
Package: pybliographer
Version: 1.2.6.2-1
Severity: grave
Justification: renders package unusable

Hello,

1. When starting pybliographic, I get the ususal window OK.

2. When starting pybliographic with a bib filename, I get this:

$ This is Pybliographic 1.2.6.2 [Python 2.3.5, Gtk 2.8.10, PyGTK 2.8.2]
/usr/share/pybliographer/Pyblio/GnomeUI/Utils.py:141: GtkDeprecationWarning: 
gtk.mainiteration is deprecated, use gtk.main_iteration instead
  gtk.mainiteration (False)
/usr/share/pybliographer/Pyblio/GnomeUI/Document.py:159: DeprecationWarning: 
use gtk.UIManager
  factory = gtk.ItemFactory (gtk.Menu, 'main', None)
Traceback (most recent call last):
  File /usr/bin/pybliographer, line 166, in ?
execfile (filename, user_global)
  File /usr/share/pybliographer/pybliographic.py, line 40, in ?
main.open_document (str (url))
  File /usr/share/pybliographer/Pyblio/GnomeUI/Pybliographic.py, line 98, in 
open_document
doc.open_document (url, how)
  File /usr/share/pybliographer/Pyblio/GnomeUI/Document.py, line 382, in 
open_document
data = Open.bibopen (url, how = how)
  File /usr/share/pybliographer/Pyblio/Open.py, line 111, in bibopen
base = simple_try (url, how)
  File /usr/share/pybliographer/Pyblio/Open.py, line 93, in simple_try
base = opener (url, 0)
  File /usr/share/pybliographer/Pyblio/Format/BibTeX.py, line 658, in opener
base = DataBase (url)
  File /usr/share/pybliographer/Pyblio/Format/BibTeX.py, line 351, in __init__
self.__parsefile__ ()
  File /usr/share/pybliographer/Pyblio/Format/BibTeX.py, line 374, in 
__parsefile__
user [k] [0], 0))
TypeError: reverse() takes exactly 3 arguments (4 given)


and the window shows and very quickly disappears.

3. When starting pybliographic empty, getting a biblio record using
Ctrl-M and trying to save a new bib file I get this:

/usr/share/pybliographer/Pyblio/GnomeUI/FileSelector.py:104: 
DeprecationWarning: use gtk.ComboBox
  self.menu = gtk.OptionMenu ()
Traceback (most recent call last):
  File /usr/share/pybliographer/Pyblio/GnomeUI/Document.py, line 409, in 
save_document
self.save_document_as ()
  File /usr/share/pybliographer/Pyblio/GnomeUI/Document.py, line 470, in 
save_document_as
out = file, how = how)
  File /usr/share/pybliographer/Pyblio/Open.py, line 193, in bibwrite
writer (iter, out)
  File /usr/share/pybliographer/Pyblio/Format/BibTeX.py, line 646, in writer
entry_write (entry, output)
  File /usr/share/pybliographer/Pyblio/Format/BibTeX.py, line 555, in 
entry_write
dico [field] = _nativify (value, fieldtype)
  File /usr/share/pybliographer/Pyblio/Format/BibTeX.py, line 479, in 
_nativify
field, 1)
TypeError: reverse() takes exactly 3 arguments (4 given)


and the file does not get saved.


There errors apparently have something to do with the BibTeX.py
file. But I am no pythonist.

I like pybliographer/phic a lot !

Cheers,

Filippo




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

Versions of packages pybliographer depends on:
ii  python2.3.5-5An interactive high-level object-o
ii  python-bibtex 1.2.2-1Python interfaces to BibTeX and th
ii  python-glade2 2.8.2-3GTK+ bindings: Glade support
ii  python-gnome2 2.10.0-4   Python bindings for the GNOME desk
ii  python2.3-glade2  2.8.2-3GTK+ bindings: Glade support
ii  python2.3-gnome2  2.10.0-4   Python bindings for the GNOME desk

Versions of packages pybliographer recommends:
ii  yelp  2.10.0-3   Help browser for GNOME 2

-- no debconf information


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



Bug#325601: perl-tk: Now fixed

2006-02-07 Thread Colin Tuckley
Package: perl-tk
Version: 1:804.027-3
Followup-For: Bug #325601

close 325601
thanks

The upload of 1:804.027-3 has fixed this bug.

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

Versions of packages perl-tk depends on:
ii  libc62.3.5-8 GNU C Library: Shared libraries an
ii  libjpeg626b-11   The Independent JPEG Group's JPEG 
ii  libpng12-0   1.2.8rel-5  PNG library - runtime
ii  libx11-6 6.8.2.dfsg.1-11 X Window System protocol client li
ii  perl 5.8.7-10Larry Wall's Practical Extraction 
ii  perl-base [perlapi-5.8.7 5.8.7-10The Pathologically Eclectic Rubbis
ii  zlib1g   1:1.2.3-9   compression library - runtime

perl-tk recommends no packages.

-- no debconf information


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



Bug#351763: tetex-base: Consider including exceltex.sty

2006-02-07 Thread Hilmar Preusse
On 07.02.06 Nikolaus Rath ([EMAIL PROTECTED]) wrote:

Hi Nikolaus,

 Please consider adding exceltex
 (http://www.physik.uni-freiburg.de/~doerr/exceltex/ is in german,
 but
 http://www.physik.uni-freiburg.de/~doerr/debian/exceltex_0.3.4-1.tar.gz
 contains english documentation). It allows easy inclusion of
 spreadsheet data into latex.
 
Normally we forward these kind of request to upstream first oder
(Thomas Esser). He normally refuses to include packages, not
available on CTAN. So, two tasks for you:

1. Cause the author to upload the package to CTAN
2. the perl script exceltex and the style file exceltex.sty do not
   contain a copyright statement. Both are GPL, as the COPYING file
   contains the GPL and one can read in the README a statement, but
   this is not explicitely written in the programs itself.
   I'de suggest to add an entry just to make sure...

Regards,
  Hilmar
-- 
sigmentation fault


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



Bug#214729: Bug reports for texinfo (and 2 wishes)

2006-02-07 Thread Torsten Bronger
The following message is a courtesy copy of an article
that has been posted to 
gmane.linux.debian.devel.bugs.general,gmane.comp.tex.texinfo.bugs as well.

Hallöchen!

Norbert Preining [EMAIL PROTECTED] writes:

 Hi Karl!

 On Mon, 06 Feb 2006, Karl Berry wrote:

 WIth HTML 4.01 Transitional for texinfo.html I get only 4
 errors.
 
 Just out of curiousity, what are those four errors?

 Please see yourself:
 http://validator.w3.org/check?uri=http%3A%2F%2Fwww.logic.at%2Fpeople%2Fpreining%2Ftexinfo.htmlcharset=%28detect+automatically%29doctype=HTML+4.01+Transitional

 or shorter
   http://tinyurl.com/cm93p
 the errors are:

 [...]
   
 Line 9322 column 24: document type does not allow element UL here;
   missing one of MAP, IFRAME, BUTTON start-tag.
   ul class=listoffloats

@display (and possibly even @example) should not be a pre but a
div.  This solves three of the errors.  The remaining one is
cosmetical.

Tschö,
Torsten.

-- 
Torsten Bronger, aquisgrana, europa vetusICQ 264-296-646




Bug#349815: s-c-gtk2 exposes private messages to third party

2006-02-07 Thread Martin Samuelsson
Ricardo Mones @ 2006-02-07 (Tuesday), 09:50 (+)
   It's not a measure of how important the bug is for you, it has a
 quite different and precise meaning.

I'm aware of the meaning of the bug severities, but misread the
sentences on security holes. Now it seems pretty clear to me, that a
grave problem has to give full access to all of the users data. Sorry
about that unjustified escalation.

   Sorry, not reproducible here. Can you provide more details about
 your config: type of accounts you're reading and composing, library
 versions (you should have used bugreport for this), any other detail
 about the system that make it different (custom kernel, custom
 libraries you may have).

I keep my messages on an imap server running Courier. Not sure about the
version, but probably the one from sarge. My client is tracking etch,
without any oddities in its setup.

   This is not the first time you report a bug and say you're not
 willing to help solving it. I don't figure out why do you think that
 attitude will encourage me to spend my free time in solving it for you.

This might be a problem of cultural difference. I'm not having a bad
attitude, I'm considering myself being honest. Sorry about speaking bad
about your country, but one thing I hated when I lived in Spain was
when people gave promises, and then did nada de nada. When we up in
Scandinavia say we shall do something, we do it. When we're not sure
about it, we say no - even if it might mean the same as a maybe-style
yes in the Mediterranean.

As long as you continue to show that you take your role as a maintainer
seriously, I'll try to help solving the problem. One thing to remember
here is that I am not even using the software. The only thing motivating
me to file the report is the over all quality of Debian.
 
   Certanly the cause was not found but the reason for closing is clearly
 stated as well as the actions you could have taken.

Fair enough. I would probably have taken another approach if I were a DD,
but you're free to work in that way if it works best for you.

  I might set up a test environment, with toy servers - if asked to.
 
   This is only valid if bug gets exposed in test environment too.
   Can you create a clean chroot in your problematic box and try inside?

I'll try to reproduce this in an environment where it wont hurt
production data, and get back when done.

   We don't hide problems by removing packages. Furthermore I have the
 sensation that the rest of Sylpheed-Claws users in testing won't agree
 with your suggestion :-P

Packages with unfixable RC bugs should be removed, but since we now
agree this one isn't RC - it's not relevant.
--
/Martin


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



Bug#351775: 'man cddb-tool' typo: fold (folk)

2006-02-07 Thread A Costa
Package: abcde
Version: 2.3.99.4-1
Severity: minor
Tags: patch


Found a typo in '/usr/share/man/man1/cddb-tool.1.gz', see attached '.diff'.

Hope this helps...

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

Versions of packages abcde depends on:
ii  cd-discid 0.9-1  CDDB DiscID utility
ii  cdda2wav  4:2.01+01a03-5 Creates WAV files from audio CDs
ii  cdparanoia3a9.8-11   An audio extraction tool for sampl
ii  flac  1.1.2-3+b1 Free Lossless Audio Codec - comman
ii  speex 1.1.11.1-1 The Speex Speech Codec
ii  vorbis-tools  1.1.1-3several Ogg Vorbis tools
ii  wget  1.10.2-1   retrieves files from the web

abcde recommends no packages.

-- no debconf information
--- cddb-tool.1	2006-02-05 15:50:59.0 -0500
+++ /tmp/cddb-tool.1	2006-02-07 06:45:55.0 -0500
@@ -58,7 +58,7 @@
 
 Mails file file (or stdin of no file specified)
 to specified address, using correct format.  Category should
-be one of blues, classical, country, data, fold, jazz, newage,
+be one of blues, classical, country, data, folk, jazz, newage,
 reggae, rock, soundtrack, misc.
 
 .B template


Bug#351774: 'man abcde' typos: embeded x 4, nothins, stablish, reding, etc.

2006-02-07 Thread A Costa
Package: abcde
Version: 2.3.99.4-1
Severity: minor
Tags: patch


Found some typos in '/usr/share/man/man1/abcde.1.gz', see attached '.diff'.

Hope this helps...

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

Versions of packages abcde depends on:
ii  cd-discid 0.9-1  CDDB DiscID utility
ii  cdda2wav  4:2.01+01a03-5 Creates WAV files from audio CDs
ii  cdparanoia3a9.8-11   An audio extraction tool for sampl
ii  flac  1.1.2-3+b1 Free Lossless Audio Codec - comman
ii  speex 1.1.11.1-1 The Speex Speech Codec
ii  vorbis-tools  1.1.1-3several Ogg Vorbis tools
ii  wget  1.10.2-1   retrieves files from the web

abcde recommends no packages.

-- no debconf information
--- abcde.1 2006-02-05 15:50:59.0 -0500
+++ /tmp/abcde.12006-02-07 06:42:56.0 -0500
@@ -43,7 +43,7 @@
 .TP
 .B \-1
 Encode the whole CD in a single file. The resulting file uses the CD title
-for tagging. If the resulting format is a flac file with an embeded cuesheet,
+for tagging. If the resulting format is a flac file with an embedded cuesheet,
 the file can be used as a source for creating other formats. Use -1 -M -o
 flac for obtaining such a file .TP
 .B \-a [actions]
@@ -74,7 +74,7 @@
 .TP
 .B \-d [devicename | filename]
 CD\-ROM block device that contains audio tracks to be read. Alternatively, a
-single-track flac file with embeded cuesheet.
+single-track flac file with embedded cuesheet.
 .TP
 .B \-D
 Capture debugging information (you'll want to redirect this \- try 'abcde \-D
@@ -128,7 +128,7 @@
 .B \-M
 Create a CUE file with information about the CD. Together with the possibility
 of creating a single file (see option \-1), one can recreate the original CD.
-If the cuesheet is embeded in a flac single file it can be used as source for
+If the cuesheet is embedded in a flac single file it can be used as source for
 encoding other formats.
 .TP
 .B \-o [filetype][:filetypeoptions]
@@ -180,7 +180,7 @@
 .TP
 .B \-V
 Be a bit more verbose. On slow networks the CDDB requests might give the
-sensation nothins is happening.
+sensation nothing is happening.
 .TP
 .B \-x
 Eject the CD when all tracks have been read. See the EJECTCD configuration
@@ -213,8 +213,8 @@
 abcde sources two configuration files on startup - /etc/abcde.conf and
 $HOME/.abcde.conf, in that order. 
 .TP
-The configuration options stated on those files can be overriden by providing
-the appropiate flags at runtime.
+The configuration options stated on those files can be overridden by providing
+the appropriate flags at runtime.
 .TP
 The configuration variables have to be set as follows:
 .TP
@@ -232,7 +232,7 @@
 Specifies the method we want to use to retrieve the track information. Two
 values are recognized: cddb and musicbrainz. The cddb value needs the
 CDDBURL and HELLOINFO variables described below. The musicbrainz value uses
-Python to stablish a conversation with the server for information retrieval.
+Python to establish a conversation with the server for information retrieval.
 .TP
 .B CDDBURL
 Specifies a server to use for CDDB lookups.
@@ -274,7 +274,7 @@
 Store local copies of the CDDB entries under the $CDDBLOCALDIR directory.
 .TP
 .B CDDBUSELOCAL
-Actually use the stored copies of the CDDB entries. Can be overriden using the 
+Actually use the stored copies of the CDDB entries. Can be overridden using 
the 
 -L flag (if is CDDBUSELOCAL in n). If an entry is found, we always give 
 the choice of retrieving a CDDB entry from the internet.
 .TP
@@ -508,7 +508,7 @@
 Will work in most systems
 .TP
 .B abcde \-d /dev/cdrom2
-If the CDROM you are reding from is not the standard /dev/cdrom (in GNU/Linux 
systems)
+If the CDROM you are reading from is not the standard /dev/cdrom (in GNU/Linux 
systems)
 .TP
 .B abcde \-o vorbis,flac
 Will create both Ogg/Vorbis and Ogg/FLAC files.
@@ -523,7 +523,7 @@
 and so on.
 .TP
 .B abcde \-d singletrack.flac
-Will extract the files contained in singletrack using the embeded cuesheet.
+Will extract the files contained in singletrack using the embedded cuesheet.
 .SH BACKEND TOOLS
 abcde requires the following backend tools to work:
 .TP


Bug#351776: crash while leaving configuration window

2006-02-07 Thread Alexander Voss
Package: kalarm
Version: 4:3.4.3-1
Severity: important


Leaving the configuration windows with apply or ok crashes kalarm. 
I tried it several times - every time kalarm crashed. 

The error message:
(no debugging symbols found)
Using host libthread_db library /lib/tls/libthread_db.so.1.
(no debugging symbols found)

(no debugging symbols found)
[Thread debugging using libthread_db enabled]
[New Thread -1243920704 (LWP 6353)]
(no debugging symbols found)

(no debugging symbols found)
[KCrash handler]
#3  0xb75a4e3c in QString::setLength () from /usr/lib/libqt-mt.so.3
#4  0xb75a4ed5 in QString::real_detach () from /usr/lib/libqt-mt.so.3
#5  0xb75a92d6 in QString::replace () from /usr/lib/libqt-mt.so.3
#6  0xb75a97bd in QString::replace () from /usr/lib/libqt-mt.so.3
#7  0xb790c0ef in KConfigBase::hasKey () from /usr/lib/libkdecore.so.4
#8  0xb793f12f in KConfigBase::writePathEntry () from
/usr/lib/libkdecore.so.4
#9  0xb793f210 in KConfigBase::writePathEntry () from
/usr/lib/libkdecore.so.4
#10 0x080c43c5 in ?? ()
#11 0x08181de0 in ?? ()
#12 0x0813840c in typeinfo for QObject ()
#13 0x081d0338 in ?? ()
#14 0x0001 in ?? ()
#15 0x in ?? ()



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

Versions of packages kalarm depends on:
ii  kdelibs4c2a  4:3.4.3-2   core libraries for all KDE applica
ii  libart-2.0-2 2.3.17-1Library of functions for 2D graphi
ii  libarts1c2a  1.5.0-3 aRts sound system core components
ii  libaudio21.7-3   The Network Audio System (NAS). (s
ii  libc62.3.5-8 GNU C Library: Shared libraries an
ii  libfam0  2.7.0-9 Client library to control the FAM 
ii  libfontconfig1   2.3.2-1.1   generic font configuration library
ii  libfreetype6 2.1.7-2.4   FreeType 2 font engine, shared lib
ii  libgcc1  1:4.0.2-5   GCC support library
ii  libice6  6.8.2.dfsg.1-11 Inter-Client Exchange library
ii  libidn11 0.5.18-1GNU libidn library, implementation
ii  libjpeg626b-11   The Independent JPEG Group's JPEG 
ii  libkcal2b4:3.4.3-1   KDE calendaring library
ii  libkdepim1a  4:3.4.3-1   KDE PIM library
ii  libkmime24:3.4.3-1   KDE MIME interface library
ii  libkpimidentities1   4:3.4.3-1   KDE PIM user identity information 
ii  libktnef14:3.4.3-1   Library for handling KTNEF email a
ii  libpng12-0   1.2.8rel-5  PNG library - runtime
ii  libqt3-mt3:3.3.5-3   Qt GUI Library (Threaded runtime v
ii  libsm6   6.8.2.dfsg.1-11 X Window System Session Management
ii  libstdc++6   4.0.2-5 The GNU Standard C++ Library v3
ii  libx11-6 6.8.2.dfsg.1-11 X Window System protocol client li
ii  libxcursor1  1.1.3-1 X cursor management library
ii  libxext6 6.8.2.dfsg.1-11 X Window System miscellaneous exte
ii  libxft2  2.1.7-1 FreeType-based font drawing librar
ii  libxi6   6.8.2.dfsg.1-11 X Window System Input extension li
ii  libxinerama1 6.8.2.dfsg.1-11 X Window System multi-head display
ii  libxrandr2   6.8.2.dfsg.1-11 X Window System Resize, Rotate and
ii  libxrender1  1:0.9.0.2-1 X Rendering Extension client libra
ii  libxt6   6.8.2.dfsg.1-11 X Toolkit Intrinsics
ii  zlib1g   1:1.2.3-9   compression library - runtime

kalarm recommends no packages.

-- no debconf information


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



Bug#351777: kmyfirewall: Can't open rules I save

2006-02-07 Thread Pierre-Etienne Meunier
Package: kmyfirewall
Version: 1.0-1+b1
Severity: normal

I can configure rules, install my firewall, even save my configuration, 
but I cant open the saved file. When I open my file, no rules are shown.
Another thing about saves : the file extensions are inconsistent between 
the generic interface (where it's .kmgfrs) and the extended interface 
(.kmfrs)

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

Versions of packages kmyfirewall depends on:
ii  kdelibs4c2a   4:3.5.1-1  core libraries for all KDE applica
ii  libart-2.0-2  2.3.17-1   Library of functions for 2D graphi
ii  libaudio2 1.7-3  The Network Audio System (NAS). (s
ii  libc6 2.3.5-12.1 GNU C Library: Shared libraries an
ii  libfam0   2.7.0-9Client library to control the FAM 
ii  libfontconfig12.3.2-1.1  generic font configuration library
ii  libfreetype6  2.1.10-1   FreeType 2 font engine, shared lib
ii  libgcc1   1:4.0.2-8  GCC support library
ii  libice6   6.9.0.dfsg.1-4 Inter-Client Exchange library
ii  libidn11  0.5.18-1   GNU libidn library, implementation
ii  libjpeg62 6b-11  The Independent JPEG Group's JPEG 
ii  libpng12-01.2.8rel-5 PNG library - runtime
ii  libqt3-mt 3:3.3.5-3  Qt GUI Library (Threaded runtime v
ii  libsm66.9.0.dfsg.1-4 X Window System Session Management
ii  libstdc++64.0.2-8The GNU Standard C++ Library v3
ii  libx11-6  6.9.0.dfsg.1-4 X Window System protocol client li
ii  libxcursor1   1.1.3-1X cursor management library
ii  libxext6  6.9.0.dfsg.1-4 X Window System miscellaneous exte
ii  libxft2   2.1.8.2-3  FreeType-based font drawing librar
ii  libxi66.9.0.dfsg.1-4 X Window System Input extension li
ii  libxinerama1  6.9.0.dfsg.1-4 X Window System multi-head display
ii  libxrandr26.9.0.dfsg.1-4 X Window System Resize, Rotate and
ii  libxrender1   1:0.9.0.2-1X Rendering Extension client libra
ii  libxt66.9.0.dfsg.1-4 X Toolkit Intrinsics
ii  zlib1g1:1.2.3-9  compression library - runtime

kmyfirewall recommends no packages.

-- no debconf information


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



Bug#351631: [Pkg-shadow-devel] Bug#351631: passwd: Please compile with SE Linux support

2006-02-07 Thread Russell Coker
On Tuesday 07 February 2006 16:45, Christian Perrier [EMAIL PROTECTED] 
wrote:
  Currently useradd/userdel make a SE Linux system unusable and unbootable,
  the change I request fixes that.  The base functionality of /bin/passwd
  works, but it doesn't perform checks for SE Linux permission, so
  root:user_r:user_t can change passwords for any user.  This is also fixed
  by the change I request.
 
 
  PS  You will also need to make it build-depend on libselinux1-dev.

 Yep. That's the last point to sort as this package is not available on
 the Hurd as Nicolas François pointed on IRC (#shadow on freenode).

Build-depends on (libselinux1-dev | something-hurd)?

 I'm very seriously considering the suggested change and I'm now in the
 only Manoj can make my mind change mood...:-)

This is a machine-killing bug for SE Linux systems, Manoj won't object.

 We are about to upload a new release of shadow as soon as the current
 one will have reached testing, which should happen, from memory, in 1
 day or two. I expect this new release to be built with libselinux1.

Great!



Bug#351778: bbdb: The coding system specified in the .bbdb is ignored and the coding iso-2022-7bit is forced

2006-02-07 Thread François Fleuret
Package: bbdb
Version: 2.35.cvs20060204-1
Severity: serious

Given a .bbdb encoded in utf-8 with -*- coding: utf-8 -*- in the first
line, after loading of bbdb, I end up with bbdb-file-coding-system
equal to iso-2022-7bit and the .bbdb is totally messed up when
saved. I already had that problem a few month ago and though it had
been fixed.

My current fix is to force bbdb-file-coding-system to 'utf-8 after
loading of bbdb.

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

Versions of packages bbdb depends on:
ii  emacs21 [emacsen] 21.4a-3The GNU Emacs editor
ii  make  3.80+3.81.b4-1 The GNU version of the make util

bbdb recommends no packages.

-- no debconf information

-- 
François Fleuret  http://cvlab.epfl.ch/~fleuret



Bug#351744: tkgate: often segfaults on alpha

2006-02-07 Thread Nicolas Sabouret
Hi,

I couldn't reproduce the bug. I tried copying things without success. I
forward your email upstream. Jeffrey, do you have any clue ? Do you
think it is a Debian-specific problem ?
The latest debian update was about switching to x-org libs. Could the
problem come from this ?

Thanks,
Nico.

Ivan Jager a écrit :
 Package: tkgate
 Version: 1.8.6-2
 Severity: important
 
 I don't really know what causes it to segfault. One way that seems
 to work pretty reliably is to try to copy something. It segfaults
 at other times too.
 
 Here is a backtrace, although it doesn't look very useful:
 (gdb) bt
 #0  0x0243df58 in kill () from /lib/libc.so.6.1
 #1  0x0243dcf8 in raise () from /lib/libc.so.6.1
 #2  0x0243f478 in abort () from /lib/libc.so.6.1
 #3  0x000120028f1c in ?? ()
 #4  0x0243f270 in sigset () from /lib/libc.so.6.1
 #5  0x00012001f840 in ?? ()
 #6  0x000120020fc4 in ?? ()
 #7  0x000120030194 in ?? ()
 #8  0x02166110 in TclInvokeStringCommand ()
from /usr/lib/libtcl8.3.so.1
 #9  0x0218f56c in TclExecuteByteCode () from /usr/lib/libtcl8.3.so.1
 #10 0x021694bc in Tcl_EvalObjEx () from /usr/lib/libtcl8.3.so.1
 #11 0x021b3b08 in Tcl_NamespaceObjCmd () from /usr/lib/libtcl8.3.so.1
 #12 0x0218f56c in TclExecuteByteCode () from /usr/lib/libtcl8.3.so.1
 #13 0x021694bc in Tcl_EvalObjEx () from /usr/lib/libtcl8.3.so.1
 #14 0x021c0f98 in TclObjInterpProc () from /usr/lib/libtcl8.3.so.1
 #15 0x0218f56c in TclExecuteByteCode () from /usr/lib/libtcl8.3.so.1
 #16 0x021694bc in Tcl_EvalObjEx () from /usr/lib/libtcl8.3.so.1
 #17 0x021c0f98 in TclObjInterpProc () from /usr/lib/libtcl8.3.so.1
 #18 0x0218f56c in TclExecuteByteCode () from /usr/lib/libtcl8.3.so.1
 #19 0x021694bc in Tcl_EvalObjEx () from /usr/lib/libtcl8.3.so.1
 #20 0x020a9bc8 in TkInvokeMenu () from /usr/lib/libtk8.3.so.1
 #21 0x020ae2f8 in TkGetMenuIndex () from /usr/lib/libtk8.3.so.1
 ---Type return to continue, or q return to quit---
 #22 0x021b6fdc in TclExpandTokenArray () from /usr/lib/libtcl8.3.so.1
 #23 0x021b74cc in Tcl_EvalObjv () from /usr/lib/libtcl8.3.so.1
 #24 0x021696a4 in Tcl_EvalObjEx () from /usr/lib/libtcl8.3.so.1
 #25 0x021c0644 in Tcl_UplevelObjCmd () from /usr/lib/libtcl8.3.so.1
 #26 0x0218f56c in TclExecuteByteCode () from /usr/lib/libtcl8.3.so.1
 #27 0x021694bc in Tcl_EvalObjEx () from /usr/lib/libtcl8.3.so.1
 #28 0x021c0f98 in TclObjInterpProc () from /usr/lib/libtcl8.3.so.1
 #29 0x021b6fdc in TclExpandTokenArray () from /usr/lib/libtcl8.3.so.1
 #30 0x021b8c94 in Tcl_EvalEx () from /usr/lib/libtcl8.3.so.1
 #31 0x021b909c in Tcl_Eval () from /usr/lib/libtcl8.3.so.1
 #32 0x02169c3c in Tcl_GlobalEval () from /usr/lib/libtcl8.3.so.1
 #33 0x02058138 in Tk_BindEvent () from /usr/lib/libtk8.3.so.1
 #34 0x0205ab3c in TkBindEventProc () from /usr/lib/libtk8.3.so.1
 #35 0x0206337c in Tk_HandleEvent () from /usr/lib/libtk8.3.so.1
 #36 0x02063c80 in TkQueueEventForAllChildren ()
from /usr/lib/libtk8.3.so.1
 #37 0x021b47ec in Tcl_ServiceEvent () from /usr/lib/libtcl8.3.so.1
 #38 0x021b4b68 in Tcl_DoOneEvent () from /usr/lib/libtcl8.3.so.1
 #39 0x02063d6c in Tk_MainLoop () from /usr/lib/libtk8.3.so.1
 #40 0x02071e38 in Tk_MainEx () from /usr/lib/libtk8.3.so.1
 #41 0x00012000739c in ?? ()
 #42 0x02425028 in __libc_start_main () from /lib/libc.so.6.1
 #43 0x000120003688 in ?? ()
 Previous frame inner to this frame (corrupt stack?)
 (gdb)  
 
 
 -- System Information:
 Debian Release: testing/unstable
   APT prefers unstable
   APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable')
 Architecture: alpha
 Shell:  /bin/sh linked to /bin/bash
 Kernel: Linux 2.6.13.4-dpws433au-0
 Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
 
 Versions of packages tkgate depends on:
 ii  libc6.1   2.3.5-12.1 GNU C Library: Shared libraries 
 an
 ii  libx11-6  6.9.0.dfsg.1-4 X Window System protocol client 
 li
 ii  tcl8.38.3.5-5Tcl (the Tool Command Language) 
 v8
 ii  tk8.3 8.3.5-6Tk toolkit for Tcl and X11, v8.3 
 -
 
 tkgate recommends no packages.
 
 -- no debconf information
 


-- 
Nicolas SABOURET
Laboratoire d'Informatique de Paris 6 (LIP6)
8, rue du Capitaine Scott, 75015 Paris, France
http://www-poleia.lip6.fr/~sabouret



Bug#348250: Bug#349598: adduser: creates /etc/group.lock

2006-02-07 Thread Nicolas François
Hello,

I've committed a patch for useradd, and will reassign this bug to the
passwd package.

Kind Regards,
-- 
Nekral


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



Bug#351525: dvipdfmx: how to properly implement map files support for dvipdfmx

2006-02-07 Thread Hilmar Preusse
On 07.02.06 Frank Küster ([EMAIL PROTECTED]) wrote:
 A Lee [EMAIL PROTECTED] wrote:

Hi,

  If updmap-sys is used to for such fonts, it MUST NOT modify the
  map file of dvipdfm because dvipdfmx also read it.
 
 Therefore it would make things much easier if upstream (i.e. the
 TeXlive people and Thomas Esser) would decide to drop the
 unmaintained dvipdfm completely and use dvipdfmx instead.
 
I've told the dvipdfmx people, that some programs from dvipdfm are
missing, like ebb. I didn't got an answer until now: i.e. if it will
be implemented or if it is available as dvipdfmx command line switch
or else.

H.
-- 
If we spoke a different language, we would perceive a somewhat different world.
-- Wittgenstein
  http://www.hilmar-preusse.de.vu/


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



Bug#351761: Probably etpan issue?

2006-02-07 Thread Nikita V. Youshchenko
 as Sylpheed uses etpan for IMAP access, the problem with not working SSL
 will be probably in it.

Since people are only downgrading Sylpheed, not libetpan, to get 
functionality back, this does not look like a library issue.


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



Bug#351773: fixed by going back to python-bibtex_1.2.1-1_i386.deb

2006-02-07 Thread Filippo Rusconi
Hi,

only to inform that the bug appears fixed if one reverts to version
1.2.1 of the python-bibtex package, from version 1.2.1.

Only checked that I could open a pre-existing bib file and that I
could save it under same BibTeX format.

Cheers,

Filippo


-- 
Please, deactivate the HTML mail feature: use simple text mail for me.

Filippo Rusconi, PhD - CNRS researcher - key C78F687C @ pgp.mit.edu

Author of ``GNU polyxmass'' at http://www.polyxmass.org

http://www.google.com/search?num=50hs=Qqvhl=ensafe=offq=rusconi+filippo

USM0503 MNHN - UMR5153 CNRS - U565 INSERM

57, rue Cuvier   Tél. : +33 (0)1 40 79 38 84
Case Postale 26 
F-75231 Paris CEDEX 05
FRANCE   Fax  : +33 (0)1 40 79 37 05


signature.asc
Description: Digital signature


Bug#351779: x.org r6 and r7 don't play nice together yet

2006-02-07 Thread Frank Lichtenheld
Package: x11proto-core-dev,x11proto-fonts-dev,xtrans-dev
Severity: serious

Hi,

I'm not quite sure which package to report this against:

| Automatic build of libfs_2:1.0.0-1 on odin by sbuild/sparc 79
| Build started at 20060207-1038
| **
| Checking available source versions...
| Fetching source files...
| Reading Package Lists...
| Building Dependency Tree...
| Need to get 334kB of source archives.
| Get:1 http://sinclair.farm.ftbfs.de experimental/main libfs 2:1.0.0-1 (dsc) 
[820B]
| Get:2 http://sinclair.farm.ftbfs.de experimental/main libfs 2:1.0.0-1 (tar) 
[319kB]
| Get:3 http://sinclair.farm.ftbfs.de experimental/main libfs 2:1.0.0-1 (diff) 
[14.5kB]
| Fetched 334kB in 0s (2497kB/s)
| Download complete and in download only mode
| ** Using build dependencies supplied by package:
| Build-Depends: debhelper (= 4.0.0), pkg-config, x11proto-core-dev (= 
6.8.99.15+cvs.20050722-1), x11proto-fonts-dev, xtrans-dev
| Checking for already installed source dependencies...
| debhelper: missing
| Using default version 5.0.22
| pkg-config: missing
| x11proto-core-dev: missing
| Using default version 7.0.4-1
| x11proto-fonts-dev: missing
| xtrans-dev: missing
| Checking for source dependency conflicts...
|   /usr/bin/sudo /usr/bin/apt-get --purge -o 
Dir::State::status=/home/buildd/build/chroot-experimental/var/lib/dpkg/status 
-o DPkg::Options::=--root=/home/buildd/build/chroot-experimental -o 
DPkg::Run-Directory=/home/buildd/build/chroot-experimental -q -y install 
debhelper pkg-config x11proto-core-dev x11proto-fonts-dev xtrans-dev
| Reading Package Lists...
| Building Dependency Tree...
| The following extra packages will be installed:
|   debconf debconf-i18n debconf-utils file gettext gettext-base html2text
|   intltool-debian liblocale-gettext-perl libmagic1 libtext-charwidth-perl
|   libtext-iconv-perl libtext-wrapi18n-perl po-debconf x11-common
| Suggested packages:
|   debconf-doc whiptail dialog gnome-utils libterm-readline-gnu-perl
|   libgnome2-perl libqt-perl libnet-ldap-perl dh-make cvs gettext-doc
|   libgnome-dev x-window-system-core x-window-system
| Recommended packages:
|   apt-utils curl wget lynx libmail-sendmail-perl libcompress-zlib-perl
| The following NEW packages will be installed:
|   debconf debconf-i18n debconf-utils debhelper file gettext gettext-base
|   html2text intltool-debian liblocale-gettext-perl libmagic1
|   libtext-charwidth-perl libtext-iconv-perl libtext-wrapi18n-perl pkg-config
|   po-debconf x11-common x11proto-core-dev x11proto-fonts-dev xtrans-dev
| 0 upgraded, 20 newly installed, 0 to remove and 9 not upgraded.
| Need to get 69.1kB/4577kB of archives.
| After unpacking 15.7MB of additional disk space will be used.
| Get:1 http://sinclair.farm.ftbfs.de experimental/main x11proto-fonts-dev 
2.0.2-1 [11.4kB]
| Get:2 http://sinclair.farm.ftbfs.de experimental/main xtrans-dev 1.0.0-1 
[57.8kB]
| Fetched 69.1kB in 0s (841kB/s)
| Selecting previously deselected package liblocale-gettext-perl.
| (Reading database ... 9167 files and directories currently installed.)
| Unpacking liblocale-gettext-perl (from 
.../liblocale-gettext-perl_1.05-1_sparc.deb) ...
| Selecting previously deselected package libtext-iconv-perl.
| Unpacking libtext-iconv-perl (from .../libtext-iconv-perl_1.4-2_sparc.deb) ...
| Selecting previously deselected package libtext-charwidth-perl.
| Unpacking libtext-charwidth-perl (from 
.../libtext-charwidth-perl_0.04-3_sparc.deb) ...
| Selecting previously deselected package libtext-wrapi18n-perl.
| Unpacking libtext-wrapi18n-perl (from 
.../libtext-wrapi18n-perl_0.06-4_all.deb) ...
| Selecting previously deselected package debconf-i18n.
| Unpacking debconf-i18n (from .../debconf-i18n_1.4.70_all.deb) ...
| Selecting previously deselected package debconf.
| Unpacking debconf (from .../debconf_1.4.70_all.deb) ...
| Selecting previously deselected package x11-common.
| Unpacking x11-common (from .../x11-common_6.9.0.dfsg.1-4_all.deb) ...
| Setting up liblocale-gettext-perl (1.05-1) ...
| Setting up libtext-iconv-perl (1.4-2) ...
| Setting up libtext-charwidth-perl (0.04-3) ...
| Setting up libtext-wrapi18n-perl (0.06-4) ...
| Setting up debconf-i18n (1.4.70) ...
| Setting up debconf (1.4.70) ...
| 
| Setting up x11-common (6.9.0.dfsg.1-4) ...
|  Adding system startup for /etc/init.d/x11-common ...
|/etc/rcS.d/S70x11-common - ../init.d/x11-common
| Setting up X server socket directory /tmp/.X11-unix...done.
| Setting up ICE socket directory /tmp/.ICE-unix...done.
| 
| (Reading database ... 9479 files and directories currently installed.)
| Unpacking x11proto-core-dev (from .../x11proto-core-dev_7.0.4-1_all.deb) ...
| dpkg: error processing 
/home/buildd/build/chroot-experimental/var/cache/apt/archives/x11proto-core-dev_7.0.4-1_all.deb
 (--unpack):
|  trying to overwrite `/usr/include/X11', which is also in package x11-common
| dpkg-deb: subprocess paste killed by signal (Broken pipe

  1   2   3   4   >