Bug#354875: /bin/cp directory full vs. disk full messages

2006-03-06 Thread Paul Eggert
Dan Jacobson [EMAIL PROTECTED] writes:

 Well if the problem is that the flash card's root FAT file table was
 full, then there should be a better message!

GNU 'cp' simply reflects the underlying system call's errno value, so
it sounds like your real beef is with the operating system, or with
the file system, or both.  coreutils can't fix that; it has to be a an
OS fix.


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



Bug#353486: [patch] apt-zip-0.13.5 improvements / maybe a 0.13.6 release

2006-03-06 Thread Eddy Petrişor
On 2/28/06, Eddy Petrişor [EMAIL PROTECTED] wrote:
  I think you should introduce the test only if fetch script
  should wait. And in this case we have already a numeric argument.
 

 Done, but i am not sure if the generated code is the correct one. (I
 just made the modifications and I can't test them.)

 Could you, please, test that the generated code is correct?


I managed to test it on MAC OS X with fink and found an interesting
thing: not all regex implmentation work well enough to write something
like: 'sed -e s/[, ]\+/ /g' so I changed this into sed -e s/[, ]/ /g
| tr -s ' '

I have also disabled (commented) the code that was supposed to
calculate the size of the block because the obtained info was not used
at all.

I added the missing shift commands in the parameter interpretation in common.sh
and added a TODO list for developemnt (this should be different than
ENHANCEMENTS)

The generated code looks good.


Please apply the attached patch over your apt-zip-0.13.6 variant.


--
Regards,
EddyP
=
Imagination is more important than knowledge A.Einstein
diff -ruN apt-zip-0.13.6/TODO apt-zip-0.13.6.real_sleep_fix/TODO
--- apt-zip-0.13.6/TODO	Thu Jan  1 02:00:00 1970
+++ apt-zip-0.13.6.real_sleep_fix/TODO	Mon Mar  6 09:43:56 2006
@@ -0,0 +1,10 @@
+Hey Emacs, this is -*- text -*- file.
+
+Open points that should be closed:
+- document in the man page the newly added options: -S/--use-sleep
+- document in the man page that apt-zip-list can now be ran as non-root
+- use a consistent indenting schema (take care that method scripts are
+  dealt differently and should have mixed indenting in order to have nicely
+  indeneted generated scripts)
+
+* -- File last reviewed: 2006/03/06
diff -ruN apt-zip-0.13.6/apt-zip-list apt-zip-0.13.6.real_sleep_fix/apt-zip-list
--- apt-zip-0.13.6/apt-zip-list	Sat Feb 18 18:16:12 2006
+++ apt-zip-0.13.6.real_sleep_fix/apt-zip-list	Mon Mar  6 09:37:00 2006
@@ -2,7 +2,8 @@
 
 exithook()
 {
-rm -f $TMP $TEMP $BSTMP
+#rm -f $TMP $TEMP $BSTMP
+rm -f $TMP $TEMP
 }
 
 SHAREDIR=$(cd $(dirname $0)  pwd)
@@ -18,15 +19,15 @@
 APTGETEXTRAOPTS=${APTGETEXTRAOPTS} -o Debug::NoLocking=true
 
 # Find block size on zip
-BSTMP=$(tempfile -d $MEDIUM -p aptzip)
-if [ $? != 0 ]
-then
-error Could not create temporary file
-fi
-
-echo bs test  $BSTMP
-BLOCKSIZE=$(du -b $BSTMP | cut -f1)
-rm $BSTMP
+#BSTMP=$(tempfile -d $MEDIUM -p aptzip)
+#if [ $? != 0 ]
+#then
+#error Could not create temporary file
+#fi
+
+#echo bs test  $BSTMP
+#BLOCKSIZE=$(du -b $BSTMP | cut -f1)
+#rm $BSTMP
 #echo 2 Block size = $BLOCKSIZE
 
 TMP=$(tempfile -p aptzip)
@@ -64,6 +65,10 @@
 #SIZE0=$(echo 'n' | apt-get ${APTGETEXTRAOPTS} dselect-upgrade | grep '^Need to get' | cut -d' ' -f4)
 
 #error Size0 = $SIZE0 - Size = $SIZE blocks = $[ $SIZE * $BLOCKSIZE ]
+
+#export the sleep command so it is visible in the method script
+export SLEEPTIME
+export SLEEPCMD=`eval $SLEEPEVALCMD`
 
 # Write the script
 SCRIPT=${MEDIUM}/fetch-script-$METHOD-$(uname -n)
diff -ruN apt-zip-0.13.6/common.sh apt-zip-0.13.6.real_sleep_fix/common.sh
--- apt-zip-0.13.6/common.sh	Tue Feb  7 01:50:50 2006
+++ apt-zip-0.13.6.real_sleep_fix/common.sh	Mon Mar  6 09:50:04 2006
@@ -54,6 +54,7 @@
  Overrides the name of the options file with the given FILENAME
  -f, --fix-brokenCall apt-get with this flag
  -s, --skip-mountDo not mount a device on the dir specified by --medium 
+ -S, --use-sleep=SEC Wait SEC seconds after each download
 EOF
 }
 
@@ -99,7 +100,7 @@
 }
 check_packages()
 {
-PACKAGES=$(echo $PACKAGES | sed -e s/[, ]\+/ /g)
+PACKAGES=$(echo $PACKAGES | sed -e s/[, ]/ /g | tr -s ' ')
 }
 check_aptgetaction()
 {
@@ -109,7 +110,9 @@
 }
 az_loadconf()
 {
-	SLEEPTIME=0
+# make sure that we will have a valid command for sleep
+SLEEPTIME=0
+SLEEPEVALCMD='true'
 [ -r $CONFFILE ]  . $CONFFILE
 METHOD=${METHOD-wget}
 MEDIUM=${MEDIUM-/ZIP}
@@ -162,12 +165,17 @@
 	shift
 	;;
 	--use-sleep=*)
-		SLEEPTIME=${1#--use-sleep=}
-		;;
-	--use-sleep)
+	SLEEPTIME=${1#--use-sleep=}
+	SLEEPEVALCMD='echo [ ! -z \`type sleep\` ]  sleep ${SLEEPTIME}'
+	shift
+	;;
+	--use-sleep|-S)
 	if [ $# -lt 2 ]; then syntax_error $1 needs an argument; fi
-		SLEEPTIME=$2
-		;;
+	SLEEPTIME=$2
+	SLEEPEVALCMD='echo [ ! -z \`type sleep\` ]  sleep ${SLEEPTIME}'
+	shift
+	shift
+	;;
 	--aptgetaction=*)
 	APTGETACTION=${1#--aptgetaction=}
 	shift
@@ -251,9 +259,9 @@
 # ensure known opts are set to 0 if not requested
 for kopt in $KNOWNOPTIONS
 do
-	eval export OPTION_${kopt}=0
+eval export OPTION_${kopt}=0
 done
-
+
 for opt in $OPTIONS
 do
 	# Warn if unknown option
@@ -297,7 +305,7 @@
 	WAS_MOUNTED=1
 	if mount | grep ${MEDIUM}.*[(,]ro[,)] /dev/null
 	then
-		error $MEDIUM is mounted READ ONLY
+	error $MEDIUM is mounted READ ONLY
 	fi
 	else
 	WAS_MOUNTED=0

Bug#355519: libsensors3:

2006-03-06 Thread Mario 'BitKoenig' Holbe
Package: libsensors3
Version: 1:2.10.0-2
Severity: grave

Hello,

since 2.10.0-2 libsensors doesn't support kernel 2.4 proc interface
anymore (although it suggests it would), with 2.10.0-1 everything did
work well:

[EMAIL PROTECTED]:~# dpkg -i 
/var/cache/apt/archives/libsensors3_1%3a2.10.0-1_i386.deb
dpkg - warning: downgrading libsensors3 from 2.10.0-2 to 2.10.0-1.
(Reading database ... 205345 files and directories currently installed.)
Preparing to replace libsensors3 1:2.10.0-2 (using 
.../libsensors3_1%3a2.10.0-1_i386.deb) ...
Unpacking replacement libsensors3 ...
Setting up libsensors3 (2.10.0-1) ...

[EMAIL PROTECTED]:~# sensors
as99127f-i2c-0-2d
Adapter: SMBus Via Pro adapter at e800
...
[EMAIL PROTECTED]:~# dpkg -i 
/var/cache/apt/archives/libsensors3_1%3a2.10.0-2_i386.deb
(Reading database ... 205345 files and directories currently installed.)
Preparing to replace libsensors3 1:2.10.0-1 (using 
.../libsensors3_1%3a2.10.0-2_i386.deb) ...
Unpacking replacement libsensors3 ...
Setting up libsensors3 (2.10.0-2) ...

[EMAIL PROTECTED]:~# sensors
Can't access procfs/sysfs file
Unable to find i2c bus information;
For 2.6 kernels, make sure you have mounted sysfs and libsensors
was compiled with sysfs support!
For older kernels, make sure you have done 'modprobe i2c-proc'!
[EMAIL PROTECTED]:~# lsmod | grep i2c-proc
i2c-proc6308   0  [bt869 w83781d]
i2c-core   15588   0  [lirc_i2c tuner tvmixer tvaudio msp3400 bttv 
bt869 w83781d i2c-algo-bit i2c-viapro i2c-dev i2c-proc]
[EMAIL PROTECTED]:~# uname -a
Linux darkside 2.4.27 #1 Thu Dec 22 21:52:46 CET 2005 i686 GNU/Linux
[EMAIL PROTECTED]:~#


regards
   Mario
-- 
Why did the tachyon cross the road?
Because it was on the other side.


signature.asc
Description: Digital signature


Bug#355518: libwxgtk2.6-0: File chooser dialogs have no default button

2006-03-06 Thread Mikko Rasa
Package: libwxgtk2.6-0
Version: 2.6.1.2
Severity: minor


The GTK file chooser dialogs created by wxgtk do not have a default
button specified.  This makes it necessary to manually activate the
button, which is slightly annoying when trying to work with keyboard
only.

-- 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
Locale: LANG=C, LC_CTYPE=fi_FI.UTF-8 (charmap=UTF-8)

Versions of packages libwxgtk2.6-0 depends on:
ii  libatk1.0-0   1.10.3-1   The ATK accessibility toolkit
ii  libc6 2.3.6-3GNU C Library: Shared libraries an
ii  libesd-alsa0 [libesd0]0.2.36-3   Enlightened Sound Daemon (ALSA) - 
ii  libexpat1 1.95.8-3   XML parsing C library - runtime li
ii  libgcc1   1:4.1-0exp0GCC support library
ii  libglib2.0-0  2.8.6-1The GLib library of C routines
ii  libglu1-xorg [libglu1]6.9.0.dfsg.1-4 Mesa OpenGL utility library [X.Org
ii  libgtk2.0-0   2.8.13-1   The GTK+ graphical user interface 
ii  libjpeg62 6b-12  The Independent JPEG Group's JPEG 
ii  libpango1.0-0 1.10.4-1   Layout and rendering of internatio
ii  libpng12-01.2.8rel-5 PNG library - runtime
ii  libstdc++64.0.2-8The GNU Standard C++ Library v3
ii  libtiff4  3.8.0-3Tag Image File Format (TIFF) libra
ii  xlibmesa-gl [libgl1]  6.9.0.dfsg.1-4 Mesa 3D graphics library [X.Org]
ii  zlib1g1:1.2.3-10 compression library - runtime

libwxgtk2.6-0 recommends no packages.

-- no debconf information


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



Bug#355084: lmodern: does not work anymore

2006-03-06 Thread Rogério Brito
Dear Frank,

On Mar 03 2006, Frank Küster wrote:
 Therefore filing this as grave would have been correct IMO.  On the
 other hand, I'm confident that it is a local misconfiguration, and
 therefore I won't upgrade it myself.

I did some things to my system and the problem disappeared: I completely
purged tetex from my system (and all the dependent packages) and
installed a subset of Norbert's texlive (from experimental).

Then, I was able to compile my text with the Latin Modern packaged with
texlive and everything was fine, except for the excessive disk space
needed. :-(

I, then, purged the texlive packages and reinstalled the tetex packages.
This time, everything worked without any flaws. :-/

Oh, BTW, the output of the commands, now that my system works, is:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
[EMAIL PROTECTED]:~$ egrep ec-lmr12 $(kpsewhere ps2pk.map)
ec-lmr12 LMRoman12-Regular enclmec ReEncodeFont lm-ec.enc lmr12.pfb
[EMAIL PROTECTED]:~$ kpsewhere ps2pk.map
/var/lib/texmf/fonts/map/dvips/updmap/ps2pk.map
[EMAIL PROTECTED]:~$ 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

I guess that we can close the bug now.


Thanks, Rogério Brito.

-- 
Rogério Brito : [EMAIL PROTECTED] : http://www.ime.usp.br/~rbrito
Homepage of the algorithms package : http://algorithms.berlios.de
Homepage on freshmeat:  http://freshmeat.net/projects/algorithms/



Bug#355464: krusader: crashes on startup

2006-03-06 Thread Frank Schoolmeesters
Hi Jens,

Thanks for the feedback.
Krusader-1.60.x has several issues, upgrading to krusader-1.70.0 if
you use Etch or Sid is must.
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=352574
But if you are using Sarge krusader-1.60.0 works great.

This reported bug #355464 must be probably merged with #350890
(is already merged it with #349784)
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=350890

Angel, please upload krusader-1.70.0 asap if you can,
almost all reported bugs are solved with 1.70.0
http://bugs.debian.org/cgi-bin/pkgreport.cgi?pkg=krusader
Thanks!

kind regards,

Frank Schoolmeesters
Krusader Krew
http://www.krusader.org

On 3/5/06, Jens Lang [EMAIL PROTECTED] wrote:
 Package: krusader
 Version: 1.60.0-3.1
 Severity: grave
 Justification: renders package unusable

 * crashes on every startup (before any window is visible)
 * removing (with --purge) and re-installing doesn't help
 * starting as root doesn't help
 * worked before my last update (some weeks ago)

 * error: sigsev

 (no debugging symbols found)
 Using host libthread_db library /lib/tls/libthread_db.so.1.
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 [Thread debugging using libthread_db enabled]
 [New Thread -1238026016 (LWP 7125)]
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 (no debugging symbols found)
 [KCrash handler]
 #5  0x in ?? ()
 #6  0x08126c6c in QStrList::~QStrList ()
 #7  0xb6c662df in QListViewPrivate::SortableItem::cmp ()
   from /usr/lib/libqt-mt.so.3
   #8  0xb6c66327 in QListViewPrivate::SortableItem::operator ()
  from /usr/lib/libqt-mt.so.3
  #9  0xb6c673a6 in
  qHeapSortPushDownQListViewPrivate::SortableItem ()
 from /usr/lib/libqt-mt.so.3
 #10 0xb6c675ff in
 qHeapSortHelperQListViewPrivate::SortableItem*,
 QListViewPrivate::SortableItem () from /usr/lib/libqt-mt.so.3
 #11 0xb6c676a0 in qHeapSortQListViewPrivate::SortableItem* ()
from /usr/lib/libqt-mt.so.3
#12 0xb6c637c6 in QListViewItem::sortChildItems () from
/usr/lib/libqt-mt.so.3
#13 0xb6c4e20b in QListViewItem::enforceSortOrder ()
   from /usr/lib/libqt-mt.so.3
   #14 0xb6c4d448 in QListView::firstChild () from
   /usr/lib/libqt-mt.so.3
   #15 0xb7451dc4 in KListView::setSorting () from
   /usr/lib/libkdeui.so.4
   #16 0x08129da0 in QStrList::~QStrList ()
   #17 0x0811260c in QPtrListKFileItem::~QPtrList ()
   #18 0x08113bfe in QPtrListKFileItem::~QPtrList ()
   #19 0x0811c71d in QPtrListKFileItem::~QPtrList ()
   #20 0xb6b59b57 in QObject::activate_signal () from
   /usr/lib/libqt-mt.so.3
   #21 0xb6b5a63b in QObject::activate_signal () from
   /usr/lib/libqt-mt.so.3
   #22 0x0813bf9d in QValueListPrivateKURL::remove ()
   #23 0x0813c0b8 in QValueListPrivateKURL::remove ()
   #24 0x08109be7 in QBitmap::~QBitmap ()
   #25 0x0810a0c8 in QBitmap::~QBitmap ()
   #26 

Bug#355520: galeon: The Find feature does not find text on input type=text anymore

2006-03-06 Thread Cyril Bouthors
Package: galeon
Version: 2.0.1-2
Severity: normal

Before my upgrade to 2.0.1, the Control-f Find feature allowed me to
find occurences everywhere in the document, including on the content
of input type=text name=foo value=bar tags.

The upgrade broke this feature.

I'm now unable to find text occurences inside input directly.

The only work-around I've found si `Control-u Control-f' but it's
ugly. :)

Would it be possible to fix this?

Thanks

-- 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-1-686
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages galeon depends on:
ii  galeon-common2.0.1-1 GNOME web browser for advanced use
ii  libart-2.0-2 2.3.17-1Library of functions for 2D graphi
ii  libatk1.0-0  1.10.3-1The ATK accessibility toolkit
ii  libbonobo2-0 2.10.1-1Bonobo CORBA interfaces library
ii  libbonoboui2-0   2.10.1-2The Bonobo UI library
ii  libc62.3.6-2 GNU C Library: Shared libraries an
ii  libcairo21.0.2-3 The Cairo 2D vector graphics libra
ii  libfontconfig1   2.3.2-2 generic font configuration library
ii  libgcc1  1:4.0.2-9   GCC support library
ii  libgconf2-4  2.12.1-9GNOME configuration database syste
ii  libglade2-0  1:2.5.1-2   library to load .glade files at ru
ii  libglib2.0-0 2.8.6-1 The GLib library of C routines
ii  libgnome-desktop-2   2.12.2-2Utility library for loading .deskt
ii  libgnome-keyring00.4.7-1 GNOME keyring services library
ii  libgnome2-0  2.12.0.1-5  The GNOME 2 library - runtime file
ii  libgnomecanvas2-02.12.0-2A powerful object-oriented display
ii  libgnomeui-0 2.12.1-1The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0   2.12.2-6GNOME virtual file-system (runtime
ii  libgtk2.0-0  2.8.12-1The GTK+ graphical user interface
ii  libice6  6.9.0.dfsg.1-4  Inter-Client Exchange library
ii  libmozjs0d   1.8.0.1-4   The Mozilla SpiderMonkey JavaScrip
ii  libnspr4-0d  1.8.0.1-4   NetScape Portable Runtime Library
ii  liborbit21:2.12.4-1  libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-01.10.4-1Layout and rendering of internatio
ii  libpopt0 1.7-5   lib for parsing cmdline parameters
ii  libsm6   6.9.0.dfsg.1-4  X Window System Session Management
ii  libstartup-notification0 0.8-1   library for program launch feedbac
ii  libstdc++6   4.0.2-9 The 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-1 X cursor management library
ii  libxext6 6.9.0.dfsg.1-4  X Window System miscellaneous exte
ii  libxi6   6.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  libxml2  2.6.23.dfsg.2-2 GNOME XML library
ii  libxrandr2   6.9.0.dfsg.1-4  X Window System Resize, Rotate and
ii  libxrender1  1:0.9.0.2-1 X Rendering Extension client libra
ii  libxul0d 1.8.0.1-4   Gecko engine library
ii  procps   1:3.2.6-2.1 /proc file system utilities
ii  zlib1g   1:1.2.3-9   compression library - runtime

Versions of packages galeon recommends:
ii  gnome-control-center [capplet 1:2.12.3-2 utilities to configure the GNOME d
ii  gnome-icon-theme  2.12.1-2   GNOME Desktop icon theme
ii  iso-codes 0.49-1 ISO language, territory, currency
ii  scrollkeeper  0.3.14-10  A free electronic cataloging syste
ii  yelp  2.12.2-4   Help browser for GNOME 2

-- no debconf information

-- 
Cyril Bouthors


pgpNqFmaw9OQG.pgp
Description: PGP signature


Bug#355521: gimp: Neon logo script-fu extension does not work properly

2006-03-06 Thread Heikki Kantola
Package: gimp
Version: 2.2.10-2
Severity: normal

I have tried several options (including defaults¹) of Neon logo 
script-fu extension, but it looks like it will always create a image 
completely covered with the glow colour.

¹ Ok, the font had to be changed as the default font Blippo is not
available in Debian packages.

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

Versions of packages gimp depends on:
ii  gimp-data 2.2.10-2   Data files for The GIMP
ii  libaa11.4p5-30   ascii art library
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  libc6 2.3.6-3GNU C Library: Shared libraries an
ii  libcairo2 1.0.2-3The Cairo 2D vector graphics libra
ii  libexif12 0.6.13-2   library to parse EXIF files
ii  libexpat1 1.95.8-3   XML parsing C library - runtime li
ii  libfontconfig12.3.2-2generic font configuration library
ii  libfreetype6  2.1.10-1   FreeType 2 font engine, shared lib
ii  libgimp2.02.2.10-2   Libraries necessary to Run the GIM
ii  libglib2.0-0  2.8.6-1The GLib library of C routines
ii  libgtk2.0-0   2.8.13-1   The GTK+ graphical user interface 
ii  libice6   6.9.0.dfsg.1-4 Inter-Client Exchange library
ii  libjpeg62 6b-12  The Independent JPEG Group's JPEG 
ii  liblcms1  1.13-1 Color management library
ii  libmng1   1.0.8-1Multiple-image Network Graphics li
ii  libpango1.0-0 1.10.4-1   Layout and rendering of internatio
ii  libpng12-01.2.8rel-5 PNG library - runtime
ii  libsm66.9.0.dfsg.1-4 X Window System Session Management
ii  libtiff4  3.8.0-3Tag Image File Format (TIFF) libra
ii  libwmf0.2-7   0.2.8.3-3.1Windows metafile conversion librar
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  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  libxmu6   6.9.0.dfsg.1-4 X Window System miscellaneous util
ii  libxpm4   6.9.0.dfsg.1-4 X pixmap library
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  wget  1.10.2-1   retrieves files from the web
ii  zlib1g1:1.2.3-10 compression library - runtime

Versions of packages gimp recommends:
pn  gimp-printnone (no description available)
ii  gimp-svg  2.2.10-2   SVG (Scalable Vector Graphics) plu

-- no debconf information



Bug#354173: digikam displays all black when trying to view image

2006-03-06 Thread Rodney Gordon II
On Mon, Feb 27, 2006 at 12:52:58AM +0100, Achim Bohnet wrote:
 On Sunday 26 February 2006 02:07, Rodney Gordon II wrote:
  On Sat, Feb 25, 2006 at 11:51:38PM +0100, Achim Bohnet wrote:
   Hi Rodney, Anthony, Fabrice,
   
   I've replaced the faulty patch that works on PPC but breaks on AMD64
   with a newer one from upstream.  Can you download
   
 http://www.mpe.mpg.de/~ach/tmp/digikam_0.8.1-4.diff.gz
 http://www.mpe.mpg.de/~ach/tmp/digikam_0.8.1-4.dsc  
   
   into the dir with digikam_0.8.1.orig.tar.gz.  Then
   
 rm -r digikam-0.8.1
 dpkg-source -x digikam_0.8.1-4.dsc
 cd digikam-0.8.1
 debuild
 sudo debi
   
   Let me know if this version works.
  
  After a fresh apt-get update:
  dpkg-source: warning: extracting unsigned source package
  (./digikam_0.8.1-4.dsc)
  dpkg-source: error: file digikam_0.8.1.orig.tar.gz has size
  4957475 instead of expected 4926951
  
  I can't find a way to make it force this through.. ?
  0c6950d1189fc63b08261f81018fb444  digikam_0.8.1.orig.tar.gz
 
 Oh, looks like my and the uploaded orig.tar used different compression
 levels :(
 
 So I added two pairs including the orig.tar
 
   http://www.mpe.mpg.de/~ach/tmp  # added 'my' tar file so .dsc 
 file work
   http://www.mpe.mpg.de/~ach/tmp/src-only # same as above but with 
 orig.tar from debian
 
 uncompress both tar files and 'cmp' them, and you'll see that they are
 identical.  And that nothing strange happened to the tarballs.
 
 Achim

First, sorry for my awful reply time on this issue, I had alot of
computer problems in the past week(s), I am truely sorry.

I have reinstalled in the time since we talked, and now I am running
sid i386. Funny thing is, at least with my hardware, digikam doesn't
even show the image on i386 :)

In good news, this -4 patch works in i386, where -3 does not show an
image in i386 either.. So, I cannot confirm this patch will work on
amd64 but at least in i386, which had the same problem for me, it is
fixed.

Thanks for all your work,

-r


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



Bug#355441: udevd loops when inserting pcmcia flash-disks

2006-03-06 Thread Andreas Schindler
Marco d'Itri wrote:
 On Mar 05, Andreas Schindler [EMAIL PROTECTED] wrote:
 
 So far my investigations, can you help ?
 Which kernel version are you using?
 What happens if you add to persistent.rules a rule like this?
 
 BUS==ide, SYSFS{block/removable}==1, DRIVER!=ide-cdrom, 
 GOTO=no_volume_id
 
 Look at #350235 for details.
 

Marco,

thanks for your quick answer. The kernel i'm running is 2.6.15-2 686 non-snmp.
Kernel 2.6.14 shows the same behaviour. Unfortunately the next occasion for
a test using the suggested rule is this evening. I will report results ASAP.

Regards, Andreas

-- 
Dr.-Ing. Andreas Schindler

Alpha Zero One Computersysteme GmbH
Frankfurter Str. 141
63303 Dreieich

Telefon 06103-57187-21
Telefax 06103-373245

[EMAIL PROTECTED]
www.az1.de


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



Bug#355522: backup-manager: scp/ssh settings aren't saved with dpkg-reconfigure

2006-03-06 Thread Henrik Brautaset Aronsen
Package: backup-manager
Version: 0.7.1-1
Severity: important


When reconfiguring backup-manager with pkg-reconfigure backup-manager´´,
the scp/ssh settings aren't saved.  Even though I select scp, I end up with
an /etc/backup-manager.conf with empty variables for BM_UPLOAD_METHOD,
BM_UPLOAD_DESTINATION, BM_UPLOAD_SSH_USER and BM_UPLOAD_SSH_KEY

dpkg-reconfigure remembers the scp settings, though, so I guess something
goes wrong when saving the conf file.

-- 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/bash
Kernel: Linux 2.6.15-1-686-smp
Locale: LANG=no_NO, LC_CTYPE=no_NO (charmap=ISO-8859-1)

Versions of packages backup-manager depends on:
ii  debconf [debconf-2.0] 1.4.71 Debian configuration management sy
ii  gzip  1.3.5-12   The GNU compression utility
ii  ucf   2.005  Update Configuration File: preserv

backup-manager recommends no packages.

-- debconf information excluded


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



Bug#355523: apt-proxy: 'man apt-proxy-import' vague as to what import means -- copy, symlink, or link?

2006-03-06 Thread A. Costa
Package: apt-proxy
Version: 1.9.33
Severity: normal


Vague:

% man apt-proxy-import | grep -n files into the
36:   apt-proxy-import imports .deb files into the apt-proxy cache.

...to a novice it's unclear what action the verb 'import' is meant to
signify:

1) copy .debs  (two copies on hard drive, needs twice the space)
2) move .debs
3) link .debs
4) symlink .debs
5) create a list, and use it to access the .debs in /var/cache/apt/archives
6) none of the above

