Bug#392305: aptitude: Fake bug to collect translation updates

2006-10-10 Thread Christian Perrier
Package: aptitude
Version: 0.4.3-1
Severity: wishlist
Tags: l10n

This bug will collect all translation updates when I will soon send the call
for updates to translators.

It will avoid many bug being opened very quickly which makes handling the
debian/changelog file more painful. It is recommended practice when doing
mass call for updates.

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

Versions of packages aptitude depends on:
ii  apt [libapt-pkg-libc6.3-6-3. 0.6.46.1Advanced front-end for dpkg
ii  libc62.3.6.ds1-5 GNU C Library: Shared libraries
ii  libgcc1  1:4.1.1-15  GCC support library
ii  libncursesw5 5.5-4   Shared libraries for terminal hand
ii  libsigc++-2.0-0c2a   2.0.17-2type-safe Signal Framework for C++
ii  libstdc++6   4.1.1-15The GNU Standard C++ Library v3

Versions of packages aptitude recommends:
ii  aptitude-doc-en [aptitude-doc 0.4.3-1English manual for aptitude, a ter
ii  aptitude-doc-fr [aptitude-doc 0.4.3-1French manual for aptitude, a term

-- no debconf information


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



Bug#390888: [Pbuilder-maint] Bug#390888: Full support for experimental

2006-10-10 Thread Loïc Minier
On Wed, Oct 11, 2006, Junichi Uekawa wrote:
> Hearing that I feel positive about merging this patch.
> 1. could you re-send the patch in a non-incremental form so that it's
>easier to apply?

 Sure.  I also kept the patch split because I found the second change
 more intrusive and because it was an optional extension to the first.
 I thought you would commit those separately.  I think it's easier to
 merge the two patches separately.

 I attach a combined diff.

> 2. It might not be suitable for etch release if it's happening in two
>months time.

 There's time to rollback the change if necessary.  The second change is
 sufficiently separate that its behavior can be made configurable.

-- 
Loïc Minier <[EMAIL PROTECTED]>
diff -urN pbuilder-0.159/debian/changelog pbuilder-0.161/debian/changelog
--- pbuilder-0.159/debian/changelog 2006-09-26 00:49:04.0 +0200
+++ pbuilder-0.161/debian/changelog 2006-10-11 08:14:05.0 +0200
@@ -1,3 +1,24 @@
+pbuilder (0.160) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Drop an useless awk invocation in pbuilder-satisfydepends.
+  * Add and use new package_versions() and candidate_version() helpers; the
+former returns all versions of a package available via APT, the later
+APT's candidate version.
+  * For versionned build-deps, when building the "apt-get install" command,
+try APT's candidate version or all available versions available from APT
+in ascending order (the reverse order of apt-cache's output);
+checkbuilddep_versiondeps() isn't used for this part of the process
+anymore, but it is still used to honor build-conflicts.
+  * Recover from APT errors caused by unsufficient dependencies ("libfoo-dev
+Depends: bar but baz is to be installed") and missing dependencies
+("libfoo-dev Depends: bar but it is not going to be installed"); this
+permits simply listing build-deps when uploading to experimental; achieved
+by moving the version matching logic in the new versioneddep_to_aptcmd()
+helper.
+
+ -- Loic Minier <[EMAIL PROTECTED]>  Tue,  3 Oct 2006 14:32:58 +0200
+
 pbuilder (0.159) unstable; urgency=low
 
   [Junichi Uekawa]
diff -urN pbuilder-0.159/pbuilder-satisfydepends 
pbuilder-0.161/pbuilder-satisfydepends
--- pbuilder-0.159/pbuilder-satisfydepends  2006-05-31 01:45:45.0 
+0200
+++ pbuilder-0.161/pbuilder-satisfydepends  2006-10-04 09:47:02.0 
+0200
@@ -21,11 +21,21 @@
 
 set -e
 
+function package_versions() {
+   local PACKAGE="$1"
+   ( $CHROOTEXEC /usr/bin/apt-cache show "$PACKAGE" ) | sed -n 
's/^Version: \(.*\)$/\1/p'
+}
+
+function candidate_version() {
+   local PACKAGE="$1"
+   LC_ALL=C $CHROOTEXEC apt-cache policy "$PACKAGE" | sed -n 's/ 
*Candidate: *\(.*\)/\1/p'
+}
+
 function checkbuilddep_versiondeps () {
 local PACKAGE="$1"
 local COMPARESTRING="$2"
 local DEPSVERSION="$3"
-local PACKAGEVERSIONS=$( ( $CHROOTEXEC /usr/bin/apt-cache show "$PACKAGE" 
) | sed -n  's/^Version: \(.*\)$/\1/p' | xargs)
+local PACKAGEVERSIONS=$( package_versions "$PACKAGE" | xargs)
 # no versioned provides.
 if [ "${FORCEVERSION}" = "yes" ]; then
return 0;
@@ -83,6 +93,43 @@
 PROVIDED=$($CHROOTEXEC /usr/bin/apt-cache showpkg $PACKAGENAME | awk 
'{p=0}/^Reverse Provides:/,/^$/{p=1}{if(p && ($0 !~ "Reverse 
Provides:")){PACKAGE=$1}} END{print PACKAGE}')
 }
 
+# returns either "package=version", to append to an apt-get install line, or
+# package
+function versioneddep_to_aptcmd () {
+   local INSTALLPKG="$1"
+
+   local PACKAGE
+   local PACKAGE_WITHVERSION
+   local PACKAGEVERSIONS
+   local CANDIDATE_VERSION
+   local COMPARESTRING
+   local DEPSVERSION
+
+   PACKAGE="$(echo "$INSTALLPKG" | sed -e 's/^[/]*//' -e 's/[[/(].*//')"
+   PACKAGE_WITHVERSION="$PACKAGE"
+
+   # if not versionned, we skip directly to outputting $PACKAGE
+   if echo "$INSTALLPKG" | grep '[(]' > /dev/null; then
+   # package versions returned by APT, in reversed order
+   PACKAGEVERSIONS="$( package_versions "$PACKAGE" | tac | xargs )"
+   CANDIDATE_VERSION="$( candidate_version "$PACKAGE" )"
+
+   # try the candidate version, then all available versions (asc)
+   for VERSION in $CANDIDATE_VERSION $PACKAGEVERSIONS; do
+   COMPARESTRING=$(echo "$INSTALLPKG" | tr "/" " " | sed 's/^.*([ 
]*\(<<\|<=\|>=\|=\|<\|>>\|>\)[ ]*\(.*\)).*$/\1/')
+   DEPSVERSION="$(echo "$INSTALLPKG" | tr "/" " " | sed 's/^.*([ 
]*\(<<\|<=\|>=\|=\|<\|>>\|>\)[ ]*\(.*\)).*$/\2/')"
+   if dpkg --compare-versions "$VERSION" "$COMPARESTRING" 
"$DEPSVERSION"; then
+   if [ $VERSION != $CANDIDATE_VERSION ]; then
+   PACKAGE_WITHVERSION="$PACKAGE=$VERSION"
+   fi
+   break;
+   fi
+   done
+   fi
+
+   echo "$PACKAGE_WITHVERSION"
+}
+
 function checkbuilddep_inte

Bug#392168: please implement timeout for initramfs /bin/resume call

2006-10-10 Thread martin f krafft
also sprach Tim Dijkstra <[EMAIL PROTECTED]> [2006.10.10.2303 +0200]:
> Why would that be useful? The idea of the prompt is to give people the
> opportunity to save the resume process when their initramfs is faulty.
> Also this generically will not happen more then once, so it can't get really
> annoying IMHO.
> 
> A few questions to you: Did this actually happen to you? I guess you
> were not using initramfs-tools?

Of course it happens to me and of course it happens with
initramfs-tools. The problem is quite simple:
/etc/initramfs-tools/conf.d/resume has /dev/sdb2 but the 2.6.18
kernel decided to make that disk /dev/sdf out of the blue, and
/dev/sdb is now my CF-card reader. Not much of a big deal since I am
using labels and RAID anyway, but of course, /dev/sdb2 now no longer
exists.

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


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


Bug#392306: squirrelmail: should suggest php4-ldap

2006-10-10 Thread Alexandra N. Kossovsky
Package: squirrelmail
Version: 2:1.4.4-9
Severity: wishlist

squirrelmail has support for LDAP addressbook, but this support can't be
enabled without php4-ldap installed (or php-ldap for etch). Moreover, there
is no error message when php-ldap is not installed and you are trying to
enable LDAP addressbook, making things more difficult.

Please, add php-ldap to Suggests list. Itmay be useful to put a note into
README.Debian about LDAP addressbook and php-ldap.

Thank you for your work.

-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.17-2-686
Locale: LANG=POSIX, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8)

Versions of packages squirrelmail depends on:
hi  apache2-mpm-prefork [h 2.0.54-5sarge2ol1 traditional model for Apache2
ii  libapache2-mod-php44:4.3.10-16   server-side, HTML-embedded scripti
ii  perl   5.8.4-8sarge5 Larry Wall's Practical Extraction 
ii  squirrelmail-locales   1.4.4-20050308-1  Translations for the SquirrelMail 

-- no debconf information

-- 
Alexandra N. Kossovsky
OKTET Labs (http://www.oktetlabs.ru/)
Phones: +7(812)184-52-58(home) +7(812)956-42-86(mobile) +7(812)428-67-09(office)
e-mail: [EMAIL PROTECTED]


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



Bug#392303: modprobe sunlance -v fails during HW detection

2006-10-10 Thread David Chaney
Subject: modprobe sunlance -v fails during HW detection on Sparc LX install
Package: install
Severity: normal

*** Please type your report below this line ***

I found a problem when installing debian on a Sparc LX using the netboot image found at:
ftp.debian.org/debian/dists/sarge/main/installer-sparc/current/images/sparc32/netboot/boot.img

I am reporting this as a bug because this problem does not occur when
using an older version of the same image, found at:
ftp.debian.org/debian/dists/sarge/main/installer-sparc/20050305/images/sparc32/netboot/boot.img

The problem is during the install when the network hardware is detected
the process stops with an error saying that "modprobe -v sunlance"
failed. The module for the onboard network card is not loaded and
installation can not continue since there is no other network interface.
When using the older netboot image dated from March 2005 the network
detection works, the module for the onboard network card is loaded and
installation continues.

Thank you for the excellent work and fine operating system.
David Chaney

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



Bug#392302: screen doesn't understand window resize

2006-10-10 Thread Alexander Samad
Package: screen
Version: 4.0.2-4.1
Severity: important


Start a windows on a local machine rxvt, ssh to remote machine, start
screen -DR test, open vim /etc/squid/squid.conf (or any other long
file), then resize the window and the resize doesn't seems to pass
through to screen.  vim gets confused now, ctrl-a i shows wrong
dimensions ?

Alex


-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing'), (250, 'unstable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.17-1-amd64-k8-smp
Locale: LANG=en_AU.utf8, LC_CTYPE=en_AU.utf8 (charmap=ANSI_X3.4-1968) (ignored: 
LC_ALL set to C)

Versions of packages screen depends on:
ii  base-passwd 3.5.11   Debian base system master password
ii  debconf 1.5.5Debian configuration management sy
ii  libc6   2.3.6.ds1-4  GNU C Library: Shared libraries
ii  libncursesw55.5-3Shared libraries for terminal hand
ii  libpam0g0.79-3.2 Pluggable Authentication Modules l
ii  passwd  1:4.0.18.1-3 change and administer password and

screen recommends no packages.

-- debconf information:
  screen/old_upgrade_prompt: false


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



Bug#392304: joe: yet another segfault: alt/x enter segfault(loss of data)

2006-10-10 Thread Mark Robinson
Package: joe
Version: 3.5-1
Severity: grave
Justification: causes non-serious data loss

alt/x enter segfault(loss of data)

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

Versions of packages joe depends on:
ii  libc62.3.6.ds1-6 GNU C Library: Shared libraries
ii  libncurses5  5.5-4   Shared libraries for terminal hand

joe recommends no packages.

-- no debconf information


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



Bug#392214: [INTL:nl] Updated dutch po-debconf translation

2006-10-10 Thread Christian Perrier
> Please find attached the updated dutch po-debconf translation.
> This translation has been vetted by the review process of the
> debian-l10n-dutch team.
> Please add it to your next package revision, it should be
> inserted in your package build-tree as debian/po/nl.po.
> 
> Feel free to mail me if this file needs updating at some future
> date.


Thanks. Camm, this would need to be added to the tarball I sent you,
as debian/po/nl.po




signature.asc
Description: Digital signature


Bug#392268: hibernate: should run 'sensors -s' after resume if lm-sensors installed

2006-10-10 Thread martin f krafft
severity 392268 wishlist
thanks

> After resume, the sensors limits are not set. I think the easiest
> solution is adding
>   StartServices lm-sensors

Yes, this would work.

> to the config file, but maybe this is a problem worth solving with
> an ad-hoc scriptlet (which I would be writing if it wasn't this
> late ;).

You can write the scriptlet, but I will wait for Bernard (the
upstream) to make a decision to include it or not. Bernard should be
back next in a couple of weeks.

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


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


Bug#392301: fftw3: please upgrade to gfortran from g77

2006-10-10 Thread Warren Turkal
Package: fftw3
Version: 3.1.2-1
Severity: normal
Tags: patch

Please upgrade the build-deps to include gfortran instead of g77.

wt


diff -u3 fftw3-3.1.2.old/debian/control fftw3-3.1.2/debian/control
--- fftw3-3.1.2.old/debian/control  2006-10-10 23:20:45.0 -0600
+++ fftw3-3.1.2/debian/control  2006-10-10 23:22:07.412081950 -0600
@@ -2,7 +2,7 @@
 Section: libs
 Priority: optional
 Maintainer: Paul Brossier <[EMAIL PROTECTED]>
-Build-Depends: g77, debhelper (>=4.0.0)
+Build-Depends: gfortran, debhelper (>=4.0.0)
 Build-Depends-Indep: transfig, texinfo, gs-gpl
 Standards-Version: 3.7.2
 
diff -u3 fftw3-3.1.2.old/debian/rules fftw3-3.1.2/debian/rules
--- fftw3-3.1.2.old/debian/rules2006-10-10 23:20:45.0 -0600
+++ fftw3-3.1.2/debian/rules2006-10-10 23:23:53.885938626 -0600
@@ -46,13 +46,13 @@
 
 build-arch:
# single precision
-   $(SETCFLAGS) ./configure --enable-single $(archconfflags) 
$(archconfflags_single)
+   $(SETCFLAGS) F77=gfortran ./configure --enable-single $(archconfflags) 
$(archconfflags_single)
$(MAKE)
( cd tests ; $(MAKE) smallcheck )
$(MAKE) install DESTDIR=`pwd`/debian/tmp-single
#
# double precision
-   $(SETCFLAGS) ./configure $(archconfflags) $(archconfflags_double)
+   $(SETCFLAGS) F77=gfortran ./configure $(archconfflags) 
$(archconfflags_double)
$(MAKE)
( cd tests ; $(MAKE) smallcheck )
$(MAKE) install DESTDIR=`pwd`/debian/tmp-double
@@ -61,7 +61,7 @@
# build only on architectures where double != long-double
gcc -o test_long_long-double debian/test_long_long-double.c 
if ! ./test_long_long-double; then \
-   $(SETCFLAGS) ./configure --enable-long-double $(archconfflags) 
&& \
+   $(SETCFLAGS) F77=gfortran ./configure --enable-long-double 
$(archconfflags) && \
$(MAKE) && \
( cd tests ; $(MAKE) smallcheck ) && \
$(MAKE) install DESTDIR=`pwd`/debian/tmp-long-double; \

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


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



Bug#392267: Upstream bugs

2006-10-10 Thread Alexis Sukrieh

tags 392267 + upstream
tags 392269 + upstream
tags 392270 + upstream
thanks

All those bugs are about upstream feature-request.
Please submit them upstream: http://bugzilla.mozilla.org, the debian 
package isn"t there for changing the software behaviour.




--
Alexis Sukrieh
  [EMAIL PROTECTED]
0x1EE5DD34[EMAIL PROTECTED]

The real glory of maintainership isn't making the big and important
decisions. The real glory lies in all the small stuff that doesn't
really matter, and that people will just argue forever.

  -- Linus Torvalds


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



Bug#390325: Fails to install

2006-10-10 Thread Steve Langasek
severity 390325 important
thanks

According to the debconf information included in your bug report, you were
shown and answered this question:

  bonsai/mysql_available: false

>From the package, this question is:

Description: Do you have a MySQL server somewhere on your network?
 The Bonsai package does not declare a mandatory package dependency on
 the MySQL server package, since Bonsai can use a remote MySQL database.
 To complete Bonsai configuration, access to a MySQL server is required.
 .
 Answering no to this question will make Bonsai configuration fail and
 let you install a MySQL server.

So the package clearly states the consequences of answering this question
with the non-default answer you have given.

You are correct that the problem cannot be fixed with dpkg-reconfigure
(though I'm not sure why); you should be able to fix the problem by either
purging the package and reinstalling it, or manually editing your debconf
cache, or calling dpkg --configure with the debconf env var that forces all
questions to be re-shown.

Downgrading because I don't see grounds for an RC severity here.

Thanks,
-- 
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/


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



Bug#392300: libapt-front: FTBFS (amd64/ia64): internal compiler error/problem with -gstabs+

2006-10-10 Thread Andreas Jochens
Package: libapt-front
Version: 0.3.11
Severity: serious
Tags: patch

When building 'libapt-front' on amd64/unstable,
I get the following error:

/bin/sh ../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I. -I..
-I../tests/ -I.. -DTEST_DIR=\"`pwd`/../tests/data/\" 
-I/usr/include/tagcoll-1.6.3   -Wall -W -g -Wall -O2 -gstabs+ -c -o 
cache/component/libapt_front_la-state.lo `test -f 'cache/component/state.cpp' 
|| echo './'`cache/component/state.cpp
 g++ -DHAVE_CONFIG_H -I. -I. -I.. -I../tests/ -I.. 
-DTEST_DIR=\"/libapt-front-0.3.11/apt-front/../tests/data/\" 
-I/usr/include/tagcoll-1.6.3 -Wall -W -g -Wall -O2 -gstabs+ -c 
cache/component/state.cpp  -fPIC -DPIC -o 
cache/component/libapt_front_la-state.o
../apt-front/cache/entity/relation.h:64: warning: unused parameter 'd'
cache/component/state.cpp: In static member function 'static std::string 
aptFront::cache::component::State::sizeString(double)':
cache/component/state.cpp:179: internal compiler error: output_operand: invalid 
expression as operand
Please submit a full bug report,
with preprocessed source if appropriate.
See http://gcc.gnu.org/bugs.html> for instructions.
For Debian GNU/Linux specific bug reporting instructions,
see .
Preprocessed source stored into /tmp/ccI2QkIc.out file, please attach this to 
your bugreport.
make[4]: *** [cache/component/libapt_front_la-state.lo] Error 1
make[4]: Leaving directory `/libapt-front-0.3.11/apt-front'

The build log for ia64 shows the following error:

make[4]: Entering directory `/build/buildd/libapt-front-0.3.11/apt-front'
/bin/sh ../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I. -I..
-I../tests/ -I.. -DTEST_DIR=\"`pwd`/../tests/data/\" 
-I/usr/include/tagcoll-1.6.3   -Wall -W -g -Wall -O2 -gstabs+ -c -o 
libapt_front_la-sources.lo `test -f 'sources.cpp' || echo './'`sources.cpp
 g++ -DHAVE_CONFIG_H -I. -I. -I.. -I../tests/ -I.. 
-DTEST_DIR=\"/build/buildd/libapt-front-0.3.11/apt-front/../tests/data/\" 
-I/usr/include/tagcoll-1.6.3 -Wall -W -g -Wall -O2 -gstabs+ -c sources.cpp  
-fPIC -DPIC -o libapt_front_la-sources.o
sources.cpp:1: error: target system does not support the "stabs" debug format

With the attached patch 'libapt-front' can be compiled on amd64.

Regards
Andreas Jochens

diff -urN ../tmp-orig/libapt-front-0.3.11/configure ./configure
--- ../tmp-orig/libapt-front-0.3.11/configure   2006-10-04 20:31:42.0 
+
+++ ./configure 2006-10-10 20:55:21.0 +
@@ -23519,7 +23519,7 @@
 debtagsdatadir="$datadir/debtags"
 
 
-CXXFLAGS="-Wall -W $CXXFLAGS -gstabs+"
+CXXFLAGS="-Wall -W $CXXFLAGS"
 
 ac_config_files="$ac_config_files po/Makefile.in Makefile apt-front/Makefile 
tests/Makefile utils/Makefile doc/Makefile doc/libapt-front.dox libapt-front.pc"
 
diff -urN ../tmp-orig/libapt-front-0.3.11/configure.ac ./configure.ac
--- ../tmp-orig/libapt-front-0.3.11/configure.ac2006-10-04 
20:30:58.0 +
+++ ./configure.ac  2006-10-10 20:46:17.0 +
@@ -50,7 +50,7 @@
 debtagsdatadir="$datadir/debtags"
 AC_SUBST(debtagsdatadir)
 
-CXXFLAGS="-Wall -W $CXXFLAGS -gstabs+"
+CXXFLAGS="-Wall -W $CXXFLAGS"
 
 AC_CONFIG_FILES([ po/Makefile.in
 Makefile


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



Bug#305950: svk upstream has bash completion module...

2006-10-10 Thread Yaroslav Halchenko
Package: svk
Version: 1.08-1
Followup-For: Bug #305950

Please have a look at
https://launchpad.net/distros/ubuntu/+source/svk/+bug/32312
(so yes... ubuntu has it fixed...  heh heh)

and in the upstream sources - ./contrib/svk-completion.pl is there.

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

Versions of packages svk depends on:
ii  libalgorithm-annotate-perl0.10-1 represent a series of changes in a
ii  libalgorithm-diff-perl1.19.01-2  a perl library for finding Longest
ii  libclass-autouse-perl 1.23-1 Defer loading ( 'use'ing ) of a cl
ii  libclone-perl 0.18-1 recursively copy Perl datatypes
ii  libcompress-zlib-perl 1.42-1 Perl module for creation and manip
ii  libdata-hierarchy-perl0.21-1 Handle data in a hierarchical stru
ii  libfile-type-perl 0.22-1 determine file type using magic st
ii  libfreezethaw-perl0.43-3 converting Perl structures to stri
ii  libio-digest-perl 0.10-1 Calculate digests while reading or
ii  libio-string-perl 1.08-1 Emulate IO::File interface for in-
ii  liblocale-maketext-lexicon-pe 0.62-1 Lexicon-handling backends for "Loc
ii  liblocale-maketext-simple-per 0.12-2 Simple interface to Locale::Makete
ii  libperlio-eol-perl0.13-1 PerlIO layer for normalizing line 
ii  libperlio-via-dynamic-perl0.11-1 dynamic PerlIO layers
ii  libperlio-via-symlink-perl0.05-1 PerlIO layers for create symlinks
ii  libpod-simple-perl3.04-1 Perl framework for parsing files i
ii  libregexp-shellish-perl   0.93-1 Shell-like regular expressions
ii  libsvn-core-perl  1.3.2-6Perl bindings for Subversion
ii  libsvn-mirror-perl0.68-2 A subversion repository mirroring 
ii  libsvn-simple-perl0.27-1 A simple interface for writing a d
ii  libtext-diff-perl 0.35-2 Perform diffs on files and record 
ii  libtimedate-perl  1.1600-5   Time and date functions for Perl
ii  libyaml-perl  0.62-1 YAML Ain't Markup Language (tm)
ii  perl  5.8.8-6.1  Larry Wall's Practical Extraction 
ii  subversion1.4.0-2Advanced version control system

svk recommends no packages.

-- no debconf information


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



Bug#391246: general: Buildds should consider changing $HOME

2006-10-10 Thread Frank Küster
Wouter Verhelst <[EMAIL PROTECTED]> wrote:

>> Steve Langasek <[EMAIL PROTECTED]> wrote:
>> 
>> > On Wed, Oct 04, 2006 at 09:32:16AM +0200, Frank Küster wrote:
>> > 
>> > > However, I'd like to point out that this problem is not special to TeX.
>> > > Many programs create ~/.progname directories when run for the first time
>> > > - and these directories contain configuration options which might cause
>> > > trouble, since they are not updated or subject to dpkg conffile
>> > > questions when the package changes configuration options.  It might be a
>> > > good thing to require such tools to have a commandline switch or obey a
>> > > commandline variable that prevents this.  Alternatively, HOME could be
>> > > set to the temporary build directory, so that everything happens there.
>
> Even more alternatively, these tools should not fail horribly when
> writing to directories in $HOME seems impossible for some reason. That
> falls under 'standard good programming practices'.

This misses the point.  Of course no build process may fail if writing
to $HOME is impossible, and if they do they have a RC bug.

There's a different issue, though:  Many tools create a user-specific
configuration or preferences directory in $HOME when they are first
used.  The problem with that is that these files override the
configuration in /etc/, but are not subject to dpkg conffile handling.
As a result, a tool on a buildd might use settings that were the default
in a previous version, but are now suboptimal.

Of course the clean solution would be to signal to the tools not to look
and write into HOME, but it's hardly realistic to assume that all tools
used (an ever increasing and changing set) will always follow such a
rule.  Therefore the idea to change HOME to something in the build
directory.  Maybe just unsetting it might do as well.

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



Bug#392058: apache2.2-common: apache fails to start

2006-10-10 Thread Steve Langasek
On Tue, Oct 10, 2006 at 10:47:27AM +1300, Ian McDonald wrote:
> Starting web server (apache2)...apache2: Syntax error on line 185 of
> /etc/apache2/apache2.conf: Syntax error on line 1 of
> /etc/apache2/mods-enabled/php5.load: API module structure `php5_module'
> in file /usr/lib/apache2/modules/libphp5.so is garbled - perhaps this is
> not an Apache module DSO?
>  failed!
>   invoke-rc.d: initscript apache2, action "start" failed.

This is because you have installed the one version of libapache2-mod-php5
which apache2.2-common does not conflict with, that was uploaded against the
wrong ABI.  The conflict needs to be updated, but this is not
release-critical.

> When I comment these out it still fails:

>   Starting web server (apache2)...Syntax error on line 141 of
>   /etc/apache2/apache2.conf:
>   Invalid command 'Order', perhaps misspelled or defined by a module not
>   included in the server configuration
>failed!

> This section of the file is:

> 
> Order allow,deny
> Deny from all
> 

> and then I comment and it fails:

>Starting web server (apache2)...Syntax error on line 142 of
>/etc/apache2/apache2.conf:
>Invalid command 'Deny', perhaps misspelled or defined by a module not
>included in the server configuration
> failed!

> and then I gave up.

I'm not sure what the root cause of this is, but it looks like mod_access
(or the apache2 equivalent?) is no longer being compiled into the binary as
it was in previous versions.  That might warrant an RC severity on its own..

-- 
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/


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



Bug#392298: firefox: When highlighting selection, FF now only prints one page

2006-10-10 Thread Rodney Gordon II
Package: firefox
Version: 1.5.dfsg+1.5.0.7-2
Severity: normal

Recent upgrade to firefox has been causing some odd printing problems..
I notice a printing patch in apt-listchanges so this may be the cause..

Example:
Go to
http://sfgate.com/cgi-bin/article.cgi?f=/c/a/2006/10/10/BAGERLM3RR15.DTL
(ouch btw.. heh)
Highlight the article all the way down, print selection.

Result: One page is printed.

Thanks!

-r

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

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

firefox recommends no packages.

-- no debconf information


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



Bug#392207: libvlc0: BadWindow request crashes vlc

2006-10-10 Thread bluesdog
Package: libvlc0
Version: 0.8.6-svn20061008.debian-1
Severity: important

> I'm filing this as important rather than grave, since I'm guessing other
> users aren't seeing this problem...
> 

I did.

'Fix' was downgrading as noted.

Regards,

bd


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



Bug#391126:

2006-10-10 Thread Ola Lundqvist
Hi again

I have thought some more and realize that you may be talking about the
client only, or?

As far as I know vnc have no problem at all to connect to public servers
from inside a NAT:ed network.

Regards,

// Ola

On Tue, Oct 10, 2006 at 01:24:16PM -0400, Jason Spiro wrote:
> Regarding the Tor option: Perhaps there could be a command-line switch
> added to the tightvnc server to cause it to run as a Tor hidden
> service ( a server ending in whose "hostname" ends in .onion: see
> http://tor.eff.org/docs/tor-hidden-service.html ). Then, users could
> run a command such as:
> 
> runsocks xtightvncviewer mejokbp2brhw4omd.onion
> 
> and be connected to the server instantly.
> 
> Someone has done VNC+Ventrilo+Tor work before and put up instructions
> on the Internet:
> http://wiki.noreply.org/noreply/TheOnionRouter/AnonymousPublicSpeech
> 
> But in general, it should be easier to set up than this. Ideally,
> there would be a free public service like the combination of
> www.logmeinrescue.com + www.logmein123.com that would make this whole
> thing easy to set up (the whole thing of VNC between two PCs behind
> different NAT routers.)
> 
> -- 
> Jason Spiro: computer consulting with a smile.
> I also provide training and spyware removal services for homes and 
> businesses.
> Call or email for a FREE 5-minute consultation. Satisfaction guaranteed.
> 416-781-5938 / Email: [EMAIL PROTECTED] / MSN: [EMAIL PROTECTED]
> 
> 

-- 
 - Ola Lundqvist ---
/  [EMAIL PROTECTED] Annebergsslingan 37  \
|  [EMAIL PROTECTED] 654 65 KARLSTAD  |
|  +46 (0)54-10 14 30  +46 (0)70-332 1551   |
|  http://www.opal.dhs.org UIN/icq: 4912500 |
\  gpg/f.p.: 7090 A92B 18FE 7994 0C36  4FE4 18A1 B1CF 0FE5 3DD9 /
 ---


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



Bug#392299: openoffice.org: Hangs on exit, 0% CPU, window remains, SIGKILL required

2006-10-10 Thread Daniel Richard G.
Package: openoffice.org
Version: 2.0.4~rc3-1
Severity: important

I start up the program by invoking "openoffice", wait for the main window 
to come up, and then hit Ctrl-Q to exit.

The window stays up, but is no longer painted. The soffice.bin process 
remains present, taking up memory but no CPU; it responds only to 
SIGKILL, after which the window goes away.

If I quit the program using the drop-down menu, the pointer grab remains in 
the dead window, leaving me little choice but to switch to a VT to kill the 
process.

This problem behavior occurs every time I quit the program---whether a file 
had been loaded or not, or whether the ~/.openoffice.org2 directory was 
previously present or not. Hopefully it will not be difficult to reproduce.


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

Versions of packages openoffice.org depends on:
ii  openoffice.org-base  2.0.4~rc3-1 OpenOffice.org office suite - data
ii  openoffice.org-calc  2.0.4~rc3-1 OpenOffice.org office suite - spre
ii  openoffice.org-core  2.0.4~rc3-1 OpenOffice.org office suite archit
ii  openoffice.org-draw  2.0.4~rc3-1 OpenOffice.org office suite - draw
ii  openoffice.org-impress   2.0.4~rc3-1 OpenOffice.org office suite - pres
ii  openoffice.org-java-common   2.0.4~rc3-1 OpenOffice.org office suite Java s
ii  openoffice.org-math  2.0.4~rc3-1 OpenOffice.org office suite - equa
ii  openoffice.org-writer2.0.4~rc3-1 OpenOffice.org office suite - word

openoffice.org recommends no packages.

-- no debconf information


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



Bug#392297: irda-utils_0.9.18-1(hppa/unstable): FTBFS: bad build-depends?

2006-10-10 Thread lamont
Package: irda-utils
Version: 0.9.18-1
Severity: serious

There was an error while trying to autobuild your package:

> Automatic build of irda-utils_0.9.18-1 on peri by sbuild/hppa 85
> Build started at 20061010-1638

[...]

> ** Using build dependencies supplied by package:
> Build-Depends: libglib1.2-dev, debhelper (>= 4.1.16), pciutils-dev

[...]

> Package glib-2.0 was not found in the pkg-config search path.
> Perhaps you should add the directory containing `glib-2.0.pc'
> to the PKG_CONFIG_PATH environment variable
> No package 'glib-2.0' found

A full build log can be found at:
http://buildd.debian.org/build.php?arch=hppa&pkg=irda-utils&ver=0.9.18-1



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



Bug#391126:

2006-10-10 Thread Ola Lundqvist
Hi

Interesting. The previous mail did not mention tor at all. Why do you want
to use vnc in combination with tor? I can see no use for that. A web server,
yes, but vnc ... no.

But as you say, you want a public free service and that is nothing that
I can create as a Debian package maintainer. Maybe you could start that?

Regards,

// Ola

On Tue, Oct 10, 2006 at 01:24:16PM -0400, Jason Spiro wrote:
> Regarding the Tor option: Perhaps there could be a command-line switch
> added to the tightvnc server to cause it to run as a Tor hidden
> service ( a server ending in whose "hostname" ends in .onion: see
> http://tor.eff.org/docs/tor-hidden-service.html ). Then, users could
> run a command such as:
> 
> runsocks xtightvncviewer mejokbp2brhw4omd.onion
> 
> and be connected to the server instantly.
> 
> Someone has done VNC+Ventrilo+Tor work before and put up instructions
> on the Internet:
> http://wiki.noreply.org/noreply/TheOnionRouter/AnonymousPublicSpeech
> 
> But in general, it should be easier to set up than this. Ideally,
> there would be a free public service like the combination of
> www.logmeinrescue.com + www.logmein123.com that would make this whole
> thing easy to set up (the whole thing of VNC between two PCs behind
> different NAT routers.)
> 
> -- 
> Jason Spiro: computer consulting with a smile.
> I also provide training and spyware removal services for homes and 
> businesses.
> Call or email for a FREE 5-minute consultation. Satisfaction guaranteed.
> 416-781-5938 / Email: [EMAIL PROTECTED] / MSN: [EMAIL PROTECTED]
> 
> 

-- 
 - Ola Lundqvist ---
/  [EMAIL PROTECTED] Annebergsslingan 37  \
|  [EMAIL PROTECTED] 654 65 KARLSTAD  |
|  +46 (0)54-10 14 30  +46 (0)70-332 1551   |
|  http://www.opal.dhs.org UIN/icq: 4912500 |
\  gpg/f.p.: 7090 A92B 18FE 7994 0C36  4FE4 18A1 B1CF 0FE5 3DD9 /
 ---


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



Bug#311187: kernel-image-2.6.8-3-686: kernel panic with Memorex traveldrive 1GB U3 smart usb 2.0

2006-10-10 Thread Daniel Macedo Batista
Package: kernel-image-2.6.8-3-686
Version: 2.6.8-16sarge5
Followup-For: Bug #311187

Two servers running debian stable crashed with kernel panic today in my
organization. The kernel pannic ocurred after the pendrive "Memorex travel
drive" (1GB) be removed. It was not necessary mount the device. Only the
connect and disconnect were enough to crash the servers.

The syslog messages since the connection until the crash in server A were:

###
kernel: usb 3-1: new high speed USB device using address 3
kernel: scsi2 : SCSI emulation for USB Mass Storage devices
kernel:   Vendor: Memorex   Model: Mini TravelDrive  Rev: 6.17
kernel:   Type:   Direct-Access  ANSI SCSI revision: 02
kernel: Attached scsi removable disk sdb at scsi2, channel 0, id 0, lun 0
kernel:   Vendor: Memorex   Model: Mini TravelDrive  Rev: 6.17
kernel:   Type:   CD-ROM ANSI SCSI revision: 02
kernel: sr0: scsi3-mmc drive: 8x/40x writer xa/form2 cdda tray
kernel: Uniform CD-ROM driver Revision: 3.20
kernel: Attached scsi CD-ROM sr0 at scsi2, channel 0, id 0, lun 1
udev[3268]: configured rule in '/etc/udev/rules.d/z_hal-plugdev.rules[2]' 
applied, 'sdb' becomes '%k'
kernel: USB Mass Storage device found at 3
udev[3268]: creating device node '/dev/sdb'
scsi.agent[3306]:  sd_mod: loaded sucessfully (for disk)
udev[3282]: configured rule in '/etc/udev/rules.d/cd-aliases.rules[8]' applied, 
added symlink '%c{1} %c{2} %c{3} %c{4} %c{5} %c{6}'
udev[3282]: configured rule in '/etc/udev/rules.d/udev.rules[20]' applied, 
added symlink 'sr%n'
udev[3282]: configured rule in '/etc/udev/rules.d/udev.rules[20]' applied, 
'sr0' becomes 'scd%n'
udev[3282]: creating device node '/dev/scd0'
scsi.agent[3373]:  sr_mod: loaded sucessfully (for cdrom)
scsi.agent[3373]:  sg: loaded sucessfully (for cdrom)
usb.agent[3358]:  usb-storage: already loaded
kernel: Attached scsi generic sg0 at scsi0, channel 0, id 0, lun 0,  type 0
kernel: Attached scsi generic sg1 at scsi2, channel 0, id 0, lun 0,  type 0
kernel: Attached scsi generic sg2 at scsi2, channel 0, id 0, lun 1,  type 5
udev[3420]: creating device node '/dev/sg0'
udev[3424]: creating device node '/dev/sg1'
udev[3428]: creating device node '/dev/sg2'
kernel: SCSI device sdb: 1994751 512-byte hdwr sectors (1021 MB)
kernel: sdb: assuming Write Enabled
kernel: sdb: assuming drive cache: write through
kernel: SCSI device sdb: 1994751 512-byte hdwr sectors (1021 MB)
kernel: sdb: assuming Write Enabled
kernel: sdb: assuming drive cache: write through
kernel:  /dev/scsi/host2/bus0/target0/lun0: p1
udev[3466]: configured rule in '/etc/udev/rules.d/z_hal-plugdev.rules[2]' 
applied, 'sdb1' becomes '%k'
udev[3466]: creating device node '/dev/sdb1'
kernel: usb 3-1: USB disconnect, address 3
udev[3484]: removing device node '/dev/sg1'
udev[3498]: removing device node '/dev/sdb1'
udev[3553]: symlink '/dev/' points to a different device, skip removal
udev[3553]: removing device node '/dev/scd0'
udev[3523]: removing device node '/dev/sg2'
udev[3562]: removing device node '/dev/sdb'
kernel: scsi: Device offlined - not ready after error recovery: host 2 channel 
0 id 0 lun 1
kernel: sr 2:0:0:1: Illegal state transition cancel->offline
kernel: Badness in scsi_device_set_state at drivers/scsi/scsi_lib.c:1643
kernel:  [__crc_sk_stream_mem_schedule+313066/1457199] 
scsi_device_set_state+0xc9/0x120 [scsi_mod]
kernel:  [__crc_sk_stream_mem_schedule+303103/1457199] 
scsi_eh_offline_sdevs+0x6e/0x90 [scsi_mod]
kernel:  [__crc_sk_stream_mem_schedule+304717/1457199] 
scsi_unjam_host+0xcc/0x210 [scsi_mod]
kernel:  [default_wake_function+0/32] default_wake_function+0x0/0x20
kernel:  [__crc_sk_stream_mem_schedule+305305/1457199] 
scsi_error_handler+0x108/0x1c0 [scsi_mod]
kernel:  [__crc_sk_stream_mem_schedule+305041/1457199] 
scsi_error_handler+0x0/0x1c0 [scsi_mod]
kernel:  [kernel_thread_helper+5/24] kernel_thread_helper+0x5/0x18
kernel: Badness in kobject_get at lib/kobject.c:433
kernel:  [kobject_get+79/96] kobject_get+0x4f/0x60
kernel:  [get_device+24/32] get_device+0x18/0x20
kernel:  [__crc_sk_stream_mem_schedule+310806/1457199] 
scsi_request_fn+0x25/0x420 [scsi_mod]
kernel:  [blk_insert_request+185/224] blk_insert_request+0xb9/0xe0
kernel:  [__crc_sk_stream_mem_schedule+306268/1457199] 
scsi_queue_insert+0x8b/0xe0 [scsi_mod]
kernel:  [__crc_sk_stream_mem_schedule+304371/1457199] 
scsi_eh_flush_done_q+0x72/0x100 [scsi_mod]
kernel:  [__crc_sk_stream_mem_schedule+304665/1457199] 
scsi_unjam_host+0x98/0x210 [scsi_mod]
kernel:  [default_wake_function+0/32] default_wake_function+0x0/0x20
kernel:  [__crc_sk_stream_mem_schedule+305305/1457199] 
scsi_error_handler+0x108/0x1c0 [scsi_mod]
kernel:  [__crc_sk_stream_mem_schedule+305041/1457199] 
scsi_error_handler+0x0/0x1c0 [scsi_mod]
kernel:  [kernel_thread_helper+5/24] kernel_thread_helper+0x5/0x18
kernel: Unable to handle kernel paging request at virtual address 00200200
k

Bug#391912: lcdproc - FTBFS: #error "Can't find your mounted filesystem table file."

2006-10-10 Thread Steve Langasek
On Mon, Oct 09, 2006 at 04:58:38PM +0200, Bastian Blank wrote:
> On Mon, Oct 09, 2006 at 04:38:14PM +0200, José Luis Tallón wrote:
> > No idea on how to handle this; Plus, I don't have access to any S390.
> > Care to point me in the appropriate direction?

> Check for AC_FIND_MTAB_FILE in acinclude.m4. It tries to find the file
> but it is not there.

Though lcdproc probably doesn't need to be built on s390 anyway... :)

-- 
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/



Bug#391651: a simple change of depends to apache2.2-common solves this problem

2006-10-10 Thread Steve Langasek
On Sun, Oct 08, 2006 at 08:25:37PM +0200, Philippe Marzouk wrote:
> A simple change of depends to apache2.2-common solves this problem.

> I may have fired my reportbug a little too quickly as I was not aware of
> the apache 2.2 transition.

A versioned build-dependency on apache2-dev is also required, to ensure that
the package is rebuilt against the version of apache2 which matches the ABI
exported by apache2.2-common.

-- 
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/


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



Bug#390259: svk: can't install: please depends on libsvn-perl instead of libsvn-core-perl

2006-10-10 Thread LI Daobing

On 10/10/06, Thijs Kinkhorst <[EMAIL PROTECTED]> wrote:

tags 390259 moreinfo unreproducible
thanks

Hi,

Thank you for your report.

> as the title

This description is not useful. I've tried to install svk and it
installs just fine. You need to elaborate more on the specific
circumstances in which svk cannot be installed.



libsvn-core-perl no longer in sid, purge libsvn-core-perl and try
install again, you will reproduce this bug.

--
LI Daobing


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



Bug#392296: Asks for password when starting

2006-10-10 Thread Wakko Warner
Package: quagga
Version: 0.99.5-2
Severity: important

I have a Quagga.conf that is non-empty.

issueing /etc/init.d/quagga start shows:
# /etc/init.d/quagga start
Loading capability module if not yet done.
Starting Quagga daemons (prio:10): zebra ospfd.
Password: 
# 

sh -x shows that the command causing this is "vtysh -b"

I have used quagga on other systems before (0.99.4) which does not exibit
this behaviour.

strace -eopen vtysh shows:
open("/etc/ld.so.cache", O_RDONLY)  = 3
open("/usr/lib/libzebra.so.0", O_RDONLY) = 3
open("/lib/libcap.so.1", O_RDONLY)  = 3
open("/lib/libreadline.so.5", O_RDONLY) = 3
open("/lib/tls/libm.so.6", O_RDONLY)= 3
open("/lib/tls/libcrypt.so.1", O_RDONLY) = 3
open("/lib/libpam.so.0", O_RDONLY)  = 3
open("/lib/libpam_misc.so.0", O_RDONLY) = 3
open("/lib/tls/libc.so.6", O_RDONLY)= 3
open("/lib/libncurses.so.5", O_RDONLY)  = 3
open("/lib/tls/libdl.so.2", O_RDONLY)   = 3
open("/etc/mtab", O_RDONLY) = 3
open("/proc/meminfo", O_RDONLY) = 3
open("/etc/quagga/vtysh.conf", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/etc/nsswitch.conf", O_RDONLY)= 3
open("/etc/ld.so.cache", O_RDONLY)  = 3
open("/lib/libnss_ldap.so.2", O_RDONLY) = 3
open("/usr/lib/libldap_r.so.2", O_RDONLY) = 3
open("/usr/lib/liblber.so.2", O_RDONLY) = 3
open("/lib/tls/libnsl.so.1", O_RDONLY)  = 3
open("/lib/tls/libresolv.so.2", O_RDONLY) = 3
open("/usr/lib/libsasl2.so.2", O_RDONLY) = 3
open("/usr/lib/libgnutls.so.11", O_RDONLY) = 3
open("/lib/tls/libpthread.so.0", O_RDONLY) = 3
open("/usr/lib/libtasn1.so.2", O_RDONLY) = 3
open("/usr/lib/libgcrypt.so.11", O_RDONLY) = 3
open("/usr/lib/libgpg-error.so.0", O_RDONLY) = 3
open("/usr/lib/libz.so.1", O_RDONLY)= 3
open("/etc/libnss-ldap.conf", O_RDONLY) = 3
open("/etc/resolv.conf", O_RDONLY)  = 3
open("/etc/ld.so.cache", O_RDONLY)  = 3
open("/lib/tls/libnss_files.so.2", O_RDONLY) = 3
open("/etc/host.conf", O_RDONLY)= 3
open("/etc/hosts", O_RDONLY)= 3
open("/etc/ldap/ldap.conf", O_RDONLY|O_LARGEFILE) = 3
open("/root/ldaprc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or 
directory)
open("/root/.ldaprc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or 
directory)
open("ldaprc", O_RDONLY|O_LARGEFILE)= -1 ENOENT (No such file or directory)
open("/usr/lib/sasl2", O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY) = 3
open("/usr/lib/sasl2/libsasldb.la", O_RDONLY) = 6
open("/usr/lib/sasl2/libsasldb.so.2", O_RDONLY) = 6
open("/etc/ld.so.cache", O_RDONLY)  = 6
open("/usr/lib/libdb-4.2.so", O_RDONLY) = 6
open("/usr/lib/sasl2/libsasldb.la", O_RDONLY) = 6
open("/etc/hosts", O_RDONLY)= 3
open("/etc/hosts", O_RDONLY)= 3
open("/etc/pam.d/quagga", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/etc/pam.d/other", O_RDONLY)  = 6
open("/etc/pam.d/common-auth", O_RDONLY) = 10
open("/lib/security/pam_ldap.so", O_RDONLY) = 11
open("/lib/security/pam_unix.so", O_RDONLY) = 11
open("/etc/pam.d/common-account", O_RDONLY) = 10
open("/etc/pam.d/common-password", O_RDONLY) = 10
open("/etc/pam.d/common-session", O_RDONLY) = 10
open("/etc/pam_ldap.conf", O_RDONLY)= 6
open("/etc/ldap.secret", O_RDONLY)  = 6
Password: 
open("/etc/hosts", O_RDONLY)= 6
open("/etc/hosts", O_RDONLY)= 6
open("/etc/localtime", O_RDONLY)= 10
open("/etc/shadow", O_RDONLY)   = 11
Password: 
open("/etc/shadow", O_RDONLY)   = 11
open("/etc/quagga/Quagga.conf", O_RDONLY) = 12
#

NOTE: I typed the password incorrectly the first time in the trace above.
My system uses LDAP for all user information which is why ldap libraries are
pulled in.

-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.14
Locale: LANG=C, LC_CTYPE=C

Versions of packages quagga depends on:
ii  adduser   3.59   Add and remove users and groups
ii  debconf [debconf-2.0] 1.4.39 Debian configuration management sy
ii  iproute   20041019-3 Professional tools to control the 
ii  libc6 2.3.6-7GNU C Library: Shared libraries
ii  libcap1   1:1.10-12  support for getting/setting POSIX.
ii  libpam0g  0.76-13Pluggable Authentication Modules l
ii  libreadline5  5.1-5  GNU readline and history libraries
ii  logrotate 3.7-2  Log rotation utility

-- debconf information excluded


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



Bug#392295: xserver-xorg-core: /etc/X11/X missing

2006-10-10 Thread Frans Pop
Package: xserver-xorg-core
Version: 1:1.0.2-9
Severity: serious

If I install xserver-xorg-core and xbase-clients (and ion3) on my sparc 
and then try to run "startx", I get the following error:
X: cannot stat /etc/X11/X (No such file or directory), aborting
xinit: xserver error

AFAIKT /etc/X11/X is supposed to be a symlink to /usr/sbin/Xorg.

I think this link may be created by the xserver-xorg package, but as that 
package is not required and xserver-xorg-core ships the binary, the 
symlink should probably be part of that.


pgpf9JeyXyf4b.pgp
Description: PGP signature


Bug#392275: logic error in dhcp3-3.0.4/common/discover.c

2006-10-10 Thread Andrew Pollock
Thanks for your bug report, forwarding upstream.

On Wed, Oct 11, 2006 at 12:50:06AM +0100, Jochen Voss wrote:
> Package: dhcp3
> Version: 3.0.4-8
> Severity: normal
> 
> Hello,
> 
> recently I discovered the following bit of code in the source file
> dhcp3-3.0.4/common/discover.c (around line 941):
> 
> isc_result_t dhcp_interface_stuff_values (omapi_object_t *c,
> omapi_object_t *id,
> omapi_object_t *h)
> {
>   struct interface_info *interface;
>   ...
>   if (interface -> flags && INTERFACE_REQUESTED)
>   status = omapi_connection_put_string (c, "up");
>   ...
> }
> 
> Looking at include/dhcpd.h it is clear that flags is meant to be a bit
> field:
> 
> struct interface_info {
>   ...
>   u_int32_t flags;/* Control flags... */
> #define INTERFACE_REQUESTED 1
> #define INTERFACE_AUTOMATIC 2
> #define INTERFACE_RUNNING 4
> 
>   ...
> }
> 
> Thus it seems that the intended test was the bit test
> 
>   if (interface -> flags & INTERFACE_REQUESTED)
>   status = omapi_connection_put_string (c, "up");
> 
> I do not know what the implications of this bug are, but I guess it
> should be fixed anyway.
> 
> I hope this helps,
> Jochen
> 
> -- System Information:
> Debian Release: testing/unstable
>   APT prefers unstable
>   APT policy: (500, 'unstable')
> Architecture: i386 (i686)
> Shell:  /bin/sh linked to /bin/bash
> Kernel: Linux 2.6.17.13
> Locale: LANG=en_GB.utf8, LC_CTYPE=en_GB.utf8 (charmap=UTF-8)
> 
> 


signature.asc
Description: Digital signature


Bug#392253: anacron: I can confirm 392253

2006-10-10 Thread Nelson A. de Oliveira
Package: anacron
Version: 2.3-12
Followup-For: Bug #392253

Hi!

I can confirm this bug here. It's reproducible.

Thank you!

Nelson

-- 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/dash
Kernel: Linux 2.6.18-mm1
Locale: LANG=pt_BR.UTF-8, LC_CTYPE=pt_BR.UTF-8 (charmap=UTF-8)

Versions of packages anacron depends on:
ii  debianutils  2.17.3  Miscellaneous utilities specific t
ii  libc62.3.6.ds1-6 GNU C Library: Shared libraries
ii  lsb-base 3.1-17  Linux Standard Base 3.1 init scrip

Versions of packages anacron recommends:
ii  cron  3.0pl1-98  management of regular background p
ii  exim4 4.63-5 metapackage to ease exim MTA (v4) 
ii  exim4-daemon-light [mail-tran 4.63-5 lightweight exim MTA (v4) daemon
ii  sysklogd [system-log-daemon]  1.4.1-20   System Logging Daemon

-- debconf information excluded


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



Bug#391250: evolution: Error while Generating message list.

2006-10-10 Thread Steve Langasek
Hi Sam,

On Thu, Oct 05, 2006 at 06:30:52PM +0100, Sam Morris wrote:
>   Error while Generating message list.

>   Error executing search expression: Unknown type in parse tree: 138144472:
>   (and (match-all (not (system-flag "junk")))
> )

[...]

> The two filters I have set up are:

>   'x-spam-bars' contains '+' -> set status 'junk'

>   'Xref' contains 'gmane.spam.detected' AND 'Newsgroups' starts with 'gmane.' 
> -> Delete

Does this imply that the error is a result of your filters?

Does this error happen if you set up your evolution config from scratch
(moving .evolution aside)?  Does it happen when upgrading from versions of
evolution *other* than the old version in experimental?

Thanks,
-- 
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/


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



Bug#392294: libcurl3: Unneccesary dependency: libcomerr2

2006-10-10 Thread Nathanael Nerode
Package: libcurl3
Version: 7.15.5-1
Severity: normal

This is a recursive dependency disease issue.

libcomerr2 is not actually used by curl.  It is only used indirectly by
a dependency of libcurl.

Libcurl should not be directly linked to it.  It should also not be exported as
a dependency to the packages using libcurl.  (Libcurl exports a lot of other 
improper
dependencies via pkg-config, but fixing that requires doing something 
different, and
I'm not exactly sure of the right thing to do yet.)

The following (untested) patch to configure.ac should fix both problems.  You 
have to
rerun autoconf, of course.

The only danger to watch out for is the possibility that the static build will 
fail --
if the -dev package builds, then the patch is correct.  I have been delayed in 
my
attempts to test the build for irritating reasons, so I give you the patch now.

--- configure.ac2006-10-10 21:51:59.0 -0400
+++ configure.ac.new2006-10-10 21:54:57.0 -0400
@@ -673,7 +673,7 @@
   AC_CHECK_HEADERS(krb.h)
 
   dnl we found the required libraries, add to LIBS
-  LIBS="-lkrb -lcom_err -ldes $LIBS"
+  LIBS="-lkrb -ldes $LIBS"
 
   dnl Check for function krb_get_our_ip_for_realm
   dnl this is needed for NAT networks


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



Bug#392293: dcc-common: preinst script error

2006-10-10 Thread Marc F. Clemente
Package: dcc-common
Version: 1.3.42-2
Severity: normal


When I try to install dcc-common, this is what I get.  Maybe it's missing 
square brackets?  Same problem on amd64 or i386.

Marc


# apt-get --reinstall install dcc-common
Reading package lists... Done
Building dependency tree... Done
0 upgraded, 0 newly installed, 1 reinstalled, 0 to remove and 0 not upgraded.
Need to get 235kB of archives.
After unpacking 0B of additional disk space will be used.
Do you want to continue [Y/n]? 
Get:1 http://ftp.us.debian.org sid/main dcc-common 1.3.42-2 [235kB]
Fetched 235kB in 0s (390kB/s)  
(Reading database ... 64699 files and directories currently installed.)
Preparing to replace dcc-common 1.3.42-2 (using 
.../dcc-common_1.3.42-2_amd64.deb) ...
/var/lib/dpkg/tmp.ci/preinst: line 5: -f: command not found
Unpacking replacement dcc-common ...
Setting up dcc-common (1.3.42-2) ...


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

Versions of packages dcc-common depends on:
ii  adduser  3.97Add and remove users and groups
ii  libc62.3.6.ds1-5 GNU C Library: Shared libraries

Versions of packages dcc-common recommends:
ii  dcc-server1.3.42-2   Distributed Checksum Clearinghouse

-- no debconf information


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



Bug#391325: closed by Søren Boll Overgaard <[EMAIL PROTECTED]> (Bug#391325: fixed in pan 0.116-1)

2006-10-10 Thread Anthony DeRobertis
found 0.116-1
thanks

>
>  * Sorting on multiple columns in the header pane is possible.
>(Closes: Bug#391325)

I'm not able to find anything different with regards to header sorting
in 0.116-1. It seems to work the same as in 0.113-x.

In particular, the sort is stable, so it is possible to achieve "order
by score, subject, date" by doing three things: sort by date, then by
subject, then by score. Unfortunately, the next time the group is
loaded, all that work is undone; it is sorted only by score — articles
with duplicate scores are no longer ordered by subject then by date.

In the old pan, sorting by score actually ordered by score, subject. In
the new pan, it no longer does.


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



Bug#392292: filenames with colons confuse vlc

2006-10-10 Thread Robert S. Edmonds
Package: vlc
Version: 0.8.6-svn20061008.debian-1
Severity: wishlist

vlc is confused by filenames with colons; it seems to be interpreting
them as a URI.

$ file "MST3K-DVD - 0424 - RHINO - Manos: The Hands Of Fate.iso" 
MST3K-DVD - 0424 - RHINO - Manos: The Hands Of Fate.iso: ISO 9660 CD-ROM 
filesystem data 'MANOS_HANDS_OF_FATE'

This image has been created using vobcopy and mkisofs.

$ vlc "./MST3K-DVD - 0424 - RHINO - Manos: The Hands Of Fate.iso"  
VLC media player 0.8.6 Janus
[0544] main input error: no suitable access module for `./MST3K-DVD - 
0424 - RHINO - Manos: The Hands Of Fate.iso'
[0539] main playlist: nothing to play
[0539] main playlist: stopping playback

Removing the colon causing vlc to play the file fine:

$ ln -f "MST3K-DVD - 0424 - RHINO - Manos: The Hands Of Fate.iso" 
"MST3K-DVD - 0424 - RHINO - Manos, The Hands Of Fate.iso" 
$ vlc "./MST3K-DVD - 0424 - RHINO - Manos, The Hands Of Fate.iso"
VLC media player 0.8.6 Janus
libdvdnav: Using dvdnav version 0.1.10 from http://dvd.sf.net
[etc.]


-- 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.18-1-k7
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages vlc depends on:
ii  libaa11.4p5-30   ascii art library
ii  libatk1.0-0   1.12.3-1   The ATK accessibility toolkit
ii  libc6 2.3.6.ds1-5GNU C Library: Shared libraries
ii  libcaca0  0.99.beta7-1   colour ASCII art library
ii  libcairo2 1.2.4-1The Cairo 2D vector graphics libra
ii  libcdio6  0.76-1 library to read and control CD-ROM
ii  libcucul0 0.99.beta7-1   low-level Unicode character drawin
ii  libdbus-1-3   0.93-1 simple interprocess messaging syst
ii  libdbus-glib- 0.71-2 simple interprocess messaging syst
ii  libfontconfig 2.4.1-2generic font configuration library
ii  libfreetype6  2.2.1-5FreeType 2 font engine, shared lib
ii  libfribidi0   0.10.7-4   Free Implementation of the Unicode
ii  libgcc1   1:4.1.1-15 GCC support library
ii  libgl1-mesa-g 6.5.1-0.1  A free implementation of the OpenG
ii  libglib2.0-0  2.12.4-1   The GLib library of C routines
ii  libglu1-mesa  6.5.1-0.1  The OpenGL utility library (GLU)
ii  libgtk2.0-0   2.8.20-2   The GTK+ graphical user interface 
ii  libice6   1:1.0.1-2  X11 Inter-Client Exchange library
ii  libiso9660-4  0.76-1 library to work with ISO9660 files
ii  libjpeg62 6b-13  The Independent JPEG Group's JPEG 
ii  libnotify10.4.2-1+b1 sends desktop notifications to a n
ii  libpango1.0-0 1.14.5-1   Layout and rendering of internatio
ii  libpng12-01.2.8rel-5.2   PNG library - runtime
ii  libsdl-image1 1.2.5-2image loading library for Simple D
ii  libsdl1.2debi 1.2.11-3   Simple DirectMedia Layer
ii  libsm61:1.0.1-3  X11 Session Management library
ii  libstdc++64.1.1-15   The GNU Standard C++ Library v3
ii  libtar1.2.11-4   C library for manipulating tar arc
ii  libtiff4  3.8.2-6Tag Image File Format (TIFF) libra
ii  libvcdinfo0   0.7.23-3   library to extract information fro
ii  libvlc0   0.8.6-svn20061001.debian-2 multimedia player and streamer lib
ii  libwxbase2.6- 2.6.3.2.1.5wxBase library (runtime) - non-GUI
ii  libwxgtk2.6-0 2.6.3.2.1.5wxWidgets Cross-platform C++ GUI t
ii  libx11-6  2:1.0.0-9  X11 client-side library
ii  libxcursor1   1.1.7-4X cursor management library
ii  libxext6  1:1.0.1-2  X11 miscellaneous extension librar
ii  libxfixes31:4.0.1-4  X11 miscellaneous 'fixes' extensio
ii  libxi61:1.0.1-3  X11 Input extension library
ii  libxinerama1  1:1.0.1-4.1X11 Xinerama extension library
ii  libxosd2  2.2.14-1.3 X On-Screen Display library - runt
ii  libxrandr22:1.1.0.2-4X11 RandR extension library
ii  libxrender1   1:0.9.1-3  X Rendering Extension client libra
ii  libxv11:1.0.2-1  X11 Video extension library
ii  libxxf86vm1   1:1.0.1-2  X11 XFree86 video mode extension l
ii  ttf-dejavu2.10-1 Vera font family derivate with add
ii  vlc-nox   0.8.6-svn20061008.debian-1 multimedia player and streamer (wi
ii  zlib1g1:1.2.3-13  

Bug#392291: ITP: mooedit -- a useful programming and around-programming text editor

2006-10-10 Thread alex bodnaru
Package: wnpp
Severity: wishlist
Owner: alex bodnaru <[EMAIL PROTECTED]>


* Package name: mooedit
  Version : x.y.z
  Upstream Author : Name <[EMAIL PROTECTED]>
* URL : http://www.example.org/
* License : (GPL, LGPL, BSD, MIT/X, etc.)
  Programming Lang: (C, C++, C#, Perl, Python, etc.)
  Description : a useful programming and around-programming text editor

(Include the long description here.)
mooedit is a text editor.
Started originally as a simple built-in editor component in GGAP, 
it grew up to a real text editor.
The intention now is to make it a useful programming and around-programming 
text editor.
Features
* Configurable syntax highlighting.
* Configurable keyboard accelerators.
* Multiplatform - works both on unix and windows.
* Plugins: can be written in C or Python.
* Configurable tools available from the main and context menus. They can 
  be written in Python, or it can be a shell script, or in MooScript - simple 
  builtin scripting lanugage.
* Regular expression search/replace, grep and find frontends, builtin file 
  selector and whatnot.

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


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



Bug#344704: mutt: could not copy message

2006-10-10 Thread Michael Deegan
Package: mutt
Version: 1.5.12-1
Followup-For: Bug #344704

*retrieves Michelle's message from his spam folder*

On Sat, Sep 16, 2006 at 05:03:08PM +0200, Michelle Konzack wrote:
> I have tried the attached (OP) message with mutt from Woody,
> Sarge and 1.5.12 and it is displayed correctly.

Hmm. While sarge's version (1.5.9-2sarge2) did not exhibit this bug,
1.5.12-1 (from snapshot.debian.net) did. I saved the bug report to a file
(http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=344704;mbox=yes) and
found that both Michal's and my example messages would not display, though
there was no problem showing any of the individual parts.

> Michael, do you have tried an older Version of mutt?

With the sarge version, Michal's message now displays "correctly":

   From: ÀÌÀα¸ <[EMAIL PROTECTED]>
   Subject: unknown-package´Ô, 1:1 ÀüÈ­¿µ¾î ½Ã¹ü°­ÀÇ ¹× ¿µ¾î ¸ÞÀÏ ¼­ºñ½º ½Åû 
¾È³» µå¸³´Ï´Ù.
   To: unknown-package´Ô <[EMAIL PROTECTED]>

   [-- Error:  Could not display any parts of Multipart/Alternative! --]

My sample message also displays correctly (with the innermost
message/rfc822 attachment also represented by the 'Could not display any
parts of Multipart/Alternative!' message).

So my conclusion is that it is (some? all?) multipart/alternative messages
with no displayable parts that have problems, but not if they're being
displayed by themselves. Are there examples of messages with no displayable
multipart alternatives that recent mutt -doesn't- choke on (when trying to
display the whole message)?

-MD

-- 
---
Michael Deegan   Hugaholic  http://wibble.darktech.org/gallery/
- Nyy Tybel Gb Gur Ulcabgbnq! -


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



Bug#392290: gaim: shipped plugin musicmessaging requires non-availble binary

2006-10-10 Thread Benjamin Seidenberg
Package: gaim
Version: 1:2.0.0+beta3.1-5
Severity: normal

"The Music Messaging Plugin allows a number of users to simultaneously
work on a peice of music by editting a common score in real-time."

This plugin is included in the gaim package, however when it's enabled,
it doesn't work. The configuration options point to a nonexistant gscore
binary at /usr/local/bin/gscore. gscore is not in Debian. Please either
package it and spin this plugin off to a package that depends on it or
do not ship this plugin in debian.

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

Versions of packages gaim depends on:
ii  gaim-data  1:2.0.0+beta3.1-5 multi-protocol instant messaging c
ii  libao2 0.8.6-4   Cross Platform Audio Output Librar
ii  libaspell150.60.4-4  GNU Aspell spell-checker runtime l
ii  libatk1.0-01.12.3-1  The ATK accessibility toolkit
ii  libaudiofile0  0.2.6-6   Open-source version of SGI's audio
ii  libavahi-compat-howl0  0.6.14-1  Avahi Howl compatibility library
ii  libc6  2.3.6.ds1-6   GNU C Library: Shared libraries
ii  libcairo2  1.2.4-1   The Cairo 2D vector graphics libra
ii  libdbus-1-30.93-1simple interprocess messaging syst
ii  libdbus-glib-1-2   0.71-2simple interprocess messaging syst
ii  libfontconfig1 2.4.1-2   generic font configuration library
ii  libfreetype6   2.2.1-5   FreeType 2 font engine, shared lib
ii  libgadu3   1:1.7~rc2-1   Gadu-Gadu protocol library - runti
ii  libgcrypt111.2.3-2   LGPL Crypto library - runtime libr
ii  libglib2.0-0   2.12.4-1  The GLib library of C routines
ii  libgnutls131.4.4-1   the GNU TLS library - runtime libr
ii  libgtk2.0-02.8.20-2  The GTK+ graphical user interface 
ii  libgtkspell0   2.0.10-3+b1   a spell-checking addon for GTK's T
ii  libice61:1.0.1-2 X11 Inter-Client Exchange library
ii  libmeanwhile1  1.0.2-2   open implementation of the Lotus S
ii  libpango1.0-0  1.14.5-1  Layout and rendering of internatio
ii  libperl5.8 5.8.8-6.1 Shared Perl library
ii  libpng12-0 1.2.8rel-5.2  PNG library - runtime
ii  libsm6 1:1.0.1-3 X11 Session Management library
ii  libstartup-notificatio 0.8-2 library for program launch feedbac
ii  libx11-6   2:1.0.0-9 X11 client-side library
ii  libxcursor11.1.7-4   X cursor management library
ii  libxext6   1:1.0.1-2 X11 miscellaneous extension librar
ii  libxfixes3 1:4.0.1-4 X11 miscellaneous 'fixes' extensio
ii  libxi6 1:1.0.1-3 X11 Input extension library
ii  libxinerama1   1:1.0.1-4.1   X11 Xinerama extension library
ii  libxrandr2 2:1.1.0.2-4   X11 RandR extension library
ii  libxrender11:0.9.1-3 X Rendering Extension client libra
ii  libxss11:1.0.1-4 X11 Screen Saver extension library
ii  zlib1g 1:1.2.3-13compression library - runtime

gaim recommends no packages.

-- no debconf information


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



Bug#392289: quickrefs-sysadmin - various admin-related quick reference cards and quick reference HTML documents

2006-10-10 Thread Jason Spiro

Package: wnpp
Severity: wishlist

This is a doc packaging request.

It would be great if someone packaged up all the sysadmin-related
quick reference cards from
http://digilife.be/quickreferences/quickrefs.htm and
http://refcards.com/refcards - they are mighty useful for printing
out. Some are licensed under Free licenses and some aren't. Perhaps
some of the various common quick reference text/HTML documents could
be added in too, such as "Linux Installation and Getting Started" if
it's not already packaged.

Cheers,
Jason

--
Jason Spiro: computer consulting with a smile.
I also provide training and spyware removal services for homes and businesses.
Call or email for a FREE 5-minute consultation. Satisfaction guaranteed.
416-781-5938 / Email: [EMAIL PROTECTED] / MSN: [EMAIL PROTECTED]


--
Jason Spiro: computer consulting with a smile.
I also provide training and spyware removal services for homes and businesses.
Call or email for a FREE 5-minute consultation. Satisfaction guaranteed.
416-781-5938 / Email: [EMAIL PROTECTED] / MSN: [EMAIL PROTECTED]


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



Bug#392288: quickrefs-programming - various coding-related quick reference cards and quick reference HTML documents

2006-10-10 Thread Jason Spiro

Package: wnpp
Severity: wishlist

This is a doc packaging request.

It would be great if someone packaged up all the coding-related quick
reference cards from http://digilife.be/quickreferences/quickrefs.htm
and http://refcards.com/refcards - they are great for printing out.
Some are licensed under Free licenses and some aren't. Perhaps some of
the various common quick reference text/HTML documents could be added
in too, such as the C FAQ maintained by Steve Summit and the C++ FAQ.

Cheers,
Jason

--
Jason Spiro: computer consulting with a smile.
I also provide training and spyware removal services for homes and businesses.
Call or email for a FREE 5-minute consultation. Satisfaction guaranteed.
416-781-5938 / Email: [EMAIL PROTECTED] / MSN: [EMAIL PROTECTED]


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



Bug#342029: Ping on recursive library dependencies...

2006-10-10 Thread Nathanael Nerode
These patches seem good.  The xlibs-dev bit is already dealt with.  However, 
the other three patches have not been dealt with.  They pertain to cleaning
up the zlib1g dependency, so that it's not propagated to all and sundry 
(starting with libfontconfig). Since this package is the basic source of a 
long chain of packages with unnecessary zlib1g dependencies, it would
be rather nice to get it fixed.

I know zlib's not likely to bump soname (or even add features) any time soon, 
but the bogus dependencies on it do clutter up the list of bogus dependencies
something mighty.

Summary:
(1) Replace the libz-dev build dep with zlib1g-dev | libz-dev
(2) Relibtoolize builds/unix/
(3) Use .private in pkg-config for the zlib dependency

-- 
Nathanael Nerode  <[EMAIL PROTECTED]>

Theocracy, fascism, or absolute monarchy -- I don't care which it is, I don't 
like it.


pgpniYydtYuiE.pgp
Description: PGP signature


Bug#380460: solarwolf: Doesn't start

2006-10-10 Thread VF
I believe this is the same bug that has been posted to Ubuntu's bug
tracker. A fix has been posted there.

https://launchpad.net/distros/ubuntu/+source/solarwolf/+bug/52105



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



Bug#392286: Caps lock detection in password fields -> bright red notice in status bar

2006-10-10 Thread Jason Spiro

Package: firefox
Version: 1.5.dfsg+1.5.0.7-1
Severity: wishlist

When you are entering a password into a website, and Caps Lock is on,
it would be great if there were a bold bright red warning in the
status bar saying: "Caps Lock is on. You may not be able to enter your
password properly unless you press the Caps Lock key again."

Cheers,
Jason

--
Jason Spiro: computer consulting with a smile.
I also provide training and spyware removal services for homes and businesses.
Call or email for a FREE 5-minute consultation. Satisfaction guaranteed.
416-781-5938 / Email: [EMAIL PROTECTED] / MSN: [EMAIL PROTECTED]


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



Bug#392285: partman-crypto: Fails to cause cryptomount to be loaded

2006-10-10 Thread James Westby
Package: partman-crypto
Severity: normal

Hi,

I was installing in a VM, and did manual partitioning to try loop-aes.

I had the first partition for / unencrypted, then two partitions, a
random key for swap, and a GPG encrypted key for /home. I used
twofish128 for minimum impact while testing. The install went
fine, until I rebooted.

I was asked for my passphrase, and when I entered it I was told /home
couldn't be mounted. The following message accompanied it.

  LOOP_SET_STATUS: Invalid argument, requested cipher or key length (128
  bits) not supported by kernel.

I googled the error, and found a message written by Max indicating that
another module was needed. I modprobed cryptoloop, and it changed the
error message. So it seems like some magic chould be done to load this
module at boot time.

And now starts what I think is a second bug report, but I am not sure,
please clone if it is indeed.

After adding cryptoloop I get the error message

  LOOP_MULTI_KEY_SETUP_V3: Invalid argument

#318944 suggests this is because a v3 key was used with a v2 module, but
I have a v3 module installed. 

Apologies if I am doing something stupid here, please punish me if I am.

Also I don't know what version I am supposed to put for these, but I am
using the daily image downloaded 8th October, and installed the day
after. I have loop-aes-2.6.16-2-686 3.1d+3+3 installed by the installer.

James

[P.S. any area you would like me to test while I am playing about with
the installer?]



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



Bug#339141: bugs.debian.org: Archived bugs are still displayed

2006-10-10 Thread Don Armstrong
On Tue, 10 Oct 2006, Roland Stigge wrote:
> I find it also quite annoying that "archive=no" currently still
> shows many archived bugs. This BTS regression looks like easily
> fixable. However, Don merged this bug with #326774 which actually
> looks different (dealing with marking not yet archived bugs),
> without comment.
>
> Maybe I missed something here? 

What pkgreport.cgi shows as archived bugs is wrong. Archived bugs are
bugs which are in the archive, and can only be seen with archive=yes.

The bug is that we haven't fixed bug archival, which is why it was
merged.


Don Armstrong

-- 
DIE!
 -- Maritza Campos http://www.crfh.net/d/20020601.html

http://www.donarmstrong.com  http://rzlab.ucr.edu


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



Bug#392287: global doesn't build with m4 1.4.2-2

2006-10-10 Thread Eric Lammerts


Package: global
Version: 4.8.6-2

Hi,
When I tried to build global with dpkg-buildpackage, I got this:

configure.ac:167: error: m4_popdef: undefined macro: AC_Dest
autoconf/status.m4:848: AC_CONFIG_FILES is expanded from...
configure.ac:167: the top level
autom4te: /usr/bin/m4 failed with exit status: 1
aclocal-1.9: autom4te failed with exit status: 1
make[1]: *** [aclocal.m4] Error 1
make[1]: Leaving directory `/tmp/global-4.8.6'
make: *** [build-stamp] Error 2

Then I upgraded my m4 package to 1.4.7-1, and now it builds with no problems.

Maybe the bug is in autoconf (mine is 2.59a-3) instead of global... But 
looking at autoconf stuff makes my head explode so investigating this is 
left as an exercise for the maintainer.


Eric


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



Bug#392263: net-tools: buffer overflow in ipmaddr

2006-10-10 Thread Bernd Eckenfels
tags 392263 +patch +fixed
thanks

I just commited the following patch into net-tools hed CVS on
net-tools.berlios.de:

--- ipmaddr.c   8 Apr 2001 17:05:05 -   1.8
+++ ipmaddr.c   11 Oct 2006 01:10:05 -
@@ -291,13 +291,15 @@
 static int multiaddr_list(int argc, char **argv)
 {
struct ma_info *list = NULL;
+   size_t l;

while (argc > 0) {
if (strcmp(*argv, "dev") == 0) {
NEXT_ARG();
-   if (filter_dev[0])
+   l = strlen(*argv);
+   if (l <= 0 || l >= sizeof(filter_dev))
usage();
-   strcpy(filter_dev, *argv);
+   strncpy(filter_dev, *argv, sizeof (filter_dev));
} else if (strcmp(*argv, "all") == 0) {
filter_family = AF_UNSPEC;
} else if (strcmp(*argv, "ipv4") == 0) {
@@ -307,9 +309,10 @@
} else if (strcmp(*argv, "link") == 0) {
filter_family = AF_PACKET;
} else {
-   if (filter_dev[0])
+   l = strlen(*argv);
+   if (l <= 0 || l >= sizeof(filter_dev))
usage();
-   strcpy(filter_dev, *argv);
+   strncpy(filter_dev, *argv, sizeof (filter_dev));
}
argv++; argc--;
}



this also fixes the missuse of "if (filter_dev[0])"


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



Bug#392250: openntpd: 'sendto: Invalid argument' errors after IP address change

2006-10-10 Thread BUCHMULLER Norbert
tags 392250 +patch
thanks

> The perfect solution would be to fix openntpd source to have it clear
> the local socket addresses (using connect() again) when EINVAL is
> encountered with sendto().

It turned out that it's easier to close the socket (and mark it as not
connected) in such a case, and openntpd will connect again in the next
round. The patch is ugly (that -2 return value), but works.

> I haven't checked whether the problem is still present in testing.

It is.

norbi
diff -Naur openntpd-3.9p1/client.c openntpd-3.9p1-fixed/client.c
--- openntpd-3.9p1/client.c 2006-05-14 07:29:21.0 +0200
+++ openntpd-3.9p1-fixed/client.c   2006-10-11 02:41:44.0 +0200
@@ -116,6 +116,7 @@
 client_query(struct ntp_peer *p)
 {
int tos = IPTOS_LOWDELAY;
+   int result;
 
if (p->addr == NULL && client_nextaddr(p) == -1) {
set_next(p, error_interval());
@@ -163,9 +164,17 @@
p->query->msg.xmttime.fractionl = arc4random();
p->query->xmttime = gettime();
 
-   if (ntp_sendmsg(p->query->fd, NULL, &p->query->msg,
-   NTP_MSGSIZE_NOAUTH, 0) == -1) {
+   if ((result = ntp_sendmsg(p->query->fd, NULL, &p->query->msg,
+   NTP_MSGSIZE_NOAUTH, 0)) < 0) {
set_next(p, INTERVAL_QUERY_PATHETIC);
+   if (result == -2) {
+   /*
+* got EINVAL in sendto(), probably the local socket
+* address got invalidated -> force re-connect()
+*/
+   close(p->query->fd);
+   p->query->fd = -1;
+   }
return (-1);
}
 
diff -Naur openntpd-3.9p1/ntp_msg.c openntpd-3.9p1-fixed/ntp_msg.c
--- openntpd-3.9p1/ntp_msg.c2006-05-14 07:29:21.0 +0200
+++ openntpd-3.9p1-fixed/ntp_msg.c  2006-10-11 02:41:49.0 +0200
@@ -98,6 +98,8 @@
return (-1);
}
log_warn("sendto");
+   if (errno == EINVAL)
+   return (-2);
return (-1);
}
 


Bug#376219: Status Check

2006-10-10 Thread Matt R Hall

Hello,

Is there anything I can do to help speed the release of Eclipse 3.2
packages (besides asking about the release ;-) ?

Thanks,
Matthew Hall


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



Bug#392198: evolution is linked to the wrong libdbus version

2006-10-10 Thread Thiago Bauermann
2006/10/10, Øystein Gisnås <[EMAIL PROTECTED]>:
This doesn't make much sense to me.. It should be linked tolibdbus-1.so.3, and so it is on my system.I just found out that Debian has md5sums of packages. I've just used it toconfirm that I have unmodified binaries:
hactar# debsums -s evolutionhactar# echo $?0hactar# Could you please run
  LANG=C apt-get --reinstall install evolution/unstable  ldd /usr/bin/evolution | grep dbusOk, here's the output:hactar# LANG=C apt-get --reinstall install evolution/unstableReading package lists... Done
Building dependency tree... DoneSelected version 2.6.3-2 (Debian:unstable) for evolution0 upgraded, 0 newly installed, 1 reinstalled, 0 to remove and 169 not upgraded.Need to get 2402kB of archives.After unpacking 0B of additional disk space will be used.
Do you want to continue [Y/n]? yGet:1 http://ftp.debian.org unstable/main evolution 2.6.3-2 [2402kB]Fetched 2402kB in 1m15s (31.9kB/s)(Reading database ... 220139 files and directories currently installed.)
Preparing to replace evolution 2.6.3-2 (using .../evolution_2.6.3-2_i386.deb) ...Unpacking replacement evolution ...Setting up evolution (2.6.3-2) ...hactar# ldd /usr/bin/evolution | grep dbus    
libdbus-glib-1.so.2 => /usr/lib/libdbus-glib-1.so.2 (0xb7196000)    libdbus-1.so.3 => /usr/lib/libdbus-1.so.3 (0xb7166000)    libdbus-1.so.2 => not foundhactar#
and provide output from both? If it doesn't make it better  apt-cache policy evolution  rm /var/cache/apt/archives/evolution_2.6.3-2_i386.deb  LANG=C apt-get --reinstall install evolution/unstable  ldd /usr/bin/evolution | grep dbus
Didn't make it better, so:hactar# apt-cache policy evolutionevolution:  Installed: 2.6.3-2  Candidate: 2.6.3-2  Version table: *** 2.6.3-2 0    500 
http://ftp.debian.org unstable/main Packages    100 /var/lib/dpkg/statushactar# rm /var/cache/apt/archives/evolution_2.6.3-2_i386.debhactar# LANG=C apt-get --reinstall install evolution/unstableReading package lists... Done
Building dependency tree... DoneSelected version 2.6.3-2 (Debian:unstable) for evolution0 upgraded, 0 newly installed, 1 reinstalled, 0 to remove and 169 not upgraded.Need to get 2402kB of archives.After unpacking 0B of additional disk space will be used.
Do you want to continue [Y/n]? yGet:1 http://ftp.debian.org unstable/main evolution 2.6.3-2 [2402kB]Fetched 2402kB in 1m37s (24.7kB/s)(Reading database ... 220139 files and directories currently installed.)
Preparing to replace evolution 2.6.3-2 (using .../evolution_2.6.3-2_i386.deb) ...Unpacking replacement evolution ...Setting up evolution (2.6.3-2) ...hactar# ldd /usr/bin/evolution | grep dbus    
libdbus-glib-1.so.2 => /usr/lib/libdbus-glib-1.so.2 (0xb71d2000)    libdbus-1.so.3 => /usr/lib/libdbus-1.so.3 (0xb71a2000)    libdbus-1.so.2 => not foundhactar# debsums -s evolutionhactar# echo $?
0hactar#
-- []'sThiago Jung Bauermann


Bug#392250: openntpd: 'sendto: Invalid argument' errors after IP address change

2006-10-10 Thread BUCHMULLER Norbert
tags 392250 +patch
thanks

> The perfect solution would be to fix openntpd source to have it clear
> the local socket addresses (using connect() again) when EINVAL is
> encountered with sendto().

It turned out that it's easier to close the socket (and mark it as not
connected) in such a case, and openntpd will connect again in the next
round. The patch is ugly (that -2 return value), but works.

> I haven't checked whether the problem is still present in testing.

It is.

norbi

diff -Naur openntpd-3.9p1/client.c openntpd-3.9p1-fixed/client.c
--- openntpd-3.9p1/client.c 2006-05-14 07:29:21.0 +0200
+++ openntpd-3.9p1-fixed/client.c   2006-10-11 02:41:44.0 +0200
@@ -116,6 +116,7 @@
 client_query(struct ntp_peer *p)
 {
int tos = IPTOS_LOWDELAY;
+   int result;
 
if (p->addr == NULL && client_nextaddr(p) == -1) {
set_next(p, error_interval());
@@ -163,9 +164,17 @@
p->query->msg.xmttime.fractionl = arc4random();
p->query->xmttime = gettime();
 
-   if (ntp_sendmsg(p->query->fd, NULL, &p->query->msg,
-   NTP_MSGSIZE_NOAUTH, 0) == -1) {
+   if ((result = ntp_sendmsg(p->query->fd, NULL, &p->query->msg,
+   NTP_MSGSIZE_NOAUTH, 0)) < 0) {
set_next(p, INTERVAL_QUERY_PATHETIC);
+   if (result == -2) {
+   /*
+* got EINVAL in sendto(), probably the local socket
+* address got invalidated -> force re-connect()
+*/
+   close(p->query->fd);
+   p->query->fd = -1;
+   }
return (-1);
}
 
diff -Naur openntpd-3.9p1/ntp_msg.c openntpd-3.9p1-fixed/ntp_msg.c
--- openntpd-3.9p1/ntp_msg.c2006-05-14 07:29:21.0 +0200
+++ openntpd-3.9p1-fixed/ntp_msg.c  2006-10-11 02:41:49.0 +0200
@@ -98,6 +98,8 @@
return (-1);
}
log_warn("sendto");
+   if (errno == EINVAL)
+   return (-2);
return (-1);
}
 



Bug#366370: hal failing on boot, will not run

2006-10-10 Thread Curt Howland
Package: hal
Version: 0.5.8.1-1
Followup-For: Bug #366370


Just installed fresh Unstable last week, hald never ran correctly. The boot
messages say "Starting hal daemon...failed". As with the prior ticket, trying
to start the daemon by hand also fails, even though hal reports that it is
going to run as a daemon there is no process.

Curt-

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

Versions of packages hal depends on:
ii  adduser   3.97   Add and remove users and groups
ii  dbus  0.93-1 simple interprocess messaging syst
ii  libc6 2.3.6.ds1-6GNU C Library: Shared libraries
ii  libdbus-1-3   0.93-1 simple interprocess messaging syst
ii  libdbus-glib-1-2  0.71-2 simple interprocess messaging syst
ii  libexpat1 1.95.8-3.3 XML parsing C library - runtime li
ii  libglib2.0-0  2.12.4-1   The GLib library of C routines
ii  libhal-storage1   0.5.8.1-1  Hardware Abstraction Layer - share
ii  libhal1   0.5.8.1-1  Hardware Abstraction Layer - share
ii  libusb-0.1-4  2:0.1.12-2 userspace USB programming library
ii  libvolume-id0 0.100-2libvolume_id shared library
ii  lsb-base  3.1-17 Linux Standard Base 3.1 init scrip
ii  pciutils  1:2.2.4~pre4-1 Linux PCI Utilities
ii  udev  0.100-2/dev/ and hotplug management daemo
ii  usbutils  0.72-6 USB console utilities

hal recommends no packages.

-- no debconf information


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



Bug#392283: xml-to-sexp: Please add option to keep text as UTF-8

2006-10-10 Thread Reuben Thomas
Package: xml-to-sexp
Version: 1.0-4
Severity: wishlist

This is useful for serious applications, rather than eliding
non-Latin1 data.

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

Versions of packages xml-to-sexp depends on:
ii  libc62.3.6.ds1-4 GNU C Library: Shared libraries
ii  libexpat11.95.8-3.3  XML parsing C library - runtime li

xml-to-sexp recommends no packages.

-- no debconf information


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



Bug#392219: [Debian-med-packaging] Bug#392219: treeviewx: Printing generates null postscript output

2006-10-10 Thread Charles Plessy
Le Tue, Oct 10, 2006 at 08:40:49PM +0100, Roger Leigh a écrit :
> 
> Printing with tv, either to a printer or to a file, generates PostScript
> which is just a header (attached), with no actual output.

Dear Roger,

Using the tree file you provided, I did not manage to reproduce your
bug. I will try to see how it goes on a i386 machine this evening, but
do not hesitate to tell me if you managed to reproduce it on another machine.

To create the PostScript document, I pressed the printer icon, selected
"Generic Postscript", changed the location from "lpr" to "File", and
saved a file named output.ps. I could display it correctly with
ImageMagick. How did you create the .ps file? Does the .pdf export work?

I am wondering if the printing is dependent on other packages, which
could differ between our installations.

I hope that we will be able to grasp the problem together. In the
meantime, a possible workaround could be to export as SVG and convert to
ps or pdf.

Have a nice day,

-- 
Charles



Bug#392232: xserver-xorg-input-joystick: implicit pointer conversion

2006-10-10 Thread Drew Parsons

> Package: xserver-xorg-input-joystick
> Version: 1:1.1.0-1
> 
> Our automated buildd log filter[1] detected a problem that will cause
> your package to segfault on architectures where the size of a pointer
> is greater than the size of an integer, such as ia64 and amd64.
> 
> This is often due to a missing function prototype definition.

For reference, the sole change (apart from version change) between
joystick 1.0.0.5 and 1.1.0 is the removal of 
#include 
from src/xf86Jstk.c.

Drew


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



Bug#392284: coreutils: does not build with apt-build

2006-10-10 Thread Stefan Hirschmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Package: coreutils
Version: 5.97-5
Severity: serious
Justification: no longer builds from source


I tried to install coreutils from source with
"apt-build --reinstall --rebuild install coreutils"
and got an error:
"
...
rm -rf debian/shellutils
rm -f debian/files
find .  \( \( -type f -a \
\( -name '#*#' -o -name '.*~' -o -name '*~' -o -name
DEADJOE \
 -o -name '*.orig' -o -name '*.rej' -o -name '*.bak' \
 -o -name '.*.orig' -o -name .*.rej -o -name '.SUMS' \
 -o -name TAGS -o -name core -o \( -path '*/.deps/*' -a
- -name '*.P' \) \
\) -exec rm -f {} \; \) -o \
\( -type d -a -name autom4te.cache -prune -exec rm -rf
{} \; \) \)
Error while building coreutils!
Sorry, no package to install.
"

Stefan


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

Versions of packages coreutils depends on:
ii  libacl1  2.2.41-1Access control list
shared library
ii  libc62.3.6.ds1-5 GNU C Library: Shared
libraries
ii  libselinux1  1.30.28-2   SELinux shared libraries

coreutils recommends no packages.

- -- no debconf information
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iQIVAwUBRSw/BrQ46AY0FCioAQrzUg//T5QZRdTcdB+07pXYz4NRUS6sb7OjX8px
Z40NDLzLvVHpLd6VS9kJxdG2XHOPLjRr+MAqkzXrYKFXpw6u5v5I5ZXr0gOqoCMV
yc2OhMMIBtGfzqlOtazRGanV5M20YTJCukWTD/vcb9fVt0t9ZGOVhGc1VN/znhTY
e/4P8U//ULRInFguB7RGRnYwIUOAudZt7PxC7DiVxkot07q6lYThQdxit4r8tjrl
MDayl6XSKNDs57IHJ6RzbBCR8mcJV7Ddr/ogGYoSuRino5zZF39TmoF1gFWUDjYR
p8K7mfD3ZjTiwTK5cGIGhObNG0ORYlfva7QFVbz+dkICWIeg5BSYJR1uQ1pYk93M
xw1jlnGj3i450uHs4/hGGFXB/+c3ZMlfSeGeidLlseK95X4RWeVvq07BaR0mVYbB
MqYTJL6P3vkwrU+8RpseZ0de6zNIK3hAfkghu6Qzw0EGYpGmgG4RK9Y4APHkxxen
fts+JuvZ5kNsKFPgby5+Hoa2KEHBDREY5x2VTYXa5BsfmOuAPmf5JlcIEwd0YGeA
3sFnSye79AXNMEA4PHlgbvUmYCs3S49HrlbMMwzJBEzcVmsZl24tqIXba4Sous/U
75S7V8+sriO30OGMABF0cZsXlxTYGl1H0pUEe3+Asq1hr0ZFmc5yTwMaUjXTJiMd
WcWoBKzly78=
=sGIS
-END PGP SIGNATURE-



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



Bug#392282: xml-to-sexp: Man page typo

2006-10-10 Thread Reuben Thomas
Package: xml-to-sexp
Version: 1.0-4
Severity: minor

First mention of the program in the main text of the man page is
written "ml-to-sexp", i.e. missing a letter.
-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

Versions of packages xml-to-sexp depends on:
ii  libc62.3.6.ds1-4 GNU C Library: Shared libraries
ii  libexpat11.95.8-3.3  XML parsing C library - runtime li

xml-to-sexp recommends no packages.

-- no debconf information


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



Bug#392281: cdrdao: Built without Ogg Vorbis support (but with the dependencies!)

2006-10-10 Thread Nathanael Nerode
Package: cdrdao
Version: 1:1.2.1-7
Severity: important

I came across this while working on packages with unnecessary dependencies.
It turns out that cdrdao currently depends on the Ogg and Vorbis libraries
without using them.

It's clearly supposed to use them, however.  There's bad behavior in the 
configure
script.  So the bug is that it doesn't use them, and it should.

Unfortunately, the upstream configure script has the perverse result that if
--with-ogg-support is supplied on the command line, ogg support will be 
DISABLED.

Unfortunately, debian/rules does this:
  CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) 
--build=$(DEB_BUILD_GNU_TYPE
) --prefix=/usr --mandir=\$${prefix}/share/man --without-lame --with-ogg-support

And triggers this perverse behavior.

There are two ways to fix this.  You can in fact apply both fixes 
simultaneously.
1) The dead easy way: remove --with-ogg-support from debian/rules.  After all, 
Ogg
support is there by default.  Alternately, specify --with-ogg-support=yes, which
will work correctly.
2) The clean way: fix upstream's configure.ac and rerun autoconf.
This should probably be sent upstream.

With modern autoconf, --with-ogg-support sets $with_ogg_support to the empty 
string.
So the empty string needs to be interpreted as a "yes".  But that's not done in
upstream's configure.ac.
There are several ways to fix upstream's configure.ac.

Perhaps the easiest way is to replace this line:
--
AC_ARG_WITH(ogg-support,[  --with-ogg-support  enable OGG format support 
(default is
YES)],[],[with_ogg_support=yes])
---
with this line:
---
AC_ARG_WITH(ogg-support,[  --with-ogg-support  enable OGG format support 
(default is YES)],
[if test x$with_ogg_support = x ; then with_ogg_support=yes; 
fi],[with_ogg_support=yes])
---
And the same should be done for the mp3-support line while you're at it, since 
it
has the same problem.

An alternate, and perhaps more robust, fix, is to replace all instances of 
  test "$with_ogg_support" = yes
with
  test "$with_ogg_support" != no

and do the same for with_mp3_support.


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



Bug#390646: xserver-xorg: Server crash when switching back from full screen mode

2006-10-10 Thread Frans Pop
severity 390646 important
thanks

On Monday 02 October 2006 13:51, Frans Pop wrote:
> After playing a particular game (Chromium) in full screen mode, the
> XOrg server crashes about 2 out of 3 times when switching back to KDE.

With the help of David I've done some further research on this and 
obtained a full backtrace from gdb with both the xserver and the i810 
driver compiled with debugging symbols (attached).

I used the upstream 1.7.0 version of the i810 driver for this, so it is 
confirmed that the new driver does _not_ fix this issue.

From the Xorg log:
(II) Module i810: vendor="X.Org Foundation"
compiled for 7.1.1, module version = 1.7.0
Module class: X.Org Video Driver
ABI class: X.Org Video Driver, version 1.0

My default screen resolution when running KDE is 1280x1024. The game 
switches that to fullscreen mode at 800x600.
The crash mostly happens when exiting the game, but also sometimes when 
starting it.
Both starting and exiting the game are also sometimes successful.

Cheers,
FJP

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 47953045281504 (LWP 8640)]
I830SetCursorPosition (pScrn=0x6ea2d0, x=33, y=61) at 
../../src/i830_cursor.c:524
524if (x >= pScrn->currentMode->HDisplay) x = 
pScrn->currentMode->HDisplay - 1;
(gdb) bt f
#0  I830SetCursorPosition (pScrn=0x6ea2d0, x=33, y=61) at 
../../src/i830_cursor.c:524
pI830 = (I830Ptr) 0x6ebee0
temp = 
oldx = 
oldy = 
hotspotx = 0
hotspoty = 0
#1  0x2b9cf1921c39 in xf86SetCursor () from 
/usr/lib/xorg/modules/libramdac.so
No symbol table info available.
#2  0x2b9cf19213c9 in xf86CursorSetCursor () from 
/usr/lib/xorg/modules/libramdac.so
No symbol table info available.
#3  0x004cacf2 in miPointerMove (pScreen=0x6f0cc0, x=34, y=62, 
time=884799019)
at ../../mi/mipointer.c:487
pScreenPriv = (miPointerScreenPtr) 0x71eb20
xE = {u = {u = {type = 224 'à', detail = 180 '´', sequenceNumber = 
47935},
keyButtonPointer = {pad00 = 3141514464, time = 32767, root = 3141513200,
  event = 32767, child = 3141514880, rootX = 32767, rootY = 0, eventX = 
-20480,
  eventY = -17601, state = 32767, sameScreen = 0 '\0', pad1 = 0 '\0'}, 
enterLeave = {
  pad00 = 3141514464, time = 32767, root = 3141513200, event = 32767,
  child = 3141514880, rootX = 32767, rootY = 0, eventX = -20480, eventY = 
-17601,
  state = 32767, mode = 0 '\0', flags = 0 '\0'}, focus = {pad00 = 
3141514464,
  window = 32767, mode = 240 'ð', pad1 = 175 '¯', pad2 = 63 '?', pad3 = 187 
'»'},
expose = {pad00 = 3141514464, window = 32767, x = 45040, y = 47935, width = 
32767,
  height = 0, count = 46720, pad2 = 47935}, graphicsExposure = {pad00 = 
3141514464,
  drawable = 32767, x = 45040, y = 47935, width = 32767, height = 0,
  minorEvent = 46720, count = 47935, majorEvent = 255 'ÿ', pad1 = 127 
'\177',
  pad2 = 0 '\0', pad3 = 0 '\0'}, noExposure = {pad00 = 3141514464, drawable 
= 32767,
  minorEvent = 45040, majorEvent = 63 '?', bpad = 187 '»'}, visibility = {
  pad00 = 3141514464, window = 32767, state = 240 'ð', pad1 = 175 '¯', pad2 
= 63 '?',
  pad3 = 187 '»'}, createNotify = {pad00 = 3141514464, parent = 32767,
  window = 3141513200, x = 32767, y = 0, width = 46720, height = 47935,
  borderWidth = 32767, override = 0 '\0', bpad = 0 '\0'}, destroyNotify = {
  pad00 = 3141514464, event = 32767, window = 3141513200}, unmapNotify = {
  pad00 = 3141514464, event = 32767, window = 3141513200, fromConfigure = 
255 'ÿ',
  pad1 = 127 '\177', pad2 = 0 '\0', pad3 = 0 '\0'}, mapNotify = {pad00 = 
3141514464,
  event = 32767, window = 3141513200, override = 255 'ÿ', pad1 = 127 '\177',
  pad2 = 0 '\0', pad3 = 0 '\0'}, mapRequest = {pad00 = 3141514464, parent = 
32767,
  window = 3141513200}, reparent = {pad00 = 3141514464, event = 32767,
  window = 3141513200, parent = 32767, x = -18816, y = -17601, override = 
255 'ÿ',
  pad1 = 127 '\177', pad2 = 0 '\0', pad3 = 0 '\0'}, configureNotify = {
  pad00 = 3141514464, event = 32767, window = 3141513200, aboveSibling = 
32767,
  x = -18816, y = -17601, width = 32767, height = 0, borderWidth = 45056,
  override = 63 '?', bpad = 187 '»'}, configureRequest = {pad00 = 
3141514464,
  parent = 32767, window = 3141513200, sibling = 32767, x = -18816, y = 
-17601,
  width = 32767, height = 0, borderWidth = 45056, valueMask = 47935, pad1 = 
32767},
gravity = {pad00 = 3141514464, event = 32767, window = 3141513200, x = 
32767, y = 0,
  pad1 = 3141514880, pad2 = 32767, pad3 = 3141513216, pad4 = 32767}, 
resizeRequest = {
  pad00 = 3141514464, window = 32767, width = 45040, height = 47935}, 
circulate = {
  pad00 = 3141514464, event = 32767, window = 3141513200, parent = 32767,
  place = 128 '\200', pad1 = 182 '¶', pad2 = 63 '?', pad3 = 187 '»'}, 
property = {
  pad00 = 3141514464, window = 32767,

Bug#319985: Note on severity upgrade

2006-10-10 Thread Nathanael Nerode
This is 'serious' because it's a sourceless binary file, hence a DFSG violation.
It's probably also a copyright violation, because there's no license text 
associated
with the file (and TCL does have a license which requires distributing the 
license
text along with TCL).

-- 
Nathanael Nerode  <[EMAIL PROTECTED]>

[Insert famous quote here]


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



Bug#392276: needs to take care of /etc/services mess

2006-10-10 Thread Steinar H. Gunderson
Package: nfs-common
Version: 1:1.0.10-1
Severity: important

This is a placeholder bug so I won't forget about it myself. :-)

In Debian, /etc/services is a conffile. This means that on upgrades, it
might not actually get the changes.

At some point, rpc.gssd started requiring having nfs/tcp in
/etc/services. In netbase 4.24 (January 2006), netbase added this (in
response to bug #345836); however, an admin might still not have it
(since it's a conffile). If it's not there, rpc.gssd fails in rather odd
and hard-to-track ways.

Thus, we need to handle this somehow. Braindump for suggestions (a
combination would be good, I guess):

 1. Depend on newbase (>= 4.24).
 2. Error out with a debconf error in postinst if it's not fixed.
 3. Error out in the init script if it's not fixed when/if rpc.gssd
is to be started.
 4. Fall back to simply using port 2049 if the getaddrinfo call fails
(needs to be pushed upstream).

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

Versions of packages nfs-common depends on:
ii  adduser  3.97Add and remove users and groups
ii  libc62.3.6.ds1-5 GNU C Library: Shared libraries
ii  libcomer 1.39+1.40-WIP-2006.10.02+dfsg-1 common error description library
ii  libevent 1.1a-1  An asynchronous event notification
ii  libgssap 0.10-3  A mechanism-switch gssapi library
ii  libkrb53 1.4.4-3 MIT Kerberos runtime libraries
ii  libnfsid 0.17-3  An nfs idmapping library
ii  librpcse 0.14-2  allows secure rpc communication us
ii  lsb-base 3.1-17  Linux Standard Base 3.1 init scrip
ii  portmap  5-20The RPC portmapper
ii  ucf  2.0015  Update Configuration File: preserv

nfs-common recommends no packages.

-- no debconf information


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



Bug#392280: Right-click on a word to translate it to English

2006-10-10 Thread Jason Spiro

Package: firefox
Version: 1.5.dfsg+1.5.0.7-1
Severity: wishlist

When I right-click on a word or phrase which is not in English, such
as "nouvelles", it would be great if I were offered 'Translate
"nouvelles" to English' and 'Translate this webpage to English'. This
should work whether or not the word or phrase is highlighted.

Cheers,
Jason

--
Jason Spiro: computer consulting with a smile.
I also provide training and spyware removal services for homes and businesses.
Call or email for a FREE 5-minute consultation. Satisfaction guaranteed.
416-781-5938 / Email: [EMAIL PROTECTED] / MSN: [EMAIL PROTECTED]


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



Bug#388658: [dpatch-maintainers] Bug#388658: option -r not accepted

2006-10-10 Thread Junichi Uekawa
Hi,

> The man page documents an option -r for specifying the fakeroot command,
> but that option is not accepted by the dpatch program.  (Using the
> environment variable DPEP_ROOTCMD works instead.)

Could clarify which command are you talking about?

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


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



Bug#329216: swat: Panic or segfault in Swat.

2006-10-10 Thread James Barrett
Package: swat
Version: 3.0.23c-1
Followup-For: Bug #329216


(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)
[Thread debugging using libthread_db enabled]
[New Thread -1481464128 (LWP 30897)]
(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)
0xa7c377be in waitpid () from /lib/tls/libc.so.6
#0  0xa7c377be in waitpid () from /lib/tls/libc.so.6
#1  0xa7bdf699 in strtold_l () from /lib/tls/libc.so.6
#2  0xa7e8053d in system () from /lib/tls/libpthread.so.0
#3  0x0810f3ba in smb_panic ()
#4  0x080fda0a in dump_core_setup ()
#5  
#6  0x08077c12 in status_page ()
#7  0x08078337 in status_page ()
#8  0x08079d78 in main ()


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

Versions of packages swat depends on:
ii  libc6   2.3.6.ds1-4  GNU C Library: Shared libraries
ii  libcomerr2  1.39-1   common error description library
ii  libcupsys2  1.2.4-1  Common UNIX Printing System(tm) - 
ii  libgnutls13 1.4.4-1  the GNU TLS library - runtime libr
ii  libkrb531.4.4-3  MIT Kerberos runtime libraries
ii  libldap22.1.30-13+b1 OpenLDAP libraries
ii  libpam0g0.79-3.2 Pluggable Authentication Modules l
ii  libpopt01.10-3   lib for parsing cmdline parameters
ii  netbase 4.25 Basic TCP/IP networking system
ii  samba   3.0.23c-1a LanManager-like file and printer
ii  samba-doc   3.0.23c-1Samba documentation
ii  zlib1g  1:1.2.3-13   compression library - runtime

swat recommends no packages.

-- debconf information:
* swat/smb_conf_warn:


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



Bug#392278: Want autocorrection of URLs

2006-10-10 Thread Jason Spiro

Package: firefox
Version: 1.5.dfsg+1.5.0.7-1
Severity: wishlist

It would be great if, when you type in a wrong URL such as
www.debian.org/devvel, Firefox showed showed the closest suggestions
available at the top (perhaps found by doing a Google search for the
entire URL but with all slashes and dots replaced by spaces), and the
regular 404 page below.

Cheers,
Jason

--
Jason Spiro: computer consulting with a smile.
I also provide training and spyware removal services for homes and businesses.
Call or email for a FREE 5-minute consultation. Satisfaction guaranteed.
416-781-5938 / Email: [EMAIL PROTECTED] / MSN: [EMAIL PROTECTED]


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



Bug#392277: Want autocorrection of hostnames

2006-10-10 Thread Jason Spiro

Package: firefox
Version: 1.5.dfsg+1.5.0.7-1
Severity: wishlist

It would be great if, when you typed in a wrong hostname such as
w.google.com or www.debian.org/devvel, Firefox showed you the
"Server not found" error message but showed the closest suggestions
available below that.

Cheers,
Jason

--
Jason Spiro: computer consulting with a smile.
I also provide training and spyware removal services for homes and businesses.
Call or email for a FREE 5-minute consultation. Satisfaction guaranteed.
416-781-5938 / Email: [EMAIL PROTECTED] / MSN: [EMAIL PROTECTED]


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



Bug#392231: missing __ia64_mk_io_addr def

2006-10-10 Thread dann frazier
purgatory/arch/ia64/io.h is missing a definition for
__ia64_mk_io_addr; for what its worth, one exists on my ia64 system
in:
  /usr/include/asm/io.h

-- 
dann frazier | HP Open Source and Linux Organization


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



Bug#392279: Right-click on an unselected word should offer Answers.com dictionary lookup

2006-10-10 Thread Jason Spiro

Package: firefox
Version: 1.5.dfsg+1.5.0.7-1
Severity: wishlist

When I right-click on a word such as "foobar", even if it is not
selected, I should be offered 'Look up "foobar" at the Answers.com
dictionary' and 'Look up "foobar" at Wiktionary'.

Cheers,
Jason

--
Jason Spiro: computer consulting with a smile.
I also provide training and spyware removal services for homes and businesses.
Call or email for a FREE 5-minute consultation. Satisfaction guaranteed.
416-781-5938 / Email: [EMAIL PROTECTED] / MSN: [EMAIL PROTECTED]


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



Bug#392232: PRIVATE isn't defined

2006-10-10 Thread dann frazier
The problem here appears to be that the symbol PRIVATE isn't defined
anywhere. It compiles fine if I define PRIVATE to be nothing.

-- 
dann frazier | HP Open Source and Linux Organization


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



Bug#392275: logic error in dhcp3-3.0.4/common/discover.c

2006-10-10 Thread Jochen Voss
Package: dhcp3
Version: 3.0.4-8
Severity: normal

Hello,

recently I discovered the following bit of code in the source file
dhcp3-3.0.4/common/discover.c (around line 941):

isc_result_t dhcp_interface_stuff_values (omapi_object_t *c,
  omapi_object_t *id,
  omapi_object_t *h)
{
struct interface_info *interface;
...
if (interface -> flags && INTERFACE_REQUESTED)
status = omapi_connection_put_string (c, "up");
...
}

Looking at include/dhcpd.h it is clear that flags is meant to be a bit
field:

struct interface_info {
...
u_int32_t flags;/* Control flags... */
#define INTERFACE_REQUESTED 1
#define INTERFACE_AUTOMATIC 2
#define INTERFACE_RUNNING 4

...
}

Thus it seems that the intended test was the bit test

if (interface -> flags & INTERFACE_REQUESTED)
status = omapi_connection_put_string (c, "up");

I do not know what the implications of this bug are, but I guess it
should be fixed anyway.

I hope this helps,
Jochen

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


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



Bug#392230: patch

2006-10-10 Thread dann frazier
tag 392230 + patch
thanks

--- xfce4-xmms-plugin-0.4.0/panel-plugin/xmms_plugin.c~ 2006-10-10 
17:39:43.0 -0600
+++ xfce4-xmms-plugin-0.4.0/panel-plugin/xmms_plugin.c  2006-10-10 
17:39:57.0 -0600
@@ -40,6 +40,7 @@
 #include */
 #include 
 #include 
+#include 
 #include 
 
 #include 


-- 
dann frazier | HP Open Source and Linux Organization


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



Bug#391246: general: Buildds should consider changing $HOME

2006-10-10 Thread Wouter Verhelst
On Thu, Oct 05, 2006 at 07:09:21PM +0200, Frank Küster wrote:
> Package: general
> Severity: wishlist
> 
> "general" is not the best package to report this to, but since there's
> no "buildd" package, and I don't want it to be completely forgotten,
> I'll report it here.  I'm quoting from a bugreport where we came across
> this, http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=388399;msg=123:

Good that it's not a bug against a buildd package, since there it should
be tagged 'wontfix'.

> Steve Langasek <[EMAIL PROTECTED]> wrote:
> 
> > On Wed, Oct 04, 2006 at 09:32:16AM +0200, Frank Küster wrote:
> > 
> > > However, I'd like to point out that this problem is not special to TeX.
> > > Many programs create ~/.progname directories when run for the first time
> > > - and these directories contain configuration options which might cause
> > > trouble, since they are not updated or subject to dpkg conffile
> > > questions when the package changes configuration options.  It might be a
> > > good thing to require such tools to have a commandline switch or obey a
> > > commandline variable that prevents this.  Alternatively, HOME could be
> > > set to the temporary build directory, so that everything happens there.

Even more alternatively, these tools should not fail horribly when
writing to directories in $HOME seems impossible for some reason. That
falls under 'standard good programming practices'.

-- 
 Home is where you have to wash the dishes.
  -- #debian-devel, Freenode, 2004-09-22



Bug#392259: Installation report: SATA CD-rom problem

2006-10-10 Thread Frans Pop
On Wednesday 11 October 2006 00:31, Johan Sporre wrote:
> Comments/Problems:
> Had the known problem with SATA CD-rom. Tried the workaround of
> "install libata.apati_enabled=1" at the first prompt. Unsuccesful with
> detecting and mounting CD-rom.

Please provide the output of '(lspci; lspci -n) | sort)'.

Can you check the output of 'dmesg'? Is there any mention of your CD Drive 
and the controller it is connected to being recognized?

You can execute these command after switching to VT2 using alt-F2.

> Next try I wrote "expert install libata.apati_enabled=1" in the prompt.
> Got into expert mode and could deselect the drivers I didn't want to
> install right now (all except ide-generic, ide-cd and isofs). After
> installing those I got a complaint that more drivers were needed for
> the hardware, the drivers being ide-mod, ide-probe-mod, ide-floppy.
> These are drivers that weren't even selectable in the table of drivers.

These are only warnings and harmless.

> Is the problem that I haven't got all needed drivers on the CD-image?

Maybe. We need the lspci output to determine that.


pgpcYZ6EdXdtv.pgp
Description: PGP signature


Bug#392250: openntpd: 'sendto: Invalid argument' errors after IP address change

2006-10-10 Thread BUCHMULLER Norbert
I forgot to attach this file (findings.txt) with the details (lsof output,
strace output, etc.).

norbi
Using 'lsof' I can see that the UDP sockets still has the old
local addresses (even more than one of them: xx.y.88.88, xx.y.81.94,
xx.y.137.222; while the machine has the IP addresses aaa.bb.54.99 and
vv.zzz.155.129 currently):

mars:~# ps ax|grep [n]tpd
 1184 ?Ss 0:00 /usr/sbin/ntpd -s
 1169 ?S  0:05 /usr/sbin/ntpd -s

mars:~# lsof -p 1169 -n | grep UDP
ntpd1169 ntpd3u  IPv46769769 UDP xx.y.88.88:3794->207.61.229.70:ntp 
ntpd1169 ntpd5u  IPv45850288 UDP xx.y.88.88:3127->84.16.227.163:ntp 
ntpd1169 ntpd6u  IPv41473498 UDP xx.y.81.94:2340->84.245.29.246:ntp 
ntpd1169 ntpd7u  IPv46657014 UDP 
xx.y.88.88:3688->193.120.142.71:ntp 
ntpd1169 ntpd8u  IPv46599862 UDP 
xx.y.88.88:3655->216.52.237.153:ntp 
ntpd1169 ntpd9u  IPv4 314716 UDP xx.y.81.94:1318->141.82.30.251:ntp 
ntpd1169 ntpd   10u  IPv4 911147 UDP xx.y.81.94:1798->85.25.5.69:ntp 
ntpd1169 ntpd   11u  IPv41646011 UDP xx.y.81.94:2491->69.31.13.60:ntp 
ntpd1169 ntpd   12u  IPv4 108539 UDP 
xx.y.81.94:1137->193.201.200.74:ntp 
ntpd1169 ntpd   13u  IPv4   12580393 UDP xx.y.137.222:1344->69.31.4.141:ntp 
ntpd1169 ntpd   14u  IPv4 867239 UDP xx.y.81.94:1758->81.209.167.2:ntp 
ntpd1169 ntpd   15u  IPv4   12610189 UDP 
xx.y.137.222:1366->201.103.8.20:ntp 
ntpd1169 ntpd   16u  IPv45830780 UDP xx.y.88.88:3098->67.111.10.242:ntp

And none of the above addresses are configured currently:

mars:~# ip addr | grep -v ether
1: lo:  mtu 16436 qdisc noqueue 
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
2: eth0:  mtu 1500 qdisc pfifo_fast qlen 1000
inet 192.168.4.1/24 brd 192.168.4.255 scope global eth0
inet 192.168.4.2/24 brd 192.168.4.255 scope global secondary eth0:0
3: eth1:  mtu 1500 qdisc pfifo_fast qlen 1000
4: eth2:  mtu 1500 qdisc pfifo_fast qlen 1000
369: ppp0:  mtu 1492 qdisc pfifo_fast qlen 3
link/ppp 
inet aaa.bb.54.99 peer ccc.ddd.1.50/32 scope global ppp0
373: ppp1:  mtu 1492 qdisc pfifo_fast qlen 3
link/ppp 
inet vv.zzz.155.129 peer ddd.eee.238.180/32 scope global ppp1

mars:~# ip ro
ddd.eee.238.180 dev ppp1  proto kernel  scope link  src vv.zzz.155.129 
ccc.ddd.1.50 dev ppp0  proto kernel  scope link  src aaa.bb.54.99 
192.168.4.0/24 dev eth0  proto kernel  scope link  src 192.168.4.1 
default 
nexthop dev ppp0 weight 3
nexthop dev ppp1 weight 1

Using 'strace' I can see that sendto() fails:

mars:~# strace -p 1169
Process 1169 attached - interrupt to quit
time(NULL)  = 1160513854
poll([{fd=4, events=POLLIN}], 1, 6000)  = 0
time(NULL)  = 1160513860
time(NULL)  = 1160513860
gettimeofday({1160513860, 779741}, NULL) = 0
sendto(3, "#\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0, 
NULL, 0) = -1 EINVAL (Invalid argument)
write(2, "sendto: Invalid argument\n", 25) = 25
time(NULL)  = 1160513860
time(NULL)  = 1160513860
gettimeofday({1160513860, 781566}, NULL) = 0
sendto(5, "#\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0, 
NULL, 0) = -1 EINVAL (Invalid argument)
write(2, "sendto: Invalid argument\n", 25) = 25
time(NULL)  = 1160513860
time(NULL)  = 1160513860
time(NULL)  = 1160513860
gettimeofday({1160513860, 783803}, NULL) = 0
sendto(7, "#\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0, 
NULL, 0) = -1 EINVAL (Invalid argument)
write(2, "sendto: Invalid argument\n", 25) = 25
time(NULL)  = 1160513860
time(NULL)  = 1160513860
time(NULL)  = 1160513860
time(NULL)  = 1160513860
gettimeofday({1160513860, 786346}, NULL) = 0
sendto(10, "#\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0, 
NULL, 0) = -1 EINVAL (Invalid argument)
write(2, "sendto: Invalid argument\n", 25) = 25
time(NULL)  = 1160513860
time(NULL)  = 1160513860
gettimeofday({1160513860, 787982}, NULL) = 0
sendto(11, "#\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0, 
NULL, 0) = -1 EINVAL (Invalid argument)
write(2, "sendto: Invalid argument\n", 25) = 25
time(NULL)  = 1160513860
time(NULL)  = 1160513860
time(NULL)  = 1160513860
gettimeofday({1160513860, 788249}, NULL) = 0
sendto(13, "#\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0, 
NULL, 0) = -1 EINVAL (Invalid argument)
write(2, "sendto: Invalid argument\n", 25) = 25
ime(NULL)  = 1160513860
time(NULL)   

Bug#392273: Recursive dependency disease: chrony shouldn't depend on ncurses

2006-10-10 Thread Nathanael Nerode
Package: chrony
Version: 1.21z-3
Severity: normal
Tags: patch

As documented at http://rerun.lefant.net/checklib/ and the linked pages.

Upstream probably won't want to change this, as the "disease" is necessary on
some old platforms.  However, it really shohuld be fixed for Debian.

Easy to fix; the problem lies in chrony's hand-rolled configure script.
Patch follows:
--- configure   2005-08-11 16:32:54.0 -0400
+++ configure.new   2006-10-10 19:23:26.0 -0400
@@ -324,7 +324,7 @@
 
 if [ $feat_readline = "1" ]; then
   READLINE_COMPILE="-DFEAT_READLINE=1 $readline_inc"
-  READLINE_LINK="$readline_lib $ncurses_lib -lreadline -lncurses"
+  READLINE_LINK="$readline_lib $ncurses_lib -lreadline"
 else
   READLINE_COMPILE=""
   READLINE_LINK=""


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



Bug#392272: lsof: WARNING: can't stat() ext3 file system /dev/.static/dev

2006-10-10 Thread Michael Biebl
Package: initscripts
Version: 2.86.ds1-33
Severity: normal

Since one of the latest upgrades, lsof gives me the error message in the
subject when run as unpriviledged user.
E.g: 
 lsof /tmp
 lsof: WARNING: can't stat() ext3 file system /dev/.static/dev
   Output information may be incomplete.

Cheers,
Michael

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (300, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.19-rc1
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)

Versions of packages initscripts depends on:
ii  debianut 2.17.3  Miscellaneous utilities specific t
ii  e2fsprog 1.39+1.40-WIP-2006.10.02+dfsg-1 ext2 file system utilities and lib
ii  libc62.3.6.ds1-6 GNU C Library: Shared libraries
ii  lsb-base 3.1-17  Linux Standard Base 3.1 init scrip
ii  mount2.12r-11Tools for mounting and manipulatin
ii  sysvinit 2.86.ds1-33 System-V-like utilities

Versions of packages initscripts recommends:
ii  psmisc22.3-1 Utilities that use the proc filesy

-- no debconf information


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



Bug#392089: openscenegraph: could the COLLADA related libraries go to non-free then?

2006-10-10 Thread Loic Dachary
Pablo Barbáchano writes:
 > Package: openscenegraph
 > Version: 1.2.0-2
 > Followup-For: Bug #392089
 > 
 > Ok. Even if the Sony license is not free enough for main, wouldn't it
 > be ok to upload it to non-free? I'm willing to do some work.

Of course. Anything is good for non-free. You'll just have to
find a developer willing to deal with the package.

 > The Ogre library does something similar for the package:
 > 
 > ogre-plugins-cgprogrammanager
 > nvidia-cg-toolkit

I'll add dependencies to openscenegraph if this does not make
the package part of contrib. Adding a dependency to a non free package
would make osg part of contrib. 

I could probably add an optional dependency to this package. Is
this what ogre does ? I'll have to dig this.

Cheers,

-- 
+33 1 76 60 72 81  Loic Dachary mailto:[EMAIL PROTECTED]
http://dachary.org/loic/gpg.txt sip:[EMAIL PROTECTED]



Bug#392224: Consider usage of clamav-milter with Debian Etch Postfix

2006-10-10 Thread Stephen Gran
This one time, at band camp, Peter Troeger said:
> I am using your clamav-milter package with Postfix 2.3 from Debian
> Etch. Postfix introduced Milter support with the 2.3 series (see
> http://www.postfix.org/MILTER_README.html). 
> 
> I needed to change /etc/default/clamav-milter so that the Unix domain
> socket file is written do a different location, since the Postfix
> smtpd in Debian is running chroot'ed:
> 
> SOCKET=local:/var/spool/postfix/.../clamav-milter.sock
> 
> It would be good if this is indicated somewhere in the README file.
> 
> I also needed to change /etc/init.d/clamav-milter, so that the
> permissions of the created socket file are modified after startup.
> Otherwise, the Postfix smtpd daemon has not the right permissions to
> read it. It would be good if there is a (described) solution which
> does not demand change of package executables. 
> 
> One idea might be to make the socket file group-readable / writeable
> on creation, which would allow to add the postfix user to the
> according group.

clamav-milter uses smfi_setconn to create it's socket listener, which is
documented here:
http://www.dblab.ece.ntua.gr/~adamo/makecf/milters/milterdoc/smfi_setconn.html

It says to create the socket 0600.  Not sure what to do about that - any
suggestions to maintain interoperability with sendmail (obviously the
first concern) and add some for postfix?  They seem like very different
security models to me, so I'm not sure this will e easy, out of the box.

/etc/default/clamav-milter is there for you to change for local needs,
so I see that part as fine.  I can put a note in the README if it would
(never having used postfix with milters, if you want to send me a short
howto snippet, it would be much appreciated).

Thanks,
-- 
 -
|   ,''`.Stephen Gran |
|  : :' :[EMAIL PROTECTED] |
|  `. `'Debian user, admin, and developer |
|`- http://www.debian.org |
 -


signature.asc
Description: Digital signature


Bug#392266: RFH: openscenegraph -- 3d scenegraph

2006-10-10 Thread OuoU
Package: wnpp
Severity: normal

In order to speed up the production of the package when a new upstream
release becomes available, I'd like to get help. Being able to upload
the package within short delay is greatly appreciated.

YOU don't have to be an official Debian Developer to help.

Please contact me.

Thans.


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



Bug#392264: gallery2: Combine suggests on mysql/postgresql server packages

2006-10-10 Thread Thijs Kinkhorst
Package: gallery2
Version: 2.1.2-1
Severity: minor

Hi,

Gallery needs only one SQL server. Therefore, the current depends of
mysql-server-4.1 | mysql-server AND postgresql-7.4 | postgresql-8.1 do
not make sense. They should be combined into one item with four options:
mysql-server-4.1 | mysql-server | postgresql-7.4 | postgresql-8.1
since you'll always need at most one of that group.


Thanks,
Thijs

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

Versions of packages gallery2 depends on:
ii  apache-ssl [httpd]  1.3.34-4 versatile, high-performance HTTP s
ii  apache2 2.2.3-2  Next generation, scalable, extenda
ii  apache2-mpm-prefork 2.0.55-4.2   traditional model for Apache2
ii  debconf [debconf-2. 1.5.6Debian configuration management sy
ii  imagemagick 7:6.2.4.5.dfsg1-0.10 Image manipulation programs
ii  libapache2-mod-php4 4:4.4.4-2server-side, HTML-embedded scripti
ii  mysql-client-5.0 [m 5.0.24a-9mysql database client binaries
ii  netpbm  2:10.0-10.1  Graphics conversion tools
ii  php44:4.4.4-1server-side, HTML-embedded scripti
ii  php4-cgi4:4.4.4-2server-side, HTML-embedded scripti
ii  php4-mysql  4:4.4.4-2MySQL module for php4
ii  wwwconfig-common0.0.46   Debian web auto configuration

Versions of packages gallery2 recommends:
pn  dcraw  (no description available)
pn  ffmpeg (no description available)
ii  jhead 2.60-2 manipulate the non-image part of E
ii  libjpeg-progs 6b-13  Programs for manipulating JPEG fil
ii  mysql-server  5.0.24a-9  mysql database server (current ver
ii  mysql-server-5.0 [mysql-serve 5.0.24a-9  mysql database server binaries
pn  php4-gd | php5-gd  (no description available)
pn  postgresql-7.4 | postgresql-8  (no description available)
ii  unzip 5.52-9 De-archiver for .zip files
ii  zip   2.32-1 Archiver for .zip files

-- debconf information:
* gallery2/mysql/dbserver: localhost
* gallery2/restart-webserver: true
* gallery2/webserver_type: apache2
* gallery2/mysql/dbname: gallery2
* gallery2/mysql/configure: true
* gallery2/purge: true
* gallery2/mysql/dbadmin: root


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



Bug#392271: dhcp-client: buffer overflow in dhclient

2006-10-10 Thread Jochen Voss
Package: dhcp-client
Version: 2.0pl5-19.4
Severity: normal

Hi,

recently I noticed the following bits of code in the source file
dhcp-2.0pl5/client/dhclient.c:

int main (argc, argv, envp)
int argc;
char **argv, **envp;
{
...
for (i = 1; i < argc; i++) {
if (!strcmp (argv [i], "-p")) {
...
} else {
struct interface_info *tmp =
((struct interface_info *)
 dmalloc (sizeof *tmp, "specified_interface"));
if (!tmp)
error ("Insufficient memory to %s %s",
   "record interface", argv [i]);
memset (tmp, 0, sizeof *tmp);
strcpy (tmp -> name, argv [i]);
...
}
}
...
}

The 'strcpy' copies the command line argument into the 16 byte long
buffer 'tmp->name' without any length check.  This leads to a buffer
overflow.

Probably the following error message is a symptom of this problem:

[EMAIL PROTECTED] [~] /sbin/dhclient $(python -c 'print "a"*2000')
Internet Software Consortium DHCP Client 2.0pl5
Copyright 1995, 1996, 1997, 1998, 1999 The Internet Software Consortium.
All rights reserved.

Please contribute if you find this software useful.
For info, please visit http://www.isc.org/dhcp-contrib.html

*** glibc detected *** realloc(): invalid next size: 0x0806e868 ***
Aborted

I did not check whether this is exploitable in any way, but probably
this should be fixed anyway.

I hope this helps,
Jochen

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

Versions of packages dhcp-client depends on:
ii  libc62.3.6.ds1-6 GNU C Library: Shared libraries

dhcp-client recommends no packages.

-- no debconf information


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



Bug#392268: hibernate: should run 'sensors -s' after resume if lm-sensors installed

2006-10-10 Thread Flavio Stanchina
Package: hibernate
Version: 1.93-1
Severity: normal

After resume, the sensors limits are not set. I think the easiest
solution is adding
  StartServices lm-sensors

to the config file, but maybe this is a problem worth solving with an
ad-hoc scriptlet (which I would be writing if it wasn't this late ;).

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

Versions of packages hibernate depends on:
ii  console-tools  1:0.2.3dbs-65 Linux console and font utilities

Versions of packages hibernate recommends:
ii  hdparm6.6-1  tune hard disk parameters for high
ii  vlock 1.3-10 Virtual Console locking program

-- no debconf information


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



Bug#392080: Swap check fails for swap-on-LVM-on-crypto

2006-10-10 Thread David Härdeman

On Tue, Oct 10, 2006 at 11:33:51PM +0100, James Westby wrote:

So the information is there, I just don't know how to tie the crypt line
to the volume group with the swap in it. Would it need to work out whether onei
was inside the other?
...
It all sounds a little hackish though. Do you know if there is any other
way to get this info?


"dmsetup deps "

--
David Härdeman



Bug#392265: Missing dependency causing crashes

2006-10-10 Thread Jeroen van Wolffelaar
Package: kdebluetooth
Version: 0.99+1.0beta1-12
Severity: important

If you're recieving a file via bluetooth, and click somewhere in the
window where the incoming files are, kbtobexsrv crashes if you don't
have kdebase-bin installed:

| KCrash: Application 'kbtobexsrv' crashing...
| Could not find 'drkonqi' executable.

kbtobexsrv should not crash, or kdebluetooth should depend on
kdebase-bin.

--Jeroen

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

Versions of packages kdebluetooth depends on:
ii  kdelibs4c2a 4:3.5.4-3core libraries and binaries for al
ii  libacl1 2.2.41-1 Access control list shared library
ii  libart-2.0-22.3.17-1 Library of functions for 2D graphi
ii  libattr12.4.32-1 Extended attribute shared library
ii  libaudio2   1.8-2The Network Audio System (NAS). (s
ii  libbluetooth2   3.5-1Library to use the BlueZ Linux Blu
ii  libc6   2.3.6.ds1-4  GNU C Library: Shared libraries
ii  libfam0 2.7.0-10 Client library to control the FAM 
ii  libfontconfig1  2.4.1-2  generic font configuration library
ii  libfreetype62.2.1-5  FreeType 2 font engine, shared lib
ii  libgcc1 1:4.1.1-13   GCC support library
ii  libice6 1:1.0.1-2X11 Inter-Client Exchange library
ii  libidn110.6.5-1  GNU libidn library, implementation
ii  libjpeg62   6b-13The Independent JPEG Group's JPEG 
ii  libopenobex11.3-1OBEX protocol library
ii  libpng12-0  1.2.8rel-5.2 PNG library - runtime
ii  libqt3-mt   3:3.3.6-4Qt GUI Library (Threaded runtime v
ii  libsm6  1:1.0.1-3X11 Session Management library
ii  libstdc++6  4.1.1-13 The GNU Standard C++ Library v3
ii  libusb-0.1-42:0.1.12-2   userspace USB programming library
ii  libx11-62:1.0.0-9X11 client-side library
ii  libxcursor1 1.1.7-4  X cursor management library
ii  libxext61:1.0.1-2X11 miscellaneous extension librar
ii  libxft2 2.1.8.2-8FreeType-based font drawing librar
ii  libxi6  1:1.0.1-3X11 Input extension library
ii  libxinerama11:1.0.1-4.1  X11 Xinerama extension library
ii  libxrandr2  2:1.1.0.2-4  X11 RandR extension library
ii  libxrender1 1:0.9.1-3X Rendering Extension client libra
ii  libxt6  1:1.0.2-2X11 toolkit intrinsics library
ii  qobex   0.99+1.0beta1-12 Swiss army knife for the OBject EX
ii  zlib1g  1:1.2.3-13   compression library - runtime

kdebluetooth recommends no packages.

-- no debconf information

-- 
Jeroen van Wolffelaar
[EMAIL PROTECTED] (also for Jabber & MSN; ICQ: 33944357)
http://Jeroen.A-Eskwadraat.nl


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



Bug#390994: that e100 bit

2006-10-10 Thread Nathanael Nerode
Sven Luther wrote:
>Can you check that those binary blobs are indeed bit-to-bit identic ? 
I checked the first and last 20 or so bytes of each one -- it will require a 
little program-writing work to put them in a form where I can "cmp" them, but 
I'm pretty sure what the result will be.


>> However, the microcode is still non-free (lack of source).  Conversion to 
userland
>> firmware loading should be done (and I might even get around to it myself).  
If
>> this is done, I strongly advise that the *same format* and *same filenames* 
be used
>> as in OpenBSD, so that the firmware files are interchangable; no point in 
deliberate
>> incompatibility.
>
>Indeed. Do you agree that we can do this post-etch, as the current GRs 
>propose ? 

Yes.

-- 
Nathanael Nerode  <[EMAIL PROTECTED]>

A thousand reasons. http://www.thousandreasons.org/
Lies, theft, war, kidnapping, torture, rape, murder...
Get me out of this fascist nightmare!


pgp9oCp6ObCUt.pgp
Description: PGP signature


Bug#390437: Please include diagnostic dfbinfo tool

2006-10-10 Thread Guillem Jover
Hi,

On Sun, 2006-10-01 at 11:47:35 +0200, Attilio Fiandrotti wrote:
> package: libdirectfb-0.9-25-udeb
> severity: normal

> Please, include dfbinfo tool (provided currently by libdirectfb-bin 
> regular deb) into package libdirectfb-0.9-25-udeb.
> Denis Oliver Knopp explicitly suggested [1] inclusion of this tool into 
> the g-i; it will be very usuful at detecting (and fixing, hopefully) 
> input devices related issues which gave us many an headache recently.

Sure. But there's a problem, I don't want to provide that tool under
/usr/bin withing a library, that makes it not co-installable with
another one with different soname. Ideally I'd create a new
libdirectfb-bin-udeb or similar and put it there, with other useful
tools, but that implies NEW, wich I'd rather avoid at this time of
release. So would it be acceptable for now to put the binary under

  /usr/lib/directfb-0.9.25/bin

?

regards,
guillem


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



Bug#392262: whish for mc Midnight Commander

2006-10-10 Thread Anton Lefering
Package: mc
Latest version 1:4.6.1-5

When I normal log on my computer I get white text on a black background. 
However, when I log in as root, I get RED text on a black background, as a 
warning.
I would like a similar (subtle) warning in the colours MC uses when the user 
happens to have superuser privileges.

I tried fiddling with the source a bit, but didn't get a satisfactorily 
result. Even colours management in mc is sophisticated.
And do not know how it would work out on other systems.

An alternative could be : root adds in .bashrc
setterm  -foreground red -bold on -store
But then the changes are kept when root logs out.

Maybe easy for an experienced programmer to put in the wrapper ?


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



Bug#392269: Find related: e.g. "crash" should also find "crash*" and "freeze*"

2006-10-10 Thread Jason Spiro

Package: bugzilla
Version: 2.20
Severity: wishlist

It would be great if Bugzilla did searching on related words. For
example, searching for "crash" should also find "crashes", "crashing",
"crash*", (all words starting with the word "crash"), "freeze",
"freezes", and "freeze*". Searching for "font size" should also find
"text size".

But, there should be an option to disable this related searching too.

For more info on how to implement related searching, see:
http://en.wikipedia.org/wiki/Stemming

Cheers,
Jason Spiro

--
Jason Spiro: computer consulting with a smile.
I also provide training and spyware removal services for homes and businesses.
Call or email for a FREE 5-minute consultation. Satisfaction guaranteed.
416-781-5938 / Email: [EMAIL PROTECTED] / MSN: [EMAIL PROTECTED]


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



Bug#392270: "Vote for this bug" should automatically vote for you on one-vote-per-bug Bugzillas

2006-10-10 Thread Jason Spiro

Package: bugzilla
Version: 2.20
Severity: wishlist

On Bugzillas where you are only allowed to vote once per bug, "Vote
for this bug" should automatically vote for you.

Cheers,
Jason Spiro


--
Jason Spiro: computer consulting with a smile.
I also provide training and spyware removal services for homes and businesses.
Call or email for a FREE 5-minute consultation. Satisfaction guaranteed.
416-781-5938 / Email: [EMAIL PROTECTED] / MSN: [EMAIL PROTECTED]


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



Bug#392267: Show a "Recently Visited: bug111 > bug222 > bug333" tool at the bottom of every Bugzilla page, including after logout and login again

2006-10-10 Thread Jason Spiro

Package: bugzilla
Version: 2.20
Severity: wishlist

It would be great if at the bottom of all Bugzilla webpages there was
a "Recently Visited" list which shows links to the last 20 bugs you
visited. E.g. if you visited bugs 111, then 222, then 333, it would
show:

Recently Visited: 111 > 222 > 333

This information would be saved and it would reappear even after you
log out and back in again.

Cheers,
Jason Spiro

--
Jason Spiro: computer consulting with a smile.
I also provide training and spyware removal services for homes and businesses.
Call or email for a FREE 5-minute consultation. Satisfaction guaranteed.
416-781-5938 / Email: [EMAIL PROTECTED] / MSN: [EMAIL PROTECTED]


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



Bug#392263: net-tools: buffer overflow in ipmaddr

2006-10-10 Thread Jochen Voss
Package: net-tools
Version: 1.60-17
Severity: normal

Hello,

recently I noticed the following bits of code in the source file
net-tools-1.60/ipmaddr.c:

...
char filter_dev[16];
...
static int multiaddr_list(int argc, char **argv)
{
struct ma_info *list = NULL;

while (argc > 0) {
if (strcmp(*argv, "dev") == 0) {
NEXT_ARG();
if (filter_dev[0])
usage();
strcpy(filter_dev, *argv);
} else if ...
...
} else {
if (filter_dev[0])
usage();
strcpy(filter_dev, *argv);
}
argv++; argc--;
}
}
...
int do_multiaddr(int argc, char **argv)
{
...
if (matches(*argv, "list") == 0 || matches(*argv, "show") == 0
|| matches(*argv, "lst") == 0)
return multiaddr_list(argc-1, argv+1);
usage();
}
...
int main(int argc, char **argv)
{
...
return do_multiaddr(argc-1, argv+1);
}

If you follow the calling chain, you can see that for calls like

ipmaddr show dev a

command line arguments are copied into the 16 bytes long buffer
'filter_dev' using 'strcpy' without any length checks.  This leads to
a buffer overflow.

I did not check whether this is exploitable in any form, but it would
be nice if this could be fixed anyway.

I hope this helps,
Jochen

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

Versions of packages net-tools depends on:
ii  libc62.3.6.ds1-6 GNU C Library: Shared libraries

net-tools recommends no packages.

-- no debconf information


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



Bug#392221: partman-auto-crypto

2006-10-10 Thread David Härdeman

On Tue, Oct 10, 2006 at 08:56:31PM +0100, James Westby wrote:

Could support be added for just crypto setup without LVM, using
loop-aes. Perhaps waiting until after #381895 is fixed, so that the root
partition can be encrypted as well.

It would be nice to have the support to have crypto without using LVM,
of course it is possible to do it manually, but hey, isn't that what wishlist
bugs are for?


I find this very unlikely to happen.

The idea of the guided partitioning schemes is to provide a couple of 
decent defaults for unexperienced users while still giving "powerusers" 
the full freedom of choice trough the manual partitioning.


Cluttering up the guided partitioning choices with several confusingly 
similar choices would just reduce the value of the guided partitioning 
and bring it closer to the manual one.


--
David Härdeman



Bug#392261: pcmciautils: ..i82365 is 'modprobe && modprobed -r'ed in a rah-rah-rah style loop, was first reported on udev as bug#391832

2006-10-10 Thread Arnt Karlsen
Package: pcmciautils
Version: 014-2
Severity: normal


wee udevmonitor output snippet:
 UDEV  [1160337418.883552] add@/module/i82365
 UDEV  [1160337418.925886] add@/bus/platform/drivers/i82365
 UDEV  [1160337418.952325] add@/devices/platform/i82365.0
 UEVENT[1160337419.012676] add@/module/i82365
 UEVENT[1160337419.012795] add@/bus/platform/drivers/i82365
 UEVENT[1160337419.012859] add@/devices/platform/i82365.0
 UEVENT[1160337419.012919] remove@/devices/platform/i82365.0
 UEVENT[1160337419.012979] remove@/bus/platform/drivers/i82365
 UDEV  [1160337419.033612] remove@/bus/platform/drivers/i82365
 UEVENT[1160337419.037723] remove@/module/i82365
 UDEV  [1160337419.155955] remove@/module/i82365
 UDEV  [1160337419.181726] remove@/devices/platform/i82365.0
etc loops, eating all the omph.  Desktop, no pcmcia gear.

...so, Marco adviced udev don't do removal and closed Bug#391832,
asking me to instead put blame here on pcmciautils ;o) to help 
track down this. 

...I also have these ref debs, as my 5 aoulde IBM tp 760ED's are a bit over the 
hill:
[EMAIL PROTECTED]:/var/www/dropzone $ dpkg -l |grep pcmcia
ii  kernel-pcmcia-modules-2.4.27-2-k6 2.4.27-12  Mainstream PCMCIA modules 
2.4.27 on AMD K6/K
ii  pcmcia-cs 3.2.8-8PCMCIA Card Services for Linux 
(deprecated)
ii  pcmcia-source 3.2.8-8Old PCMCIA kernel modules 
source
ii  pcmciautils   014-2  PCMCIA utilities for Linux 2.6



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

Versions of packages pcmciautils depends on:
ii  libc62.3.6.ds1-6 GNU C Library: Shared libraries
ii  libsysfs22.0.0-7 interface library to sysfs
ii  lsb-base 3.1-17  Linux Standard Base 3.1 init scrip
ii  module-init-tools3.2.2-3 tools for managing Linux kernel mo

Versions of packages pcmciautils recommends:
ii  udev  0.100-2/dev/ and hotplug management daemo

-- no debconf information



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



Bug#392259: Installation report: SATA CD-rom problem

2006-10-10 Thread Johan Sporre
Package: installation-reports

Boot method: CD-rom
Image version: beta 3 netinstall for i386, from debian.org
Date: 2006-10-10

Machine: Designed
Processor: Intel Core 2 Duo e6600 2.4 GHz
Memory: 2 GB pc5300
Partitions: 20 GB Win XP (installed), 100 GB NTFS,
5 GB ext3, 110 GB ext3

Output of lspci and lspci -n: Not able to do that

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

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

Comments/Problems:
Had the known problem with SATA CD-rom. Tried the workaround of "install
libata.apati_enabled=1" at the first prompt. Unsuccesful with detecting
and mounting CD-rom.
Next try I wrote "expert install libata.apati_enabled=1" in the prompt.
Got into expert mode and could deselect the drivers I didn't want to
install right now (all except ide-generic, ide-cd and isofs). After
installing those I got a complaint that more drivers were needed for the
hardware, the drivers being ide-mod, ide-probe-mod, ide-floppy. These are
drivers that weren't even selectable in the table of drivers.
Is the problem that I haven't got all needed drivers on the CD-image?

Regards,
/Johan



Bug#391502: closed by Christopher Martin <[EMAIL PROTECTED]> (Re: Bug#391502: Incorrect dependency on pmount)

2006-10-10 Thread Christopher Martin
On Tuesday 10 October 2006 18:05, Michael Biebl wrote:
> reopen 391502
> thanks
>
> > On Friday 06 October 2006 18:45, Michael Biebl wrote:
> >> Package: kdebase
> >> Version: 4:3.5.5-1
> >> Severity: serious
> >> Justification: violates policy
> >>
> >> The latest package update introduced a strict dependency on hal
> >> and pmount. While the hal dependency is correct, the pmount
> >> dependency is not. KDE simply calls the hal Mount()/Unmount()
> >> methods, nowhere in the KDE code, pmount is actually used. If hal
> >> would use pmount internally to do the actual mounting[1], fine,
> >> let the hal package declare the correct dependencies. Adding the
> >> pmount dependency to kdebase is simply wrong and violates the
> >> policy, which states that strict dependencies have to reflect that
> >> the "depended-on package is required for the depending package to
> >> provide a significant amount of functionality" which is not the
> >> case here.
> >> Please see also #388341, the Recommends: pmount of
> >> kdebase-kio-plugins does not directly violate the policy, still it
> >> should be removed for the same reasons.
> >
> > If the user does not have a line in /etc/fstab for a drive, then
> > HAL will not be able to mount the drive in a way that works
> > properly with KDE. Strange but true. That is, of course, unless
> > pmount is installed, in which case HAL uses it to mount devices, in
> > a way which works with KDE. Thus the depends/recommends on pmount
> > makes perfect sense, and is by no means a policy violation.
>
> Seems, you didn't read my email carefully. Since version 0.5.8, hal
> does not use pmount anymore to do the mounting. Please check the
> source code, if you don't believe me.
> So now I have pmount installed, without any good reason.

Argh, you're right, I didn't read the last blurb. Thanks. That said, 
pmount is still used (_directly_ by KDE) in some code, so while I'll 
drop it from kdebase's Depends, it'll stay as a Recommends with 
kdebase-kio-plugins.

> And still, it's up to the hal package, to add the dependency on
> pmount or not, because only the hal package knows, which tools it
> uses internally to do the mounting.

I still disagree here, because this was an unusual case where the 
backend's choice of tool affected the frontend in an important way. But 
now it doesn't matter anyway.

Cheers,
Christopher Martin


pgpho6DrK5z1L.pgp
Description: PGP signature


Bug#392260: Makes other bluetooth apps stop working

2006-10-10 Thread Jeroen van Wolffelaar
Package: bluemon
Version: 1.3-1.2
Severity: serious

In its default install, bluemon hooks into the bluetooth stack with a
fake macaddress, causing at least kbluetoothd to stop working at all.
One could argue it's either of the two, and that by installing bluemon
you want it as a service, but... in the default install, it doesn't work
anyway (needs configuration), also, I do happen to believe that if
bluemon is conflicting with the proper working of kdebluetooth, it
should either conflict, or probably better, just not be enabled by
default and list appropriate warnings in /etc/default/bluemon on what
enabling would entail.

--Jeroen

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

Versions of packages bluemon depends on:
ii  bluez-utils  3.5-1   Bluetooth tools and daemons
ii  libbluetooth23.5-1   Library to use the BlueZ Linux Blu
ii  libc62.3.6.ds1-4 GNU C Library: Shared libraries
ii  libdbus-1-3  0.92-2  simple interprocess messaging syst

bluemon recommends no packages.

-- no debconf information

-- 
Jeroen van Wolffelaar
[EMAIL PROTECTED] (also for Jabber & MSN; ICQ: 33944357)
http://Jeroen.A-Eskwadraat.nl


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



Bug#392080: Swap check fails for swap-on-LVM-on-crypto

2006-10-10 Thread James Westby
submitter 392080 !
thanks

Ok, so I have the problem captured in a VM, the relevant thing I guess
is what dm_is_safe returns

(details slightly masked as I can't paste them from the VM

/proc/swaps contains
Filename ...
/dev/mapper/Debian--swap partition 12345 388 -1


/sbin/dmsetup table outputs
hda1_crypt: 0 6134711 crypt aes-cbc-essiv:sha256 cc234329750923475293... 0 3:1 
2056
Debian--swap: 0 1234 linear 254:0 384

So the information is there, I just don't know how to tie the crypt line
to the volume group with the swap in it. Would it need to work out whether onei
was inside the other?

The dmsetup info output has the major/minor numbers for them, which is a
little more informative, but harder to parse.

So a possible strategy

  1) Do what was done previously, if that says crypt then it's ok, else
  2) Find the volume group by examining the info output (look for
  matching major number and 0 minor number).
  3) Use the old approach on this target, and check for crypt there.

Note: I have no experience with LVM, so I'm just making this up.

The other possiblity is that the group always starts the list of
volumes, so if the volume starts at 0, look at the previous one that
also starts at 0 (possibly just the previous). If it starts later, look
for the second starting at 0 going backwards.

It all sounds a little hackish though. Do you know if there is any other
way to get this info?

James

-- 
  James Westby   --GPG Key ID: B577FE13-- http://jameswestby.net/
  seccure key - (3+)k7|M*edCX/.A:n*N!>|&7U.L#9E)Tu)T0>AM - secp256r1/nistp256



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



Bug#392256: Suggestion: include a 'nocomment' util.

2006-10-10 Thread A. Costa
Package: moreutils
Version: 0.18
Severity: wishlist


An easy problem that needs a tool:   I've just been reading various
message boards and usenet threads about how to set up 'Freenx', (O the
pain!), and what I noticed was that there were an awful lot of config
files dumped by confused users, and most 'em were comments.  So much
useless data...

Suggest a 'nocomment' util would be useful, even though at first glance
it might seem too trivial to bother with.

It would work like this function:

nocomment() { grep -v -e '^#.*$\|^$' $1 ; }

...but allow for other whitespace, and take stdio.  Maybe have an option
to include "vicinity comments" -- that is, show the  preceding or nearby
comments for any line that isn't a comment.  It might be made
language aware, for scripting languages with different comment syntax.

Why it'd be useful, if used:

wc -l < /etc/ssh/ssh_config ; nocomment /etc/ssh/ssh_config | wc -l
45
3

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/dash
Kernel: Linux 2.6.16-2-686
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set to C)

Versions of packages moreutils depends on:
ii  libc62.3.6.ds1-5 GNU C Library: Shared libraries
ii  perl 5.8.8-6.1   Larry Wall's Practical Extraction 

moreutils recommends no packages.

-- no debconf information


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



Bug#392257: segfault in en_US.UTF-8 locale

2006-10-10 Thread Jim Paris
Package: grep
Version: 2.5.1.ds2-5
Severity: normal

$ echo -e 'XXX\nYYY' | env -i LC_CTYPE=en_US grep -A 1 -m 1 -i XXX
XXX
YYY
$ echo -e 'XXX\nYYY' | env -i LC_CTYPE=en_US.UTF-8 grep -A 1 -m 1 -i XXX
XXX
Segmentation fault

Tested on amd64 and i386.

-jim

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

Versions of packages grep depends on:
ii  libc6 2.3.6-15   GNU C Library: Shared libraries

grep recommends no packages.

-- no debconf information


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



Bug#391502: closed by Christopher Martin <[EMAIL PROTECTED]> (Re: Bug#391502: Incorrect dependency on pmount)

2006-10-10 Thread Michael Biebl

> If the user does not have a line in /etc/fstab for a drive, then HAL 
> will not be able to mount the drive in a way that works properly with 
> KDE. Strange but true. That is, of course, unless pmount is installed, 

This is btw not true anymore with hal-0.5.8.x.

> in which case HAL uses it to mount devices, in a way which works with 
> KDE. Thus the depends/recommends on pmount makes perfect sense, and is 
> by no means a policy violation.
> 
> Cheers,
> Christopher Martin


-- 
Why is it that all of the instruments seeking intelligent life in the
universe are pointed away from Earth?



signature.asc
Description: OpenPGP digital signature


  1   2   3   4   5   6   >