Bug#308246: file conflicts in uniconf-tools, fonty-rg

2005-05-11 Thread Radovan Garabik
On Mon, May 09, 2005 at 11:44:11AM -0400, Simon Law wrote:
> Hi Radovan,
> 
> Can you upload fonty-rg's /usr/bin/uni as /usr/bin/utf8 instead?  In
> UniConf, the /usr/bin/uni tool queries and manages a database, while in
> fonty-rg, it's used just for switching console-fonts.

ok, I'll do a new version

> 
> Simon
> 
> 

-- 
 ---
| Radovan Garabík http://kassiopeia.juls.savba.sk/~garabik/ |
| __..--^^^--..__garabik @ kassiopeia.juls.savba.sk |
 ---
Antivirus alert: file .signature infected by signature virus.
Hi! I'm a signature virus! Copy me into your signature file to help me spread!


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



Bug#308569: lintian: warn for update-inetd/adduser in maint script without depends

2005-05-11 Thread Russ Allbery
Package: lintian
Version: 1.23.8
Severity: wishlist
Tags: patch

The testing being done for the sarge release has revealed that a fair
number of packages use update-inetd in maintainer scripts without a
dependency on netbase or adduser without a dependency on adduser.  The
following tested patch adds a check for this.

I'm not sure if more should be said about when this warning may be
ignorable (such as when the invocation is conditional), or if brevity is
the soul of wit.

diff -ru lintian-1.23.8/checks/scripts lintian-1.23.8.new/checks/scripts
--- lintian-1.23.8/checks/scripts   2005-01-14 09:19:55.0 -0800
+++ lintian-1.23.8.new/checks/scripts   2005-05-10 23:29:43.0 -0700
@@ -396,7 +396,7 @@
 open C, "$filename"
or fail("cannot open maintainer script $filename for reading: $!");
 