Consider this true and negligent example of a cramped system:

% du --bytes /var/cache/apt
896598  /var/cache/apt/archives/partial
1495412710  /var/cache/apt/archives
1514698717  /var/cache/apt

% df | head -n 2
Filesystem   1K-blocks  Used Available Use% Mounted on
/dev/hda3  7901858   7291991200210  98% /

Since 1.5 gigs won't fit in 200 megs, then if 'apt-proxy-import'
copies .deb files, that hard drive would fill up.

It would be better if the man page explained what importing does and
how much space that might require.


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 apt-proxy depends on:
ii  adduser   3.85   Add and remove users and groups
ii  bzip2 1.0.3-2high-quality block-sorting file co
ii  debconf [debconf-2.0] 1.4.71 Debian configuration management sy
ii  logrotate 3.7.1-2Log rotation utility
ii  python2.3.5-5An interactive high-level object-o
ii  python-bsddb3 3.3.0-6Python interface to libdb3
ii  python-support0.1.1  automated rebuilding support for p
ii  python-twisted2.2.0-1Event-based framework for internet
ii  python-twisted-web0.5.0-3An HTTP protocol implementation to
ii  python2.3 2.3.5-9An interactive high-level object-o

apt-proxy recommends no packages.

-- debconf information excluded


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



Bug#355524: asterisk: conflicts between asterisk asterisk-classic

2006-03-06 Thread Richard Antony Burton
Package: asterisk
Version: 1:1.2.4.dfsg-6
Severity: normal

After upgrading to the latest asterisk package I've noticed conflicts between
the asterisk  asterisk-classic packages. Cron has started complaining everyday
that asterisk log files are listed more than once for log rotation.

It appears that both a  a-c provide a logrotate conf file to rotate the same
log files.

I noticed in synaptic that the asterisk packages calls itself a dummy package
so I though it could perhaps be removed as it had now pulled in the a-c package,
but doing this deleted the asterisk userid and group.

I also noticed that both packages provide an init script, but I didn't look into
what they both did, I'm guessing these overlap too?

Richard.

-- 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=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages asterisk depends on:
ii  adduser   3.84   Add and remove users and groups
ii  asterisk-classic  1:1.2.4.dfsg-6 Open Source Private Branch Exchang

asterisk recommends no packages.

-- no debconf information


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



Bug#355525: 'man most' typo: preceeds

2006-03-06 Thread A Costa
Package: most
Version: 4.10.2-4
Severity: minor
Tags: patch


Found a typo in '/usr/share/man/man1/most.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 most depends on:
ii  libc6 2.3.6-3GNU C Library: Shared libraries an
ii  libslang2 2.0.5-3The S-Lang programming library - r

most recommends no packages.

-- no debconf information
--- most.1  2006-03-05 14:30:22.0 -0500
+++ /tmp/most.1 2006-03-06 00:20:52.0 -0500
@@ -483,7 +483,7 @@
 descriptors that represent the file name and line number,
 respectively.  For example, if JED is your editor, then set
 .B MOST_EDITOR 
-to 'jed %s -g %d'. This will only work where the %s preceeds the %d.
+to 'jed %s -g %d'. This will only work where the %s precedes the %d.
 .TP
 .B MOST_HELP
 This variable may be used to specify an alternate help file.


Bug#355526: apt-proxy: Config script could offer to import current '/etc/apt/sources.list'

2006-03-06 Thread A Costa
Package: apt-proxy
Version: 1.9.33
Severity: wishlist


Says here:

% zgrep -n '^1. ' /usr/share/doc/apt-proxy/README.gz
16:1. Edit apt-proxy.conf to select the nearest backend servers for you.  
See

That could be at least partly automated.

Here's a 'sed' one-liner that picks through '/etc/apt/sources.list',
deletes commented out and blank lines, cuts the leading and
trailing stuff that's not needed, and cuts off any trailing '/'.
The result is a list of debian servers ready for the backend 
section of 'apt-proxy.conf':

% sed -e '/^#.*$/d' -e '/^ *$/d' -e 's/[^ ]* //' -e 's/ .*//'   -e 
's/\/$//'  /etc/apt/sources.list ; echo

Attached is a tidier shell script version of the above, easier to read I
hope.  It'd be run like so:

% apt2aptproxy.sh  apt-proxy.conf

It's a start, maybe somebody can improve it.

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 apt-proxy depends on:
ii  adduser   3.85   Add and remove users and groups
ii  bzip2 1.0.3-2high-quality block-sorting file co
ii  debconf [debconf-2.0] 1.4.71 Debian configuration management sy
ii  logrotate 3.7.1-2Log rotation utility
ii  python2.3.5-5An interactive high-level object-o
ii  python-bsddb3 3.3.0-6Python interface to libdb3
ii  python-support0.1.1  automated rebuilding support for p
ii  python-twisted2.2.0-1Event-based framework for internet
ii  python-twisted-web0.5.0-4An HTTP protocol implementation to
ii  python2.3 2.3.5-9An interactive high-level object-o

apt-proxy recommends no packages.

-- debconf information excluded


apt2aptproxy.sh
Description: application/shellscript


Bug#352202: CVE-2006-0635: Incorrect parsing of sizeof() may introduce integer overflows

2006-03-06 Thread Moritz Muehlenhoff
Romain Francoise wrote:
  I think it's an ordinary wrong-code bug.  We need to draw a line
  somewhere; otherwise *any* bug in GCC is a security bug, which makes
  no sense.
 
 Yeah.
 
 Moritz didn't reply so I'll just go ahead and lower the severity of this
 bug to important.

Sorry, I've been busy. Judging from the posted test code it seems as if
tcc returns int instead of size_t for sizeof; I'll try to cook up a patch
before Etch.
If no solution can be found until Etch it would still be good to reflect
tcc's state in the package description (safe ANSI C compiler.) and add
a note that it's not ready for production use.

Cheers,
Moritz


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



Bug#355380: closing or assign to xdebconfigurator

2006-03-06 Thread Geert Stappers
On Sun, Mar 05, 2006 at 12:47:25PM +0100, Curro Perez-Bernal wrote:
 Package: installation-reports
   snip/ 
 Base System Installation Checklist:
 [O] = OK, [E] = Error (please elaborate below), [ ] = didn't try it
 
 Initial boot worked:[O]
 Configure network HW:   [O]
 Config network: [O]
 Detect CD:  [O]
 Load installer modules: [O]
 Detect hard drives: [O]
 Partition hard drives:  [O]
 Create file systems:[O]
 Mount partitions:   [O]
 Install base system:[O]
 Install boot loader:[O]
 Reboot: [O]
 
 Comments/Problems:
 
 Everything went even more smoothly than expected. Some trouble with
 X11 -not much skilled editing XF86Config-4- and couldn't get the right
 colour depth. Solved using the X11 configuration file from Knoppix.

Should this BR be closed or reassigned to xdebconfigurator ?

HtH
GSt


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



Bug#355439: gcc-4.0-base: Debian changelog and copyright lost after upgrade

2006-03-06 Thread Sven Joachim

Matthias Klose wrote:

Sven Joachim writes:


Package: gcc-4.0-base
Version: 4.0.2-10
Severity: serious

It looks as if bug #346171 has raised its ugly head again, since somehow the
files /usr/share/doc/gcc-4.0-base{copyright, changelog.Debian.gz} disappeared
after the upgrade from 4.0.2-9 to 4.0.2-10:



oops, found it, still a libstdc++6-4.0-dev.preinst



No, there is nothing wrong with this preinst. It looks as follows:

,
| #! /bin/sh -e
|
| case $1 in
| upgrade)
|   # upgrading from older experimental gcc-4.0 package
|   if [ -d /usr/include/c++/4.0 ]  [ ! -h /usr/include/c++/4.0 ]; then
|   mv /usr/include/c++/4.0 /usr/include/c++/4.0.0
|   ln -s 4.0.0 /usr/include/c++/4.0
|   fi
| esac
|
`

This does nothing in /usr/share/doc.  Actually, there is nothing wrong with
any maintainer script in version 4.0.2-10.  The problem was that the scripts
in the _previous_ version were bad.  Explanation:

After some investigation I found out the reason for the lost changelog and
copyright files.  The problem lies actually in the previous (4.0.2-9) versions
of lib64gcc1 and libgcc1.  These packages contain the files
/usr/share/doc/lib{,64}gcc1/{changelog.Debian.gz,copyright}.  But the preinst
scripts inadvertedly changed the directories to symlinks when upgrading from
an older version:

,
| #! /bin/sh -e
|
| case $1 in
| upgrade)
|   docdir=/usr/share/doc/libgcc1
|   if [ -d $docdir ]  [ ! -h $docdir ]; then
|   rm -rf $docdir
|   ln -s gcc-4.0-base $docdir
|   fi
| esac
|
`

is the libgcc1 preinst, for instance.  So /usr/share/doc/libgcc1 became a
symlink to /usr/share/doc/gcc-base-4.0, but /var/lib/dpkg/info/libgcc1.list
still contains the lines

/usr/share/doc/libgcc1/copyright
/usr/share/doc/libgcc1/changelog.Debian.gz

, with /usr/share/doc/libgcc1 being the same place as
/usr/share/doc/gcc-4.0-base.  You see the problem?  Upgrading to libgcc1
4.0.2-10, dpkg will remove these two files, since they are not in the new
package.  Thus, if the libgcc1 package is unpacked _after_ gcc-4.0-base, the
copyright and Debian changelog are lost, and exactly that happened to me as I
could tell from dpkg's log, an excerpt containing only the affected packages
follows:

2006-03-05 16:27:06 upgrade lib64gcc1 1:4.0.2-9 1:4.0.2-10
2006-03-05 16:27:06 status half-configured lib64gcc1 1:4.0.2-9
2006-03-05 16:27:06 status unpacked lib64gcc1 1:4.0.2-9
2006-03-05 16:27:06 status half-installed lib64gcc1 1:4.0.2-9
2006-03-05 16:27:06 status half-installed lib64gcc1 1:4.0.2-9
2006-03-05 16:27:06 status unpacked lib64gcc1 1:4.0.2-10
2006-03-05 16:27:06 status unpacked lib64gcc1 1:4.0.2-10
2006-03-05 16:27:16 upgrade gcc-4.0-base 4.0.2-9 4.0.2-10
2006-03-05 16:27:16 status half-configured gcc-4.0-base 4.0.2-9
2006-03-05 16:27:16 status unpacked gcc-4.0-base 4.0.2-9
2006-03-05 16:27:16 status half-installed gcc-4.0-base 4.0.2-9
2006-03-05 16:27:16 status half-installed gcc-4.0-base 4.0.2-9
2006-03-05 16:27:16 status unpacked gcc-4.0-base 4.0.2-10
2006-03-05 16:27:16 status unpacked gcc-4.0-base 4.0.2-10
2006-03-05 16:27:16 upgrade libgcc1 1:4.0.2-9 1:4.0.2-10
2006-03-05 16:27:16 status half-configured libgcc1 1:4.0.2-9
2006-03-05 16:27:16 status unpacked libgcc1 1:4.0.2-9
2006-03-05 16:27:16 status half-installed libgcc1 1:4.0.2-9
2006-03-05 16:27:16 status half-installed libgcc1 1:4.0.2-9
2006-03-05 16:27:16 status unpacked libgcc1 1:4.0.2-10
2006-03-05 16:27:16 status unpacked libgcc1 1:4.0.2-10
2006-03-05 16:27:17 status unpacked gcc-4.0-base 4.0.2-10
2006-03-05 16:27:17 status half-configured gcc-4.0-base 4.0.2-10
2006-03-05 16:27:17 status installed gcc-4.0-base 4.0.2-10
2006-03-05 16:27:17 status unpacked libgcc1 1:4.0.2-10
2006-03-05 16:27:17 status half-configured libgcc1 1:4.0.2-10
2006-03-05 16:27:24 status installed libgcc1 1:4.0.2-10
2006-03-05 16:27:35 status unpacked lib64gcc1 1:4.0.2-10
2006-03-05 16:27:35 status half-configured lib64gcc1 1:4.0.2-10
2006-03-05 16:27:35 status installed lib64gcc1 1:4.0.2-10

So the explanation is found.  How to get out of this mess and ensure proper
upgrading of the gcc-4.0 packages is another matter, which is left as an
exercise for you. ;-)

Arguably, it might be a bug in dpkg that it even installed the 4.0.2-9
versions of the packages, since /usr/share/doc/libgcc1/copyright and
/usr/share/doc/gcc-4.0-base/copyright were the same file in these versions and
dpkg should have detected that during unpacking.  I will check the long list
of dpkg bugs to see whether such an issue has already been reported.






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



Bug#311264: libkwiki-perl is in the archive

2006-03-06 Thread Nick Phillips

Luk Claes wrote:


Hi

Shouldn't this bug be closed now that libkwiki-perl is available in the
archive?

Cheers

Luk

 


Probably; I need to go over a bunch of bugs and check the current status.


Cheers,


Nick


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



Bug#355527: klaptopdeamon: Please use dpkg-statoverride instead of chmod to change rights on helper programs

2006-03-06 Thread Romain Lenglet
Package: klaptopdeamon
Version: klaptopdaemon
Severity: normal
Tags: patch

The klaptopdaemon configuration interface uses simple chmod and chown
commands to change the rights on the APM and ACPI helper programs.
On Debian, those rights are reinitialized on every update of the
package. Please use dpkg-statoverride instead, to keep these changes
accross package updates.

The attached patch does this.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (990, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-1-686
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=ja_JP.UTF-8 (charmap=UTF-8)
--- kdeutils-3.5.1/klaptopdaemon/acpi.cpp	2006-01-20 01:49:18.0 +0900
+++ kdeutils-3.5.1-patched/klaptopdaemon/acpi.cpp	2006-03-06 18:08:31.788108032 +0900
@@ -186,7 +186,7 @@
 			proc  kdesu;
 			proc  -u;
 			proc  root;
-			proc   chown root +helper+; chmod +s +helper;
+			proc   dpkg-statoverride --update --add root root 6755 +helper;
 			proc.start(KProcess::Block);	// run it sync so has_acpi below sees the results
 		}
 	} else {
--- kdeutils-3.5.1/klaptopdaemon/apm.cpp	2006-01-20 01:49:18.0 +0900
+++ kdeutils-3.5.1-patched/klaptopdaemon/apm.cpp	2006-03-06 18:11:12.953607152 +0900
@@ -166,7 +166,7 @@
 			proc  kdesu;
 			proc  -u;
 			proc  root;
-			proc   QString(chown root )+apm_name+; chmod +s +apm_name;
+			proc   QString(dpkg-statoverride --update --add root root 6755 )+apm_name;
 			proc.start(KProcess::Block);	// run it sync so has_apm below sees the results
 		}
 	} else {
@@ -208,7 +208,7 @@
 			proc  kdesu;
 			proc  -u;
 			proc  root;
-			proc   chown root +helper+; chmod +s +helper;
+			proc   dpkg-statoverride --update --add root root 6755 +helper;
 			proc.start(KProcess::Block);	// run it sync so has_acpi below sees the results
 		}
 	} else {


Bug#354984: samba support and error messages

2006-03-06 Thread Bas Zoetekouw
Hi Loïc!

  So I guess the bug is twofold:
  1) nautilus should produce a decent error message (something like
 your gnome version doesn't seem to have support for windows
 shares, please install gnome-vfs-extras)
 
  Your analysis is correct, but it's not a good idea to mix packages
  and applications.  I don't want to change nautilus to pop up a
  package name.
 
  However, it would be nice to fix the error message to be more helpful
  (such as Protocol not supported: smb://).
 
  I need the exact error message to find where it's used.

The error message is:
  smb://[EMAIL PROTECTED]/share is not a valid location.
  Please check the spelling and try again.

Cheers,
bas.

-- 
Kind regards,
++
| Bas Zoetekouw  | GPG key: 0644fab7 |
|| Fingerprint: c1f5 f24c d514 3fec 8bf6 |
| [EMAIL PROTECTED], [EMAIL PROTECTED] |  a2b1 2bae e41f 0644 fab7 |
++ 



Bug#355470: aptitude-doc-fr: doc-fr : unstable version is 0.4.1, but content is about 0.2.15.9

2006-03-06 Thread Thomas Huriaux
Christian Perrier [EMAIL PROTECTED] (06/03/2006):
 Quoting Dimitri Chausson ([EMAIL PROTECTED]):
  Package: aptitude-doc-fr
  Version: 0.4.1-1
  Severity: normal
  Tags: l10n
  
  It seems that the documentation in aptitude-doc-fr was not updated
  to version 0.4.1. 
  The package version is however 0.4.1-1. As there are quite a few changes
  between aptitude 0.2.15.9 and aptitude 0.4.1-1, the package should not
  exist for the new version as long as an updated translation is not
  available.
 
 
 Hmm, let's try to ping the French translators about this outdated
 translation.
 
 Fellows, who volunteers to help switching to po, with po4a, for
 aptitude documentation, which would prevent shipping outdated
 translations such as that one.

The switch to po4a and an updated French translation is available in
#351643.

-- 
Thomas Huriaux


signature.asc
Description: Digital signature


Bug#355528: logwatch: unmatched entries for secure-log

2006-03-06 Thread Richard Antony Burton
Package: logwatch
Version: 7.2.1-1test0
Severity: normal

Observed yesterday after resinatlling asterisk:

 - Connections (secure-log) Begin  

 New Users:
asterisk (104)
 
 Deleted Users:
asterisk 
 
 New Groups:
asterisk (106)
 
 
 Removed From Group:
 user asterisk from group dialout
  user asterisk from group audio
  user asterisk from group dialout
  user asterisk from group audio
 
 
 Changed password expiry for users:
asterisk : 1 Time(s)
 
 **Unmatched Entries**
 userdel[29009]: removed group `asterisk' owned by `asterisk' 
 chfn[29164]: changed user `asterisk' information
 gpasswd[29166]: set members of audio to asterisk
 gpasswd[29168]: set members of dialout to asterisk
 
 -- Connections (secure-log) End - 

The userdel has already been covered so could be ignored. I suspect the chfn is
password expirary change, so could be ignored. The group additions don't appear
to have been recorded, but probably should be.

Richard.


-- 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=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages logwatch depends on:
ii  exim4-daemon-light [mail-tran 4.60-4 lightweight exim MTA (v4) daemon
ii  perl  5.8.8-2Larry Wall's Practical Extraction 

logwatch recommends no packages.

-- no debconf information


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



Bug#355529: klaptopdaemon: Please use dpkg-statoverride on Debian instead of chmod to change rights on helper programs

2006-03-06 Thread Romain Lenglet
Package: klaptopdaemon
Version: 4:3.5.1-2
Severity: normal
Tags: patch

The klaptopdaemon configuration interface uses simple chmod and chown
commands to change the rights on the APM and ACPI helper programs.
On Debian, those rights are reinitialized on every update of the
package. Please use dpkg-statoverride instead, to keep these changes
accross package updates.

The attached patch does this.

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

Versions of packages klaptopdaemon depends on:
ii  kdelibs4c2a   4:3.5.1-3  core libraries for all KDE applica
ii  libc6 2.3.6-3GNU C Library: Shared libraries an
ii  libgcc1   1:4.0.2-9  GCC support library
ii  libqt3-mt 3:3.3.5-4  Qt GUI Library (Threaded runtime v
ii  libstdc++64.0.2-9The GNU Standard C++ Library v3
ii  libxtst6  6.9.0.dfsg.1-4 X Window System event recording an

klaptopdaemon recommends no packages.

-- no debconf information
--- kdeutils-3.5.1/klaptopdaemon/acpi.cpp	2006-01-20 01:49:18.0 +0900
+++ kdeutils-3.5.1-patched/klaptopdaemon/acpi.cpp	2006-03-06 18:08:31.788108032 +0900
@@ -186,7 +186,7 @@
 			proc  kdesu;
 			proc  -u;
 			proc  root;
-			proc   chown root +helper+; chmod +s +helper;
+			proc   dpkg-statoverride --update --add root root 6755 +helper;
 			proc.start(KProcess::Block);	// run it sync so has_acpi below sees the results
 		}
 	} else {
--- kdeutils-3.5.1/klaptopdaemon/apm.cpp	2006-01-20 01:49:18.0 +0900
+++ kdeutils-3.5.1-patched/klaptopdaemon/apm.cpp	2006-03-06 18:11:12.953607152 +0900
@@ -166,7 +166,7 @@
 			proc  kdesu;
 			proc  -u;
 			proc  root;
-			proc   QString(chown root )+apm_name+; chmod +s +apm_name;
+			proc   QString(dpkg-statoverride --update --add root root 6755 )+apm_name;
 			proc.start(KProcess::Block);	// run it sync so has_apm below sees the results
 		}
 	} else {
@@ -208,7 +208,7 @@
 			proc  kdesu;
 			proc  -u;
 			proc  root;
-			proc   chown root +helper+; chmod +s +helper;
+			proc   dpkg-statoverride --update --add root root 6755 +helper;
 			proc.start(KProcess::Block);	// run it sync so has_acpi below sees the results
 		}
 	} else {


Bug#355531: libchipcard2-tools: package uninstalable in sid: depends on libsysfs1

2006-03-06 Thread Alexander Schmehl
Package: libchipcard2-tools
Severity: grave
Justification: renders package unusable


Hi!

Your packages is uninstalable in sid, since it depends on
libsysfs1 (which seems to be renamed to libsysfs2):

On an uptodate sid I get the following:

# apt-get install libchipcard2-tools
[..]
The following packages have unmet dependencies:
  libchipcard2-tools: Depends: libchipcard2-0c2 (= 1.9.15.99) but it is not 
going to be installed
  Depends: libsysfs1 but it is not installable
E: Broken packages

Yours sincerely,
  Alexander


-- 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.15-1-k7
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)



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



Bug#355530: multipath-tools: package uninstalable in sid: depends on libsysfs1

2006-03-06 Thread Alexander Schmehl
Package: multipath-tools
Severity: grave
Justification: renders package unusable


Hi!

Your packages is uninstalable in sid, since it depends on
libsysfs1 (which seems to be renamed to libsysfs2):

On an uptodate sid I get the following:

# apt-get install multipath-tools
[..]
The following packages have unmet dependencies:
  multipath-tools: Depends: libsysfs1 but it is not installable
E: Broken packages

Yours sincerely,
  Alexander


-- 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.15-1-k7
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)



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



Bug#355532: libchipcard2-0c2: package uninstalable in sid: depends on libsysfs1

2006-03-06 Thread Alexander Schmehl
Package: libchipcard2-0c2
Severity: grave
Justification: renders package unusable


Hi!

Your packages is uninstalable in sid, since it depends on
libsysfs1 (which seems to be renamed to libsysfs2):

On an uptodate sid I get the following:

# apt-get install libchipcard2-0c2
[..]
The following packages have unmet dependencies:
  libchipcard2-0c2: Depends: libsysfs1 but it is not installable
E: Broken packages


Yours sincerely,
  Alexander

-- 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.15-1-k7
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)



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



Bug#355534: vlc: package uninstalable in sid: depends on libsysfs1

2006-03-06 Thread Alexander Schmehl
Package: vlc
Severity: grave
Justification: renders package unusable


Hi!

Your packages is uninstalable in sid, since it depends on
libsysfs1 (which seems to be renamed to libsysfs2):

On an uptodate sid I get the following:

# apt-get install vlc
[..]
The following packages have unmet dependencies:
  vlc: Depends: libsysfs1 but it is not installable
E: Broken packages


Yours sincerely,
  Alexander


-- 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.15-1-k7
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)



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



Bug#355533: powersaved: package uninstallable in sid: depends on libsysfs1

2006-03-06 Thread Alexander Schmehl
Package: powersaved
Severity: grave
Justification: renders package unusable


Hi!

Your packages is uninstalable in sid, since it depends on
libsysfs1 (which seems to be renamed to libsysfs2):

On an uptodate sid I get the following:

# apt-get install powersaved
[..]
The following packages have unmet dependencies:
  powersaved: Depends: libsysfs1 but it is not installable
E: Broken packages
  

Yours sincerely,
  Alexander


-- 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.15-1-k7
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)



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



Bug#352202: CVE-2006-0635: Incorrect parsing of sizeof() may introduce integer overflows

2006-03-06 Thread Romain Francoise
Moritz Muehlenhoff [EMAIL PROTECTED] writes:

 Judging from the posted test code it seems as if tcc returns int
 instead of size_t for sizeof;

Yes, that's the problem, as noted in:

  http://lists.gnu.org/archive/html/tinycc-devel/2006-02/msg1.html

 If no solution can be found until Etch it would still be good to
 reflect tcc's state in the package description (safe ANSI C
 compiler.) and add a note that it's not ready for production use.

Agreed.

-- 
  ,''`.
 : :' :Romain Francoise [EMAIL PROTECTED]
 `. `' http://people.debian.org/~rfrancoise/
   `-


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



Bug#355470: aptitude-doc-fr: doc-fr : unstable version is 0.4.1, but content is about 0.2.15.9

2006-03-06 Thread Christian Perrier
 The switch to po4a and an updated French translation is available in
 #351643.

Oh yes, didn't remember...

Daniel, do I have your blessing for applying the fix for #351643? 



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



Bug#355519: libsensors3:

2006-03-06 Thread Aurelien Jarno

Mario 'BitKoenig' Holbe a écrit :

Package: libsensors3
Version: 1:2.10.0-2
Severity: grave

Hello,

since 2.10.0-2 libsensors doesn't support kernel 2.4 proc interface
anymore (although it suggests it would), with 2.10.0-1 everything did
work well:

[EMAIL PROTECTED]:~# dpkg -i 
/var/cache/apt/archives/libsensors3_1%3a2.10.0-1_i386.deb
dpkg - warning: downgrading libsensors3 from 2.10.0-2 to 2.10.0-1.
(Reading database ... 205345 files and directories currently installed.)
Preparing to replace libsensors3 1:2.10.0-2 (using 
.../libsensors3_1%3a2.10.0-1_i386.deb) ...
Unpacking replacement libsensors3 ...
Setting up libsensors3 (2.10.0-1) ...

[EMAIL PROTECTED]:~# sensors
as99127f-i2c-0-2d
Adapter: SMBus Via Pro adapter at e800
...
[EMAIL PROTECTED]:~# dpkg -i 
/var/cache/apt/archives/libsensors3_1%3a2.10.0-2_i386.deb
(Reading database ... 205345 files and directories currently installed.)
Preparing to replace libsensors3 1:2.10.0-1 (using 
.../libsensors3_1%3a2.10.0-2_i386.deb) ...
Unpacking replacement libsensors3 ...
Setting up libsensors3 (2.10.0-2) ...

[EMAIL PROTECTED]:~# sensors
Can't access procfs/sysfs file
Unable to find i2c bus information;
For 2.6 kernels, make sure you have mounted sysfs and libsensors
was compiled with sysfs support!
For older kernels, make sure you have done 'modprobe i2c-proc'!
[EMAIL PROTECTED]:~# lsmod | grep i2c-proc
i2c-proc6308   0  [bt869 w83781d]
i2c-core   15588   0  [lirc_i2c tuner tvmixer tvaudio msp3400 bttv 
bt869 w83781d i2c-algo-bit i2c-viapro i2c-dev i2c-proc]
[EMAIL PROTECTED]:~# uname -a
Linux darkside 2.4.27 #1 Thu Dec 22 21:52:46 CET 2005 i686 GNU/Linux
[EMAIL PROTECTED]:~#



Looks like libsysfs1 and libsysfs2 are not API compatible, as this is 
the only change between the two versions. I'll try to find a 2.4 machine 
to debug the problem.


Bye,
Aurelien

--
  .''`.  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#355535: pcmciautils: package uninstalable in sid: depends on libsysfs1

2006-03-06 Thread Alexander Schmehl
Package: pcmciautils
Severity: grave
Justification: renders package unusable


Hi!

Your packages is uninstalable in sid, since it depends on
libsysfs1 (which seems to be renamed to libsysfs2):

On an uptodate sid I get the following:

# apt-get install pcmciautils
[..]
The following packages have unmet dependencies:
  pcmciautils: Depends: libsysfs1 but it is not installable
E: Broken packages


Yours sincerely,
  Alexander

-- 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.15-1-k7
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)



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