-my ($warned_tmp, $warned_killall);
+my ($warned_tmp, $warned_killall, $warned_netbase, $warned_adduser);
 my $cat_string = "";
 
 while () {
@@ -477,6 +477,20 @@
if (m,\bsuidregister\b,) {
tag "suidregister-used-in-maintainer-script", "$file";
}
+   if (m,\bupdate-inetd\b, && !$warned_netbase) {
+   my $type = $deps{'netbase'};
+   unless ($type and ($type eq 'depends' or $type eq 'pre-depends')) {
+   tag "maintainer-script-needs-depends-on-netbase", "$file";
+   $warned_netbase = 1;
+   }
+   }
+   if (m,\badduser\b, && !$warned_adduser) {
+   my $type = $deps{'adduser'};
+   unless ($type and ($type eq 'depends' or $type eq 'pre-depends')) {
+   tag "maintainer-script-needs-depends-on-adduser", "$file";
+   $warned_adduser = 1;
+   }
+   }
if ($file eq 'postrm') {
if (m,update\-alternatives \-\-remove,) {
tag "update-alternatives-remove-called-in-postrm", "";
diff -ru lintian-1.23.8/checks/scripts.desc 
lintian-1.23.8.new/checks/scripts.desc
--- lintian-1.23.8/checks/scripts.desc  2005-01-14 13:09:42.0 -0800
+++ lintian-1.23.8.new/checks/scripts.desc  2005-05-10 23:19:19.0 
-0700
@@ -616,6 +616,16 @@
  command 'dpkg-statoverride' gives admins more flexibility.  Please see
  the documentation of suidmanager and dpkg-statoverride for details.
 
+Tag: maintainer-script-needs-depends-on-netbase
+Type: warning
+Info: This script calls update-inetd, but the package does not depend or
+ pre-depend on netbase, which provides it.
+
+Tag: maintainer-script-needs-depends-on-adduser
+Type: warning
+Info: This script calls adduser, but the package does not depend or
+ pre-depend on the adduser package.
+
 Tag: update-alternatives-remove-called-in-postrm
 Type: warning
 Info: 'update-alternatives --remove  foo' is called in the


-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.4.30
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set to C)

Versions of packages lintian depends on:
ii  binutils   2.15-5The GNU assembler, linker and bina
ii  diffstat   1.39-1produces graph of changes introduc
ii  file   4.12-1Determines file type using "magic"
ii  gettext0.14.1-10 GNU Internationalization utilities
ii  intltool-debian0.30+20040213 Help i18n of RFC822 compliant conf
ii  man-db 2.4.2-21  The on-line manual pager
ii  perl [libdigest-md5-perl]  5.8.4-8   Larry Wall's Practical Extraction 

-- no debconf information


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



Bug#297706: libapache-mod-witch: patch for postrm problem

2005-05-11 Thread Russ Allbery
Package: libapache-mod-witch
Version: 0.0.4
Followup-For: Bug #297706

sed uses \( and \) for grouping, not ( ).  Here's a patch that fixes this
problem.

--- libapache-mod-witch-0.0.4/debian/postrm.orig2002-09-16 
11:36:39.0 -0700
+++ libapache-mod-witch-0.0.4/debian/postrm 2005-05-10 23:50:07.0 
-0700
@@ -11,7 +11,7 @@
 killconf () {
tmpfile=/etc/apache/httpd.conf.tmp.$$
cat /etc/apache/httpd.conf |\
-sed 's/^(LoadModule.*mod_witch\.so)/#\1/' > $tmpfile
+sed 's/^\(LoadModule.*mod_witch\.so\)/#\1/' > $tmpfile
mv -f $tmpfile /etc/apache/httpd.conf
ask_restart
 }

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.4.30
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set to C)

Versions of packages libapache-mod-witch depends on:
pn  apache-commonNot found.
ii  libc6   2.3.2.ds1-21 GNU C Library: Shared libraries an
pn  libdb4.1 Not found.
ii  libexpat1   1.95.8-3 XML parsing C library - runtime li


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



Bug#308570: evolution: typo on nntp account dialog

2005-05-11 Thread Can Burak Cilingir
Package: evolution
Version: 2.2.2-3
Severity: minor


When creating a anew NNTP account, at the step "Receiving Email",
description has a space missing. "toUSENET" should be "to USENET"

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.9-2-686
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages evolution depends on:
ii  evolution-data-serve 1.2.2-3 evolution database backend server
ii  gconf2   2.8.1-5 GNOME configuration database syste
ii  gnome-icon-theme 2.8.0-4 GNOME Desktop icon theme
ii  gtkhtml3.6   3.6.2-1 HTML rendering/editing library - b
ii  libart-2.0-2 2.3.17-1Library of functions for 2D graphi
ii  libatk1.0-0  1.8.0-4 The ATK accessibility toolkit
ii  libaudiofile00.2.6-6 Open-source version of SGI's audio
ii  libbonobo2-0 2.8.1-2 Bonobo CORBA interfaces library
ii  libbonoboui2-0   2.8.1-2 The Bonobo UI library
ii  libc62.3.2.ds1-21GNU C Library: Shared libraries an
ii  libcamel1.2-01.2.2-3 The Evolution MIME message handlin
ii  libcompfaceg11989.11.11-24   Compress/decompress images for mai
ii  libebook1.2-31.2.2-3 Client library for evolution addre
ii  libecal1.2-2 1.2.2-3 Client library for evolution calen
ii  libedataserver1.2-4  1.2.2-3 Utily library for evolution data s
ii  libedataserverui1.2- 1.2.2-3 GUI utily library for evolution da
ii  libesd-alsa0 [libesd 0.2.35-2.1  Enlightened Sound Daemon (ALSA) - 
ii  libfontconfig1   2.3.2-1 generic font configuration library
ii  libfreetype6 2.1.7-2.4   FreeType 2 font engine, shared lib
ii  libgail-common   1.8.4-1 GNOME Accessibility Implementation
ii  libgail171.8.4-1 GNOME Accessibility Implementation
ii  libgal2.4-0  2.4.2-1 G App Libs (run time library)
ii  libgal2.4-common 2.4.2-1 G App Libs (common files)
ii  libgconf2-4  2.8.1-5 GNOME configuration database syste
ii  libgcrypt11  1.2.0-11LGPL Crypto library - runtime libr
ii  libglade2-0  1:2.4.2-2   library to load .glade files at ru
ii  libglib2.0-0 2.6.4-1 The GLib library of C routines
ii  libgnome-keyring00.4.2-1 GNOME keyring services library
ii  libgnome-pilot2  2.0.12-1.2  Support libraries for gnome-pilot
ii  libgnome2-0  2.8.1-2 The GNOME 2 library - runtime file
ii  libgnomecanvas2-02.8.0-1 A powerful object-oriented display
ii  libgnomeprint2.2-0   2.8.2-1 The GNOME 2.2 print architecture -
ii  libgnomeprintui2.2-0 2.8.2-2 GNOME 2.2 print architecture User 
ii  libgnomeui-0 2.8.1-3 The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0   2.8.4-3 The GNOME virtual file-system libr
ii  libgnutls11  1.0.16-13   GNU TLS library - runtime library
ii  libgpg-error01.0-1   library for common error values an
ii  libgtk2.0-0  2.6.4-1 The GTK+ graphical user interface 
ii  libgtkhtml3.6-18 3.6.2-1 HTML rendering/editing library - r
ii  libice6  4.3.0.dfsg.1-12.0.1 Inter-Client Exchange library
ii  libjpeg626b-10   The Independent JPEG Group's JPEG 
ii  libldap2 2.1.30-6OpenLDAP libraries
ii  libnspr4 2:1.7.7-2   Netscape Portable Runtime Library
ii  libnss3  2:1.7.7-2   Network Security Service Libraries
ii  liborbit21:2.12.2-1  libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-01.8.1-1 Layout and rendering of internatio
ii  libpisock8   0.11.8-10   Library for communicating with a P
ii  libpisync0   0.11.8-10   Synchronization library for PalmOS
ii  libpopt0 1.7-5   lib for parsing cmdline parameters
ii  libsm6   4.3.0.dfsg.1-12.0.1 X Window System Session Management
ii  libsoup2.2-7 2.2.3-2 an HTTP library implementation in 
ii  libtasn1-2   0.2.10-4Manage ASN.1 structures (runtime)
ii  libx11-6 4.3.0.dfsg.1-12.0.1 X Window System protocol client li
ii  libxml2  2.6.16-7GNOME XML library
ii  xlibs4.3.0.dfsg.1-12 X Keyboard Extension (XKB) configu
ii  zlib1g   1:1.2.2-4   compression library - runtime

-- no debconf information


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



Bug#308571: libgtk2.0-dev: package is missing static libraries

2005-05-11 Thread warner-debbugs
Package: libgtk2.0-dev
Version: 2.6.4-2
Severity: normal

While updating to libgtk2.0-dev 2.6.4-2, I noticed that the size of the
package dropped rather severely. Investigating further, it appears that all
of the static libraries have been removed from the package, leaving only the
header files and the .so symlinks. I don't use the static libraries myself,
but there was no mention in the changelog about removing them, so I must ask:
are the static libraries supposed to be in there?

cheers,
 -Brian


-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.11.6
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages libgtk2.0-dev depends on:
ii  libatk1.0-dev1.8.0-4 Development files for the ATK acce
ii  libglib2.0-dev   2.6.4-1 Development files for the GLib lib
ii  libgtk2.0-0  2.6.4-2 The GTK+ graphical user interface 
ii  libpango1.0-dev  1.8.1-1 Development files for the Pango
ii  libx11-dev   4.3.0.dfsg.1-12.0.1 X Window System protocol client li
ii  libxext-dev  4.3.0.dfsg.1-12.0.1 X Window System miscellaneous exte
ii  pkg-config   0.17.2-1manage compile and link flags for 

-- no debconf information


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



Bug#308572: crash when drag vertical scrollbar in tab Standard greeter of gdmsetup

2005-05-11 Thread Tran Vinh Cuong
Package: gdm
Version: 2.6.0.8-1
When I attempted to drag vertical scrollbar in tab Standard greeter of 
Login Screen Setup (gdmsetup), it showed a message box with error "The 
Application "gdmsetup" has quit unexpectedly."

I am using Debian GNU/Linux 3.1 (testing), kernel 2.6.8-2-686-smp and 
libc6 2.3.2.ds1-21


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


Bug#308291: please prevent compiler warning about unused variable

2005-05-11 Thread Domenico Andreoli
On Tue, May 10, 2005 at 09:58:34PM -0400, Steve M. Robbins wrote:
> On Mon, May 09, 2005 at 09:59:43AM +0200, martin f krafft wrote:
> 
> > Some of us like to use -Werror. Some of boost does not. 
> 
> That's a little cryptic.  ;-)

no, it isn't :)

> I assume you're saying that some boost code generates a warning.  
> What warning?

a warning about unused variable, i suppose :)

> > diff -u /tmp/interface_oarchive.hpp 
> > /usr/include/boost/archive/detail/interface_oarchive.hpp
> > --- /tmp/interface_oarchive.hpp 2005-05-09 09:54:24.897652747 +0200
> > +++ /usr/include/boost/archive/detail/interface_oarchive.hpp  2005-05-09 
> > 09:54:56.611522300 +0200
> > @@ -57,7 +57,7 @@
> >  }
> >  
> >  template
> > -const basic_pointer_oserializer * register_type(T * t = NULL){
> > +const basic_pointer_oserializer * register_type(T * = NULL){
> >  const basic_pointer_oserializer & bpos =
> >  instantiate_pointer_oserializer(
> >  static_cast(NULL),
> 
> I don't understand how the patched code is legal C++.  

yes, it is. the parameter name is not part of the function signature.

when you declare functions you can always omit the parameters name,
when you define function you can omit only those you are not using.

you can even specify different parameter names in function declaration
and definition.

> The original code defines a templated function "register_type" that
> takes an optional parameter "t" of type "T*".  Is removing the
> parameter name really legal?

definitely yes.

cheers
domenico

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


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



Bug#308573: evolution: when sendmail selected, inconsistency in gui

2005-05-11 Thread Can Burak Cilingir
Package: evolution
Version: 2.2.2-3
Severity: minor


"Sending Email" tab of the "Account Editor" has "Server Configuration"
title visible when "Server Type" is "Sendmail". As this "Server Type"
has -currently- no options, this title should not be visible.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.9-2-686
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages evolution depends on:
ii  evolution-data-serve 1.2.2-3 evolution database backend server
ii  gconf2   2.8.1-5 GNOME configuration database syste
ii  gnome-icon-theme 2.8.0-4 GNOME Desktop icon theme
ii  gtkhtml3.6   3.6.2-1 HTML rendering/editing library - b
ii  libart-2.0-2 2.3.17-1Library of functions for 2D graphi
ii  libatk1.0-0  1.8.0-4 The ATK accessibility toolkit
ii  libaudiofile00.2.6-6 Open-source version of SGI's audio
ii  libbonobo2-0 2.8.1-2 Bonobo CORBA interfaces library
ii  libbonoboui2-0   2.8.1-2 The Bonobo UI library
ii  libc62.3.2.ds1-21GNU C Library: Shared libraries an
ii  libcamel1.2-01.2.2-3 The Evolution MIME message handlin
ii  libcompfaceg11989.11.11-24   Compress/decompress images for mai
ii  libebook1.2-31.2.2-3 Client library for evolution addre
ii  libecal1.2-2 1.2.2-3 Client library for evolution calen
ii  libedataserver1.2-4  1.2.2-3 Utily library for evolution data s
ii  libedataserverui1.2- 1.2.2-3 GUI utily library for evolution da
ii  libesd-alsa0 [libesd 0.2.35-2.1  Enlightened Sound Daemon (ALSA) - 
ii  libfontconfig1   2.3.2-1 generic font configuration library
ii  libfreetype6 2.1.7-2.4   FreeType 2 font engine, shared lib
ii  libgail-common   1.8.4-1 GNOME Accessibility Implementation
ii  libgail171.8.4-1 GNOME Accessibility Implementation
ii  libgal2.4-0  2.4.2-1 G App Libs (run time library)
ii  libgal2.4-common 2.4.2-1 G App Libs (common files)
ii  libgconf2-4  2.8.1-5 GNOME configuration database syste
ii  libgcrypt11  1.2.0-11LGPL Crypto library - runtime libr
ii  libglade2-0  1:2.4.2-2   library to load .glade files at ru
ii  libglib2.0-0 2.6.4-1 The GLib library of C routines
ii  libgnome-keyring00.4.2-1 GNOME keyring services library
ii  libgnome-pilot2  2.0.12-1.2  Support libraries for gnome-pilot
ii  libgnome2-0  2.8.1-2 The GNOME 2 library - runtime file
ii  libgnomecanvas2-02.8.0-1 A powerful object-oriented display
ii  libgnomeprint2.2-0   2.8.2-1 The GNOME 2.2 print architecture -
ii  libgnomeprintui2.2-0 2.8.2-2 GNOME 2.2 print architecture User 
ii  libgnomeui-0 2.8.1-3 The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0   2.8.4-3 The GNOME virtual file-system libr
ii  libgnutls11  1.0.16-13   GNU TLS library - runtime library
ii  libgpg-error01.0-1   library for common error values an
ii  libgtk2.0-0  2.6.4-1 The GTK+ graphical user interface 
ii  libgtkhtml3.6-18 3.6.2-1 HTML rendering/editing library - r
ii  libice6  4.3.0.dfsg.1-12.0.1 Inter-Client Exchange library
ii  libjpeg626b-10   The Independent JPEG Group's JPEG 
ii  libldap2 2.1.30-6OpenLDAP libraries
ii  libnspr4 2:1.7.7-2   Netscape Portable Runtime Library
ii  libnss3  2:1.7.7-2   Network Security Service Libraries
ii  liborbit21:2.12.2-1  libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-01.8.1-1 Layout and rendering of internatio
ii  libpisock8   0.11.8-10   Library for communicating with a P
ii  libpisync0   0.11.8-10   Synchronization library for PalmOS
ii  libpopt0 1.7-5   lib for parsing cmdline parameters
ii  libsm6   4.3.0.dfsg.1-12.0.1 X Window System Session Management
ii  libsoup2.2-7 2.2.3-2 an HTTP library implementation in 
ii  libtasn1-2   0.2.10-4Manage ASN.1 structures (runtime)
ii  libx11-6 4.3.0.dfsg.1-12.0.1 X Window System protocol client li
ii  libxml2  2.6.16-7GNOME XML library
ii  xlibs4.3.0.dfsg.1-12 X Keyboard Extension (XKB) configu
ii  zlib1g   1:1.2.2-4   compression library - runtime

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscrib

Bug#287952: kernel-source-2.6.8: nfs-kernel freezes the system

2005-05-11 Thread Ondrej Medek
> Is this a custom build of the kernel? If so
> can you provide your .config, or better still
> try using one of the kernel-images on d.o.

Hi,

kernel images from Debian distribution seems to have much higher uptime. I
really have no cue what's wrong. There are no symoops, the kernel was just
frozen. I cannot investigate the problem more deeply, because I'm no more
administrator of this machine.


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



Bug#308043: [l10n] Czech translation for dash

2005-05-11 Thread Gerrit Pape
On Sun, May 08, 2005 at 01:19:19PM +0200, Martin ??n wrote:
> Gerrit Pape p??e v Ne 08. 05. 2005 v 10:41 +:
> > On Sat, May 07, 2005 at 03:27:07PM +0200, Martin ??n wrote:
> > > In attachement there is initial Czech translation (cs.po) for dash
> > > package, please include it.
> > 
> > Hi Martin, I noticed that you're not the 'Last-Translator':
> > 
> > > "POT-Creation-Date: 2004-04-30 21:51+1000\n"
> > > "PO-Revision-Date: 2005-05-07 12:27+0200\n"
> > > "Last-Translator: MMiroslav Kure <[EMAIL PROTECTED]>\n"
> > 
> > Shouldn't this be your address?  Thanks, Gerrit.
> 
> Thanks,
> Miroslav Kure help me with translation this package. So, I think it is
> ok. 

Hi Miroslav, just to be sure, I don't know Martin.  Is this, as well as
the translation in #308043, ok with you?

Thanks, Gerrit.


signature.asc
Description: Digital signature


Bug#274220: ITP update

2005-05-11 Thread Domenico Andreoli
hi,

any news for this package? are you still working on it? it doesn't look
difficult, is there any other problem?

cheers
domenico

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


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



Bug#308575: babel_0.10.2-1 (unstable): FTBFS, java interpreter segfaults

2005-05-11 Thread Bastian Blank
Package: babel
Version: 0.10.2-1
Severity: serious

There was an error while trying to autobuild your package:

> Automatic build of babel_0.10.2-1 on debian01 by sbuild/s390 27
[...]
> ** Using build dependencies supplied by package:
> Build-Depends: debhelper (>= 4.1.67), gcc-3.4 | c-compiler, g77-3.4 | 
> fortran-compiler, g++-3.4 | c++-compiler, kaffe | java-virtual-machine, 
> kaffe-dev, python, python2.4, python2.4-dev, python2.4-numeric, libltdl3-dev, 
> gcj-3.4 | java-compiler, fastjar, gjdoc, libxerces2-java, libgetopt-java, 
> libxalan2-java, libxml2-dev
[...]
> Toolchain package versions: libc6-dev_2.3.2.ds1-21 
> linux-kernel-headers_2.5.999-test7-bk-17 gcc-3.3_1:3.3.6-3 g++-3.3_1:3.3.6-3 
> binutils_2.15-5 libstdc++5_1:3.3.6-3 libstdc++5-3.3-dev_1:3.3.6-3
[...]
> cd .. && /usr/bin/make  am--refresh
> make[5]: Entering directory `/build/buildd/babel-0.10.2/runtime'
> cd . && /bin/sh /build/buildd/babel-0.10.2/runtime/config/disabled autoconf 
> autoconf has been disabled
> make[5]: Leaving directory `/build/buildd/babel-0.10.2/runtime'
> make[5]: Entering directory `/build/buildd/babel-0.10.2/runtime'
> cd . && /bin/sh /build/buildd/babel-0.10.2/runtime/config/disabled autoconf 
> autoconf has been disabled
> make[5]: Leaving directory `/build/buildd/babel-0.10.2/runtime'
> sed -e 's,@@DIR@@,'`pwd`',g' < ./libsidl.scl.in > libsidl.scl
> /bin/sh ../../bin/babel --suppress-timestamp --no-default-repository\
>   --generate-sidl-stdlib --vpath=. ./sidl.sidl 
> .../../bin/babel: line 251:  9087 Segmentation fault  ${THIS_JAVA} 
> gov.llnl.babel.CommandLineDriver ${REPOSITORY_PATH} ${args}
> make[4]: *** [babel-stamp] Error 139
> make[4]: Leaving directory `/build/buildd/babel-0.10.2/runtime/sidl'
> make[3]: *** [all] Error 2
> make[3]: Leaving directory `/build/buildd/babel-0.10.2/runtime/sidl'
> make[2]: *** [all-recursive] Error 1
> make[2]: Leaving directory `/build/buildd/babel-0.10.2/runtime'
> make[1]: *** [all-recursive] Error 1
> make[1]: Leaving directory `/build/buildd/babel-0.10.2'
> make: *** [build] Error 2
> **
> Build finished at 20050511-0808
> FAILED [dpkg-buildpackage died]
[...]

Bastian


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



Bug#308574: Spurious calls to update-inetd

2005-05-11 Thread Jeroen van Wolffelaar
Package: quota
Severity: minor

| - Forwarded message from Steve Langasek <[EMAIL PROTECTED]> -
| 
| Date: Tue, 10 May 2005 18:21:07 -0700
| Subject: Re: Bug#301370: marked as done (quota postrm fails due to missing 
dependency)
| 
| Incidentally, I'm puzzled why quota is calling update-inetd at all from the
| postrm, since there's no code in the postinst which adds an inetd entry. 
| That shouldn't be a blocker for sarge, though.
| 
| Thanks,
| -- 
| Steve Langasek
| postmodern programmer
| 
| - End forwarded message -

-- 
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#308453: plone: Fails to add new Plone site

2005-05-11 Thread Alceste Scalas
Il giorno mar, 10/05/2005 alle 12.34 +0200, Fabio Tranchitella ha
scritto:
> Hi, could you please send me the list of the zope packages (with version
> numbers) that you have installed on your system?

Here it is:

zope-btreefolder2  1.0.1-5
zope-cmf1.41.4.7-4
zope-cmfactionicons1:0.9-2
zope-cmfcalendar1.41.4.7-4
zope-cmfcore1.41.4.7-4
zope-cmfdefault1.4 1.4.7-4
zope-cmfformcontroller 1.0.3-3
zope-cmfplone  2.0.4-3
zope-cmfquickinstallertool 1.5.0-2
zope-cmftopic1.4   1.4.7-4
zope-dcworkflow1.4.7-4
zope-epoz  0.9.0-1
zope-exuserfolder  0.50.0-3
zope-filesystemsite1.3-1
zope-formulator1.7.0-5
zope-groupuserfolder   3.1.1-3
zope-kupu  1.1.1-2
zope-plonetranslations 0.6-2
zope-psycopgda 1.1.18-1
zope-pts   1.2-rc1-2
zope-speedpack 0.3-2
zope-zwiki 0.37.0-4
zope2.72.7.5-1
zope2.7-archetypes 1.3.1-1
zope2.7-generator  1.3.1-1
zope2.7-mimetypesregistry  1.3.1-1
zope2.7-portaltransforms   1.3.1-1
zope2.7-validation 1.3.1-1

I've also got two products installed (and stow'ed) from .tar.gz:

ZMS2.3.2-b45  - http://www.zms-publishing.com/index_eng.html
CMFpgForum 1.0.0-beta -
http://www.emergence.com/WhatWeOffer/products/CMFpgForum

(Note: there's a .deb package for both, even if the zope-zms one is not
updated to the latest version of the software).

The problem I've reported persists even if I try to add a Plone site
into a clean Zope instance.

Regards, and thanks,

alceste
-- 
Alceste Scalas <[EMAIL PROTECTED]>
Promotux Informatica - http://www.promotux.it/



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



Bug#308556: RM: partimage [!i386] -- RoM; code has issues on a number of platforms

2005-05-11 Thread Jeroen van Wolffelaar
On Wed, May 11, 2005 at 02:09:49PM +1000, Anibal Monsalve Salazar wrote:
>>Why is this bug filed as "RoM"?
>Should I change it?

You should not say "Request of Maintainer" when it isn't a request of
the maintainer, that's misrepresenting the facts.

--Jeroen

-- 
Jeroen van Wolffelaar
[EMAIL PROTECTED]
http://jeroen.A-Eskwadraat.nl


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



Bug#308576: ITP: poker-network -- multiplayer poker client library and server

2005-05-11 Thread OuoU

Package: wnpp
Severity: wishlist

* Package name: poker-network
  Version : 1.0.0
  Upstream Author : Loic Dachary <[EMAIL PROTECTED]>
* URL or Web page : http://pokersource.sf.net/
* License : GNU GPL
  Description : multiplayer poker client library and server

 poker-network is a python poker server and client library. The server
 runs the games, deals the cards and controls the game. The client
 library provides a packet based API to join the ring games or
 tournaments and play the most common poker variants (holdem, omaha,
 7stud). A simple minded poker bot is provided as an example
 application based on the client library and is used to stress test the
 server.
 
 Although recently packaged as a standalone program, poker-network was
already in debian as part of the poker3d packages. The CVS is
available at
http://cvs.sourceforge.net/viewcvs.py/pokersource/poker-network/ and
the proposed Debian packages will be uploaded at
http://sourceforge.net/project/showfiles.php?group_id=13546.



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



Bug#289812: quotatool: Assumes XFS quotas if the kernel supports them

2005-05-11 Thread Bas Zoetekouw
Hi Clement!

You wrote:

> This bug is fixed upstream (as well as #258289, which seems related).
> Also, as the current default kernels include CONFIG_XFS_QUOTA (or so
> do I believe), this bugs apply to anybody running an Out-of-the-box
> debian installation wanting to use quotatool, or even to anybody using
> debian kernels (so basically most debian user are impacted and can't
> use quotatool).
> So I'm upgrading the severity to grave. Feel free to correct me if I'm
> wrong. I've tested the current upstream version (1.4.7) on several
> debian boxes (both sid and sarge, with or without XFS filesystems) and
> I didn't notice any bugs yet.

Ah, thanks for all this research.  

> Could you please consider upgrading the debian package to the last
> upstream version ?

I'll try to upload tonight, and to convince the release team to let it
into sarge.  

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


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



Bug#308043: [l10n] Czech translation for dash

2005-05-11 Thread Miroslav Kure
On Wed, May 11, 2005 at 07:42:21AM +, Gerrit Pape wrote:
> On Sun, May 08, 2005 at 01:19:19PM +0200, Martin ??n wrote:
> > Gerrit Pape p??e v Ne 08. 05. 2005 v 10:41 +:
> > > On Sat, May 07, 2005 at 03:27:07PM +0200, Martin ??n wrote:
> > > > In attachement there is initial Czech translation (cs.po) for dash
> > > > package, please include it.
> > > 
> > > Hi Martin, I noticed that you're not the 'Last-Translator':
> > > 
> > > > "POT-Creation-Date: 2004-04-30 21:51+1000\n"
> > > > "PO-Revision-Date: 2005-05-07 12:27+0200\n"
> > > > "Last-Translator: MMiroslav Kure <[EMAIL PROTECTED]>\n"
> > > 
> > > Shouldn't this be your address?  Thanks, Gerrit.
> > 
> > Thanks,
> > Miroslav Kure help me with translation this package. So, I think it is
> > ok. 
> 
> Hi Miroslav, just to be sure, I don't know Martin.  Is this, as well as
> the translation in #308043, ok with you?

Oh, everything is fine. First translation was done by Martin, but it
had some serious flaws so I rewrote the whole thing and let Martin to
report it. (I have about 100 open l10n reports in BTS, so I wanted
Martin to have also some fun.)

Just a sidenote: Would it be possible to delete the first "M" from my
first name?

-- 
Miroslav Kure


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



Bug#308453: plone: Fails to add new Plone site

2005-05-11 Thread Fabio Tranchitella
Hi Alceste,
  after looking at the source code of CMFCore.TypesTool (line 535 and
below) I suspect your problem is caused by one of these packages:

   zope-exuserfolder  0.50.0-3
   zope-psycopgda 1.1.18-1
   zope-zwiki 0.37.0-4
   ZMS
   CMFpgForum.

Could you please try to remove those (one for time, this would be
better), restart the instance and try to add a plone site?

Thanks for your debug,
Fabio

-- 
Fabio Tranchitella http://www.kobold.it
Studio Tranchitella Assoc. Professionale   http://www.tranchitella.it
_
1024D/7F961564, fpr 5465 6E69 E559 6466 BF3D 9F01 2BF8 EE2B 7F96 1564



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


Bug#308335: Bug#308373: dictionaries-common: Prevents Emacs from installing

2005-05-11 Thread Daniel Brockman
Agustin Martin <[EMAIL PROTECTED]> writes:

> Hi, Daniel, Joerg and Aaron (cc'ing all related bugs)
>
> On Tue, May 10, 2005 at 02:47:57PM +0200, Daniel Brockman wrote:
>> (See below for why this message is cross-posted to several bugs.)
>> 
>> Agustin Martin <[EMAIL PROTECTED]> writes:
>>
>>> If I am not wrong, that should also be reproduced by a plain
>>>
>>> # dpkg-reconfigure emacs21
>> 
>> Yes, you are right.
>> 
>>> I can only check that now in a woody+dict-common system, and I
>>> cannot reproduce that problem. I am not in dial up and cannot try a
>>> real reinstall. Please check if 'dpkg-reconfigure emacs21' also
>>> gives that problem in your system. Please also provide info about
>>> the emacs version you are trying.
>> 
>> It does.  I'm using emacs21-21.4a-1 (and CVS Emacs from last night,
>> packaged with Jerome Marant's emacs-snapshot).
>
> Considering that this has been silent for emacs21 <= 21.3 and just
> issuing a warning for xemacs21, is possible that emacs-21.4 has
> changed handling of this things, raising severities. If this is
> true, this problem should only become evident with emacs-snapshot.

I'm sorry, I don't think this is reproducible on any system but mine.
Further investigation revealed that my debian-startup.el had this

 (condition-case ()
 (load file nil)
   (message "Error while loading %s" file)))

instead of this,

 (condition-case ()
 (load file nil)
   (error (message "Error while loading %s" file

which makes absolutely no sense whatsoever.  I don't know how and when
this happened, but it explains all the problems I had, and a simple
reinstall fixed it.

>> Yes, you are quite right.  I can't believe I missed this.
>> The error does not occur unless I also have auctex installed (some
>> other package that I do not have installed and whose first letter
>> is a, b, c, or d might also provoke it).
>
> I will try looking at this tomorrow in a real sid box with sid
> emacsen flavours.

It seems you don't have to bother. :-)

> Anyway, using condition-case in this (load), with a big error
> message in case of failure, is probably desirable to make code
> more robust.

In light of the new evidence this should not be necessary, as the code
that loads each individual file in /etc/emacs/site-start.d already has
a condition-case around the entire load.

> The (load file t) way Aaron plans for dictionary-el will not work
> here, the file to be loaded exists, but the autoloads triggered by
> that load not.

Actually, in the case of dictionary-el, the file to be loaded,
dictionary-init.elc, does *not* exist (it has not yet been
byte-compiled), and the fact that the autoloads refer to non-existent
files is irrelevant in two ways: first, the autoloads are never even
set up in the first place due to the error; and second, no part of the
startup script would ever attempt to call the autoloaded functions,
even if the error would not occur.

> Along with this I would consider filing bug reports against the
> packages that when byte-compiling load startup scripts for no
> good reason.

Yes, I didn't originally realize that this was part of the problem,
but now I think it is the part that should be fixed.

There are quite a lot of these though:  Here are some examples of
packages whose install scripts invoke Emacs without --no-site-file:

  - auctex
  - css-mode
  - cedet-common
  - ede
  - eieio
  - elib
  - emacsen-common (!)
  - semantic
  - speedbar

Would it be inappropriate to start filing bugs to these packages?
I s'pose I'd put them as enhancments, but there'd be lots of them.

>> Yes.  I'm CCing the other bugs so that the maintainers of those
>> packages (bbdb and dictionary-el) do not have to worry so much
>> about this.  (Sorry guys!)
>> 
>> Maybe these bugs can even be closed.  (Assuming that it actually is
>> considered OK for a package to require byte-compiled files in their
>> /etc/emacs/site-start.d scripts.)
>
> I will leave this bug report open for a while, until I add the
> condition-case statement, or a better fix.

I'll say it again:  This was a false alarm.  The bug will not bite
anyone who lives within normal reality.

However, it is indicative of a problem.  Namely, the large bunch of
packages that load heaps of unnecessary stuff when byte-compiling.
I'd say there are some semi-major speed increases to make here, by
simply adding the --no-site-file option to every byte-compile run.

Thanks for helping me find the true source of the problem, Agustin,
and sorry for taking so long to reply.

-- 
Daniel Brockman <[EMAIL PROTECTED]>


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



Bug#308454: evince: Evince renders some PDF badly

2005-05-11 Thread Sebastien Bacher
Le mardi 10 mai 2005 à 12:00 +0200, Cedric Blancher a écrit :
> Package: evince
> Version: 0.3.0-2
> Severity: normal
> 
> 
> Evince have problems rendering some PDF files. As an example, it happens
> with all my latex-beamer presentation such as this one :
> 
>   http://sid.rstack.org/pres/0505_CSW_Roaming.pdf
> 
> This bug was also present in 2.1.

Hi,

This document is rendered fine here, can you make a screenshot of the
issue? What fonts are you using? Do you have any output from evince?


Cheers,

Sebastien Bacher





Bug#308579: 'man teaed' typo: "argumentes"

2005-05-11 Thread A Costa
Package: tea
Version: 9.0-1
Severity: minor
Tags: patch


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

Hope this helps...

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.11-1-686
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set to C)

Versions of packages tea depends on:
ii  libaspell150.60.2+20050121-2 The GNU Aspell spell-checker runti
ii  libatk1.0-01.8.0-4   The ATK accessibility toolkit
ii  libc6  2.3.2.ds1-21  GNU C Library: Shared libraries an
ii  libglib2.0-0   2.6.4-1   The GLib library of C routines
ii  libgtk2.0-02.6.4-2   The GTK+ graphical user interface 
ii  libpango1.0-0  1.8.1-1   Layout and rendering of internatio

-- no debconf information
--- -   2005-05-11 04:41:09.850942000 -0400
+++ /tmp/teaed1.gz.269922005-05-11 04:41:09.0 -0400
@@ -24,7 +24,7 @@
 TEA is a modest and easy-to-use GTK+2-based editor with many useful features 
for HTML editing. It features a small footprint, a tabbed layout engine, 
support for multiple encodings, code snippets, templates, customizable hotkeys, 
an "open at cursor" function for HTML files and images, miscellaneous HTML 
tools, preview in external browser, string manipulation functions, SRT 
subtitles editing, Morse-code tools, bookmarks, syntax highlighting, and 
drag-and-drop support.
 .PP
 .SH OPTIONS
-Tea doesn't have any command line argumentes. Please refer to 
/usr/share/doc/tea/en/index.html for more info.
+Tea doesn't have any command line arguments. Please refer to 
/usr/share/doc/tea/en/index.html for more info.
 .br
 .SH AUTHOR
 tea was written by Peter Semiletov <[EMAIL PROTECTED]>.


Bug#308577: partman: devices[index_of_name(name)] is unspecified

2005-05-11 Thread Colin Watson
Package: partman
Version: 64
Severity: important
Tags: sarge, sid

parted_server has many instances of this sort of code:

return devices[index_of_name(name)].dev;

However, index_of_name(name) can change the devices pointer, and
according to the C standard the two subexpressions 'devices' and
'index_of_name(name)' may be evaluated in either order. Thus, the
semantics of this code are unspecified, so the compiler is free to
generate code that evaluates 'devices' first, when it's still NULL at
parted_server startup. The practical upshot of this is that
parted_server segfaults immediately on OPEN when compiled with gcc 4.0.

I've fixed this in SVN trunk. I'm not prepared to bet that earlier
versions of gcc will never generate code that evaluates 'devices' before
'index_of_name(name)', so I think we should backport this fix to sarge.

-- 
Colin Watson   [EMAIL PROTECTED]


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



Bug#261207: zope-cmfpgforum: New upstream version available

2005-05-11 Thread Alceste Scalas
Damien Genet wrote:
> New version 1.0.0rc2 is available at :
> http://zope.org/Members/emergence/CMFpgForum

As a side note: the latest CMFpgForum version works fine with current versions 
of zope-cmf1.4
and zope-cmfplone on Debian. (I've tried use CMFpgForum-1.0.0beta with them, 
but it gives weird
problems --- see #308453).

Regards,

alceste
-- 
Alceste Scalas <[EMAIL PROTECTED]>
Promotux Informatica - http://www.promotux.it/



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



Bug#308453: plone: Fails to add new Plone site

2005-05-11 Thread Alceste Scalas
Il giorno mer, 11/05/2005 alle 10.10 +0200, Fabio Tranchitella ha
scritto:
> Hi Alceste,
>   after looking at the source code of CMFCore.TypesTool (line 535 and
> below) I suspect your problem is caused by one of these packages:
> 
>zope-exuserfolder  0.50.0-3
>zope-psycopgda 1.1.18-1
>zope-zwiki 0.37.0-4
>ZMS
>CMFpgForum.

Yup, the problem was related to CMFpgForum.  I've just seen #261207, and
installing the latest version of CMFpgForum from .tar.gz (1.0.0rc2, I
didn't know about it) solves the problem.

Of course it's my fault, since  zope-cmfpgforum_1.0.0b-2_all.deb
requires zope-cmf (and *not* zope-cmf1.4, maybe it was untested at the
time).

Sorry, and thanks for you help.

Regards, and keep up the good work,

alceste
-- 
Alceste Scalas <[EMAIL PROTECTED]>
Promotux Informatica - http://www.promotux.it/



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



Bug#308538: Test whether two submitters actually work

2005-05-11 Thread Adrian Bunk
On Tue, May 10, 2005 at 11:01:45PM +0100, Martin Michlmayr wrote:

> Since you're at it, can you also check what happens when the
> submitter contain spaces.  (i.e,
> Adrian Bunk <[EMAIL PROTECTED]>, Adrian Bunk <[EMAIL PROTECTED]>)

They work surprisingly well, too.

The only problem I've observed until now is that the "Reported by:" link 
of the bug can't handle multiple submitters correctly. But the important 
things like notifications when closing the bug work well.

> Martin Michlmayr

cu
Adrian

-- 

   "Is there not promise of rain?" Ling Tan asked suddenly out
of the darkness. There had been need of rain for many days.
   "Only a promise," Lao Er said.
   Pearl S. Buck - Dragon Seed



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



Bug#308580: klogd hogs the cpu

2005-05-11 Thread Ralf Hildebrandt
Package: klogd
Version: 1.4.1-16
Severity: normal


5314 root  25   0  2452 1412  440 R 99.4  0.3   8:51 /sbin/klogd
all over a sudden, /sbin/klogd hogs the cpu. This happens both with kernel
2.6.12-rc4 and 2.6.12-rc3-mm3.

Another effect: dmesg returns absolutely no output:
kasbah:~# dmesg
kasbah:~# echo $?
0

% strace -p 5314
returns:
read(0, "", 4095)   = 0
read(0, "", 4095)   = 0
read(0, "", 4095)   = 0
read(0, "", 4095)   = 0
read(0, "", 4095)   = 0
read(0, "", 4095)   = 0
read(0, "", 4095)   = 0
read(0, "", 4095)   = 0



-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.12-rc4
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages klogd depends on:
ii  libc6   2.3.2.ds1-21 GNU C Library: Shared libraries an
ii  sysklogd [system-log-daemon 1.4.1-16 System Logging Daemon

-- no debconf information


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



Bug#308234: upgrading from 2.1.23 failed because of not setting slapd/dump_database_destdir

2005-05-11 Thread Ferenc Engard
Hi all,

>The technical details of why debconf is not able to present a default
>value with the readline frontend, when the recommended
>literm-readline-gnu-perl is not installed, or with the teletype
>frontend, are already explained in bug #183970. I know of no better

Just a silly question: why debconf permits to select the readline
frontend if this package is not installed? It is quite embarrassing.
Anyway, I have never heard about this package so far...

Ferenc


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



Bug#308581: po-debconf: po2debconf should fail when short description translations have a hard return

2005-05-11 Thread Christian Perrier
Package: po-debconf
Version: 0.8.23
Severity: important

I tag this as important because it may lead to packages being built but not
installable.

In #308548, apache-ssl became uninstallable because the Finnish debconf
translation had a "\n" in one of the short descriptions translations.
This caused the generated templates file to be incorrect.

See the attached fi.po file. I also attach the templates file generated by
po2debconf called from dh_installdebconf.

As po2debconf obviously cannot fix translations, I hereby propose that it
*fails* in such cases with an informative message. Another possibility would
be ignoring the "\n" as soon as they are in short descriptions (may be
tricky).

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.8-2-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 po-debconf depends on:
ii  gettext0.14.4-2  GNU Internationalization utilities
ii  intltool-debian0.30+20040213 Help i18n of RFC822 compliant conf
ii  perl   5.8.4-8   Larry Wall's Practical Extraction 

-- no debconf information
#
#Translators, if you are not familiar with the PO format, gettext
#documentation is worth reading, especially sections dedicated to
#this format, e.g. by running:
# info -n '(gettext)PO Files'
# info -n '(gettext)Header Entry'
#
#Some information specific to po-debconf are available at
#/usr/share/doc/po-debconf/README-trans
# or http://www.debian.org/intl/l10n/po-debconf/README-trans
#
#Developers do not need to manually edit POT or PO files.
#
msgid ""
msgstr ""
"Project-Id-Version: apache\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-04-17 11:36+0200\n"
"PO-Revision-Date: 2005-04-09 01:26+0300\n"
"Last-Translator: Matti PÃllà <[EMAIL PROTECTED]>\n"
"Language-Team: Finnish \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#. Type: note
#. Description
#: ../apache-common.templates:3
msgid "Old log rotation scripts exists and are modified"
msgstr "Olemassa olevia lokitiedostojen kierrÃtysskriptejà muokataan"

#. Type: note
#. Description
#: ../apache-common.templates:3
msgid ""
"You have old log rotation scripts in /etc/cron.d and /etc/${flavour}, they "
"have not been touched, but you might want to remove them to avoid having "
"your logs rotated multiple times."
msgstr ""
"Vanhoja lokitiedostojen kierrÃtysskriptejà lÃytyi hakemistoista\n"
"/etc/cron.d ja /etc/${flavour}. Niihin ei ole tehty muutoksia, mutta\n"
"haluat ehkà poistaa ne vÃlttÃÃksesi lokitiedostojen moninkertaisen\n"
"kierrÃttÃmisen."

#. Type: note
#. Description
#: ../apache-common.templates:10
msgid "${flavour} has switched to use logrotate"
msgstr "${flavour} on siirtynyt kÃyttÃmÃÃn logrotate-ominaisuutta"

#. Type: note
#. Description
#: ../apache-common.templates:10
msgid ""
"Some of your logs are stored outside the /var/log/${flavour} directory, so "
"you should edit /etc/logrotate.d/${flavour} to have them automatically "
"rotated."
msgstr ""
"Jotkut lokitiedostoista on varastoitu hakemiston /var/log/${flavour}\n"
"ulkopuolelle. Muokkaa siis tiedostoa /etc/logrotate.d/${flavour}\n"
"saadaksesi automaattinen kierrÃtys toimimaan."

#. Type: note
#. Description
#: ../apache-common.templates:17
msgid "Handling of config files has been changed"
msgstr "Asetustiedostojen kÃsittelytapa on muuttunut"

#. Type: note
#. Description
#: ../apache-common.templates:17
msgid ""
"From this release of apache, apache-ssl and apache-perl no more attempts of "
"fixing users configurations will be done other than for the really essential "
"ones that would prevent the server to run. Two new files will appear in /etc/"
"apache{-ssl,-perl}:"
msgstr ""
"TÃstà apache:n, apache-ssl:n ja apache-perl:in versiosta lÃhtien\n"
"kÃyttÃjien asetuksiin ei yritetà tehdà korjauksia. Ainoastaan\n"
"palvelimen kÃynnistymisen estÃvÃt viat asetuksissa kÃsitellÃÃn. Kaksi\n"
"uutta tiedostoa luodaan hakemistoon /etc/apache{-ssl,perl}."

#. Type: note
#. Description
#: ../apache-common.templates:17
msgid ""
" - modules.config, that will be used by apache-modconf to handle\n"
"   LoadModules directives;\n"
" - suggested_corrections that will contain information about\n"
"   the differences from the users config and the standard Debian\n"
"   one and how to fix them."
msgstr ""
" - modules.config, jota apache-modconf kÃyttÃÃ LoadModules-ohjeiden\n"
"   kÃsittelyyn;\n"
" - suggested_corrections, joka sisÃltÃÃ tietoa kÃyttÃjÃn omien \n"
"   asetuksien ja Debianin oletusasetuksien eroista ja siitÃ, kuinka ne \n"
"   voi korjata."

#. Type: note
#. Description
#: ../apache-common.templates:17
msgid ""
"For more information please refer to /usr/share/doc/apache{-ssl,-perl}/"
"README.Debian"
msgstr "Lue lisÃ

Bug#308584: kernel-source-2.4.27: missing sysctl slot for ia64 results in local DoS

2005-05-11 Thread Horms
Package: kernel-source-2.4.27
Version: 2.4.27-10
Severity: important
Tags: patch, security, pending


I got this from Moritz Muehlenhoff <[EMAIL PROTECTED]>:

   http://www.redhat.com/support/errata/RHSA-2005-284.html This is
   CAN-2005-0137 : Linux kernel 2.6 on Itanium (ia64) architectures
   allows local users to cause a denial of service via a "missing
   Itanium syscall table entry."

On investigation I found that 

   2.4.27 is vulnerable to this. 2.6.8 and 2.6.11 are not.
   The bug has been fixed upstream for both 2.4 and 2.6 and
   I have put a this patch into SVN for 2.4.27

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.11-1-686
Locale: LANG=ja_JP.eucJP, LC_CTYPE=ja_JP.eucJP (charmap=EUC-JP) (ignored: 
LC_ALL set to ja_JP.eucJP)

Versions of packages kernel-source-2.4.27 depends on:
ii  binutils  2.15-5 The GNU assembler, linker and bina
ii  bzip2 1.0.2-5high-quality block-sorting file co
ii  coreutils [fileutils] 5.2.1-2The GNU core utilities
ii  fileutils 5.2.1-2The GNU file management utilities 

-- no debconf information
# origin: bjorn.helgaas (BitKeeper)
# cset: 1.1461 (2.4) key=42336f56oUNh6k9KKMFrbmGgsap8yQ
# URL: http://linux.bkbits.net:8080/linux-2.4/[EMAIL PROTECTED]
# inclusion: upstream
# descrition: ia64: add missing syscall-slot.
# revision date: Wed, 11 May 2005 18:18:46 +0900
#
# S rset: ChangeSet|1.1460..1.1461
# I rset: arch/ia64/kernel/entry.S|1.15..1.16
#
# Key:
# S: Skipped  ChangeSet file only
# O: Original Followed by Updated
# U: Updated  Included with updated range of versions
# I: Included Included verbatim
# E: Excluded Excluded on request from user
# D: Deleted  Manually deleted by subsequent user edit
# R: Revised  Manually revised by subsequent user edit
#
#
# This is a BitKeeper generated diff -Nru style patch.
#
# ChangeSet
#   2005/03/12 15:38:14-07:00 [EMAIL PROTECTED] 
#   ia64: add missing syscall-slot.
# 
# arch/ia64/kernel/entry.S
#   2005/03/12 15:27:20-07:00 [EMAIL PROTECTED] +1 -0
#   Add missing syscall-slot.
# 
#
= arch/ia64/kernel/entry.S 1.15 vs 1.16 =
--- 1.15/arch/ia64/kernel/entry.S   2003-07-30 22:33:09 +09:00
+++ 1.16/arch/ia64/kernel/entry.S   2005-03-13 07:27:20 +09:00
@@ -1443,3 +1443,4 @@ sys_call_table:
data8 ia64_ni_syscall
data8 ia64_ni_syscall
data8 ia64_ni_syscall
+   data8 ia64_ni_syscall


Bug#303352: trouble with 'apropos' & 'tea'

2005-05-11 Thread A Costa
Package: tea
Version: 9.0-1
Followup-For: Bug #303352


It's the curse of 'dak'.  The man page still thinks 'teaed' is called 'tea'.

  % apropos "^tea" | grep text
  tea (1)  - small text editor for gnome2
  teaed (1)- small text editor for gnome2

Any 'tea' page?

  % man tea | wc
  No manual entry for tea
0   0   0

Howbout 'teaed'?

  % man teaed | wc
  33 1261214

And how does it start?

  man teaed | head | nl | sed '/^ *$/d'
   1  TEA(1)
  TEA(1)
   2  NAME
   3 tea - small text editor for gnome2
   4  SYNOPSIS
   5 tea  files

...which is why 'apropos' still lists 'tea'.  It's a pity too, 
"tea" is a much nicer name than "teaed".  Maybe a separator 
or some capitals would improve its look:  "tea.ed", 
"tea-ed", "teaED", "teaEd", "teaE", "tea-argh", ... 

HTH...

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.11-1-686
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set to C)

Versions of packages tea depends on:
ii  libaspell150.60.2+20050121-2 The GNU Aspell spell-checker runti
ii  libatk1.0-01.8.0-4   The ATK accessibility toolkit
ii  libc6  2.3.2.ds1-21  GNU C Library: Shared libraries an
ii  libglib2.0-0   2.6.4-1   The GLib library of C routines
ii  libgtk2.0-02.6.4-2   The GTK+ graphical user interface 
ii  libpango1.0-0  1.8.1-1   Layout and rendering of internatio

-- no debconf information


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



Bug#308582: Log for successful build of gnuift_0.1.14-1 (dist=unstable)

2005-05-11 Thread David Mosberger

Package: gnuift
Version: 0.1.14-1

> On Tue, 10 May 2005 23:59:36 +0100, Debian/IA64 non-US Build Daemon 
> <[EMAIL PROTECTED]> said:

 > Function `malloc' implicitly converted to pointer at rgb2hsv_utils.c:186
 > Function `malloc' implicitly converted to pointer at quantize.c:29

These are caused by a missing include of  and, if reachable
at all, will cause a segfault on some arches (such as ia64) due to
pointer truncation (implicit "int" return value gets sign-extended to
64-bit pointer, which results in a crash if theh value is
dereferenced).

You can use the following script to filter build logs and check for
these types of errors:

 http://people.debian.org/~dannf/check-implicit-pointer-functions

The attached patch fixes the problems.

Thanks,

--david

--- FeatureExtraction/rgb2hsv_utils.c~  2002-07-22 00:09:28.0 -0700
+++ FeatureExtraction/rgb2hsv_utils.c   2005-05-11 02:18:15.0 -0700
@@ -1,4 +1,5 @@
 #include 
+#include 
 #include 
 #include "ppm.h"
 
--- FeatureExtraction/quantize.c~   2002-07-22 00:09:28.0 -0700
+++ FeatureExtraction/quantize.c2005-05-11 02:18:24.0 -0700
@@ -1,4 +1,5 @@
 #include 
+#include 
 #include 
 
 enum ppm_error hsv_quantize_ppm(PPM *im_hsv, PPM **im_quant, int **colmap, int 
numH, int numS, int numV, int numG) {


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



Bug#308234: upgrading from 2.1.23 failed because of not setting slapd/dump_database_destdir

2005-05-11 Thread Ferenc Engard
Hi,

>> If you really think we should not mention the default value there that's
>> okay but on the other side I request that the behaviour of the readline
>> frontend is changed to at least present the user the current/default
>> value if the libterm-readline-gnu-perl package is not installed. And
>> make it very clear that hitting return means submitting an empty value.
>
>It does. It prompts as follows:
>
>  Directory to dump databases: _
>
>Barring some note that tells them there is a default, noone would expect
>hitting enter to result in some default value here[1]. The convention is
>that this means there is a default value:
>
>  Directory to dump databases [/var/backups/slapd-VERSION]: _
>
>Or this:
>
>  Directory to dump databases: /var/backups/slapd-VERSION_

I suggest that the frontend should explicitly indicate if it cannot
handle default values, although the there is one, e.g. like this:

Default value: /var/backups/slapd-VERSION
*** WARNING! You have to type the default value verbatim to use it!
Directory to dump databases: _

I feel important to first display the default value, and then the
warning message. (Please rephrase it if needed, as I am not a native
English.)

Another solution could be if the frontend asks a yes/no question to
use the default value, if the question has one.

>Debconf uses one or the other of these conventions when possible. Only
>experienced users use these frontends, and experienced users are
>expected to be aware of these conventions.

I use readline frontend because I use debian since 5-6 years, and that
time this was the only one with which I could look what happened so
far (I do not know whether there are others now). And I was not aware
that my frontend do not support default values.

Ferenc


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



Bug#307816: cweb is not installable / unusable

2005-05-11 Thread Adrian Bunk
On Thu, May 05, 2005 at 11:17:27PM +0100, Julian Gilbey wrote:
> On Thu, May 05, 2005 at 11:48:18PM +0200, Adrian Bunk wrote:
> > tags 307816 -sid
> > thanks
> > 
> > That's not a sid-only thing, because as I explained in my bug report, 
> > the package in sarge is not really usable.
> 
> Agreed.
> 
> > On Thu, May 05, 2005 at 02:16:06PM -0700, Steve Langasek wrote:
> > > On Thu, May 05, 2005 at 07:06:23PM +0200, Adrian Bunk wrote:
> > > > Package: cweb
> > > > Severity: grave
> > > 
> > > > It might be the best to simply remove the cweb package since
> > > > the Conflicts/Replaces/Provides in tetex-bin should be enough.
> > > 
> > > That doesn't provide a usable automatic transition from woody, though.
> > 
> > cweb in woody recommends tetex-bin. 
> > 
> > People who had cweb installed without having as well tetex-bin installed 
> > fulfill the following two points:
> > - they have not fulfilled recommends on their system
> > - they don't seem to really use cweb
> 
> They may use it for compiling other people's cweb source code without
> wanting to pretty-print it.

OK, I didn't think of this.

> Please see my other email on the "best" fix.

Agreed.

>Julian

cu
Adrian

-- 

   "Is there not promise of rain?" Ling Tan asked suddenly out
of the darkness. There had been need of rain for many days.
   "Only a promise," Lao Er said.
   Pearl S. Buck - Dragon Seed



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



Bug#308587: Multiple security issues in ht

2005-05-11 Thread Moritz Muehlenhoff
Package: ht
Severity: grave
Tags: security, patch
Justification: user security hole

Gentoo has reported several security issues in ht:

1. An integer overflow in the ELF segment parsing
2. Some buffer overflows in the PE parser.

Fixes: (Please double check)

1:
http://cvs.sourceforge.net/viewcvs.py/hte/HT%20Editor/cplus-dem.c?r1=1.1&r2=1.2&diff_format=u
http://cvs.sourceforge.net/viewcvs.py/hte/HT%20Editor/htanaly.cc?r1=1.45&r2=1.46&diff_format=u
http://cvs.sourceforge.net/viewcvs.py/hte/HT%20Editor/htcoff.cc?r1=1.14&r2=1.15&diff_format=u
http://cvs.sourceforge.net/viewcvs.py/hte/HT%20Editor/htelf.cc?r1=1.17&r2=1.18&diff_format=u
http://cvs.sourceforge.net/viewcvs.py/hte/HT%20Editor/htpef.cc?r1=1.6&r2=1.7&diff_format=u
http://cvs.sourceforge.net/viewcvs.py/hte/HT%20Editor/htpeimp.cc?r1=1.17&r2=1.18&diff_format=u

2:
http://cvs.sourceforge.net/viewcvs.py/hte/HT%20Editor/htperes.cc?r1=1.8&r2=1.9&diff_format=u

Cheers,
Moritz

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.11
Locale: LANG=C, [EMAIL PROTECTED] (charmap=ISO-8859-15)


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



Bug#308585: tiger: Filesystem nfsd is not recognised as a local filesystem

2005-05-11 Thread Stefanos Harhalakis
Package: tiger
Version: 1:3.2.1-24
Severity: normal


Tiger reports this message:

--CONFIG-- [con010c] Filesystem nfsd used by none is not recognised as a
local filesystem

The fstab entry is:
none/nfsnfsddefaults0   0

mount says:
none on /nfs type nfsd (rw)

This filesystem is similar to the proc, devfs, sysfs, rpc_pipefs, usbfs, devpts 
filesystems.

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

Versions of packages tiger depends on:
ii  binutils2.15-5   The GNU assembler, linker and bina
ii  coreutils [fileutils]   5.2.1-2  The GNU core utilities
ii  debconf 1.4.30.13Debian configuration management sy
ii  diff2.8.1-11 File comparison utilities
ii  libc6   2.3.2.ds1-21 GNU C Library: Shared libraries an
ii  net-tools   1.60-10  The NET-3 networking toolkit

-- debconf information:
* tiger/mail_rcpt: root
  tiger/remove_mess: true
* tiger/policy_adapt:


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



Bug#308588: /etc/cron.daily/jffnms uses incorrect config files

2005-05-11 Thread iarenuno
Package: jffnms
Version: 0.8.2-1
Severity: normal


/etc/cron.daily/jffnms looks for some configuration values in a file
called /etc/jffnms.ini. This file doesn't exist. I suppose the file
should be /etc/jffnms/jffnms.conf.

In addition to that, the cron job looks for the following values in that
file:

images_real_path
log_path

neither of which are filled in by the installation scripts (there are
however default values in /etc/jffnms/jffnms.conf.defaults for both of them).

Saludos. Iñaki.

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.11.7
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages jffnms depends on:
ii  apache [httpd]   1.3.33-4versatile, high-performance HTTP s
ii  debconf  1.4.30.13   Debian configuration management sy
ii  php4 4:4.3.10-13 server-side, HTML-embedded scripti
ii  php4-cli 4:4.3.10-13 command-line interpreter for the p
ii  php4-gd [php4-gd2]   4:4.3.10-13 GD module for php4
ii  php4-mysql   4:4.3.10-13 MySQL module for php4
ii  php4-snmp4:4.3.10-13 SNMP module for php4
ii  rrdtool  1.0.49-1Time-series data storage and displ
ii  wwwconfig-common 0.0.43  Debian web auto configuration

-- debconf information:
* jffnms/dbcreate: true
  jffnms/erroruid:
* jffnms/configapache: Apache
  jffnms/createdb_error:
  jffnms/deletelogs: 7
  jffnms/compresslogs: 2
* jffnms/dbhost: localhost
  jffnms/errorgid:
* jffnms/dbadmin: root
  jffnms/dbuser: jffnms
* jffnms/dbtype: mysql
* jffnms/upgradedb: true
  jffnms/dbname: jffnms
  jffnms/nosqlupgrade:



Bug#308586: trying to overwrite `/usr/lib/python2.3/site-packages/apt_pkg.so', which is also in package python-apt

2005-05-11 Thread Anthony DeRobertis
Package: python2.3-apt
Version: 0.6.11
Severity: serious
Tags: experimental

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Selecting previously deselected package python2.3-apt.
Unpacking python2.3-apt (from .../python2.3-apt_0.6.11_i386.deb) ...
dpkg: error processing /var/cache/apt/archives/python2.3-apt_0.6.11_i386.deb 
(--unpack):
 trying to overwrite `/usr/lib/python2.3/site-packages/apt_pkg.so', which is 
also in package python-apt
dpkg-deb: subprocess paste killed by signal (Broken pipe)


- -- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing'), (130, 'unstable'), (120, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.10-bohr
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages python2.3-apt depends on:
pn  libapt-inst-libc6.3-5-1.1Not found.
pn  libapt-pkg-libc6.3-5-3.9 Not found.
ii  libc6   2.3.2.ds1-21 GNU C Library: Shared libraries an
ii  libgcc1 1:3.4.3-12   GCC support library
ii  libstdc++5  1:3.3.5-12   The GNU Standard C++ Library v3
pn  python2.3Not found.

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

iD8DBQFCgdJI+z+IwlXqWf4RAmAGAJ9PCW58jOYvXn2hQXgdCL6jrTGKQACeJT2Q
wBLt/z0UcXkQ5QAlkqOR0N0=
=Gq59
-END PGP SIGNATURE-


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



Bug#307816: cweb is not installable / unusable

2005-05-11 Thread Adrian Bunk
On Thu, May 05, 2005 at 11:07:47PM +0100, Julian Gilbey wrote:
>...
> So I suggest letting:
> * tetex-bin_2.0.2-29 (and packages built from it: libkpathsea3 and
>   libkpathsea-dev)
> * cweb_3.64.debian-2
> into sarge.

I agree, this is a better solution than my suggestion.

>Julian

cu
Adrian

-- 

   "Is there not promise of rain?" Ling Tan asked suddenly out
of the darkness. There had been need of rain for many days.
   "Only a promise," Lao Er said.
   Pearl S. Buck - Dragon Seed



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



Bug#308538: Test whether two submitters actually work

2005-05-11 Thread Colin Watson
On Wed, May 11, 2005 at 10:44:11AM +0200, Adrian Bunk wrote:
> On Tue, May 10, 2005 at 11:01:45PM +0100, Martin Michlmayr wrote:
> > Since you're at it, can you also check what happens when the
> > submitter contain spaces.  (i.e,
> > Adrian Bunk <[EMAIL PROTECTED]>, Adrian Bunk <[EMAIL PROTECTED]>)
> 
> They work surprisingly well, too.
> 
> The only problem I've observed until now is that the "Reported by:" link 
> of the bug can't handle multiple submitters correctly.

Good point, thanks. Fixed.

Cheers,

-- 
Colin Watson   [EMAIL PROTECTED]


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



Bug#307553: CAN-2005-1368

2005-05-11 Thread Horms
reassign 307553 kernel-source-2.6.11
tag 307553 +pending
thanks

The fix for CAN-2005-1368 is in SVN for 2.6.11.
The code that this bug manifests in is not present
in 2.6.8 or 2.4.27.

-- 
Horms


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



Bug#307552: CAN-2005-1369

2005-05-11 Thread Horms
tag 307552 +pending
thanks

I have added the fix for CAN-2005-1369 to SVN for 2.6.8.
It is also present in SVN for 2.6.11. 2.4.27 does not
appear to have these drivers.

-- 
Horms


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



Bug#150124: gridengine packages

2005-05-11 Thread Paul Brossier
Hi Matt,

I had a look at the url you sent back in July 2003, but it now
gives a 403 error. Is there another place where we can fetch
them?

cheers, piem


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



Bug#308589: postgresql-common: home directory of postgres user does not exist

2005-05-11 Thread Florian Weimer
Package: postgresql-common
Version: 7
Severity: normal

The postgres user is created with home directory /home/postgres, which
does not exist.


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



Bug#308590: libsdl1.2: FTBFS with gcc-4.0

2005-05-11 Thread Sebastien Bacher
Package: libsdl1.2

Hi,

This patch, from fedora, fixes the build with the current package.


Cheers,

Sebastien Bacher
--- SDL-1.2.8/src/hermes/HeadMMX.h.gcc4	2001-04-26 12:45:45.0 -0400
+++ SDL-1.2.8/src/hermes/HeadMMX.h	2005-04-14 07:00:01.390719842 -0400
@@ -50,21 +50,19 @@
   extern "C" {   
   #endif
 
-  void ConvertMMX(HermesConverterInterface *) __attribute__ ((alias ("_ConvertMMX")));
-#if 0
-  void ClearMMX_32(HermesClearInterface *) __attribute__ ((alias ("_ClearMMX_32")));
-  void ClearMMX_24(HermesClearInterface *)  __attribute__ ((alias ("_ClearMMX_24")));
-  void ClearMMX_16(HermesClearInterface *)  __attribute__ ((alias ("_ClearMMX_16")));
-  void ClearMMX_8(HermesClearInterface *)  __attribute__ ((alias ("_ClearMMX_8")));
-
-  void ConvertMMXp32_16RGB555() __attribute__ ((alias ("_ConvertMMXp32_16RGB555")));
-#endif
-
-  void ConvertMMXpII32_24RGB888() __attribute__ ((alias ("_ConvertMMXpII32_24RGB888")));
-  void ConvertMMXpII32_16RGB565() __attribute__ ((alias ("_ConvertMMXpII32_16RGB565")));
-  void ConvertMMXpII32_16BGR565() __attribute__ ((alias ("_ConvertMMXpII32_16BGR565")));
-  void ConvertMMXpII32_16RGB555() __attribute__ ((alias ("_ConvertMMXpII32_16RGB555")));
-  void ConvertMMXpII32_16BGR555() __attribute__ ((alias ("_ConvertMMXpII32_16BGR555")));
+  extern void _ConvertMMX(HermesConverterInterface *);
+  extern void _ConvertMMXpII32_24RGB888();
+  extern void _ConvertMMXpII32_16RGB565();
+  extern void _ConvertMMXpII32_16BGR565();
+  extern void _ConvertMMXpII32_16RGB555();
+  extern void _ConvertMMXpII32_16BGR555();
+
+  #define ConvertMMX _ConvertMMX
+  #define ConvertMMXpII32_24RGB888 _ConvertMMXpII32_24RGB888
+  #define ConvertMMXpII32_16RGB565 _ConvertMMXpII32_16RGB565
+  #define ConvertMMXpII32_16BGR565 _ConvertMMXpII32_16BGR565
+  #define ConvertMMXpII32_16RGB555 _ConvertMMXpII32_16RGB555
+  #define ConvertMMXpII32_16BGR555 _ConvertMMXpII32_16BGR555
 
   #ifdef __cplusplus
   }
--- SDL-1.2.8/src/hermes/HeadX86.h.gcc4	2002-06-08 13:45:39.0 -0400
+++ SDL-1.2.8/src/hermes/HeadX86.h	2005-04-14 07:04:00.579143961 -0400
@@ -79,56 +79,47 @@
   extern "C" {
   #endif
 
-  int Hermes_X86_CPU() __attribute__ ((alias ("_Hermes_X86_CPU")));
+  extern int _Hermes_X86_CPU();
 
-  void ConvertX86(HermesConverterInterface *) __attribute__ ((alias ("_ConvertX86")));
+  extern void _ConvertX86(HermesConverterInterface *);
+
+  extern void _ConvertX86p32_32BGR888();
+  extern void _ConvertX86p32_32RGBA888();
+  extern void _ConvertX86p32_32BGRA888();
+  extern void _ConvertX86p32_24RGB888();
+  extern void _ConvertX86p32_24BGR888();
+  extern void _ConvertX86p32_16RGB565();
+  extern void _ConvertX86p32_16BGR565();
+  extern void _ConvertX86p32_16RGB555();
+  extern void _ConvertX86p32_16BGR555();
+  extern void _ConvertX86p32_8RGB332();
+
+  extern void _ConvertX86p16_16BGR565();
+  extern void _ConvertX86p16_16RGB555();
+  extern void _ConvertX86p16_16BGR555();
+  extern void _ConvertX86p16_8RGB332();
+
+
+  #define Hermes_X86_CPU _Hermes_X86_CPU
+
+  #define ConvertX86 _ConvertX86
+
+  #define ConvertX86p32_32BGR888 _ConvertX86p32_32BGR888
+  #define ConvertX86p32_32RGBA888 _ConvertX86p32_32RGBA888
+  #define ConvertX86p32_32BGRA888 _ConvertX86p32_32BGRA888
+  #define ConvertX86p32_24RGB888 _ConvertX86p32_24RGB888
+  #define ConvertX86p32_24BGR888 _ConvertX86p32_24BGR888
+  #define ConvertX86p32_16RGB565 _ConvertX86p32_16RGB565
+  #define ConvertX86p32_16BGR565 _ConvertX86p32_16BGR565
+  #define ConvertX86p32_16RGB555 _ConvertX86p32_16RGB555
+  #define ConvertX86p32_16BGR555 _ConvertX86p32_16BGR555
+  #define ConvertX86p32_8RGB332 _ConvertX86p32_8RGB332
+
+  #define ConvertX86p16_16BGR565 _ConvertX86p16_16BGR565
+  #define ConvertX86p16_16RGB555 _ConvertX86p16_16RGB555
+  #define ConvertX86p16_16BGR555 _ConvertX86p16_16BGR555
+  #define ConvertX86p16_8RGB332 _ConvertX86p16_8RGB332
 
-#if 0
-  void ClearX86_32(HermesClearInterface *) __attribute__ ((alias ("_ClearX86_32")));
-  void ClearX86_24(HermesClearInterface *)  __attribute__ ((alias ("_ClearX86_24")));
-  void ClearX86_16(HermesClearInterface *)  __attribute__ ((alias ("_ClearX86_16")));
-  void ClearX86_8(HermesClearInterface *)  __attribute__ ((alias ("_ClearX86_8")));
-#endif
-
-  void ConvertX86p32_32BGR888() __attribute__ ((alias ("_ConvertX86p32_32BGR888")));
-  void ConvertX86p32_32RGBA888() __attribute__ ((alias ("_ConvertX86p32_32RGBA888")));
-  void ConvertX86p32_32BGRA888() __attribute__ ((alias ("_ConvertX86p32_32BGRA888")));
-  void ConvertX86p32_24RGB888() __attribute__ ((alias ("_ConvertX86p32_24RGB888")));
-  void ConvertX86p32_24BGR888() __attribute__ ((alias ("_ConvertX86p32_24BGR888")));
-  void ConvertX86p32_16RGB565() __attribute__ ((alias ("_ConvertX86p32_16RGB565")));
-  void ConvertX86p32_16BGR565() __attribute__ ((alias ("_ConvertX86p32_16BGR565")));
-  void ConvertX86p32_16RGB555() __attribute__ ((alias ("_ConvertX86p32_16RGB555")));
-  void ConvertX86p32_16BGR555() __attribute__ ((alia

Bug#308591: apache-ssl: 1.3.33-5 won't install: Template parse error near `www-sivut.`

2005-05-11 Thread Matthew Exley
Package: apache-ssl
Version: 1.3.33-5
Severity: grave
Justification: renders package unusable


Output from dpkg --configure apache-ssl:
>
>Setting up apache-ssl (1.3.33-5) ...
>Template parse error near `www-sivut.', in stanza #5 of 
>/var/lib/dpkg/info/apache-ssl.templates
>dpkg: error processing apache-ssl (--configure):
> subprocess post-installation script returned error exit status 255
>Errors were encountered while processing:
> apache-ssl
>



-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (900, 'unstable'), (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.9.2010043
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1) (ignored: LC_ALL set to 
en_GB)

Versions of packages apache-ssl depends on:
ii  apache-common   1.3.33-5 support files for all Apache webse
ii  debconf 1.4.49   Debian configuration management sy
ii  dpkg1.10.27  Package maintenance system for Deb
ii  libc6   2.3.2.ds1-21 GNU C Library: Shared libraries an
ii  libdb4.24.2.52-18Berkeley v4.2 Database Libraries [
ii  libexpat1   1.95.8-3 XML parsing C library - runtime li
ii  libmagic1   4.12-1   File type determination library us
ii  libssl0.9.7 0.9.7g-1 SSL shared libraries
ii  logrotate   3.7-2Log rotation utility
ii  mime-support3.33-1   MIME files 'mime.types' & 'mailcap
ii  openssl 0.9.7g-1 Secure Socket Layer (SSL) binary a
ii  perl5.8.4-8  Larry Wall's Practical Extraction 
ii  ssl-cert1.0-11   Simple debconf wrapper for openssl

-- debconf information:
* apache-ssl/server-name: apu.exley.net
* apache-ssl/enable-suexec: false
* apache-ssl/document-root: /var/www
* apache-ssl/server-admin: [EMAIL PROTECTED]
* apache-ssl/init: true


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



Bug#304548: CAN-2005-1041: DoS vulnerability in fib_seq_start()

2005-05-11 Thread Horms
tags 304548 +pending
thanks

The fix for CAN-2005-1041 is in SVN for 2.6.8.
It was included in kernel-source-2.6.11 2.6.11-1
as part of the 2.6.11.5 patchset from upstream.
It is not present in 2.4.27.

-- 
Horms


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



Bug#308538: Test whether two submitters actually work

2005-05-11 Thread Adrian Bunk
On Wed, May 11, 2005 at 10:41:56AM +0100, Colin Watson wrote:
> On Wed, May 11, 2005 at 10:44:11AM +0200, Adrian Bunk wrote:
> > On Tue, May 10, 2005 at 11:01:45PM +0100, Martin Michlmayr wrote:
> > > Since you're at it, can you also check what happens when the
> > > submitter contain spaces.  (i.e,
> > > Adrian Bunk <[EMAIL PROTECTED]>, Adrian Bunk <[EMAIL PROTECTED]>)
> > 
> > They work surprisingly well, too.
> > 
> > The only problem I've observed until now is that the "Reported by:" link 
> > of the bug can't handle multiple submitters correctly.
> 
> Good point, thanks. Fixed.

Thanks for the quick fix.

But the bug is listed at neither of the two submitters pages.

It seems a handling of multiple submitters in a way that the bugs belong 
to each of them (as it is similarily done with bugs against multiple 
packages) is missing.

> Cheers,

cu
Adrian

-- 

   "Is there not promise of rain?" Ling Tan asked suddenly out
of the darkness. There had been need of rain for many days.
   "Only a promise," Lao Er said.
   Pearl S. Buck - Dragon Seed



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



Bug#308538: Test whether two submitters actually work

2005-05-11 Thread Colin Watson
On Wed, May 11, 2005 at 11:49:38AM +0200, Adrian Bunk wrote:
> On Wed, May 11, 2005 at 10:41:56AM +0100, Colin Watson wrote:
> > On Wed, May 11, 2005 at 10:44:11AM +0200, Adrian Bunk wrote:
> > > They work surprisingly well, too.
> > > 
> > > The only problem I've observed until now is that the "Reported by:" link 
> > > of the bug can't handle multiple submitters correctly.
> > 
> > Good point, thanks. Fixed.
> 
> Thanks for the quick fix.
> 
> But the bug is listed at neither of the two submitters pages.
> 
> It seems a handling of multiple submitters in a way that the bugs belong 
> to each of them (as it is similarily done with bugs against multiple 
> packages) is missing.

Hmm, OK, I see. Should be fixed now.

Cheers,

-- 
Colin Watson   [EMAIL PROTECTED]


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



Bug#307705: [Fwd: Re: working here]

2005-05-11 Thread Remco van de Meent
Martin Lohmeier wrote:
|the '-c' switch is working here (verison is also 2.01.10-26).
|
|Can you give us some more information on your setup (the command line
|which calls webalizer and your config file)? What tells you that the
|file is ignored?
|
Although this is strange usuage, it fails in every other of my 
combinations.

chthon:/home/weblogs/configs> ls
./  ../  aupairperfect.conf
chthon:/home/weblogs/configs> webalizer -c aupairperfect.conf
Webalizer V2.01-10 (Linux 2.4.26-bf2.4) locale: C
Using logfile STDIN (clf)
Creating output in current directory
Hostname for reports is 'chthon.slipgate.za.net'
History file not found...
Could you perhaps try using the `strace' tool to see if 
aupairperfect.conf is actually being accessed and read or not?

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


Bug#306164: patch

2005-05-11 Thread schoepf-debian


-- 
+++ Lassen Sie Ihren Gedanken freien Lauf... z.B. per FreeSMS +++
GMX bietet bis zu 100 FreeSMS/Monat: http://www.gmx.net/de/go/mail

patch-306164
Description: Binary data


Bug#300115: USB support for manufacturers other than MGE

2005-05-11 Thread arnaud . quette
Hi there,

A 2.0.2-pre1 archive is available to test:
http://new.networkupstools.org/source.html

Thanks to give it a try and to report back.
Note that there is still information missing for
APC, and that the DumpTree will help filling it.

I also need some help to complete this: if you
have few coding knowledges, please step up.
There is really not much to complete newhidups
APC support...

I'm interested in:
- upsc output when running newhidups (1 on battery and 1 online)
- newhidups DumpTree output (need 2.0.1 to work).

Arnaud Quette
---
Linux / Unix Expert - MGE UPS SYSTEMS - R&D Dpt
OpenSource Developer - http://arnaud.quette.free.fr/
Debian Developer - http://people.debian.org/~aquette/
... and much more ...


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



Bug#308594: /sbin/badblocks: badblocks runs faulty check for mounted fs

2005-05-11 Thread gambarimasu+reportbug
Package: e2fsprogs
Version: 1.37-2
Severity: normal
File: /sbin/badblocks


Try raiding /dev/hdx into /dev/mdx, and mount mdx but not hdx.
Then do badblocks -n /dev/hdx.
Badblocks will not complain that hdx is mounted, even though
it is indirectly mounted through mdx.

Also, please explain in the man page why it's dangerous.  I presume
because of race condition between the read and the write with another
process.

Now, how do I find out if I caused a problem by doing the above?  :-)

-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.11--from-2.6.9-proc-config-and-menuconfig
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages e2fsprogs depends on:
ii  e2fslibs1.37-2   ext2 filesystem libraries
ii  libblkid1   1.37-2   block device id library
ii  libc6   2.3.2.ds1-21 GNU C Library: Shared libraries an
ii  libcomerr2  1.37-2   common error description library
ii  libss2  1.37-2   command-line interface parsing lib
ii  libuuid11.37-2   universally unique id library

-- no debconf information


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



Bug#308592: zoo: does not store path information

2005-05-11 Thread Thomas Schoepf
package: zoo
version: 2.10-11

[EMAIL PROTECTED]:~/debian/unzoo/test$ zoo -add test.zoo aa/bb/cc/dd/*
Zoo:  aa/bb/cc/dd/a --  ( 0%) added
Zoo:  aa/bb/cc/dd/b --  ( 0%) added
Zoo:  aa/bb/cc/dd/c --  ( 0%) added
Zoo:  aa/bb/cc/dd/d --  ( 0%) added
Zoo:  aa/bb/cc/dd/e --  ( 0%) added
[EMAIL PROTECTED]:~/debian/unzoo/test$ zoo -test test.zoo
Zoo:  a  -- OK
Zoo:  b  -- OK
Zoo:  c  -- OK
Zoo:  d  -- OK
Zoo:  e  -- OK
Zoo:  Archive seems OK.
[EMAIL PROTECTED]:~/debian/unzoo/test$ 


The manpage says the default behavior is to store the full path of the
archived files:

   :  Do not store directory names.  In the absence of this modifier
  zoo stores the full pathname of each archived file.


Thanks,
Thomas

-- 
+++ Neu: Echte DSL-Flatrates von GMX - Surfen ohne Limits +++
Always online ab 4,99 Euro/Monat: http://www.gmx.net/de/go/dsl


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



Bug#308593: azureus: pleas add menu entry

2005-05-11 Thread Bartosz Fenski aka fEnIo
Package: azureus
Version: 2.3.0.0-1
Severity: wishlist

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hello.

I know that azureus includes .desktop entry, but for WMs such like
fluxbox/icewm this is useless.

So would be great to see menu entry for the rest. Attached is some example,
which you can fit to your needs.

Also you could add icon for it, but first it would have to be converted to
.xpm format probably. 

regards
fEnIo

- -- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.4.27-2-686
Locale: LANG=pl_PL, LC_CTYPE=pl_PL (charmap=ISO-8859-2)

Versions of packages azureus depends on:
ii  libcommons-cli-java  1.0-6   API for working with the command l
ii  liblog4j1.2-java 1.2.9-1 Logging library for java
ii  libswt-gtk-3.1-java  3.0+3.1M4-3 Standard Widget Toolkit for GTK Ja
ii  sun-j2sdk1.5 [java2-runtime] 1.5.0+r01   Java(TM) 2 SDK, Standard Edition, 
ii  sun-j2sdk1.5debian [java2-ru 0.14Debian specific parts of Java(TM) 

- -- no debconf information

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

iD8DBQFCgdizhQui3hP+/EARAjqBAKC5fOjHReOmuRacn4UNHld+54WqJgCcDxGW
3YoOjn3Hta5azK1WmHxksrw=
=Q9Al
-END PGP SIGNATURE-
?package(azureus):needs="X11" section="Apps/Net"\
  title="Azureus" command="/usr/bin/azureus"
  longtitle="Powerful BitTorrent client"



Bug#308595: slapd: Problem with apache

2005-05-11 Thread Julien Cigar
Package: slapd
Version: 2.2.23-1
Severity: important

Hello,

It seems this version of slapd (or libldap or ... ?) breaks
apache2.

When I start Apache I get a :
"apache2:
/home/torsten/packages/openldap/openldap2-2.1.30/libraries/liblber/io.c:508:
ber_get_next: Assertion `ber->ber_buf == ((void *)0)' failed."

However, Apache2 seems to start normally, except that I get a lot of
nss_ldap messages :

May 11 10:52:55 localhost apache2: nss_ldap: reconnected to LDAP server
after 1 attempt(s)
May 11 10:52:55 localhost last message repeated 6 times
ay 11 10:55:22 localhost apache2: nss_ldap: could not get LDAP result -
Can't contact LDAP server
May 11 10:55:22 localhost apache2: nss_ldap: could not search LDAP
server - Decoding error
May 11 10:55:22 localhost apache2: nss_ldap: could not get LDAP result -
Decoding error
May 11 10:55:23 localhost apache2: nss_ldap: could not get LDAP result -
Local error
May 11 10:55:23 localhost apache2: nss_ldap: could not search LDAP
server - Local error
May 11 10:55:23 localhost apache2: nss_ldap: could not search LDAP
server - Local error
May 11 10:55:23 localhost apache2: nss_ldap: could not search LDAP
server - Decoding error
.

I have this nss_ldap problem only with Apache2.

Thanks for your support


-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.11.6-Debian
Locale: LANG=en_US.ISO-8859-15, LC_CTYPE=en_US.ISO-8859-15 (charmap=ISO-8859-15)

Versions of packages slapd depends on:
ii  coreutils [fileutils]   5.2.1-2  The GNU core utilities
ii  debconf 1.4.30.13Debian configuration management sy
ii  libc6   2.3.2.ds1-21 GNU C Library: Shared libraries an
ii  libdb4.24.2.52-18Berkeley v4.2 Database Libraries [
ii  libiodbc2   3.52.2-3 iODBC Driver Manager
ii  libldap-2.2-7   2.2.23-1 OpenLDAP libraries
ii  libltdl31.5.6-6  A system independent dlopen wrappe
ii  libperl5.8  5.8.4-8  Shared Perl library
ii  libsasl22.1.19-1.5   Authentication abstraction library
ii  libslp1 1.0.11a-2OpenSLP libraries
ii  libssl0.9.7 0.9.7e-3 SSL shared libraries
ii  libwrap07.6.dbs-8Wietse Venema's TCP wrappers libra
ii  perl [libmime-base64-perl]  5.8.4-8  Larry Wall's Practical Extraction 
ii  psmisc  21.5-1   Utilities that use the proc filesy

-- debconf information:
  slapd/password_mismatch:
  slapd/fix_directory: true
  slapd/invalid_config: true
* shared/organization: bebif
  slapd/upgrade_slapcat_failure:
  slapd/upgrade_slapadd_failure:
* slapd/backend: BDB
* slapd/dump_database: when needed
* slapd/allow_ldap_v2: false
* slapd/no_configuration: false
* slapd/move_old_database: true
  slapd/suffix_change: false
  slapd/slave_databases_require_updateref:
* slapd/dump_database_destdir: /var/backups/slapd-VERSION
  slapd/autoconf_modules: true
* slapd/purge_database: true
  slapd/admin:
* slapd/domain: canis.be-bif.ulb.ac.be


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



Bug#308596: Mistyped /something commands are lost

2005-05-11 Thread Enrico Zini
Package: gaim
Version: 1:1.2.1-1
Severity: wishlist

Hello,

thanks for maintaining gaim!

I occasionally stumble in this annoyance with /something commands:
suppose I want to send someone a pathname in a message like this:

  "/var/log/syslog: this is the file you have to look at"

Then gaim will print:

  "Command not existent" (or whatever the English version is)

That's fine.  However, I now have to retype all the message, as my
original mistyping is not preserved in the history.  This can be
extremely annoying if what was lost is a long message with a lot of
thinking on it.

It would be better if gaim said:

  "Command not existent: '/var/log/syslog: this is the file you have to look 
at'"

That way I can just copy from the history and paste it in the message
instead of retyping it all from scratch.


Ciao,

Enrico

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.11-1-686
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=UTF-8)

Versions of packages gaim depends on:
ii  gaim-data1:1.2.1-1   multi-protocol instant messaging c
ii  libao2   0.8.6-1 Cross Platform Audio Output Librar
ii  libaspell15  0.60.2+20050121-2   The GNU Aspell spell-checker runti
ii  libatk1.0-0  1.8.0-4 The ATK accessibility toolkit
ii  libaudiofile00.2.6-6 Open-source version of SGI's audio
ii  libc62.3.2.ds1-21GNU C Library: Shared libraries an
ii  libgcrypt11  1.2.0-11LGPL Crypto library - runtime libr
ii  libglib2.0-0 2.6.4-1 The GLib library of C routines
ii  libgnutls11  1.0.16-13   GNU TLS library - runtime library
ii  libgtk2.0-0  2.6.4-1 The GTK+ graphical user interface 
ii  libgtkspell0 2.0.10-1a spell-checking addon for GTK's T
ii  libice6  4.3.0.dfsg.1-12.0.1 Inter-Client Exchange library
ii  libpango1.0-01.8.1-1 Layout and rendering of internatio
ii  libsm6   4.3.0.dfsg.1-12.0.1 X Window System Session Management
ii  libstartup-notificat 0.8-1   library for program launch feedbac
ii  libx11-6 4.3.0.dfsg.1-12.0.1 X Window System protocol client li
ii  libxext6 4.3.0.dfsg.1-12.0.1 X Window System miscellaneous exte
ii  xlibs4.3.0.dfsg.1-12 X Keyboard Extension (XKB) configu

-- no debconf information


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



Bug#308456: mysql-server: dropped schemata keep reappearing

2005-05-11 Thread Christian Hammers
Hi Thomas

On 2005-05-11 Thomas Schoepf wrote:
> It's a database. The MySQL Administrator calls it a Schema.
Ah, ok :)

> > If so, just issue a "SHOW TABLES;" etc in the command line client or
> > look into /var/lib/mysql/ (if it's not innodb) to see if your files
> > really went away after you tried to remove them.
> 
> The strange thing is that it does go away - temporarily. I looked into
> /var/lib/mysql and there was no directory "test" anymore after dropping this
> database. But it reappears after several days to a few weeks.

Take a look at the timestamp of the directory and the tables within (if
there are any tables) and cross-check that with the runtimes of your
cronjobs and /etc/cron.daily/*, /etc/cron.d/* and /etc/logrotate.*/*
(and of course with the times you fire up this administrator who might
think that he is in charge of recreating it...:))

bye,

-christian-


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



Bug#308566: /usr/share/man/man1/mysqldump.1.gz: mysql-client: error in mysqldump manpage

2005-05-11 Thread Christian Hammers
tags 308566 + confirmed upstream
forwarded 308566 http://bugs.mysql.com/10534
thanks

Hello Geoff

On 2005-05-11 [EMAIL PROTECTED] wrote:
> The man page for mysqldump says:
> EXAMPLES
>The most normal use of mysqldump is probably for making a backup
>of whole databases. See Mysql Manual section 21.2 Database Back-
>ups.
> 
> However in the current mysql-doc package, the database backups section
> is 5.7.1.

Thanks, will be fixed.

bye,

-christian-


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



Bug#308578: Recursive directory listings descends into symlinks to directories

2005-05-11 Thread Francesco Paolo Lovergine
tags 308578 + upstream
tags 308578 + fixed-upstream
tags 308578 + patch
thanks

On Wed, May 11, 2005 at 10:39:49AM +0200, Rainer Schöpf wrote:
> Package: proftpd
> Version: 1.2.10-10
> Severity: important
> 
> I maintain a large anonymous ftp server, ftp.dante.de a.k.a.
> dante.ctan.org. We rely on various mirrors all over the world.
> 
> Since switching to proftpd (from wu-ftpd), recursive directory listings
> do behave differently. To see the problem, login anonymously to
> ftp.dante.de, cd to
> 
>   tex-archive/dante
> 
> and issue "ls -lRat".
> 
> The directory entry "de-tex-faq" is a symlink, is first listed
> correctly, and then listed again as directory, with all descendents.
> A "ls -lRat" on a command line does not show this behaviour.
> 
> I believe that with "ShowSymLinks on", ls -R should not descend into
> directories via symlinks.
> 
>  

http://bugs.proftpd.org/show_bug.cgi?id=2551

Missed it in last upload :-/ Awaiting for information on a additional mod_delay 
issue...

-- 
Francesco P. Lovergine



Bug#308538: Test whether two submitters actually work

2005-05-11 Thread Adrian Bunk
On Wed, May 11, 2005 at 11:03:16AM +0100, Colin Watson wrote:
> On Wed, May 11, 2005 at 11:49:38AM +0200, Adrian Bunk wrote:
> > On Wed, May 11, 2005 at 10:41:56AM +0100, Colin Watson wrote:
> > > On Wed, May 11, 2005 at 10:44:11AM +0200, Adrian Bunk wrote:
> > > > They work surprisingly well, too.
> > > > 
> > > > The only problem I've observed until now is that the "Reported by:" 
> > > > link 
> > > > of the bug can't handle multiple submitters correctly.
> > > 
> > > Good point, thanks. Fixed.
> > 
> > Thanks for the quick fix.
> > 
> > But the bug is listed at neither of the two submitters pages.
> > 
> > It seems a handling of multiple submitters in a way that the bugs belong 
> > to each of them (as it is similarily done with bugs against multiple 
> > packages) is missing.
> 
> Hmm, OK, I see. Should be fixed now.

Looks good, thanks.  :-)

> Cheers,

cu
Adrian

-- 

   "Is there not promise of rain?" Ling Tan asked suddenly out
of the darkness. There had been need of rain for many days.
   "Only a promise," Lao Er said.
   Pearl S. Buck - Dragon Seed



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



Bug#307955: Fixed in upstream 1.41

2005-05-11 Thread Niko Tyni
tags 307955 = patch fixed-upstream 
tags 283652 = patch fixed-upstream
thanks

These patches are included in upstream 1.41 (and 2.x development SVN
where applicable).
-- 
Niko Tyni   [EMAIL PROTECTED]


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



Bug#308282: [phpbb2 #308282] upstream patch

2005-05-11 Thread Thijs Kinkhorst
On Tue, May 10, 2005 14:55, Ulf Harnhammar wrote:
> Protecting against this type of attack is much more complicated than
> this. As Jeroen noted, HTML entities are interpreted, so you have to
> protect against things like "javascript:". Some browsers allow varying
> amounts of whitespace inside protocols for some reason, so you have to
> protect against "java  scr ipt : ". Upper and lower characters may be an
> issue. Finally, some browsers including Mozilla store entities in integers
> so they wrap over and start again after 2**32.

So to conclude I think we have to resort to a whitelist of allowed protocols.
kses uses ('http', 'https', 'ftp', 'news', 'nntp', 'telnet', 'gopher',
'mailto') which seems like a reasonable list.


Thijs



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



Bug#308589: postgresql-common: home directory of postgres user does not exist

2005-05-11 Thread Martin Pitt
Hi Florian!

Florian Weimer [2005-05-11 11:49 +0200]:
> Package: postgresql-common
> Version: 7
> Severity: normal
> 
> The postgres user is created with home directory /home/postgres, which
> does not exist.

Right, it is not supposed to be created. postgres is a system user
which owns the default ("main") cluster, not an user who is actually
supposed to login and do stuff. Why do you think it needs a home
directory?

Martin
-- 
Martin Pitt  http://www.piware.de
Ubuntu Developer   http://www.ubuntulinux.org
Debian Developerhttp://www.debian.org


signature.asc
Description: Digital signature


Bug#308589: postgresql-common: home directory of postgres user does not exist

2005-05-11 Thread Florian Weimer
* Martin Pitt:

> Florian Weimer [2005-05-11 11:49 +0200]:
>> Package: postgresql-common
>> Version: 7
>> Severity: normal
>> 
>> The postgres user is created with home directory /home/postgres, which
>> does not exist.
>
> Right, it is not supposed to be created. postgres is a system user
> which owns the default ("main") cluster, not an user who is actually
> supposed to login and do stuff. Why do you think it needs a home
> directory?

Because it's referenced in /etc/passwd?  The system might already have
a /home/postgres directory.  /var/lib/postgresql would be a safe
choice.  (And it would have the added benefit that
~postgres/.bash_history could be written to).


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



Bug#301370: marked as done (quota postrm fails due to missing dependency)

2005-05-11 Thread Michael Meskes
Steve,

> There appear to be a number of undocumented changes, relative to -4, which
> are not documentation fixes. :/  Would you remind removing them and
> uploading a -4sarge1 to testing-proposed-updates, or else explain why these
> changes are warranted during the freeze?

Please take my apologies. I was interrupted while working on the package
and simply forgot to remove some parts of the whole patch I applied.
Also I didn't complete the changelog entry. And you probably noticed
that stray patch file lying around in the source tree. Argh!

I fixed this and am currently uploading -6 which should be okay. It
still contains two non-doc patches:

diff -ruN tmp/quota-3.12/quotaops.c quota-3.12/quotaops.c
--- tmp/quota-3.12/quotaops.c   2005-05-11 11:58:35.0 +0200
+++ quota-3.12/quotaops.c   2005-05-11 11:58:16.0 +0200
@@ -34,7 +34,7 @@
 
 #ident "$Copyright: (c) 1980, 1990 Regents of the University of California. $"
 #ident "$Copyright: All rights reserved. $"
-#ident "$Id: quotaops.c,v 1.14 2004/05/24 19:39:15 jkar8572 Exp $"
+#ident "$Id: quotaops.c,v 1.16 2005/03/31 11:48:02 jkar8572 Exp $"
 
 #include 
 #include 
@@ -72,13 +72,13 @@
time_t now;
 
time(&now);
-   if (q->dq_dqb.dqb_bsoftlimit && toqb(q->dq_dqb.dqb_curspace) >= 
q->dq_dqb.dqb_bsoftlimit) {
+   if (q->dq_dqb.dqb_bsoftlimit && toqb(q->dq_dqb.dqb_curspace) > 
q->dq_dqb.dqb_bsoftlimit) {
if (!q->dq_dqb.dqb_btime)
q->dq_dqb.dqb_btime = now + q->dq_h->qh_info.dqi_bgrace;
}
else
q->dq_dqb.dqb_btime = 0;
-   if (q->dq_dqb.dqb_isoftlimit && q->dq_dqb.dqb_curinodes >= 
q->dq_dqb.dqb_isoftlimit) {
+   if (q->dq_dqb.dqb_isoftlimit && q->dq_dqb.dqb_curinodes > 
q->dq_dqb.dqb_isoftlimit) {
if (!q->dq_dqb.dqb_itime)
q->dq_dqb.dqb_itime = now + q->dq_h->qh_info.dqi_igrace;
}
[...]

This one fixes the bug that grace time was set when reaching the limit
instead of starting it when exceeding the limit.

diff -ruN tmp/quota-3.12/rquota_client.c quota-3.12/rquota_client.c
--- tmp/quota-3.12/rquota_client.c  2004-02-12 10:45:14.0 +0100
+++ quota-3.12/rquota_client.c  2005-05-11 11:58:16.0 +0200
@@ -149,8 +149,10 @@
 * Strip off pathname on nfs mounted dir. Ignore entries of any
 * automounter.
 */
-   if ((pathname = strchr(fsname_tmp, ':')) == (char *)0 || *(pathname + 
1) == '(')
+   if ((pathname = strchr(fsname_tmp, ':')) == (char *)0 || *(pathname + 
1) == '(') {
+   free(fsname_tmp);
return -ENOENT;
+   }
 
*pathname++ = '\0';

This one obviously fixes a memory leak. It's not that serious but I
rather have it fixed for sarge too.

> Incidentally, I'm puzzled why quota is calling update-inetd at all from the
> postrm, since there's no code in the postinst which adds an inetd entry. 
> That shouldn't be a blocker for sarge, though.

You're right. That's why I removed the line completely.

Michael
-- 
Michael Meskes
Email: Michael at Fam-Meskes dot De, Michael at Meskes dot (De|Com|Net|Org)
ICQ: 179140304, AIM/Yahoo: michaelmeskes, Jabber: [EMAIL PROTECTED]
Go SF 49ers! Go Rhein Fire! Use Debian GNU/Linux! Use PostgreSQL!


signature.asc
Description: Digital signature


Bug#308597: postgresl-8.0: server socket created in /tmp

2005-05-11 Thread Florian Weimer
Package: postgresl-8.0
Version: 8.0.2-1
Severity: grave
Tags: security
Justification: user security hole

The server creates a socket in /tmp, which is unsafe.  Any local user
can create a similar socket and impersonate the database server.

This bug also breaks backwards comaptibility with old client libraries.


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



Bug#308580: klogd: Extra debugging info

2005-05-11 Thread Ralf Hildebrandt
Package: klogd
Version: 1.4.1-16
Followup-For: Bug #308580


If I kill and restart /sbin/klogd, I get the same behaviour again.
Logging line:
Line: klogd %s.%s#%s, log source = %s started.
Priority: 6
Searching for symbol map.
Trying /boot/System.map-2.6.12-rc4.
Logging line:
Line: Inspecting %s
Priority: 6
Version string = 132620, Major = 2, Minor = 6, Patch = 12
Comparing kernel 2.6.12-rc4 with symbol table 2.6.12.
Found table with matching version number.
End of search list encountered.
Version string = 132620, Major = 2, Minor = 6, Patch = 12.
Comparing kernel 2.6.12-rc4 with symbol table 2.6.12.
Logging line:
Line: Loaded %d symbols from %s.
Priority: 6
Logging line:
Line: Symbols match kernel version %s.
Priority: 6
Logging line:
Line: No module symbols loaded -
kernel modules not enabled.

Priority: 6
--- the output ends here ---


-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.12-rc4
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages klogd depends on:
ii  libc6   2.3.2.ds1-21 GNU C Library: Shared libraries an
ii  sysklogd [system-log-daemon 1.4.1-16 System Logging Daemon

-- no debconf information


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



Bug#308602: fortunes: does not recognize paths with a dot (.) in it

2005-05-11 Thread Can Burak Cilingir
Package: fortunes
Version: 1:1.99.1-2
Severity: important


When using a hand-made fontune file, fortune fails if
path has a . in it. even if "./.cookies".

[EMAIL PROTECTED]:~$ cat .cookies
sÄÄar mÄ ki mutluluklar tek satÄra
%
[EMAIL PROTECTED]:~$ cat cookies
sÄÄar mÄ ki mutluluklar tek satÄra
%
[EMAIL PROTECTED]:~$ strfile cookies
"cookies.dat" created
There was 1 string
Longest string: 39 bytes
Shortest string: 39 bytes
[EMAIL PROTECTED]:~$ strfile .cookies
".cookies.dat" created
There was 1 string
Longest string: 39 bytes
Shortest string: 39 bytes
[EMAIL PROTECTED]:~$ fortune /home/can/cookies
sÄÄar mÄ ki mutluluklar tek satÄra
[EMAIL PROTECTED]:~$ fortune /home/can/.cookies
fortune:/home/can/.cookies not a fortune file or directory
fortune:/home/can/.cookies not a fortune file or directory
No fortunes found
[EMAIL PROTECTED]:~$


-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.9-2-686
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages fortunes depends on:
ii  fortune-mod   1:1.99.1-2 provides fortune cookies on demand
ii  fortunes-min  1:1.99.1-2 Data files containing fortune cook

-- no debconf information



Bug#308603: kdebase: [KDE 3.4] disk led keep blicking since 3.4 installation

2005-05-11 Thread Eric Valette
Package: kdebase
Version: 4:3.4.0-0pre3
Severity: important
Tags: experimental

Since installation of kde 3.4, my disk led keeps blickink and this is 
specifically tied to kde (switching to other windows manager in kdm 
the problem disappears).

I have checked that it actually does not write anything to disk as "df"
and especially log or tmp does not grow. So it is a read access. The 
problem is severe because on latop it prevents to use the dsik 
powermanagement feature.

using lsof, I did not clearly found a possible culprit.

I have now installed the "deb http://pkg-kde.alioth.debian.org/kde-3.4.0/ ./"
on several very différent machines and it occurs on all machines.


-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.12-rc4
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15) (ignored: 
LC_ALL set to [EMAIL PROTECTED])

Versions of packages kdebase depends on:
ii  kappfinder 4:3.4.0-0pre3 non-KDE application finder for KDE
ii  kate   4:3.4.0-0pre3 advanced text editor for KDE
ii  kcontrol   4:3.4.0-0pre3 control center for KDE
ii  kdebase-bin4:3.4.0-0pre3 core binaries for the KDE base mod
ii  kdebase-data   4:3.4.0-0pre3 shared data files for the KDE base
ii  kdebase-kio-plugins4:3.4.0-0pre3 core I/O slaves for KDE
ii  kdepasswd  4:3.4.0-0pre3 password changer for KDE
ii  kdeprint   4:3.4.0-0pre3 print system for KDE
ii  kdesktop   4:3.4.0-0pre3 miscellaneous binaries and files f
ii  kfind  4:3.4.0-0pre3 file-find utility for KDE
ii  khelpcenter4:3.4.0-0pre3 help center for KDE
ii  kicker 4:3.4.0-0pre3 desktop panel for KDE
ii  klipper4:3.4.0-0pre3 clipboard utility for KDE
ii  kmenuedit  4:3.4.0-0pre3 the KDE menu editor
ii  konqueror  4:3.4.0-0pre3 KDE's advanced file manager, web b
ii  konqueror-nsplugins4:3.4.0-0pre3 Netscape plugin support for Konque
ii  konsole4:3.4.0-0pre3 X terminal emulator for KDE
ii  kpager 4:3.4.0-0pre3 desktop pager for KDE
ii  kpersonalizer  4:3.4.0-0pre3 installation personalizer for KDE
ii  ksmserver  4:3.4.0-0pre3 session manager for KDE
ii  ksplash4:3.4.0-0pre3 the KDE splash screen
ii  ksysguard  4:3.4.0-0pre3 system guard for KDE
ii  ktip   4:3.4.0-0pre3 useful tips for KDE
ii  kwin   4:3.4.0-0pre3 the KDE window manager
ii  libkonq4   4:3.4.0-0pre3 core libraries for Konqueror

-- no debconf information


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



Bug#308599: apt: [l10n] Italian po translation missed a character in a word: patch fixes it

2005-05-11 Thread Stefano Melchior
Package: apt
Version: 0.5.28.6
Severity: wishlist

Hi all,
as  Luca Bruno <[EMAIL PROTECTED]> specified in his mail to
debian-l10n-italian ML, there is a word with a missing character. So I
provided the attached patch to fix this issue.
Bye

SteX

--- apt-0.5.28.6/po/it.po   2005-02-27 08:19:22.0 +0100
+++ ./it.po.new 2005-05-11 12:30:13.592077048 +0200
@@ -831,7 +831,7 @@

 #: cmdline/apt-get.cc:930 cmdline/apt-get.cc:1915
 msgid "Download complete and in download only mode"
-msgstr "Download completato e in modalit download-only"
+msgstr "Download completato e in modalità download-only"

 #: cmdline/apt-get.cc:936
 msgid ""


-- Package-specific info:

-- apt-config dump --

APT "";
APT::Architecture "powerpc";
APT::Build-Essential "";
APT::Build-Essential:: "build-essential";
Dir "/";
Dir::State "var/lib/apt/";
Dir::State::lists "lists/";
Dir::State::cdroms "cdroms.list";
Dir::State::userstatus "status.user";
Dir::State::status "/var/lib/dpkg/status";
Dir::Cache "var/cache/apt/";
Dir::Cache::archives "archives/";
Dir::Cache::srcpkgcache "srcpkgcache.bin";
Dir::Cache::pkgcache "pkgcache.bin";
Dir::Etc "etc/apt/";
Dir::Etc::sourcelist "sources.list";
Dir::Etc::vendorlist "vendors.list";
Dir::Etc::vendorparts "vendors.list.d";
Dir::Etc::main "apt.conf";
Dir::Etc::parts "apt.conf.d";
Dir::Etc::preferences "preferences";
Dir::Bin "";
Dir::Bin::methods "/usr/lib/apt/methods";
Dir::Bin::dpkg "/usr/bin/dpkg";
DPkg "";
DPkg::Pre-Install-Pkgs "";
DPkg::Pre-Install-Pkgs:: "/usr/sbin/dpkg-preconfigure --apt || true";


-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: powerpc (ppc)
Kernel: Linux 2.6.11-powerpc
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set to C)

Versions of packages apt depends on:
ii  libc6   2.3.2.ds1-21 GNU C Library: Shared libraries an
ii  libgcc1 1:3.4.3-13   GCC support library
ii  libstdc++5  1:3.3.6-4The GNU Standard C++ Library v3

-- no debconf information



Bug#308600: openoffice won't start from menu after latest upgrade

2005-05-11 Thread David Hugh-Jones
Package: openoffice.org
Version:1.1.3-9
Severity: important

After the latest upgrade, openoffice programs won't start from the
menu. The splash screen comes up, but at this point it hangs and
nothing happens. Simultaneously, I get a message in the syslog:

famd[2725]: fd 39 message length 1347375956 bytes exceeds max of 4136

which is then repeated several times.

programs will start if I launch them from the command line with
"openoffice" (having removed the lockfile).

apt-get remove --purge and apt-get install made no difference.

I have openoffice.org-debian-files, openoffice.org-gtk-gnome and
ooqstart-gnome installed.

Cheers
David



Bug#308601: mozilla-firefox: Communication with some https-sites fails.

2005-05-11 Thread Anders Gustafsson
Package: mozilla-firefox
Version: 1.0.3-2
Severity: normal


Some https-sites have stopped working, reporting the following 
error:

"Firefox and %s cannot communicate securely because they have no common
encryption algorithms."

Most https-sites work. https://secure3.sj.se/ does not.

-- System Information:
Debian Release: 3.1
  APT prefers experimental
  APT policy: (1001, 'experimental'), (500, 'unstable')
Architecture: powerpc (ppc)
Kernel: Linux 2.6.11-rc3
Locale: LANG=C, LC_CTYPE=sv_SE (charmap=ISO-8859-1)

Versions of packages mozilla-firefox depends on:
ii  debianutils  2.13.2  Miscellaneous utilities specific t
ii  fontconfig   2.3.2-1 generic font configuration library
ii  libatk1.0-0  1.10.1-1The ATK accessibility toolkit
ii  libc62.3.5-1 GNU C Library: Shared libraries an
ii  libfontconfig1   2.3.2-1 generic font configuration library
ii  libfreetype6 2.1.7-2.4   FreeType 2 font engine, shared lib
ii  libgcc1  1:4.0.0-2   GCC support library
ii  libglib2.0-0 2.6.4-1 The GLib library of C routines
ii  libgtk2.0-0  2.6.7-1 The GTK+ graphical user interface 
ii  libidl0  0.8.5-1 library for parsing CORBA IDL file
ii  libjpeg626b-10   The Independent JPEG Group's JPEG 
ii  libkrb53 1.3.6-3 MIT Kerberos runtime libraries
ii  libpango1.0-01.8.1-1 Layout and rendering of internatio
ii  libpng12-0   1.2.8rel-1  PNG library - runtime
ii  libstdc++5   1:3.3.6-4   The GNU Standard C++ Library v3
ii  libx11-6 4.3.0.dfsg.1-12 X Window System protocol client li
ii  libxext6 4.3.0.dfsg.1-12 X Window System miscellaneous exte
ii  libxft2  2.1.7-1 FreeType-based font drawing librar
ii  libxp6   4.3.0.dfsg.1-12 X Window System printing extension
ii  libxt6   4.3.0.dfsg.1-12 X Toolkit Intrinsics
ii  psmisc   21.6-1  Utilities that use the proc filesy
ii  xlibs4.3.0.dfsg.1-12 X Keyboard Extension (XKB) configu
ii  zlib1g   1:1.2.2-4   compression library - runtime

-- no debconf information


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



Bug#308592: zoo: does not store path information

2005-05-11 Thread Niklas Vainio
Hi Thomas,

thanks for the report.

On Wed, May 11, 2005 at 12:01:47PM +0200, Thomas Schoepf wrote:
> The manpage says the default behavior is to store the full path of the
> archived files:

José, jos intended to adopt zoo. Could you take a look at this?

-- 
Niklas Vainio <[EMAIL PROTECTED]>


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



Bug#308454: evince: Evince renders some PDF badly

2005-05-11 Thread Sebastien Bacher
forwarded 308454 https://bugs.freedesktop.org/show_bug.cgi?id=3266 
reassign 308454 poppler
thanks

Le mercredi 11 mai 2005 à 10:51 +0200, Cedric Blancher a écrit :
> Le mercredi 11 mai 2005 à 10:20 +0200, Sebastien Bacher a écrit :
> > This document is rendered fine here, can you make a screenshot of the
> > issue?
> 
> Sure. I've attached 4 screenshots.
> 
> Evince 1 : grey lines should not be present
> Evince 2 : blue fade is ugly, font color should not be light grey
> Evince 3 : grey lines, blue line accross figure
> Evince 4 : grey line accross figure

Right, there is rendering issues. This is due to poppler/libcairo, the
splash backend for poppler works fine. I've opened a bug upstream about
this: https://bugs.freedesktop.org/show_bug.cgi?id=3266.
I'm reassiging the bug to poppler.


Cheers,

Sebastien Bacher





Bug#308604: libapache2-mod-perl2: Apparently requires CGI.pm >= 3.08 which is unavailable

2005-05-11 Thread Angus Lees
Package: libapache2-mod-perl2
Severity: important
Version: 1.999.23-1

The upstream changes document mentions that CGI.pm >= 3.08 is required
to understand the Great Apache2 Renaming.  This version is unavailable
in Debian, since libcgi-perl is ancient, libcgi-pm-perl no longer
exists and perl-modules (5.8.4-8) only contains 3.04.

(I guess this is really a bug against libcgi-perl/perl-modules, but
whatever -- I wanted to make sure the issue was recorded against
mod-perl2)

 - Gus

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



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



Bug#303352: trouble with 'apropos' & 'tea'

2005-05-11 Thread Lior Kaplan
Please report this as a different bug report. The reason is that bug
303352 was closed, and I do want to take care of the man page.

A Costa wrote:
> Package: tea
> Version: 9.0-1
> Followup-For: Bug #303352
> 
> 
> It's the curse of 'dak'.  The man page still thinks 'teaed' is called 'tea'.
> 
>   % apropos "^tea" | grep text
>   tea (1)  - small text editor for gnome2
>   teaed (1)- small text editor for gnome2
> 
> Any 'tea' page?
> 
>   % man tea | wc
>   No manual entry for tea
> 0   0   0
> 
> Howbout 'teaed'?
> 
>   % man teaed | wc
>   33 1261214
> 
> And how does it start?
> 
>   man teaed | head | nl | sed '/^ *$/d'
>1  TEA(1)  
> TEA(1)
>2  NAME
>3 tea - small text editor for gnome2
>4  SYNOPSIS
>5 tea  files
> 
> ...which is why 'apropos' still lists 'tea'.  It's a pity too, 
> "tea" is a much nicer name than "teaed".  Maybe a separator 
> or some capitals would improve its look:  "tea.ed", 
> "tea-ed", "teaED", "teaEd", "teaE", "tea-argh", ... 
> 
> HTH...
> 
> -- System Information:
> Debian Release: 3.1
>   APT prefers unstable
>   APT policy: (500, 'unstable'), (1, 'experimental')
> Architecture: i386 (i686)
> Kernel: Linux 2.6.11-1-686
> Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set to C)
> 
> Versions of packages tea depends on:
> ii  libaspell150.60.2+20050121-2 The GNU Aspell spell-checker 
> runti
> ii  libatk1.0-01.8.0-4   The ATK accessibility toolkit
> ii  libc6  2.3.2.ds1-21  GNU C Library: Shared libraries 
> an
> ii  libglib2.0-0   2.6.4-1   The GLib library of C routines
> ii  libgtk2.0-02.6.4-2   The GTK+ graphical user 
> interface 
> ii  libpango1.0-0  1.8.1-1   Layout and rendering of 
> internatio
> 
> -- no debconf information
> 
> 
> 

-- 

Regards,

Lior Kaplan
[EMAIL PROTECTED]
http://www.Guides.co.il

Debian GNU/Linux unstable (SID)


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



Bug#308591: PATCH for apache-ssl.templates

2005-05-11 Thread Matthew Exley
Package: apache-ssl
Version: 1.3.33-5
Followup-For: Bug #308591


OK, here's a short patch which fixes the problem and lets it be
installed, although since I don't read Finnish I've got no idea whether
I've changed the semantics behind the entry:

--- apache-ssl.templates.org2005-05-11 11:54:52.521381145 +0100
+++ apache-ssl.templates2005-05-11 11:55:57.060602985 +0100
@@ -244,8 +244,7 @@
  El valor por omisión es establecer este valor a /var/www, en concordancia
  con el FHS. Si va a utilizar un valor distinto a éste los contenidos de
  /var/www NO serán modificados o movidos.
-Description-fi.ISO-8859-15: Aseta hakemisto, joka sisältää oletusarvoisen 
apache-ssl-palvelimen
-www-sivut.
+Description-fi.ISO-8859-15: Aseta hakemisto, joka sisältää oletusarvoisen 
apache-ssl-palvelimen www-sivut.
  Oletuksena käytetään tiedostojärjestelmähierarkian (FHS) mukaisesti
  hakemistoa /var/www. Jos käytät jotain muuta asetusta, hakemiston
  /var/www sisältöön EI kosketa.


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



Bug#308599: Bug #308599: apt: [l10n] Italian po translation missed a character in a word: patch fixes it

2005-05-11 Thread Stefano Melchior
Hi all,
sorry for the terrible patch format; the attached file seems to be better
appliable.

Regards

SteX

--
GPG Key = D52DF829   --   Stex-- <[EMAIL PROTECTED]>
Keyserver http://keyserver.kjsl.com
Registered user #324592 on the Linux Counter, http://counter.li.org
--- po/it.po2005-02-27 08:19:22.0 +0100
+++ po/it.po2005-05-11 12:30:13.592077048 +0200
@@ -831,7 +831,7 @@
 
 #: cmdline/apt-get.cc:930 cmdline/apt-get.cc:1915
 msgid "Download complete and in download only mode"
-msgstr "Download completato e in modalit download-only"
+msgstr "Download completato e in modalità download-only"
 
 #: cmdline/apt-get.cc:936
 msgid ""


signature.asc
Description: Digital signature


Bug#308605: Wished option : --list-only

2005-05-11 Thread Steve
Package: tree
Version: 1.5.0-2
Severity: wishlist

Hi !

I've been using this utility for a long time now and I find it very
useful for quickly displaying the content of a directory. I recently
discovered the « -P » option because I wanted to display only some file
ending with the same regex. But as this directory was huge, I wanted to
display only those files and not the entire directory tree. And this is
not possible as I understand it (maybe I missed something, and if so,
please pardon me).

So it would be nice if a « --list-only » option existed that could be
used in conjonction with the « -P » option, so that only those files
matching the regex would be displayed.

I'm sorry I can only express my wish and not code myself this feature,
but I lack such knowledge.


Maybe this option could enter the next version of tree .. ;-)


Thanks for your work !

Steve



Bug#308596: Mistyped /something commands are lost

2005-05-11 Thread Luke Schierer
On Wed, May 11, 2005 at 11:48:18AM +0200, Enrico Zini wrote:
> 
> I occasionally stumble in this annoyance with /something commands:
> suppose I want to send someone a pathname in a message like this:
> 
>   "/var/log/syslog: this is the file you have to look at"
> 
> Then gaim will print:
> 
>   "Command not existent" (or whatever the English version is)

in preferences, tell gaim to send unknown slash commands.

> 
> That's fine.  However, I now have to retype all the message, as my
> original mistyping is not preserved in the history.  This can be
> extremely annoying if what was lost is a long message with a lot of
> thinking on it.

that's odd, it is preserved in the history here, if I press
control-up, it is right there. (I turned off sending unknown slash
commands to test).

> 
> It would be better if gaim said:
> 
>   "Command not existent: '/var/log/syslog: this is the file you have to look 
> at'"
> 
> That way I can just copy from the history and paste it in the message
> instead of retyping it all from scratch.

no, I think that'd be overly verbose.  I think the right answer is
just to make sure it is indeed in the history, as it is for me.  are
you sure it is not for you?

luke

> 
> 
> Ciao,
> 
> Enrico
> 


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



Bug#308606: palo-installer: description not very useful

2005-05-11 Thread Thijs Kinkhorst
Package: palo-installer
Version: 0.0.6
Severity: wishlist

The description of palo-installer reads "This udeb will install PALO on
the hard disk." which is not much more than I could have understood from
the package name. It might be an idea to change te description to say
what PALO is and when it's used.


Regards,
Thijs Kinkhorst


signature.asc
Description: OpenPGP digital signature


Bug#308607: xemacs21-nomule: cannot access lispref manual

2005-05-11 Thread Uwe Brauer
Package: xemacs21-nomule
Version: 21.4.17-1
Severity: normal

C-h i m lispref RET
does not return the lispref as it should 

Locate file   lispref.info 
refers to gz file in
usr/share/info/xemacs21/
 however I think it is a path problem. 


Since xemacs21.4.17 was configured with 
--infodir=/usr/share/info/xemacs-21.4.17
there is an inconsistency!!!

I gunziped all the files  and indeed this did not help.

Please compile and install xemacs consistently!!!

Uwe Brauer

Here is the system information about xemacs

Uwe Brauer


--8<---cut here---start->8---



System Info to help track down your bug:
---

uname -a: Linux penell 2.6.10 #1 Fri Feb 4 22:08:22 JST 2005 i686 GNU/Linux

./configure  '--with-sound=none,native' '--with-x11' '--extra-verbose' 
'--with-site-lisp' '--with-database=berkdb' '--statedir=/var/lib' 
'--infodir=/usr/share/info/xemacs-21.4.17' '--prefix=/usr' '--dynamic' 
'--error-checking=none' '--debug=no' '--with-pop' '--with-gpm=no' 
'--with-file-coding' '--pdump' '--with_menubars=lucid' 
'--with_scrollbars=lucid' '--with_dialogs=athena' 
'--docdir=/usr/lib/xemacs-21.4.17/i386-debian-linux/nomule/' '--with-mule=no' 
'--package-path=~/.xemacs:~/.xemacs/packages:~/.xemacs/xemacs-packages::/usr/share/xemacs21/xemacs-packages:/usr/share/xemacs21/site-packages'
 'i386-debian-linux'


XEmacs 21.4.17 "Jumbo Shrimp" configured for `i386-debian-linux'.


Compilation / Installation:
  Source code location:  
/home/mohura/packages/build-area/xemacs21-21.4.17
  Installation prefix:   /usr
  Operating system description file: `s/linux.h'
  Machine description file:  `m/intel386.h'
  Compiler:  gcc -g -O3 -Wall -Wno-switch -Winline 
-Wmissing-prototypes -Wsign-compare -fno-strict-aliasing -Wshadow
  Compiler version:  gcc (GCC) 3.3.5 (Debian 1:3.3.5-8)
  Compiler specs file:   /usr/lib/gcc-lib/i486-linux/3.3.5/specs
  Relocating allocator for buffers:  no
  GNU version of malloc: yes
- Using Doug Lea's new malloc from the GNU C Library.
Need to guess glibc1/2/etc here

Window System:
  Compiling in support for the X window system:
- X Windows headers location: /usr/X11R6/include
- X Windows libraries location:   /usr/X11R6/lib
- Handling WM_COMMAND properly.
  Compiling in support for the Athena widget set:
- Athena headers location:X11/Xaw
- Athena library to link: Xaw
  Using Lucid menubars.
  Using Lucid scrollbars.
  Using Athena dialog boxes.
  Using Athena native widgets.

TTY:
  Compiling in support for ncurses.

Images:
  Compiling in support for GIF  images (builtin).
  Compiling in support for XPM  images.
  Compiling in support for PNG  images.
  Compiling in support for JPEG images.
  Compiling in support for TIFF images.
  Compiling in support for X-Face message headers.

Sound:
  Compiling in support for sound (native).

Databases:
  Compiling in support for Berkeley database.
  Compiling in support for LDAP.

Internationalization:
  Compiling in support for file coding.

Mail:
  Compiling in support for POP mail retrieval.
  Compiling in support for "dot-locking" mail spool file locking method.

Other Features:
  Inhibiting IPv6 canonicalization at startup.
  Compiling in support for dynamic shared object modules.
  Using the new portable dumper.


--8<---cut here---end--->8---


-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.4.27
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages xemacs21-nomule depends on:
ii  emacsen-common1.4.15 Common facilities for all emacsen.
ii  libc6 2.3.2.ds1-18   GNU C Library: Shared libraries an
ii  libcompfaceg1 1989.11.11-24  Compress/decompress images for mai
ii  libdb33.2.9-22   Berkeley v3 Database Libraries [ru
ii  libice6   4.3.0.dfsg.1-8 Inter-Client Exchange library
ii  libjpeg62 6b-9   The Independent JPEG Group's JPEG 
ii  libldap2  2.1.30-3   OpenLDAP libraries
ii  libncurses5   5.4-4  Shared libraries for terminal hand
ii  libpng12-01.2.8rel-1 PNG library - runtime
ii  libsm64.3.0.dfsg.1-8 X Window System Session Management
ii  libtiff4  3.6.1-3Tag Image File Format library
ii  libx11-6  4.3.0.dfsg.1-8 X Window System protocol client li
ii  libxaw7   4.3.0.dfsg.1-8 X Athena widget set library
ii  libxext6  4.3.0.dfsg.1-8 X Window System miscellaneous exte
ii  libxmu6

Bug#307029: Patch fix pending

2005-05-11 Thread Christian Perrier
tags 307029 pending
thanks

A fix for the sp. errors mentioned in that report is pending in my
archive.


-- 




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



Bug#308101: Packages are available for testing (was: Bug#308101: ITP: gstreamer0.8-pitfdll -- DLL/QTX loader plugin for GStreamer)

2005-05-11 Thread Dan Korostelev
Hello people!

I uploaded fist pitfdll package to http://mentors.debian.net/ Feel free
to check it out and report any problems with it. The source package name
is "pitfdll", the resulting binary package is "gstreamer0.8-pitfdll".

And don't forget to read the README.Debian.

PS Looking for sponsor for the package! :-)

-- 
Dan Korostelev <[EMAIL PROTECTED]>


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


Bug#308291: please prevent compiler warning about unused variable

2005-05-11 Thread martin f krafft
also sprach Steve M. Robbins <[EMAIL PROTECTED]> [2005.05.11.0358 +0200]:
> > Some of us like to use -Werror. Some of boost does not. 
> 
> That's a little cryptic.  ;-)
> 
> I assume you're saying that some boost code generates a warning.  
> What warning?

unused variable t

> > -const basic_pointer_oserializer * register_type(T * t = NULL){
> > +const basic_pointer_oserializer * register_type(T * = NULL){
> 
> I don't understand how the patched code is legal C++.  
> 
> The original code defines a templated function "register_type"
> that takes an optional parameter "t" of type "T*".  Is removing
> the parameter name really legal?

It seems to work with g++ at least. I don't know if it's standard
C++, but I think so. From what I understand, removing the parameter
name just prevents a variable to be initialised to the parameter's
value.

An alternative would be a statement such as

  if (t);

in the code.

-- 
 .''`. martin f. krafft <[EMAIL PROTECTED]>
: :'  :proud Debian developer, admin, user, and author
`. `'`
  `-  Debian - when you have better things to do than fixing a system
 
Invalid/expired PGP subkeys? Use subkeys.pgp.net as keyserver!
 
your eyes are weary from staring at the CRT. you feel sleepy. notice
how restful it is to watch the cursor blink. close your eyes. the
opinions stated above are yours. you cannot imagine why you ever felt
otherwise.


signature.asc
Description: Digital signature


Bug#308608: INTL:vi

2005-05-11 Thread Clytie Siddall
Package: apt-build
Version: 0.11.9
Severity: minor
Tags: l10n, patch
The Vietnamese translation for debconf: apt-build

vi.po
Description: application/text

translated and submitted by:
Clytie Siddall, Vietnamese localization team / nhÃm Viát hÃa
our mailing list / háp thÆ chung cáa nhÃm chÃng tÃi:
[EMAIL PROTECTED]


Bug#142070: Progress?

2005-05-11 Thread Martin Quinson
#142070: base: chpasswd uses DES rather than MD5 for encryption, even though
   i specified MD5 at install

Hello,

What is the status of this one? Christian, you said you had a fix for this.
Did you contact Joey yet to see how it could be included in the next stable
release?

Bye, Mt.


signature.asc
Description: Digital signature


Bug#308492: After the last update of cacti ,cacti stop graph item

2005-05-11 Thread Laradji nacer
sean finney wrote:
On Tue, May 10, 2005 at 06:29:08PM +0200, Laradji nacer wrote:
I have make apt-get update dist-upgrade .

sorry, i should have been more clear: was this an upgrade from woody?
nop i have a  sarge system ,and every week i make upgrade of entire system .
And this week cacti have a new version ,and after that my graphic is buggy .
--
Laradji nacer <[EMAIL PROTECTED]>
Ovea SARL Tel : 04 67 67 00 00  35 Port: 06 10 59 68 83
http://www.ovea.com Vos solutions informatiques
1024D/DFCF1726 : 33A5 7162 4370 9C30 E22C 0721 DBA7 CBEE DFCF 1726

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


Bug#308609: whois server changed for .in

2005-05-11 Thread Paul Slootman
Package: whois
Version: 4.7.4
Severity: normal

whois currently queries whois.ncst.ernet.in for .in domainnames, however
that doesn't listen to the whois port anymore.

For me, whois.registry.in works, I suggest that should be used as the
default server for .in.

(Perhaps an external config file should be used for this data, instead
of it being compiled in?)

BTW, _why_ is mkpasswd part of the whois package? What possible relation
do those have with each other? I couldn't find any explanation in e.g.
the README.


Paul Slootman

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.11ac6
Locale: LANG=C, LC_CTYPE=C

Versions of packages whois depends on:
ii  libc6   2.3.2.ds1-21 GNU C Library: Shared libraries an
ii  libidn110.5.13-1.0   GNU libidn library, implementation

-- no debconf information


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



Bug#302771: Win XP file listing bug in smbclient and libsmbclient

2005-05-11 Thread Christian Perrier
I finally managed to build samba packages with current upstream SVN
sources, which , according to Jerry Carter, fix the Win XP file
listing bug.

To the bug submitter : coul dyou please test this with the packages
you'll find at:

http://www.perrier.eu.org/debian/packages/




signature.asc
Description: Digital signature


Bug#304035: llvm: Conflict with /usr/bin/extract from package extract.

2005-05-11 Thread Steve Langasek
Al,

Hmm, unfortunately, my build machine isn't actually beefy enough to build
llvm. :)  So this bug will have to wait for someone with more memory than I
have to upload.

-- 
Steve Langasek
postmodern programmer


signature.asc
Description: Digital signature


Bug#308600: further info

2005-05-11 Thread David Hugh-Jones
"killall famd" fixes this problem and allows openoffice to restart as
normal, even after restarting famd via "/etc/init.d/fam restart"

Cheers
David



Bug#308610: [ati] monitor does not sync irrespective of config

2005-05-11 Thread Andrew Buckeridge
package: xserver-xfree86
version: 4.3.0.dfsg.1-12
severity: important

Monitor does not sync with ATI irrespective of Debian config.

I need to keep both xserver-common xserver-xfree86 on hold to run sarge
with X.  I have tried purging these packages and reinstalling them.

ImPS/2 mouse changed to invalid (for 4.2) IntelliMouse so mouse does not
work after I downgrade back to version 4.2.1-12.1 again.

I have this problem with the ati driver on both sparc64 and powerpc.
Parameters given were published monitor specs and various conservative
specs were also given.

Other drivers may work, but the accelerated driver is needed for the on
board display.

I can reproduce this on a SunBlade100 with : -
sparc:/var/cache/apt# /etc/init.d/xdm start
Starting X display manager: xdm.
:
Monitor did not sync
:
sparc:/var/cache/apt# /etc/init.d/xdm stop
Stopping X display manager: xdm.
sparc:/var/cache/apt# dpkg -i xserver-common_4.2.1-12.1_sparc.deb 
xserver-xfree86_4.2.1-12.1_sparc.deb
dpkg - warning: downgrading xserver-common from 4.3.0.dfsg.1-12 to 4.2.1-12.1.
(Reading database ... 117921 files and directories currently installed.)
Preparing to replace xserver-common 4.3.0.dfsg.1-12 (using 
xserver-common_4.2.1-12.1_sparc.deb) ...
Unpacking replacement xserver-common ...
dpkg - warning: downgrading xserver-xfree86 from 4.3.0.dfsg.1-12 to 4.2.1-12.1.
Preparing to replace xserver-xfree86 4.3.0.dfsg.1-12 (using 
xserver-xfree86_4.2.1-12.1_sparc.deb) ...
Unpacking replacement xserver-xfree86 ...
Setting up xserver-common (4.2.1-12.1) ...

Setting up xserver-xfree86 (4.2.1-12.1) ...

sparc:/var/cache/apt# /etc/init.d/xdm start
Starting X display manager: xdm.
:
Mouse (Sun USB or Logitech Optical) did not work.
:
sparc:/var/cache/apt# /etc/init.d/xdm stop
Stopping X display manager: xdm.
sparc:/var/cache/apt# dpkg-reconfigure xserver-xfree86
:
Mouse: ImPS/2 (changed back)
:
H: 30-75 kHz (still correct for monitor)
V: 50-160 Hz (still correct for monitor)
:
sparc:/var/cache/apt# /etc/init.d/xdm start
Starting X display manager: xdm.
:
And X works again!

lspci on a SunBlade100 shows an ATI Rage XL : -
:00:00.0 Host bridge: Sun Microsystems Computer Corp. Ultra IIe
:00:03.0 Non-VGA unclassified device: ALi Corporation M7101 Power 
Management Controller [PMU]
:00:05.0 PCI bridge: Intel Corp. 21152 PCI-to-PCI Bridge
:00:07.0 ISA bridge: ALi Corporation M1533 PCI to ISA Bridge [Aladdin IV]
:00:08.0 Multimedia audio controller: ALi Corporation M5451 PCI AC-Link 
Controller Audio Device (rev 01)
:00:0c.0 Bridge: Sun Microsystems Computer Corp. RIO EBUS (rev 01)
:00:0c.1 Ethernet controller: Sun Microsystems Computer Corp. RIO GEM (rev 
01)
:00:0c.2 FireWire (IEEE 1394): Sun Microsystems Computer Corp. RIO 1394 
(rev 01)
:00:0c.3 USB Controller: Sun Microsystems Computer Corp. RIO USB (rev 01)
:00:0d.0 IDE interface: ALi Corporation M5229 IDE (rev c3)
:00:13.0 VGA compatible controller: ATI Technologies Inc Rage XL (rev 27)
:01:02.0 Ethernet controller: Linksys NC100 Network Everywhere Fast 
Ethernet 10/100 (rev 11)

Running on : -
package: kernel-image-2.6.10-1-sparc64
version: 2.6.10-6

My /var/log/xdm.log : -
Wed May 11 17:59:28 2005 xdm info (pid 19052): starting
Wed May 11 17:59:29 2005 xdm info (pid 19052): starting X server on :0
XFree86 Version 4.3.0.1 (Debian 4.3.0.dfsg.1-12 20050304061827 [EMAIL 
PROTECTED])
Release Date: 15 August 2003
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: Linux 2.4.26 sparc [ELF]
Build Date: 04 March 2005

This version of XFree86 has been extensively modified by the Debian
Project, and is not supported by the XFree86 Project, Inc., in any
way.  Bugs should be reported to the Debian Bug Tracking System; see
http://www.debian.org/Bugs/Reporting >.

We strongly encourage the use of the "reportbug" package and command
to ensure that bug reports contain as much useful information as
possible.

Before filing a bug report, you may want to consult the Debian X FAQ:
   XHTML version: file:///usr/share/doc/xfree86-common/FAQ.xhtml
  plain text version: file:///usr/share/doc/xfree86-common/FAQ.gz

Module Loader present
OS Kernel: Linux version 2.6.8 ([EMAIL PROTECTED]) (gcc version 3.3.5 (Debian 
1:3.3.5-5)) #1 Wed Feb 2 06:15:12 WST 2005
Markers: (--) probed, (**) from config file, (==) default setting,
 (++) from command line, (!!) notice, (II) informational,
 (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/XFree86.0.log", Time: Wed May 11 17:59:29 2005
(==) Using config file: "/etc/X11/XF86Config-4"
Skipping "/usr/X11R6/lib/modules/extensions/libGLcore.a:m_debug_clip.o":  No 
symbols found
Skipping "/usr/X11R6/lib/modules/extensions/libGLcore.a:m_debug_norm.o":  No 
symbols found
Skipping "/usr/X11R6/lib/modules/extensions/libGLcore.a:m_debug_xform.o":  No 
symbols found
Skipping "/usr/X11R6/lib/modules/extens

Bug#308611: syslog-ng: strange new messages appear in syslog "unparseable..."

2005-05-11 Thread simon raven
Package: syslog-ng
Version: 1.6.5-2.1
Severity: normal


unparseable log message: "<<4>iptables: AUDIT


is the message i get. previous version i did not see this at all. i have
config sections to make a log from iptables' LOG target, going to a
file, it still seems to work, but then i get that  strange thing in
syslog, but not the iptables log.

i'm at a loss as to why it would do that in this one, but the other
(other than the patch?). it almost looks like a facility number, like
LOCAL4, but i'm not using 4 for that log, but a filter foo {} statement.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (1000, 'unstable'), (998, 'experimental')
Architecture: powerpc (ppc)
Kernel: Linux 2.6.11.7
Locale: LANG=en_CA.UTF-8, LC_CTYPE=en_CA.UTF-8 (charmap=UTF-8)

Versions of packages syslog-ng depends on:
ii  libc6   2.3.2.ds1-21 GNU C Library: Shared libraries an
ii  util-linux  2.12p-4  Miscellaneous system utilities

-- no debconf information


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



Bug#308609: whois server changed for .in

2005-05-11 Thread Marco d'Itri
On May 11, Paul Slootman <[EMAIL PROTECTED]> wrote:

> (Perhaps an external config file should be used for this data, instead
> of it being compiled in?)
You can override the built-in configuration with /etc/whois.conf.

> BTW, _why_ is mkpasswd part of the whois package? What possible relation
> do those have with each other? I couldn't find any explanation in e.g.
> the README.
Historical reasons. I'd like for it to find home in some GNU package,
but I'm not sure about which one.

-- 
ciao,
Marco


signature.asc
Description: Digital signature


Bug#256887: konsole: (vt100) emulation not working

2005-05-11 Thread Vincent Lefevre
On 2004-06-29 19:40:08 +0200, Steffen Elste wrote:
> got some trouble with konsole:
> - it seems unable to store the vt100 emulation type setting, on
> every startup it's set to XFree 3.x
> - linefeeds are not honoured, making for a very interesting display  ;-)
> meaning that some lines - not all (!?!) - are concatenated or 'spill 
> over' onto  the next one
> - function keys (including 'home' and 'end') are not working properly 
> anymore

I don't use konsole, but someone had similar problems (with linefeeds
and function keys). Try setting $TERM to konsole or linux. I assume
that konsole should have done it for you.

-- 
Vincent Lefèvre <[EMAIL PROTECTED]> - Web: 
100% accessible validated (X)HTML - Blog: 
Work: CR INRIA - computer arithmetic / SPACES project at LORIA


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



Bug#292741: Not fixed

2005-05-11 Thread Thomas Hood
reopen 292741
thanks

The preinst still contains the code fragment that I originally quoted
and which assumes that the user has sysv-rc rather than file-rc.
-- 
Thomas Hood <[EMAIL PROTECTED]>



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



Bug#304737: Add option to change Maildir directory

2005-05-11 Thread Olleg Samoylov
Gerrit Pape wrote:
Hi Olleg, how about using an environment variable to optionally override
the default name of the Maildir?  Do you feel like updating the man
page, and maybe even suggest a patch for checkpw and checkapoppw?
Now I use checkpassword from package fgetty. It's good enough for me.
If you think the checkpw is already useful, you may close this feature 
request. And instead add fgetty to "recommends" packages in package 
bincimap. (You are maintainer of that package too.)

--
Olleg Samoylov


smime.p7s
Description: S/MIME Cryptographic Signature


Bug#308614: Please rebuild libchipcard2 against libusb (>= 2:0.1.10a-9)

2005-05-11 Thread Aurelien Jarno
Package: libchipcard2
Severity: grave
Tags: sarge sid
Justification: renders package unusable

A problem has been discovered on libusb, which only affect the ARM
architecture. It is a memory alignement problem (__packed was forgotten
on some structures). 

The bug has been fixed in libusb, but all packages that need these
structures also need to be rebuilt. This has been done for most packages
by doing an ARM binary NMU, but it is not possible for libchipcard2 as
it would make the package uninstallable (-dev package is arch all).

Thus, please upload a new version of libchipcard2 depending on libusb
(>= 2:0.1.10a-9).

Thanks,
AurÃlien

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.11-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)


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



  1   2   3   4   >