Bug#355536: blockdev: add support for BLKFRASET and BLKFRAGET

2006-03-06 Thread Bart Samwel
Package: util-linux
Version: 2.12r-6
Severity: normal
Tags: patch

The blockdev command does not currently support the BLKFRASET and
BLKFRAGET syscalls. This functionality is needed on 2.4 kernels to allow
laptop-mode-tools to set the filesystem readahead. See laptop-mode-tools
bug #355492 for more information. A patch to achieve the desired
functionality is attached. I'll try to submit it upstream as well, because this
functionality should really be in there.

Cheers,
Bart

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

Versions of packages util-linux depends on:
ii  libc6 2.3.6-1GNU C Library: Shared libraries an
ii  libncurses5   5.5-1  Shared libraries for terminal hand
ii  libslang2 2.0.5-3The S-Lang programming library - r
ii  libuuid1  1.38+1.39-WIP-2005.12.31-1 universally unique id library
ii  lsb-base  3.0-15 Linux Standard Base 3.0 init scrip
ii  zlib1g1:1.2.3-9  compression library - runtime

util-linux recommends no packages.

-- no debconf information
--- blockdev.c.orig 2006-03-06 10:28:07.0 +0100
+++ blockdev.c  2006-03-06 10:42:05.0 +0100
@@ -23,6 +23,8 @@
 #define BLKFLSBUF  _IO(0x12,97)
 #define BLKRASET   _IO(0x12,98)
 #define BLKRAGET   _IO(0x12,99)
+#define BLKFRASET  _IO(0x12,100)
+#define BLKFRAGET  _IO(0x12,101)
 #define BLKSSZGET  _IO(0x12,104)
 #define BLKBSZGET  _IOR(0x12,112,size_t)
 #define BLKBSZSET  _IOW(0x12,113,size_t)
@@ -86,6 +88,12 @@
 #ifdef BLKRAGET
{ --getra, BLKRAGET, BLKRAGET, ARGLINTG, -1, NULL, N_(get 
readahead) },
 #endif
+#ifdef BLKFRASET
+   { --setfra, BLKFRASET, BLKFRASET, ARGINTA, 0, FSREADAHEAD, 
N_(set filesystem readahead) },
+#endif
+#ifdef BLKFRAGET
+   { --getfra, BLKFRAGET, BLKFRAGET, ARGLINTG, -1, NULL, N_(get 
filesystem readahead) },
+#endif
 #ifdef BLKFLSBUF
{ --flushbufs, BLKFLSBUF, BLKFLSBUF, ARGNONE, 0, NULL, N_(flush 
buffers) },
 #endif


Bug#355537: xchm: new upstream version

2006-03-06 Thread Paul Wise
Package: xchm
Version: 2:1.2.0-5
Severity: wishlist

Please package the new upstream version of xchm. Relevant changes:

1.4: 
http://sourceforge.net/project/shownotes.php?release_id=397422group_id=87007

Fixed Polish translation.
Fixed a command line relative path bug.

1.3: 
http://sourceforge.net/project/shownotes.php?release_id=388252group_id=87007

Added Czech translation.
Added Slovak translation.
Updated Russian translation.
Updated French translation.
Fixed the HTML link to Pabs' chmspec page.
Now allowing the 'back' button to get to the welcome page. 
Applied GCC 4.1 related patch.

-- 
bye,
pabs

http://wiki.debian.org/PaulWise


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


Bug#277767: [Pkg-shadow-devel] Bug#277767: Progress on this bug report?

2006-03-06 Thread Greg Matthews
On Mon, 2006-03-06 at 00:43 +0200, Alexander Gattin wrote:
 I first heard about TLS_CACERTDIR from you. What is it
 usually used for? Having different CA trusted by user
 gathered in one place?

yes, you can have a number of different CA certs depending on what you
are connecting to. Dropping them into a directory means the ldap tools
will be able to use them (after the symbolic links have been set up).

 It looks like bug is in libnss-ldap, or libpam-ldap,
 not in su, but this has to be proven first.
 

ok

 OK, so you don't use samba schemas, neither do smbldap-*
 tools...

samba integration is on my todo list.

 
 BTW, what tools do you use for user/group account
 maintenance? ldapscripts?

i use some perl scripts that are based on some code I found on the web
and then heavily modified. Its not great but it works. Really only
useful for adding and deleting, modifications are best done via a
browser/editor like GQ or JXplorer (GQ is best but development is
stalled, JXplorer is Java and works cross-platform) or one of the web
browser based utils.

GREG

 
 P.S. thanks for your help, Greg.
-- 
Greg Matthews   01491 692445
Head of UNIX/Linux, iTSS Wallingford


-- 
This message (and any attachments) is for the recipient only. NERC
is subject to the Freedom of Information Act 2000 and the contents
of this email and any reply you make may be disclosed by NERC unless
it is exempt from release under the Act. Any material supplied to
NERC may be stored in an electronic records management system.



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



Bug#355343: libcurl3: ABI regression due to removed symbol versioning

2006-03-06 Thread Domenico Andreoli
notfound 355343 7.15.2-2
thanks

On Sat, Mar 04, 2006 at 05:03:31PM -0800, Steve Langasek wrote:
 
 Hi Domenico,

hi Steve,

 Please re-add the symbol versioning to libcurl3.  Since it's not mentioned
 in the changelog, I assume it was dropped by accident.

yes, it was by accident. curl 7.15.2-2 fixed it. thank you.

cheers
domenico

-[ Domenico Andreoli, aka cavok
 --[ http://people.debian.org/~cavok/gpgkey.asc
   ---[ 3A0F 2F80 F79C 678A 8936  4FEE 0677 9033 A20E BC50


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



Bug#355492: laptop-mode-tools: READAHEAD setting is ineffective on Linux 2.4

2006-03-06 Thread Bart Samwel

Hi Ben,

Ben Hutchings wrote:

laptop_mode implements the READAHEAD setting by running blockdev with
the --setra option for each block-device underlying a mounted
file-system.  This in turn appears to use the BLKRASET ioctl.  In
Linux 2.6 this ioctl this has the desired effect.  In Linux 2.4 it
appears to set the number of blocks to read-ahead on the *device* as
opposed to within a *file*, and the maximum value of this number is
255.  As a result the invocation of blockdev will fail on Linux 2.4
for any usefully large value of READAHEAD, and will not in any case
have the desired affect for fragmented files.  Unhelpfully,
laptop_mode redirects its error message to /dev/null so this is not
reported anywhere.


A. I'll see if I can change the stdout/stderr redirection to just a 
stdout redirection.



laptop_mode should instead use the BLKFRASET ioctl, which is the same
as BLKRASET on 2.6 and also works properly on 2.4 for IDE devices (but
unfortunately no others).  If there is no command that exposes this
ioctl, laptop_mode could instead write this setting through the /proc
filesystem:


Thanks for the code. I'd prefer to have a tool that does the job 
correctly, of course, so for now I've submitted bug #355536 to the 
util-linux package (of which blockdev is a part) with the request that a 
flag for this be added, plus a patch to achieve it. If you want to have 
this problem fixed for yourself, apply the attached patch to 
disk-utils/blockdev.c in the util-linux package, and then modify 
/usr/sbin/laptop_mode to use --setfra instead of --setra. I'll update 
laptop-mode-tools to use it in the next version. I'll let you know what 
happens with the blockdev patch.


--Bart
--- blockdev.c.orig 2006-03-06 10:28:07.0 +0100
+++ blockdev.c  2006-03-06 10:42:05.0 +0100
@@ -23,6 +23,8 @@
 #define BLKFLSBUF  _IO(0x12,97)
 #define BLKRASET   _IO(0x12,98)
 #define BLKRAGET   _IO(0x12,99)
+#define BLKFRASET  _IO(0x12,100)
+#define BLKFRAGET  _IO(0x12,101)
 #define BLKSSZGET  _IO(0x12,104)
 #define BLKBSZGET  _IOR(0x12,112,size_t)
 #define BLKBSZSET  _IOW(0x12,113,size_t)
@@ -86,6 +88,12 @@
 #ifdef BLKRAGET
{ --getra, BLKRAGET, BLKRAGET, ARGLINTG, -1, NULL, N_(get 
readahead) },
 #endif
+#ifdef BLKFRASET
+   { --setfra, BLKFRASET, BLKFRASET, ARGINTA, 0, FSREADAHEAD, 
N_(set filesystem readahead) },
+#endif
+#ifdef BLKFRAGET
+   { --getfra, BLKFRAGET, BLKFRAGET, ARGLINTG, -1, NULL, N_(get 
filesystem readahead) },
+#endif
 #ifdef BLKFLSBUF
{ --flushbufs, BLKFLSBUF, BLKFLSBUF, ARGNONE, 0, NULL, N_(flush 
buffers) },
 #endif


Bug#355520: galeon: The Find feature does not find text on input type=text anymore

2006-03-06 Thread Loïc Minier
tags 355520 + upstream
forwarded 355520 http://bugzilla.gnome.org/show_bug.cgi?id=333591
stop

On Mon, Mar 06, 2006, Cyril Bouthors wrote:
 Package: galeon
 Version: 2.0.1-2
 Severity: normal
 
 Before my upgrade to 2.0.1, the Control-f Find feature allowed me to
 find occurences everywhere in the document, including on the content
 of input type=text name=foo value=bar tags.
 
 The upgrade broke this feature.
 
 I'm now unable to find text occurences inside input directly.
 
 The only work-around I've found si `Control-u Control-f' but it's
 ugly. :)
 
 Would it be possible to fix this?
 
 Thanks
 
 -- 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-1-686
 Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
 
 Versions of packages galeon depends on:
 ii  galeon-common2.0.1-1 GNOME web browser for advanced 
 use
 ii  libart-2.0-2 2.3.17-1Library of functions for 2D 
 graphi
 ii  libatk1.0-0  1.10.3-1The ATK accessibility toolkit
 ii  libbonobo2-0 2.10.1-1Bonobo CORBA interfaces library
 ii  libbonoboui2-0   2.10.1-2The Bonobo UI library
 ii  libc62.3.6-2 GNU C Library: Shared libraries 
 an
 ii  libcairo21.0.2-3 The Cairo 2D vector graphics 
 libra
 ii  libfontconfig1   2.3.2-2 generic font configuration 
 library
 ii  libgcc1  1:4.0.2-9   GCC support library
 ii  libgconf2-4  2.12.1-9GNOME configuration database 
 syste
 ii  libglade2-0  1:2.5.1-2   library to load .glade files at 
 ru
 ii  libglib2.0-0 2.8.6-1 The GLib library of C routines
 ii  libgnome-desktop-2   2.12.2-2Utility library for loading 
 .deskt
 ii  libgnome-keyring00.4.7-1 GNOME keyring services library
 ii  libgnome2-0  2.12.0.1-5  The GNOME 2 library - runtime 
 file
 ii  libgnomecanvas2-02.12.0-2A powerful object-oriented 
 display
 ii  libgnomeui-0 2.12.1-1The GNOME 2 libraries (User 
 Interf
 ii  libgnomevfs2-0   2.12.2-6GNOME virtual file-system 
 (runtime
 ii  libgtk2.0-0  2.8.12-1The GTK+ graphical user interface
 ii  libice6  6.9.0.dfsg.1-4  Inter-Client Exchange library
 ii  libmozjs0d   1.8.0.1-4   The Mozilla SpiderMonkey 
 JavaScrip
 ii  libnspr4-0d  1.8.0.1-4   NetScape Portable Runtime Library
 ii  liborbit21:2.12.4-1  libraries for ORBit2 - a CORBA 
 ORB
 ii  libpango1.0-01.10.4-1Layout and rendering of 
 internatio
 ii  libpopt0 1.7-5   lib for parsing cmdline 
 parameters
 ii  libsm6   6.9.0.dfsg.1-4  X Window System Session 
 Management
 ii  libstartup-notification0 0.8-1   library for program launch 
 feedbac
 ii  libstdc++6   4.0.2-9 The 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-1 X cursor management library
 ii  libxext6 6.9.0.dfsg.1-4  X Window System miscellaneous 
 exte
 ii  libxi6   6.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  libxml2  2.6.23.dfsg.2-2 GNOME XML library
 ii  libxrandr2   6.9.0.dfsg.1-4  X Window System Resize, Rotate 
 and
 ii  libxrender1  1:0.9.0.2-1 X Rendering Extension client 
 libra
 ii  libxul0d 1.8.0.1-4   Gecko engine library
 ii  procps   1:3.2.6-2.1 /proc file system utilities
 ii  zlib1g   1:1.2.3-9   compression library - runtime
 
 Versions of packages galeon recommends:
 ii  gnome-control-center [capplet 1:2.12.3-2 utilities to configure the GNOME 
 d
 ii  gnome-icon-theme  2.12.1-2   GNOME Desktop icon theme
 ii  iso-codes 0.49-1 ISO language, territory, currency
 ii  scrollkeeper  0.3.14-10  A free electronic cataloging 
 syste
 ii  yelp  2.12.2-4   Help browser for GNOME 2
 
 -- no debconf information
 
 -- 
 Cyril Bouthors



-- 
Loïc Minier [EMAIL PROTECTED]
Current Earth status:   NOT DESTROYED



Bug#355524: asterisk: conflicts between asterisk asterisk-classic

2006-03-06 Thread Kilian Krause
Richard,

Am Montag, den 06.03.2006, 09:14 + schrieb Richard Antony Burton:
 Package: asterisk
 Version: 1:1.2.4.dfsg-6
 Severity: normal
 
 After upgrading to the latest asterisk package I've noticed conflicts between
 the asterisk  asterisk-classic packages. Cron has started complaining 
 everyday
 that asterisk log files are listed more than once for log rotation.

 It appears that both a  a-c provide a logrotate conf file to rotate the same
 log files.

This one shouldn't happen. Asterisk should only provide logrotate files
for each of asterisk-classic and asterisk-bristuff. The asterisk dummy
package itself shouldn't have any logrotate at all.


 I noticed in synaptic that the asterisk packages calls itself a dummy 
 package
 so I though it could perhaps be removed as it had now pulled in the a-c 
 package,
 but doing this deleted the asterisk userid and group.

This one is fixed in SVN. It'll be rolled out with the next upload.
Thanks for spotting it.

 I also noticed that both packages provide an init script, but I didn't look 
 into
 what they both did, I'm guessing these overlap too?

This one aswell shouldn't happen. The init script is supposed to be
provided only by asterisk-classic and asterisk-bristuff.

What *might* have happened is that the old asterisk config files haven't
been purged and we might need to take care of this. I'll look to this
issue, but the new deb doesn't provide these files for sure.

-- 
Best regards,
 Kilian


signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil


Bug#355538: logwatch/zz-disk_space: only show df output for local filesystems

2006-03-06 Thread Jon Dowland
Package: logwatch
Version: 5.2.2-5
Severity: wishlist

It's not useful for me to see the disk usage of NFS mounts
for each client machine, rather, only for the NFS server
itself. Attached is a patch which adds the -l flag to the df
service, restricting the output to local filesystems. I
expect you may well prefer it to be a configuration option,
however...

-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.12.4-bytemark-uml-20050811-1-small
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

Versions of packages logwatch depends on:
ii  mailx1:8.1.2-0.20040524cvs-4 A simple mail user agent
ii  perl 5.8.4-8sarge3   Larry Wall's Practical Extraction 

-- no debconf information

-- 
Jon Dowland
http://alcopop.org/
--- zz-disk_space~  2006-03-06 10:02:57.000172083 +
+++ zz-disk_space   2006-03-06 10:03:01.000927197 +
@@ -24,7 +24,7 @@
echo
echo -- Disk Space 
echo
-   df -k
+   df -lk
echo
 fi
 


Bug#321382: siege: segfault on AMD64

2006-03-06 Thread Ryszard Lach
On Thu, Aug 04, 2005 at 11:48:04PM -0700, Jeff Breidenbach wrote:
[...]
   apt-get source siege
   cd siege-2.61
   ./configure
   make
   gdb ./siege
 
[...]
 
 (gdb) run http://localhost
 Starting program: /tmp/siege-2.61/src/siege http://localhost
 [Thread debugging using libthread_db enabled]
 [New Thread 46912500748432 (LWP 25666)]
 ** siege 2.61
 ** Preparing 0 concurrent users for battle.
 The server is now under siege...[New Thread 1082460528 (LWP 25684)]
 
 Program received signal SIGSEGV, Segmentation fault.

I know this was a long time ago, but... could you, please, confirm if
this bug still happens? I'v tried to reproduce it on 2.6.8-9-amd64-k8
(AMD Athlon(tm) 64) and 2.6.10-em64t-smp (Intel(R) Xeon(TM)) exactly as
written above by you and I had no problems on both of this machines.

TIA

Richard.

-- 
First they ignore you. Then they laugh at you. Then they
fight you. Then you win. - Mohandas Gandhi.


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



Bug#340497: change postinst and postrm

2006-03-06 Thread Matti Pöllä
Hello,

Thanks for the patch. However, I already have a revised version
(addressing these bugs) in the my own unofficial repository

deb http://mpo.iki.fi/debian/binary/

I'm hoping to get this new version uploaded soon.


-Matti


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



Bug#355531: libchipcard2-tools: package uninstalable in sid: depends on libsysfs1

2006-03-06 Thread Thomas Viehmann
severity 347632 grave
tag 355531 pending
tag 355532 pending
merge 347632 355531 355532

#Hi Alexander,

thank you for your bug reports. May I suggest that we subsume this under
needs update for libsysfs transition, i.e. #347632?
This is pending because the package is ready[1] but has a dependency on
libgwenhywfar in the NEW queue.
Oh, well, maybe I'll just upload libchipcard2 to the new queue as well.

Kind regards

T.

1. http://aqbanking.alioth.debian.org/
-- 
Thomas Viehmann, http://thomas.viehmann.net/


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



Bug#354850: Processed: Re: Processed: Re: Bug#354850: Acknowledgement (mysql-server: upgrade 4.1-5.0 may break installation)

2006-03-06 Thread Christian Hammers
reopen 354850
thanks

Hi Toni

I don't want to have this one closed yet :) The next upload will contain a
slightly improved ISAM check that is called before the old mysql-4.1 package
is removed.

bye,

-christian-


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



Bug#355442: mawk: missing Posix ERE curly braces

2006-03-06 Thread Aleksey Cheusov
 FC Package: mawk
 FC Version: 1.3.3-11
 FC Severity: normal

 FC mawk claims to comply with Posix 1003.2.  I can't check it directly, but
 FC checking instead SUSv2 (which I think equals Posix concerning Awk), it
 FC mandates that regular expressions support the interval repetition count
 FC feature.  I am talking about {m}/{m,}/{m,n}
 FC at the place where you use ?, *
 FC or +.

Look at this patch
http://www.mova.org/~cheusov/pub/mawk_external_regexp.patch

It allows to link mawk with external regexp library.

0 ~mawk '/^a{3,5}$/'
aa
aaa
aaa


a
a
aa
0 ~

-- 
Best regards, Aleksey Cheusov.



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



Bug#355404: maybe no scite-specific problem

2006-03-06 Thread Oliver Knoch
I downgraded libgtk2.0-0 from version 2.8.12-1 to 2.8.10-1 and scite
works again.


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



Bug#355506: imapfilter segfaults upon cross server transaction

2006-03-06 Thread Y Giridhar Appaji Nag
On 06/03/06 14:55 +1000, Andrew Meaden said ...
 
 exactly the way I would expect. However, if I run the binary with a
 configuration that specifies multiple servers, the program dies with a
 Segmentation fault.

Andrew, if you are familiar with gdb usage can you take a quick look at
bug #326007 and do similar analysis and post your findings?

Giridhar

-- 
Y Giridhar Appaji Nag | http://www.appaji.net/


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



Bug#355519: libsensors3:

2006-03-06 Thread Aurelien Jarno

clone 355519
retitle -1 libsysfs2: API change for sysfs_get_mnt_path()
reassign -1 libsysfs2
block 355519 by -1
thanks

Aurelien Jarno a écrit :
Looks like libsysfs1 and libsysfs2 are not API compatible, as this is 
the only change between the two versions. I'll try to find a 2.4 machine 
to debug the problem.


sysfs_get_mnt_path() in libsysfs1 fails if sysfs is not mounted. In 
libsysfs2, it always return /sys, even if it is not mounted. This breaks 
lm-sensors.


Please fix this function to get the same behaviour as in libsysfs1, or 
at least provide a way to know if sysfs is mounted or not.


--
  .''`.  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#340791: python2.3 NMU

2006-03-06 Thread Daniel Schepler
Le Mercredi 22 Février 2006 16:05, Matthias Klose a écrit :
 will do it tonight or tomorrow for python2.3. I don't think we need
 uploads for 2.1 and 2.2 anymore, as these packages are on it's way out
 of the archive.

   Matthias

Almost two weeks later, I still don't see any upload in unstable or incoming, 
so I went ahead and prepared an NMU using the attached patch.  I'll wait 
another day to see if you have any objections, and then upload it if not (or 
earlier if you write back to say it's all right).
-- 
Daniel Schepler
diff -urN python2.3-2.3.5.old/debian/changelog python2.3-2.3.5/debian/changelog
--- python2.3-2.3.5.old/debian/changelog	2006-03-06 10:59:10.0 +0100
+++ python2.3-2.3.5/debian/changelog	2006-03-06 10:52:27.0 +0100
@@ -1,3 +1,15 @@
+python2.3 (2.3.5-9.1) unstable; urgency=low
+
+  * NMU.
+  * Replace tix8.1-dev with tix-dev in the Build-Depends; also update
+the python2.3-tk package's Suggests from tix8.1 to tix.
+Closes: #340791.
+  * debian/patches/zip-64bit-fix.dpatch: Fix a 32-bit-ism which was
+causing the zip import module to crash on amd64 (at least).
+Closes: #339998.
+
+ -- Daniel Schepler [EMAIL PROTECTED]  Mon,  6 Mar 2006 10:52:27 +0100
+
 python2.3 (2.3.5-9) unstable; urgency=low
 
   * Rebuild (openssl 0.9.8).
diff -urN python2.3-2.3.5.old/debian/control python2.3-2.3.5/debian/control
--- python2.3-2.3.5.old/debian/control	2006-03-06 10:59:10.0 +0100
+++ python2.3-2.3.5/debian/control	2006-03-05 14:55:53.0 +0100
@@ -3,7 +3,7 @@
 Priority: optional
 Maintainer: Matthias Klose [EMAIL PROTECTED]
 Uploaders: Gregor Hoffleit [EMAIL PROTECTED]
-Build-Depends: debhelper (= 3), autoconf, libreadline5-dev, libncurses5-dev (= 5.3), tk8.4-dev, libdb4.3-dev, zlib1g-dev, libgmp3-dev, libgdbm-dev, blt-dev (= 2.4z), tix8.1-dev (= 8.1.3.93), libssl-dev, libbz2-dev, sharutils
+Build-Depends: debhelper (= 3), autoconf, libreadline5-dev, libncurses5-dev (= 5.3), tk8.4-dev, libdb4.3-dev, zlib1g-dev, libgmp3-dev, libgdbm-dev, blt-dev (= 2.4z), tix-dev (= 8.4.0), libssl-dev, libbz2-dev, sharutils
 Build-Depends-Indep: libhtml-tree-perl, tetex-bin, tetex-extra, texinfo, emacs21, tar, gzip, bzip2, debiandoc-sgml, sharutils
 Build-Conflicts: tcl8.0-dev, tk8.0-dev, tcl8.2-dev, tk8.2-dev, tcl8.3-dev, tk8.3-dev
 Standards-Version: 3.6.2
@@ -25,7 +25,7 @@
 Package: python2.3-tk
 Architecture: any
 Depends: python2.3 (= ${Source-Version}), ${shlibs:Depends}
-Suggests: tix8.1
+Suggests: tix
 Description: Tkinter - Writing Tk applications with Python (v2.3)
  A module for writing portable GUI applications with Python (v2.3) using Tk.
  Also known as Tkinter.
diff -urN python2.3-2.3.5.old/debian/patches/zip-64bit-fix.dpatch python2.3-2.3.5/debian/patches/zip-64bit-fix.dpatch
--- python2.3-2.3.5.old/debian/patches/zip-64bit-fix.dpatch	1970-01-01 01:00:00.0 +0100
+++ python2.3-2.3.5/debian/patches/zip-64bit-fix.dpatch	2006-03-05 15:57:39.0 +0100
@@ -0,0 +1,37 @@
+#! /bin/sh -e
+
+# DP: fix a 32-bit-ism in the zipimport module.
+
+dir=
+if [ $# -eq 3 -a $2 = '-d' ]; then
+pdir=-d $3
+dir=$3/
+elif [ $# -ne 1 ]; then
+echo 2 usage: `basename $0`: -patch|-unpatch [-d srcdir]
+exit 1
+fi
+case $1 in
+-patch)
+patch $pdir -f --no-backup-if-mismatch -p1  $0
+;;
+-unpatch)
+patch $pdir -f --no-backup-if-mismatch -R -p1  $0
+;;
+*)
+echo 2 usage: `basename $0`: -patch|-unpatch [-d srcdir]
+exit 1
+esac
+exit 0
+
+diff -urNad python2.3-2.3.5~/Modules/zipimport.c python2.3-2.3.5/Modules/zipimport.c
+--- python2.3-2.3.5~/Modules/zipimport.c	2003-07-22 20:10:15.0 +0200
 python2.3-2.3.5/Modules/zipimport.c	2006-03-05 15:40:08.0 +0100
+@@ -875,7 +875,7 @@
+ zlib not available);
+ 		goto error;
+ 	}
+-	data = PyObject_CallFunction(decompress, Ol, raw_data, -15);
++	data = PyObject_CallFunction(decompress, Oi, raw_data, -15);
+ error:
+ 	Py_DECREF(raw_data);
+ 	return data;
diff -urN python2.3-2.3.5.old/debian/rules python2.3-2.3.5/debian/rules
--- python2.3-2.3.5.old/debian/rules	2006-03-06 10:59:10.0 +0100
+++ python2.3-2.3.5/debian/rules	2006-03-05 15:51:59.0 +0100
@@ -621,6 +621,7 @@
 	tetex-3.0 \
 	locale-strcoll \
 	pcre-security_CAN-2005-2491 \
+	zip-64bit-fix \
 
 #	patchlevel \
 #	cvs-updates \


Bug#355480: network-manager: Takes too long to detect connectivity change

2006-03-06 Thread giskard
hello Mikael,

as upstream says this isn't a NM bug! 

Yeah, you are right, the best solution is to fix the netlink polling 
part of the 3c59x driver.

I'm going to mark this bug 'WONTFIX' (since this problem must be fixed
in the 3c59x driver)

-- 
ciao, giskard

D: marty! non stai pensando quadrimensionalmente!
M: lo so.. e' che mi rimane difficile..





signature.asc
Description: Questa parte del messaggio è firmata


Bug#355539: don't build-dep against meta/user/task-packages

2006-03-06 Thread Mirco Bauer
Package: gnome-keyring-sharp

gnome-keyring-sharp build-deps against gtk-sharp2 which is a
meta-package for users. The real libraries like libgtk2.0-cil
libgnome2.0-cil etc should be used instead.

-- 
Regards,

Mirco 'meebey' Bauer

PGP-Key:
http://keyserver.noreply.org/pks/lookup?op=getsearch=0xEEF946C8

-BEGIN GEEK CODE BLOCK-
Version: 3.12
GIT d s-:+ a-- C++ UL$ P L++$+++$ E- W+++$ N o? K- w++! O M-
V? PS
PE+ Y- PGP++ t 5+ X++ R tv+ b+ DI? D+ G++ e h! r-++ y?
--END GEEK CODE BLOCK--


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


Bug#355541: gossip: world-readable password

2006-03-06 Thread Emmanuel Beffara
Package: gossip
Version: 0.10.1-1
Severity: grave
Tags: security
Justification: user security hole


In Gossip version 0.10, the passwords are stored in clear text in
~/.gnome2/Gossip/accounts.xml, which is a world-readable file. Passwords
should at least be stored in gnome2-private, or in a file with restricted
rights, or using some encryption, or any combination of these.


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

Versions of packages gossip depends on:
ii  gconf2   2.12.1-9GNOME configuration database syste
ii  libc62.3.5-13GNU C Library: Shared libraries an
ii  libgconf2-4  2.12.1-9GNOME configuration database syste
ii  libglade2-0  1:2.5.1-2   library to load .glade files at ru
ii  libglib2.0-0 2.8.6-1 The GLib library of C routines
ii  libgnome2-0  2.12.0.1-5  The GNOME 2 library - runtime file
ii  libgnomeui-0 2.12.1-1The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0   2.12.2-5GNOME virtual file-system (runtime
ii  libgtk2.0-0  2.8.12-1The GTK+ graphical user interface 
ii  libloudmouth1-0  1.0.1-4 Lightweight C Jabber library
ii  libpango1.0-01.10.3-1Layout and rendering of internatio
ii  libpopt0 1.7-5   lib for parsing cmdline parameters
ii  libx11-6 6.9.0.dfsg.1-4  X Window System protocol client li
ii  libxml2  2.6.23.dfsg.2-2 GNOME XML library
ii  libxslt1.1   1.1.15-4XSLT processing library - runtime 
ii  libxss1  6.9.0.dfsg.1-4  X Screen Saver client-side library

gossip recommends no packages.

-- no debconf information


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



Bug#355542: tetex-base: cyrfinst not installed, but included in tetex-src

2006-03-06 Thread Frank Küster
Package: tetex-base
Version: 3.0-15
Severity: normal


tetex-src contains a lot of *.tex, *.etx and other files from cyrfinst,
but these files are not in the tetex-base tree.

Regards, Frank

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




Bug#355543: kdelibs: Separator lines between toolbars missing in 4:3.5.1-3

2006-03-06 Thread Felix Homann
Package: kdelibs
Version: 4:3.5.1-3
Severity: normal


Hi,

after upgrading to 4:3.5.1-3 the separator lines between toolbars are
missing. I don't know exactly which of the kdelibs* packages is
responsible for this behaviour. I tried downgrading kdelibs-data to
4:3.5.1-2 but it didn't resolve the problem. Downgrading all kdelibs*
packages gives back the separator lines.  

I've reproduced the bug on two different machines.

Regards,

Felix

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

Versions of packages kdelibs depends on:
ii  kdelibs-bin   4:3.5.1-3  core binaries for all KDE 
applicat
ii  kdelibs-data  4:3.5.1-3  core shared data for all KDE 
appli
ii  kdelibs4c2a   4:3.5.1-3  core libraries for all KDE 
applica

kdelibs recommends no packages.

-- no debconf information



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



Bug#355544: Bug report on package linux-source-2.6.15 : Can't make a kernel with Megaraid2 (megaraid_mm megaraid_mbox) modules built-in

2006-03-06 Thread Fabrice SEGURA

Package: linux-source-2.6.15
Version: 2.6.15-4

If you select the new megaraid drivers using make menuconfig, it includes
the appropriate definitions in the .config file : MEGARAID_MM=y and
MEGARAID_MBOX=y.

However, the makefile is done in such a way that it requires that a symbol
MEGARAID_NEWGEN=y is also in the .config to compile and include these
drivers.

I could successfully build a working kernel by modifying the Kconfig file
and creating the option. It is all it takes to make the compiled kernel
include the megaraid 2 drivers and work. (tested on a dell 2850) However
since I'm not confident with my patch, I'll let you find out how this shall
be done.

Regards

Fabrice SEGURA


This message contains information that may be privileged or confidential and is 
the property of the Capgemini Group. It is intended only for the person to whom 
it is addressed. If you are not the intended recipient,  you are not authorized 
to read, print, retain, copy, disseminate,  distribute, or use this message or 
any part thereof. If you receive this  message in error, please notify the 
sender immediately and delete all  copies of this message.



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



Bug#354007: [Pkg-nagios-devel] Bug#354007: Error: Cannot open config file '/etc/nagios-plugins/config/imap.cfg' for reading: Invalid argument

2006-03-06 Thread Peter Schwindt
Package: nagios2
Followup-For: Bug #354007


I also encountered upper mentioned bug. strace follows:

-- snip --
...
open(/etc/nagios-plugins/config/ifstatus.cfg, O_RDONLY|O_LARGEFILE) =
5
fstat64(5, {st_mode=S_IFREG|0644, st_size=580, ...}) = 0
mmap2(NULL, 580, PROT_READ, MAP_PRIVATE, 5, 0) = 0xb7c05000
munmap(0xb7c05000, 580) = 0
close(5)= 0
open(/etc/nagios-plugins/config/imap.cfg, O_RDONLY|O_LARGEFILE) = 5
fstat64(5, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
mmap2(NULL, 0, PROT_READ, MAP_PRIVATE, 5, 0) = -1 EINVAL (Invalid
argument)
close(5)= 0
write(1, Error: Cannot open config file \'..., 99Error: Cannot open
config file '/etc/nagios-plugins/config/imap.cfg' for reading: Invalid
argument) = 99
-- snap --

Pe'debian/sarge, nagios 2.0.1~zg1'ter


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



Bug#355281: libchipcard2 needs a special binary of libccid

2006-03-06 Thread Thomas Viehmann
severity 355281 normal
retitle 355281 libccid: please provide libccid compiled without pcsclite
reassign ccid
thanks

Hi Maik, Ludovic,

Maik Zumstrull wrote:
 libchipcard2 can not use the existing Debian libccid package, because it 
 compiles its binaries against libpcsclite, which makes the result 
 incompatible with libchipcard. This is documented upstream. Currently, if 
 libccid is installed, libchipcard tries to load libccid, but fails with an 
 undefined symbol error. I suggest including a libccid binary compiled 
 without pcsclite in the libchipcard packages.

given that it is not an option to have multiple copies of the source
code in Debian, this descision lies in the realm of the ccid maintainer.
I guess the upstream documentation alluded to is [1].
Note that this is a feature request in my POV, so it's not technically
not of important severity. This is, of course, not a matter of
definition an by no means a statement about the importance of your request.

Kind regards

T.

1. http://www.libchipcard.de/apidoc/#sec_ccid
-- 
Thomas Viehmann, http://thomas.viehmann.net/


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



Bug#262994: Patch submitted upstream

2006-03-06 Thread Bart Samwel



FYI: I've just submitted a patch to the upstream for this. If it gets 
in, this bug may finally be solved. :-)


--Bart


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



Bug#294279: Gossip quits unexpectedly on Alpha

2006-03-06 Thread Ross Burton
On Sat, 2006-03-04 at 14:47 +0100, Falk Hueffner wrote:
  Could you try this with 0.10? The startup code has been
  rewritten so that file doesn't exist anymore.
 
  Can you replicate it with 0.10.1?
 
 No. Instead I get, later in the registration:
 
 Failed to register your new account settings
 A specific protocol error ocurred that was unexpected.

Can you run gossip in a terminal with LM_DEBUG=NET to get a protocol
log?

Thanks,
Ross
-- 
Ross Burton mail: [EMAIL PROTECTED]
  jabber: [EMAIL PROTECTED]
 www: http://www.burtonini.com./
 PGP Fingerprint: 1A21 F5B0 D8D0 CFE3 81D4 E25A 2D09 E447 D0B4 33DF



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


Bug#355545: mailx: -e option does not have the intended effect

2006-03-06 Thread Thue Janus Kristensen
Package: mailx
Version: 1:8.1.2-0.20040524cvs-4
Severity: normal

The manual page for mail says
 -e  Don't send empty mails.  If the body is empty skip the mail.
So when I use the commando 
 echo  | mail -e -s test [EMAIL PROTECTED]
I expect that no mail is sendt; that is not the case.

Regards
-Thue

-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.6-1-386
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages mailx depends on:
ii  base-files  3.1.2Debian base system miscellaneous f
ii  libc6   2.3.2.ds1-22 GNU C Library: Shared libraries an
ii  liblockfile11.06 NFS-safe locking library, includes
ii  postfix [mail-transport-age 2.1.5-9  A high-performance mail transport 

-- no debconf information


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



Bug#352972: linux-image-2.6.15-1-686 + linux-image-2.6.15-1-486

2006-03-06 Thread Tibor Kovacs
Hi

I have found the same DMA problem in all versions of
this kernel linux-image-2.6.15-1-686 (2.6.15-1 till 2.6.15-7)
and also with linux-image-2.6.15-1-486/2.6.15-7

The DMA with linux-image-2.6.12-1-686 works without any problem on the
same machine
(82801DB (ICH4) chipset)

regards
Tibor


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



Bug#354803: Long description

2006-03-06 Thread Panu Kalliokoski
The full description of the package is as follows:

Converter from structured plain text to other formats

 stx2any is a converter from structured text (Stx), which is plain text
 written in a standardised way, into other formats.  Formats available
 currently include (X)HTML, man, raw text, PostScript and LaTeX.
 .
 This package also has the following utilities:
  * strip_stx -- a literate programming tool
  * gather_stx_titles -- a script to automate cross-linking between
documents
  * extract_usage_from_stx -- a script to produce usage messages from
man pages written in stx
  * html2stx -- a utility to convert HTML into Stx.

-- 
personal contact:   [EMAIL PROTECTED], +35841 5323835
technical contact:  [EMAIL PROTECTED], http://www.iki.fi/atehwa/
PGP fingerprint:0EA5 9D33 6590 FFD4 921C  5A5F BE85 08F1 3169 70EC


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



Bug#355543: kdelibs: Separator lines between toolbars missing in 4:3.5.1-3

2006-03-06 Thread Isaac Clerencia
You can get them back by going to the Style configuration in KControl,
and  then clicking Configure (with Plastik selected) and checking Draw
separator between toolbars option.

It's not a bug but a feature, so I'm closing the bug.

Best regards


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



Bug#355546: solid-pop3d: homepage host not found

2006-03-06 Thread MJ Ray
Package: solid-pop3d
Version: 0.15-16
Severity: wishlist

May be temporary fault.

 Date: Mon, 6 Mar 2006 10:48:30 +0100
 From: Mike van Vugt [EMAIL PROTECTED]
 To: debian-www@lists.debian.org
 Subject: Not a valid link...
 
 LS,
 
 The link: Homepage: http://solidpop3d.pld.org.pl/
 
 on:
 
 http://packages.debian.org/unstable/mail/solid-pop3d
 
 is not valid 
 
 Regards,
 
 Mike

-- 
MJR/slef
My Opinion Only: see http://people.debian.org/~mjr/
Please follow http://www.uk.debian.org/MailingLists/#codeofconduct



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



Bug#355547: installation report

2006-03-06 Thread Stephen Walker

Package: installation-reports

Boot method: CD
Image version: Netinst beta2 test build (i386), 3rd March 2006
Date: 6th March 2006

Machine: Dell Optiplex GX1.
Processor: PIII-450
Memory: 256Mb
Partitions:
FilesystemType   1K-blocks  Used Available Use% Mounted on
/dev/hda1 ext3 9408480381244   8549304   5% /
tmpfstmpfs  128468 0128468   0% /dev/shm
tmpfstmpfs  12846868128400   1% /dev


Output of lspci and lspci -n:
:00:00.0 Host bridge: Intel Corporation 440BX/ZX/DX - 82443BX/ZX/DX
Host bridge (rev 03)
:00:01.0 PCI bridge: Intel Corporation 440BX/ZX/DX - 82443BX/ZX/DX
AGP bridge (rev 03)
:00:07.0 ISA bridge: Intel Corporation 82371AB/EB/MB PIIX4 ISA (rev 02)
:00:07.1 IDE interface: Intel Corporation 82371AB/EB/MB PIIX4 IDE
(rev 01)
:00:07.2 USB Controller: Intel Corporation 82371AB/EB/MB PIIX4 USB
(rev 01)
:00:07.3 Bridge: Intel Corporation 82371AB/EB/MB PIIX4 ACPI (rev 02)
:00:0f.0 PCI bridge: Digital Equipment Corporation DECchip 21152
(rev 03)
:00:11.0 Ethernet controller: 3Com Corporation 3c905B 100BaseTX
[Cyclone] (rev 24)
:01:00.0 VGA compatible controller: ATI Technologies Inc 3D Rage Pro
AGP 1X/2X (rev 5c)

:00:00.0 0600: 8086:7190 (rev 03)
:00:01.0 0604: 8086:7191 (rev 03)
:00:07.0 0601: 8086:7110 (rev 02)
:00:07.1 0101: 8086:7111 (rev 01)
:00:07.2 0c03: 8086:7112 (rev 01)
:00:07.3 0680: 8086:7113 (rev 02)
:00:0f.0 0604: 1011:0024 (rev 03)
:00:11.0 0200: 10b7:9055 (rev 24)
:01:00.0 0300: 1002:4742 (rev 5c)


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

Initial boot worked:[O]
Configure network HW:   [O]
Config network: [O]
Detect CD:  [O]
Load installer modules: [O]
Detect hard drives: [O]
Partition hard drives:  [O]
Create file systems:[O]
Mount partitions:   [O]
Install base system:[O]
Install boot loader:[O]
Reboot: [O]

Comments/Problems:
Problem: The system installed the 486 kernel package(2.6.15-1-486), 
despite the fact that I have a 686 (Pentium III) processor.




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



Bug#355548: klibc - errno values are negative on s390

2006-03-06 Thread Bastian Blank
Package: klibc
Version: 1.2.2-3
Severity: important

The returned errno values are negative on s390. The attached patch fixes
the syscall wrapper.

Bastian

-- 
Fascinating is a word I use for the unexpected.
-- Spock, The Squire of Gothos, stardate 2124.5
diff -u klibc-1.2.2/debian/changelog klibc-1.2.2/debian/changelog
--- klibc-1.2.2/debian/changelog
+++ klibc-1.2.2/debian/changelog
@@ -1,3 +1,10 @@
+klibc (1.2.2-3.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * [s390] Make errno values possitive.
+
+ -- Bastian Blank [EMAIL PROTECTED]  Mon,  6 Mar 2006 12:25:55 +0100
+
 klibc (1.2.2-3) unstable; urgency=medium
 
   * Upload with medium urgency to fix sparc ftbfs.
only in patch2:
unchanged:
--- klibc-1.2.2.orig/debian/patches/s390-syscall.patch
+++ klibc-1.2.2/debian/patches/s390-syscall.patch
@@ -0,0 +1,10 @@
+--- klibc/arch/s390/syscall.c.orig 2006-03-06 12:24:38.0 +0100
 klibc/arch/s390/syscall.c  2006-03-06 12:24:58.0 +0100
+@@ -11,6 +11,6 @@
+ {
+   if ((unsigned long)(err)  (unsigned long)(-125))
+   return err;
+-  errno = err;
++  errno = -err;
+   return -1;
+ }


signature.asc
Description: Digital signature


Bug#113988: Bug#355367: debuild: Preserving locale settings can affect build

2006-03-06 Thread Norbert Preining
Hi all!

On Son, 05 Mär 2006, Julian Gilbey wrote:
 This texinfo bug has further ramifications:

[texinfo and locales]

Ok, I picked up the bug and tried to understand. It is *really* old.

AFAIS there is nothing wrong with makeinfo. You could have a wishlist
that makeinfo ignores the locales, but this could also be a conscious
decision of the author.

I don't see why we=Debian should patch/hack a file to behave completely
different from upstream under certain circumstances when a simple
LC_ALL=C ...
would be enough.

Ok, it is true that it might be better to have a switch like
--interface=fr
so that the generated files are in french, and the normal messages as
specified in LC_*.

BUt, as I said, wishlist.

If one comes up with a patch, Karl normally is very open to suggestions,
but I am really sure that fixing something which is not necessarily an
error is high on his todo list.


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
---
LUTON (n.)
The horseshoe-shaped rug which goes around a lavatory seat.
--- Douglas Adams, The Meaning of Liff


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



Bug#354007: [Pkg-nagios-devel] Bug#354007: Error: Cannot open config file '/etc/nagios-plugins/config/imap.cfg' for reading: Invalid argument

2006-03-06 Thread sean finney
retitle 354007 nagios2: can not handle empty plugin conffiles
thanks

hi guys,

so it seems this is a problem in nagios2 (but not 1.x?), where it
is not able to parse an empty config file?  if so i'll have
a look into the source and see if i can find a fix to send
upstream.

in the meantime, the provided workaround (thanks) should suffice
for anyone who comes across this problem.


thanks
sean


signature.asc
Description: Digital signature


Bug#355549: checksecurity: Checking for incorrect md5sums

2006-03-06 Thread Panu Kalliokoski
Package: checksecurity
Version: 2.0.7-6
Severity: wishlist

Could / should checksecurity add a plugin to check the files in the
distribution against their checksums in /var/lib/dpkg/info/*.md5sums?
This provides an easy way to improve the security of the system a
little.  Maybe combined with a diffing mechanism to avoid reporting the
same discrepancies over and over.

Here is a simple script (in shell) to list files that have conflicting
md5sums from those in the package:

cat /var/lib/dpkg/info/*.md5sums |  while read md5 file; do if test
X`md5sum /$file | cut -d' ' -f1` == X$md5; then :; else echo $file;
fi; done

-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.8-2-686
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages checksecurity depends on:
ii  cron   3.0pl1-86 management of regular background p
ii  debconf1.4.30.13 Debian configuration management sy
ii  perl   5.8.4-8sarge3 Larry Wall's Practical Extraction 

-- debconf information excluded


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



Bug#344684: Solution

2006-03-06 Thread Stefan Alfredsson

* Michael Williamson:
 I found the solution by installing a later version of libgnomecups1.0-1
 (0.2.2-1).

I had the same problem as the original bug reporter (gnumeric crashing
when printing). Upgrading to libgnomecups1.0-1 0.2.2-1 solved the
problem.

Regards,
 Stefan



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



Bug#355550: slrnface exits when called from tin

2006-03-06 Thread Michael Zolk
Package: slrnface
Version: 2.1.1-5
Severity: normal


I have enabled slrnface from within tin, however, when tin starts it
displays the message slrnface abnormally exited, code 35. slrnface does
not show up in ps output, and (of course) no X-Faces are displayed. 

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

Versions of packages slrnface depends on:
ii  libc6 2.3.6-3GNU C Library: Shared libraries an
ii  libcompfaceg1 1:1.5.2-3  Compress/decompress images for mai
ii  libx11-6  6.9.0.dfsg.1-4 X Window System protocol client li
ii  libxt66.9.0.dfsg.1-4 X Toolkit Intrinsics
ii  tin   1:1.8.1-1  A full-screen easy to use Usenet n
ii  xlibs 6.9.0.dfsg.1-4 X Window System client libraries m

slrnface recommends no packages.

-- no debconf information


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



Bug#355551: libgda2: FTBFS: Unsatisfiable Build-Depends

2006-03-06 Thread Daniel Schepler
Package: libgda2
Version: 1.2.2-1
Severity: serious

The Build-Depends for libgda2 cannot be satisfied in unstable since 
libmysqlclient14-dev has been removed.  Please update to 
libmysqlclient15-dev.
-- 
Daniel Schepler


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



Bug#355552: nagios2-common: host extinfo file pointing to wrong image location

2006-03-06 Thread Peter Schwindt
Package: nagios2-common
Version: Example extinfo file points to wrong image location
Severity: minor


The hosts extended information file points to debian.png for the
debian-servers hostgroup but there is no such file - it should better
point to base/debian.png.


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



Bug#353584: NMU of dvipdfmx

2006-03-06 Thread Atsuhito Kohda
From: Norbert Preining [EMAIL PROTECTED]
Subject: Re: NMU of dvipdfmx
Date: Sat, 4 Mar 2006 12:18:17 +0100

  I understand that he can't normally maintain dvipdfmx before 
  April so NMU is no problem.
 
 So be it. Can one of the DDs check the package on tug.org, as said, no
 serious changes but the addition of texlive as dependency.

Does someone do already?  If not I'm willing to do it.

However, as I said already, the most serious problem
caused by one of NMUs was 

 BTW, there is messing up in dvipdfmx.  Wnen Yu maintained
 it there was 50dvipdfmx.cnf but now 80DVIPDFMx.cnf instead.
 (contents of 80DVIPDFMx.cnf seemed better, though)
 I don't know which NMU installed 80DVIPDFMx.cnf but it is
 very bad states now.

and it will be better if it could be fixed before Guanghui 
will come back again.  But, Guanghui, your statement

From: Guanghui Yu [EMAIL PROTECTED]
Subject: Re: Bug#353584: NMU of dvipdfmx
Date: Tue, 28 Feb 2006 23:19:30 +0800

 Thanks for the NMUs. I'm sorry that I was almost inactive for about one year
 because of  personal reason. After April, I can normally maintain the
 packages.

is a bit ambiguous, I think.  It will be great help for us
if you explicitly permit us to do NMU untill you will come
back again.

Regards,2006-3-6(Mon)

-- 
 Debian Developer  Debian JP Developer - much more I18N of Debian
 Atsuhito Kohda [EMAIL PROTECTED]
 Department of Math., Univ. of Tokushima


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



Bug#355361: network-manager-gnome: Not member of group netdev

2006-03-06 Thread Oystein Gisnas
Package: network-manager-gnome
Version: 0.5.1-3
Followup-For: Bug #355361

Did Chris Hanson say he run nm-applet with a user that was in the
netdev group? I had the same problems as Chris until I added myself to
the group.

First, the error message could have given more clues about a
resolution. If the applet is to be added from the Add applet..-menu
one day, it would be more user-friendly with a popup informing of the
missing permissions, and suggesting to check netdev membership. It
should be organised with the gnome-system-admin guys so that netdev is
listed under User Privileges. Until then, README.Debian should mention
that the running user must be member of netdev.

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

Versions of packages network-manager-gnome depends on:
ii  libart-2.0-2 2.3.17-1Library of functions for 2D graphi
ii  libatk1.0-0  1.10.3-1The ATK accessibility toolkit
ii  libaudiofile00.2.6-6 Open-source version of SGI's audio
ii  libavahi-client3 0.6.9-2 Avahi client library
ii  libavahi-common3 0.6.9-2 Avahi common library
ii  libavahi-compat-howl00.6.9-2 Avahi Howl compatibility library
ii  libbonobo2-0 2.10.1-1Bonobo CORBA interfaces library
ii  libbonoboui2-0   2.10.1-2The Bonobo UI library
ii  libc62.3.6-3 GNU C Library: Shared libraries an
ii  libcairo21.0.2-3 The Cairo 2D vector graphics libra
ii  libdbus-1-2  0.61-3  simple interprocess messaging syst
ii  libdbus-glib-1-2 0.61-3  simple interprocess messaging syst
ii  libesd-alsa0 [libesd0]   0.2.36-3Enlightened Sound Daemon (ALSA) - 
ii  libfontconfig1   2.3.2-2 generic font configuration library
ii  libfreetype6 2.1.10-1FreeType 2 font engine, shared lib
ii  libgconf2-4  2.12.1-12   GNOME configuration database syste
ii  libgcrypt11  1.2.2-1 LGPL 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-1 The GLib library of C routines
ii  libgnome-keyring00.4.8-1 GNOME keyring services library
ii  libgnome2-0  2.12.0.1-5  The GNOME 2 library - runtime file
ii  libgnomecanvas2-02.12.0-2A powerful object-oriented display
ii  libgnomeui-0 2.12.1-1The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0   2.12.2-6GNOME virtual file-system (runtime
ii  libgnutls12  1.2.9-2 the GNU TLS library - runtime libr
ii  libgpg-error01.2-1   library for common error values an
ii  libgtk2.0-0  2.8.13-1The GTK+ graphical user interface 
ii  libhal1  0.5.6-4 Hardware Abstraction Layer - share
ii  libice6  6.9.0.dfsg.1-4  Inter-Client Exchange library
ii  libjpeg626b-12   The Independent JPEG Group's JPEG 
ii  liborbit21:2.12.4-1  libraries for ORBit2 - a CORBA ORB
ii  libpanel-applet2-0   2.12.3-1library for GNOME 2 panel applets
ii  libpango1.0-01.10.4-1Layout and rendering of internatio
ii  libpng12-0   1.2.8rel-5  PNG library - runtime
ii  libpopt0 1.7-5   lib for parsing cmdline parameters
ii  libsm6   6.9.0.dfsg.1-4  X Window System Session Management
ii  libtasn1-2   0.2.17-1Manage ASN.1 structures (runtime)
ii  libx11-6 6.9.0.dfsg.1-4  X Window System protocol client li
ii  libxcursor1  1.1.3-1 X cursor management library
ii  libxext6 6.9.0.dfsg.1-4  X Window System miscellaneous exte
ii  libxi6   6.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  libxml2  2.6.23.dfsg.2-2 GNOME XML library
ii  libxrandr2   6.9.0.dfsg.1-4  X Window System Resize, Rotate and
ii  libxrender1  1:0.9.0.2-1 X Rendering Extension client libra
ii  network-manager  0.5.1-3 network management framework daemo
ii  zlib1g   1:1.2.3-10  compression library - runtime

network-manager-gnome recommends no packages.

-- no debconf information


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



Bug#354946: No manpage and no other kind of help.

2006-03-06 Thread Maxence Guesdon
On Thu, 02 Mar 2006 11:44:02 +0100
Enrico Zini [EMAIL PROTECTED] wrote:

 Package: libocamlodbc-ocaml-bin
 Version: 2.10-4
 Severity: normal
 
 Hello,

Hello,

 thanks for bringing on Ocaml in Debian!
 
 I've had however a bit of a frustrating experience with
 libocamlodbc-ocaml-bin.
...

I am the author of biniki and I confirm that it is just a toy example of
the use of the ocaml-odbc library (it is included in the ocaml-odbc source
distribution).
I have not used it since a long time, but, if I remember correctly, the
base parameter on command-line is a data source name, which should be
found in the file describing odbc data sources (the file depends on which
odbc driver you use, see http://home.gna.org/ocamlodbc/configuring.html).

Regards,

Maxence Guesdon


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



Bug#355554: squashfs: Building modules to out-of-tree

2006-03-06 Thread Daniel Baumann
Package: squashfs
Severity: important

Hi,

[ Disclaimer: this mail should not be taken as an offense, I just want
to get things done quickly. ]

as I wrote you a few days ago, we want the module packages for squashfs
autobuilt (needed for Debian Live[0]). As I didn't got any answer so
far, I made the package[1] on my own. I tested it successfully on amd64,
i386, powerpc and sparc.

We have now two possibilities:

  * If you agree, I upload the package which replaces the current
squashfs package (prefered).

  * If you don't agree, I upload the package with a different source
name (making the squashfs package obselete)

Please have a look at the package and tell me your opinion.

Regards,
Daniel

[0] http://live.debian.net/
[1] http://ftp-master.debian-unofficial.org/live-archive/squashfs/

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


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



Bug#355555: itrans: postinst calls update-updmap, which can't be found

2006-03-06 Thread Lars Wirzenius
Package: itrans
Version: 5.3-2

When testing itrans with piuparts, I get the following error:

  Setting up itrans (5.3-2) ...
  /var/lib/dpkg/info/itrans.postinst: line 81: update-updmap: command
not found
  dpkg: error processing itrans (--configure):
   subprocess post-installation script returned error exit status 127

The package probably needs to depend on tex-common.

Note that itrans-doc has the same problem.

-- 
Mulla on halu häkätä ja mulla on siihen taito




Bug#355556: Service type treeview isn't in a scrollable window

2006-03-06 Thread Sjoerd Simons
Package: service-discovery-applet
Version: 0.3.1-4
Severity: normal

Hi,

  When resizing the preferences window to minimal height, the last entry in the
  list becomes invisible. Also when clicking Add in this setting there is no
  visual feedback for the user at all.

  Sjoerd

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (101, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.15-1-powerpc
Locale: LANG=C, LC_CTYPE=nl_NL (charmap=ISO-8859-1)

Versions of packages service-discovery-applet depends on:
ii  avahi-daemon  0.6.9-2Avahi mDNS/DNS-SD daemon
ii  gconf22.13.5-1   GNOME configuration database syste
ii  notification-daemon   0.3.4-4a daemon that displays passive pop
ii  python2.4 2.4.2-2An interactive high-level object-o
ii  python2.4-avahi   0.6.9-2Python utility package for Avahi
ii  python2.4-dbus0.61-3 simple interprocess messaging syst
ii  python2.4-gnome2  2.12.3-2   Python bindings for the GNOME desk
ii  python2.4-gnome2-extras   2.12.1-2.1 Python bindings for the GNOME desk
ii  python2.4-gtk22.8.2-3Python bindings for the GTK+ widge

service-discovery-applet recommends no packages.

-- no debconf information


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



Bug#324025: [Fwd: Re: Bug#324025: aqsis: FTBFS on 64 bit arches: error: cast from 'void*' to 'int' loses precision]

2006-03-06 Thread Ben Hutchings
 Forwarded Message 
From: Tristan [EMAIL PROTECTED]
To: Ben Hutchings [EMAIL PROTECTED]
Subject: Re: Bug#324025: aqsis: FTBFS on 64 bit arches: error: cast from 
'void*' to 'int' loses precision
Date: Mon, 06 Mar 2006 03:39:13 -0800

Hi,

  Someone sent me a link to the post below, I am the author of the code
in question.

  re: Cloning of the IDs, I think this is spec compliant. The spec (the
doc you pointed two) specifies that the init function is called once
per renderer instance (or renderer thread), not once per shader
instance. In order to use per-shader initialization DSO authors will
normally add an additional DSO which lets them init a new invocation of
the DSO. There are a couple of example online of using this technique.
So basically you build a per-shader instance init on top of SL which
might end up looking like...

int callid = init_myshadeop(somestuff,otherstuff);
...
Cs = myshadeop(callid,P,,N,whatever data);
...
shutdown_myshadeop(callid)

  It might not be pretty, but then there is alot about RiSpec that
isn't pretty.

  I'll see if there is anything we can do about the pointer conversion
issue.

  I noticed that people seemed to be suggesting keeping a patch local
to debian, is this the normal way of doing things? Is there a policy of
pushing bugs and/or patches upstream to the originating project?

  Cheers
  Tristan Colgate

[Quoted text omitted - Ben Hutchings.]


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


Bug#346188: icon just needs -fno-strict-aliasing

2006-03-06 Thread Daniel Schepler
I did some investigation of the icon build failure myself over the weekend and 
found that if I changed the default -O2 flags to -O2 -fno-strict-aliasing 
then the package built fine again.  (This on i386.)  It would be interesting 
to see whether this is also enough for the other architectures currently 
using -O0.
-- 
Daniel Schepler


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



Bug#353584: NMU of dvipdfmx

2006-03-06 Thread Frank Küster
Atsuhito Kohda [EMAIL PROTECTED] wrote:

 So be it. Can one of the DDs check the package on tug.org, as said, no
 serious changes but the addition of texlive as dependency.

 Does someone do already?  If not I'm willing to do it.

Please do it, I'm really busy these days.

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




Bug#355558: network-manager-gnome: nm-applet does not stop when NetworkManager is not running

2006-03-06 Thread Oystein Gisnas
Package: network-manager-gnome
Version: 0.5.1-3
Severity: normal

Whenever the NetworkManager service is not running, nm-applet will
start, but never display the icon in the notification area. Even when
killing the process (even with -9 as root), nm-applet will just
respawn itself as a new process. The result is that when logging in
and out of gnome X times, there will be X nm-applet processes running.

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

Versions of packages network-manager-gnome depends on:
ii  libart-2.0-2 2.3.17-1Library of functions for 2D graphi
ii  libatk1.0-0  1.10.3-1The ATK accessibility toolkit
ii  libaudiofile00.2.6-6 Open-source version of SGI's audio
ii  libavahi-client3 0.6.9-2 Avahi client library
ii  libavahi-common3 0.6.9-2 Avahi common library
ii  libavahi-compat-howl00.6.9-2 Avahi Howl compatibility library
ii  libbonobo2-0 2.10.1-1Bonobo CORBA interfaces library
ii  libbonoboui2-0   2.10.1-2The Bonobo UI library
ii  libc62.3.6-3 GNU C Library: Shared libraries an
ii  libcairo21.0.2-3 The Cairo 2D vector graphics libra
ii  libdbus-1-2  0.61-3  simple interprocess messaging syst
ii  libdbus-glib-1-2 0.61-3  simple interprocess messaging syst
ii  libesd-alsa0 [libesd0]   0.2.36-3Enlightened Sound Daemon (ALSA) - 
ii  libfontconfig1   2.3.2-2 generic font configuration library
ii  libfreetype6 2.1.10-1FreeType 2 font engine, shared lib
ii  libgconf2-4  2.12.1-12   GNOME configuration database syste
ii  libgcrypt11  1.2.2-1 LGPL 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-1 The GLib library of C routines
ii  libgnome-keyring00.4.8-1 GNOME keyring services library
ii  libgnome2-0  2.12.0.1-5  The GNOME 2 library - runtime file
ii  libgnomecanvas2-02.12.0-2A powerful object-oriented display
ii  libgnomeui-0 2.12.1-1The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0   2.12.2-6GNOME virtual file-system (runtime
ii  libgnutls12  1.2.9-2 the GNU TLS library - runtime libr
ii  libgpg-error01.2-1   library for common error values an
ii  libgtk2.0-0  2.8.13-1The GTK+ graphical user interface 
ii  libhal1  0.5.6-4 Hardware Abstraction Layer - share
ii  libice6  6.9.0.dfsg.1-4  Inter-Client Exchange library
ii  libjpeg626b-12   The Independent JPEG Group's JPEG 
ii  liborbit21:2.12.4-1  libraries for ORBit2 - a CORBA ORB
ii  libpanel-applet2-0   2.12.3-1library for GNOME 2 panel applets
ii  libpango1.0-01.10.4-1Layout and rendering of internatio
ii  libpng12-0   1.2.8rel-5  PNG library - runtime
ii  libpopt0 1.7-5   lib for parsing cmdline parameters
ii  libsm6   6.9.0.dfsg.1-4  X Window System Session Management
ii  libtasn1-2   0.2.17-1Manage ASN.1 structures (runtime)
ii  libx11-6 6.9.0.dfsg.1-4  X Window System protocol client li
ii  libxcursor1  1.1.3-1 X cursor management library
ii  libxext6 6.9.0.dfsg.1-4  X Window System miscellaneous exte
ii  libxi6   6.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  libxml2  2.6.23.dfsg.2-2 GNOME XML library
ii  libxrandr2   6.9.0.dfsg.1-4  X Window System Resize, Rotate and
ii  libxrender1  1:0.9.0.2-1 X Rendering Extension client libra
ii  network-manager  0.5.1-3 network management framework daemo
ii  zlib1g   1:1.2.3-10  compression library - runtime

network-manager-gnome recommends no packages.

-- no debconf information


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



Bug#355559: Please support _h323._tcp and _sip._udp

2006-03-06 Thread Sjoerd Simons
Package: service-discovery-applet
Version: 0.3.1-4
Severity: wishlist

Hi,

 Ekiga (currently in NEW) announces Ip telephony services. Would be nice if
 service-discovery-applet supported these. The respective actions could be
 ekiga -c sip:host:port or ekiga -c h323:host:port

  Sjoerd

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (101, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.15-1-powerpc
Locale: LANG=C, LC_CTYPE=nl_NL (charmap=ISO-8859-1)

Versions of packages service-discovery-applet depends on:
ii  avahi-daemon  0.6.9-2Avahi mDNS/DNS-SD daemon
ii  gconf22.13.5-1   GNOME configuration database syste
ii  notification-daemon   0.3.4-4a daemon that displays passive pop
ii  python2.4 2.4.2-2An interactive high-level object-o
ii  python2.4-avahi   0.6.9-2Python utility package for Avahi
ii  python2.4-dbus0.61-3 simple interprocess messaging syst
ii  python2.4-gnome2  2.12.3-2   Python bindings for the GNOME desk
ii  python2.4-gnome2-extras   2.12.1-2.1 Python bindings for the GNOME desk
ii  python2.4-gtk22.8.2-3Python bindings for the GTK+ widge

service-discovery-applet recommends no packages.

-- no debconf information


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



Bug#355560: gnupg-agent: postinst assume gpg is installed

2006-03-06 Thread Lars Wirzenius
Package: gnupg-agent
Version: 1.9.20-1

When testing gnupg-agent with piuparts, I get the following error:

  Setting up gnupg-agent (1.9.20-1) ...
  Installing new version of config
file /etc/X11/Xsession.d/90gpg-agent ...
  chmod: cannot access `/usr/bin/gpg': No such file or directory
  dpkg: error processing gnupg-agent (--configure):
   subprocess post-installation script returned error exit status 1

The postinst script seems to assume that /usr/bin/gpg exists, but there
is no dependency on gnupg, just a recommendation. Thus, the postinst
should probably test that gnupg exists before mucking about with the
permissions.

-- 
It doesn't matter who you are, it's what you do that takes you far.



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



Bug#355561: gnustep: GNUStep has been uninstallable in Sid for weeks due to multiple dependancy problems

2006-03-06 Thread Scott
Package: gnustep
Severity: grave
Justification: renders package unusable


The package GNUStep is broken/uninstallable due to multiple dependencies which 
have the same
problem.  This problem has been occurring for at least a month now.  Attempts 
to install
individual dependencies from Unstable or Testing have proved futile as well.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (1, 'experimental')
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)


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



Bug#355562: kppp: invalid connection speed reported

2006-03-06 Thread Jean-Marc Ranger
Package: kppp
Version: 4:3.3.2-5
Severity: minor

This one is a bit complex...

When using a SmartLink modem, there'e an option to get extended
connection info.  Command is ATA7.

When that command is used (mostly for debugging, and log window must be
open for this command to have any usefulness), kppp will fail to
correctly detect and report connection speed.

Examples:
ATZ
OK
ATM1L1
OK
ATDT829-5847
CONNECT 46667

belshbcnas08 line 39 

Unauthorized Access Prohibited
Acces non-autorise interdit
BELSHBCNAS08 

User Access Verification

Username: 
This one is a typical one, which KPPP correctly handles.


ATZ
OK
ATA7
OK
ATM1L1
OK
ATDT829-5847
Modulation: V90
Protocol: LAPM
Compression: V42bis
TxRate: 9600
CONNECT 46667

belshbcnas08 line 147 

Unauthorized Access Prohibited
Acces non-autorise interdit
BELSHBCNAS08 

User Access Verification

Username: 
This one is, IMHO, perfectly legal regarding the AT spec, but kppp will
get confused and report 147 at the connection speed (it consistently
reports the line number instead of the connection speed).

Far-fetched, and very minor, but still a bug.

JMR


-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.8-2-686
Locale: LANG=en_CA, LC_CTYPE=en_CA (charmap=ISO-8859-1)

Versions of packages kppp depends on:
ii  kdelibs4   4:3.3.2-6.4   KDE core libraries
ii  libart-2.0-2   2.3.17-1  Library of functions for 2D graphi
ii  libc6  2.3.2.ds1-22  GNU C Library: Shared libraries an
ii  libfam0c1022.7.0-6sarge1 client library to control the FAM 
ii  libgcc11:3.4.3-13GCC support library
ii  libice64.3.0.dfsg.1-14sarge1 Inter-Client Exchange library
ii  libidn11   0.5.13-1.0GNU libidn library, implementation
ii  libpng12-0 1.2.8rel-1PNG library - runtime
ii  libqt3c102-mt  3:3.3.4-3 Qt GUI Library (Threaded runtime v
ii  libsm6 4.3.0.dfsg.1-14sarge1 X Window System Session Management
ii  libstdc++5 1:3.3.5-13The GNU Standard C++ Library v3
ii  libx11-6   4.3.0.dfsg.1-14sarge1 X Window System protocol client li
ii  libxext6   4.3.0.dfsg.1-14sarge1 X Window System miscellaneous exte
ii  libxrender10.8.3-7   X Rendering Extension client libra
ii  ppp2.4.3-20050321+2  Point-to-Point Protocol (PPP) daem
ii  xlibs  4.3.0.dfsg.1-14sarge1 X Keyboard Extension (XKB) configu
ii  zlib1g 1:1.2.2-4.sarge.2 compression library - runtime

-- no debconf information


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



Bug#355563: ipe: fonts have moved

2006-03-06 Thread Marc Glisse
Package: ipe
Version: 6.0pre23-6
Severity: normal

Hello,

tetex-extra has been reorganized, and ipe's fontmap.xml should be updated
accordingly.

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

Versions of packages ipe depends on:
ii  libc6 2.3.5-13   GNU C Library: Shared libraries an
ii  libgcc1   1:4.0.2-9  GCC support library
ii  libipe1c2a6.0pre23-6 Ipe library used by ipelets
ii  libqt3-mt 3:3.3.5-3  Qt GUI Library (Threaded runtime v
ii  libstdc++64.0.2-9The GNU Standard C++ Library v3
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  tetex-bin 3.0-14 The teTeX binary files
ii  tetex-extra   3.0-15 Additional library files of teTeX

ipe recommends no packages.

-- no debconf information


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



Bug#355564: network-manager: Segmentation fault when starting NetworkManager

2006-03-06 Thread Oystein Gisnas
Package: network-manager
Version: 0.5.1-3
Severity: important

# /usr/sbin/NetworkManager --no-daemon
NetworkManager: information   starting...
Segmentation fault

strace gives a little clue:
# strace /usr/sbin/NetworkManager --no-daemon
open(/etc/network/interfaces, O_RDONLY) = 11
fstat64(11, {st_mode=S_IFREG|0644, st_size=1761, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0xb7fdb000
read(11, # /etc/network/interfaces -- con..., 4096) = 1761
--- SIGSEGV (Segmentation fault) @ 0 (0) ---
+++ killed by SIGSEGV +++

And after removing /etc/network/interfaces, it doesn't crash anymore
# mv /etc/network/interfaces{,.orig}
# /usr/sbin/NetworkManager --no-daemon
NetworkManager: information   starting...
NetworkManager: WARNING (): Error: Can't open /etc/network/interfaces

NetworkManager: information   eth0: Device is fully-supported using driver 
'natsemi'.
NetworkManager: information   nm_device_new(): waiting for device's worker 
thread to start
NetworkManager: information   nm_device_new(): device's worker thread 
started, continuing.
NetworkManager: information   Now managing wired device 'eth0'.
NetworkManager: information   Deactivating device eth0.
NetworkManager: WARNING (): Error: Can't open /etc/network/interfaces

My guess would that it crashes when parsing /etc/network/interfaces. I
won't provide the file here, since it contains sensitive information,
but can provide a copy by email on request.

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

Versions of packages network-manager depends on:
ii  dhcdbd  1.12-1   dbus interface to the ISC DHCP cli
ii  iproute 20051007-3   Professional tools to control the 
ii  iputils-arping  3:20020927-3 Tool to send ICMP echo requests to
ii  libc6   2.3.6-3  GNU C Library: Shared libraries an
ii  libdbus-1-2 0.61-3   simple interprocess messaging syst
ii  libdbus-glib-1-20.61-3   simple interprocess messaging syst
ii  libgcrypt11 1.2.2-1  LGPL Crypto library - runtime libr
ii  libglib2.0-02.8.6-1  The GLib library of C routines
ii  libgpg-error0   1.2-1library for common error values an
ii  libhal1 0.5.6-4  Hardware Abstraction Layer - share
ii  lsb-base3.0-15   Linux Standard Base 3.0 init scrip

network-manager recommends no packages.

-- no debconf information


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



Bug#351821: RFA: freetype -- FreeType 2 font engine, shared library files

2006-03-06 Thread Steve Langasek
Hi Will,

On Tue, Feb 07, 2006 at 05:47:13PM +, Will Newton wrote:

 I request an adopter for the freetype package.

 Due to a new job I haven't had any time to work on FreeType in the last
 few months. As such I would like someone to adopt it. A team would
 probably be best, there's lots of difficult issues with this package
 and it requires plenty of testing with different fonts and displays.

 There's a new upstream version likely in the not so distant future.

I've been working with upstream to help make sure the next upstream version
of freetype addresses Debian's needs for ABI continuity, so I am considering
adopting the package as a result -- preferably with a team, since I'm good
with libraries and not so good with fonts, and we probably want both
skillsets involved in maintaining a font library. ;)

Let me know if you think it's ok for me to adopt this package, and whether
you prefer to keep your own name on it as maintainer until a team can be put
together.

Cheers,
-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
[EMAIL PROTECTED]   http://www.debian.org/


signature.asc
Description: Digital signature


Bug#354575: csmash: Package uninstallable.

2006-03-06 Thread Ben Hutchings
This is a symptom of the problem described on
http://lists.debian.org/debian-devel/2005/10/msg01206.html, which also
describes a workaround.  (The general-case fix requires creation of a
second variable and adjustment of many source packages to use it.)

Ben.

-- 
Ben Hutchings
I say we take off; nuke the site from orbit.  It's the only way to be sure.


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


Bug#355565: mozilla-browser: mozilla unable to start

2006-03-06 Thread Eric Van Buggenhaut
Package: mozilla-browser
Version: 2:1.7.12-1.1
Severity: grave
Justification: renders package unusable

mozilla won't start anymore on my system. It waits for a read forever:

[...]
stat64(/dev/dsp, {st_mode=S_IFCHR|0660, st_rdev=makedev(14, 3), ...}) 
= 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
pipe([3, 4])= 0
rt_sigprocmask(SIG_BLOCK, [CHLD], [], 8) = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
rt_sigprocmask(SIG_BLOCK, [INT CHLD], [], 8) = 0
_llseek(255, -7186, [1993], SEEK_CUR)   = 0
clone(child_stack=0, 
flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, ch
ild_tidptr=0xb7e44928) = 1675
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
rt_sigaction(SIGCHLD, {0x807b7c0, [], 0}, {0x807b7c0, [], 0}, 8) = 0
close(4)= 0
read(3,  unfinished ...

Attached is the complete log


-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.14.2n
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15) (ignored: 
LC_ALL set to [EMAIL PROTECTED])

Versions of packages mozilla-browser depends on:
ii  debconf   1.4.70 Debian configuration management sy
ii  libatk1.0-0   1.10.3-1   The ATK accessibility toolkit
ii  libc6 2.3.5-13   GNU C Library: Shared libraries an
ii  libcairo2 1.0.2-3The Cairo 2D vector graphics libra
ii  libfontconfig12.3.2-1.1  generic font configuration library
ii  libgcc1   1:4.0.2-9  GCC support library
ii  libglib2.0-0  2.8.6-1The GLib library of C routines
ii  libgtk2.0-0   2.8.12-1   The GTK+ graphical user interface 
ii  libkrb53  1.4.3-5MIT Kerberos runtime libraries
ii  libnspr4  2:1.7.12-1.1   Netscape Portable Runtime Library
ii  libpango1.0-0 1.10.3-1   Layout and rendering of internatio
ii  libstdc++64.0.2-9The 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  libxp66.9.0.dfsg.1-4 X Window System printing extension
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  psmisc22.1-1 Utilities that use the proc filesy

Versions of packages mozilla-browser recommends:
ii  mozilla-psm 2:1.7.12-1.1 The Mozilla Internet application s
pn  myspell-en-us | myspell-dic none   (no description available)

-- debconf information:
* mozilla/dsp: auto
  mozilla/locale_auto: true
* mozilla/xprint:
* mozilla/prefs_note:
execve(/usr/bin/mozilla, [mozilla], [/* 36 vars */]) = 0
uname({sys=Linux, node=atto, ...})  = 0
brk(0)  = 0x80f5000
access(/etc/ld.so.nohwcap, F_OK)  = -1 ENOENT (No such file or directory)
access(/etc/ld.so.preload, R_OK)  = -1 ENOENT (No such file or directory)
old_mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0xb7fd1000
open(/etc/ld.so.cache, O_RDONLY)  = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=56089, ...}) = 0
old_mmap(NULL, 56089, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb7fc3000
close(3)= 0
access(/etc/ld.so.nohwcap, F_OK)  = -1 ENOENT (No such file or directory)
open(/lib/libncurses.so.5, O_RDONLY)  = 3
read(3, \177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0p\343\0..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0644, st_size=268396, ...}) = 0
old_mmap(NULL, 273580, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 
0xb7f8
old_mmap(0xb7fba000, 36864, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x39000) = 0xb7fba000
close(3)= 0
access(/etc/ld.so.nohwcap, F_OK)  = -1 ENOENT (No such file or directory)
open(/lib/tls/libdl.so.2, O_RDONLY)   = 3
read(3, \177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\20\f\0..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0644, st_size=9592, ...}) = 0
old_mmap(NULL, 12404, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 
0xb7f7c000
old_mmap(0xb7f7e000, 8192, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0xb7f7e000
close(3)= 0
access(/etc/ld.so.nohwcap, F_OK) 

Bug#355361: network-manager-gnome: Not member of group netdev

2006-03-06 Thread giskard
Il giorno lun, 06/03/2006 alle 13.10 +0100, Oystein Gisnas ha scritto:

 Did Chris Hanson say he run nm-applet with a user that was in the
 netdev group? I had the same problems as Chris until I added myself to
 the group.

README.Debian tells you to do this.

 First, the error message could have given more clues about a
 resolution. If the applet is to be added from the Add applet..-menu
 one day, it would be more user-friendly with a popup informing of the
 missing permissions, and suggesting to check netdev membership.

nm-applet is not an standard applet, please read this:
http://mail.gnome.org/archives/networkmanager-list/2006-March/msg00107.html


 Until then, README.Debian should mention
 that the running user must be member of netdev.

please take a look on /usr/share/doc/network-manager/README.Debian

anyway, what you have to do is restart manually dbus.
-- 
ciao, giskard

D: marty! non stai pensando quadrimensionalmente!
M: lo so.. e' che mi rimane difficile..





signature.asc
Description: Questa parte del messaggio è firmata


Bug#355554: squashfs: Building modules to out-of-tree

2006-03-06 Thread Roland Stigge
Hi Daniel,

thanks for your work and sorry for the delay.

Daniel Baumann wrote:
 as I wrote you a few days ago, we want the module packages for squashfs
 autobuilt (needed for Debian Live[0]). As I didn't got any answer so
 far, I made the package[1] on my own. I tested it successfully on amd64,
 i386, powerpc and sparc.
 
 We have now two possibilities:
 
   * If you agree, I upload the package which replaces the current
 squashfs package (prefered).
 
   * If you don't agree, I upload the package with a different source
 name (making the squashfs package obselete)

No, please don't do neither. Arnaud is already investigating this issue.
Please coordinate with him. Maybe your patch can just be applied to the
current version (Arnaud, please check the diffs carefully because of
other changes like docs etc.).

You are welcome to be added to the list of comaintainers! Maybe it's
time to create a team maintenance project at alioth? Arnaud?

Thanks,

bye,
  Roland


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



Bug#355567: cacti changes ownership in all /var/log

2006-03-06 Thread Kefalas Apostolos
Package: cacti
Version: 0.8.6c-7sarge2


Installation of cacti changes the ownership of all directories of /var/log. 
This causes problems on other daemons that wan to write to logfiles and 
suddenly loose their permissions. For example:

# ls -al /var/log/exim4/
total 56
drwxr-s---   2 cacti   adm  4096 Mar  6 06:26 .
drwxr-xr-x  14 cacti   root 4096 Mar  6 06:26 ..
-rw-r-   1 Debian-exim adm  2488 Mar  6 15:07 mainlog
-rw-r-   1 Debian-exim adm  5362 Mar  6 06:07 mainlog.1
-rw-r-   1 Debian-exim adm   551 Feb 26 06:26 mainlog.10.gz


#cat /var/log/syslog

[snip]

Mar  5 06:26:02 router exim[3280]: 2006-03-05 06:26:02 1FFknm-qu-F8 Cannot 
open main log file /var/log/exim4/mainlog:
Permission denied: euid=102 egid=102
Mar  5 06:26:02 router exim[3280]: exim: could not open panic log - aborting: 
see message(s) above

[snip]

Solution

# chown Debian-exim:adm /var/log/exim4



Regards
Apostolos


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



Bug#355566: python2.3-dev: Broken dependencies on python2.3

2006-03-06 Thread Robin Haswell
Package: python2.3-dev
Severity: grave
Justification: renders package unusable

Package not installable, which renders all python setup scripts
uninstallable, which results in a whole world of hurt:

[EMAIL PROTECTED]:~$ sagi python2.3-dev
Reading Package Lists... Done
Building Dependency Tree   
Reading extended state information  
Initializing package states... Done
Reading task descriptions... Done  
E: Unable to correct problems, you have held broken packages.
E: Unable to correct dependencies, some packages cannot be installed
E: Unable to resolve some dependencies!
Some packages had unmet dependencies.  This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.

The following packages have unmet dependencies:
  python2.3-dev: Depends: python2.3 (= 2.3.5-3sarge1) but 2.3.5-4 is
  installed.

[EMAIL PROTECTED]:~$ aptitude show python2.3 
Package: python2.3
State: installed
Automatically installed: no
Version: 2.3.5-4

[EMAIL PROTECTED]:~$ cat /etc/apt/sources.list 
deb ftp://ftp.de.debian.org/debian/ stable main non-free contrib
deb-src ftp://ftp.de.debian.org/debian/ stable main non-free contrib

deb http://security.debian.org/ stable/updates main contrib non-free


#deb file:///cdrom/ stable main

#deb http://ftp.uk.debian.org/debian/ stable main
#deb-src http://ftp.uk.debian.org/debian/ stable main

#deb http://security.debian.org/ stable/updates main


-- System Information:
Debian Release: testing/unstable
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.4.27-2-k7
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)


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



Bug#308911: perhaps a documentation issue?

2006-03-06 Thread Jon Dowland
I've just been bitten by this bug.

I can understand not changing the behaviour wrt historical
precedent: I have been told that people used to rely on the
ignore-dot mechanism to disable things (e.g.
mv foo foo.disabled).

However I think this could be much better documented as it
seems to trip a lot of people up. Apart from re-wording the
manpage, the --verbose option could indicate files it is
skipping as well as ones it is considering (or perhaps a new
flag could be added) 

I shall see what I can knock-up :-)

-- 
Jon Dowland
http://alcopop.org/


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



Bug#354355: New debian sympa package

2006-03-06 Thread Jean Charles Delepine
Stefan Hornburg [EMAIL PROTECTED] écrivait (wrote) :

 I already fixed a couple of issues for 5.1.2 in my private source tree.
 I'll browse through your package and merge our efforts real soon now.

That was one week ago.

$ apt-cache policy sympa
sympa:
  Installed: 5.1.2-cvs.20060224-0.1
  Candidate: 5.1.2-cvs.20060224-0.1
  Version Table:
 *** 5.1.2-cvs.20060224-0.1 0
500 http://macallan.u-picardie.fr ./ Packages
100 /var/lib/dpkg/status
 5.1-0.0.7 0
500 http://debian.linuxia.de sympa-dev/main Packages
 4.1.5-7 0
100 ftp://mathusalem.u-picardie.fr testing/main Packages
 10 ftp://mathusalem.u-picardie.fr unstable/main Packages
 4.1.5-2 0
900 ftp://mathusalem.u-picardie.fr stable/main Packages

Can your private source tree become somewhat public ?

-- 
 R : Tu vois !|| Jean Charles Delépine - Université de Picardie
  Q : Tu crois ?  
   R : Ça casse l'ordre chronologique de l'échange.
Q : En quoi répondre au dessus est-il gênant ?



Bug#354872: Not quite what I expected

2006-03-06 Thread Taral
I'm sorry, I must not have been clear. The problem here isn't that amd64
wasn't registerised (that was already noted). It was that unregisterised
build need to have the NCG disabled to prevent them having this same
problem.

I'm sure it's just a small patch to the build.mk data, but I'm not
familiar enough with ghc to make up a patch.

-- 
Taral [EMAIL PROTECTED]
This message is digitally signed. Please PGP encrypt mail to me.
A: Because it fouls the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?


pgpQ8nTB3bna3.pgp
Description: PGP signature


  1   2   3   4   >