Bug#379687: [Pkg-xfce-devel] Bug#379687: xfce4-mcs-plugins: missing versioned conflicts/replaces

2006-07-25 Thread Yves-Alexis Perez
On Tue, 2006-07-25 at 00:23 +0100, Stephen Gran wrote:
 Package: xfce4-mcs-plugins
 Version: 4.3.90.2-1
 Severity: serious
 
 Preparing to replace xfce4-mcs-plugins 4.3.90.1-1
 (using .../xfce4-mcs-plugins_4.3.90.2-1_i386.deb) ...
 Unpacking replacement xfce4-mcs-plugins ...
 dpkg: error
 processing /var/cache/apt/archives/xfce4-mcs-plugins_4.3.90.2-1_i386.deb 
 (--unpack):
  trying to overwrite
 `/usr/share/icons/hicolor/48x48/apps/xfce-filemanager.png', which is
 also in package xfce4-panel
 

By the way, I assumed that the conflicts was between xfce4-mcs-plugins
4.3.90.2 and xfce4-panel 4.3.90.1 (because xfce4-panel 4.3.90.2 doesnt
provide xfce-filemanager.png currently). But xfce4-panel should have
been removed by libxfce4util4 installation. 

Which was the xfce4-panel version currently installed ?

Thanks,
-- 
Yves-Alexis



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



Bug#379687: [Pkg-xfce-devel] Bug#379687: xfce4-mcs-plugins: missing versioned conflicts/replaces

2006-07-25 Thread Yves-Alexis Perez
On Tue, 2006-07-25 at 00:23 +0100, Stephen Gran wrote:
 Package: xfce4-mcs-plugins
 Version: 4.3.90.2-1
 Severity: serious
 
 Preparing to replace xfce4-mcs-plugins 4.3.90.1-1 (using 
 .../xfce4-mcs-plugins_4.3.90.2-1_i386.deb) ...
 Unpacking replacement xfce4-mcs-plugins ...
 dpkg: error processing 
 /var/cache/apt/archives/xfce4-mcs-plugins_4.3.90.2-1_i386.deb (--unpack):
  trying to overwrite 
 `/usr/share/icons/hicolor/48x48/apps/xfce-filemanager.png', which is also in 
 package xfce4-panel

Thanks for the report. xfce-filemanager was provided by xfce4-panel
before 4.4 Beta2 and is now provided by both xfce4-panel and
xfce-mcs-plugins. Currently I remove it from the package xfce4-panel but
it's note a very good idea because it's like some transition. I've asked
upstream if it should be considered like this.

In the meanwhile, I've corrected our packages, and xfce4-panel now is
the only one to provide xfce-filemanager.png. Both packages will be
uploaded asap (but I don't have upload rights so I have to wait for my
beloved uploaders :) )

Thanks for the report,
-- 
Yves-Alexis



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



Bug#379700: ntlmaps: FTBFS: Missing Build-Depends on 'python-support'

2006-07-25 Thread Andreas Jochens
Package: ntlmaps
Version: 0.9.9.0.1-1
Severity: serious
Tags: patch

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

chmod og-r debian/ntlmaps/etc/ntlmaps/server.cfg
dh_pysupport /usr/share/ntlmaps
make: dh_pysupport: Command not found
make: *** [binary] Error 127

Please add the missing Build-Depends on 'python-support'
to debian/control.

Regards
Andreas Jochens

diff -urN ../tmp-orig/ntlmaps-0.9.9.0.1/debian/control ./debian/control
--- ../tmp-orig/ntlmaps-0.9.9.0.1/debian/control2006-07-25 
06:27:16.0 +
+++ ./debian/control2006-07-25 06:27:13.0 +
@@ -2,7 +2,7 @@
 Section: web
 Priority: optional
 Maintainer: Drew Parsons [EMAIL PROTECTED]
-Build-Depends-Indep: python, po-debconf
+Build-Depends-Indep: python, po-debconf, python-support
 Build-Depends: debhelper (= 5.0.37.2)
 Standards-Version: 3.7.2
 


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



Processed: bobcat: FTBFS (amd64): no matching function for call to 'min(unsigned int, size_t)'

2006-07-25 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tags 379620 +patch
Bug#379620: FTBFS: no matching function for call
There were no tags set.
Tags added: patch

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#379620: bobcat: FTBFS (amd64): no matching function for call to 'min(unsigned int, size_t)'

2006-07-25 Thread Andreas Jochens
tags 379620 +patch
thanks

Hello,

with the attached patch 'bobcat' can be compiled on unstable.

Regards
Andreas Jochens

diff -urN ../tmp-orig/bobcat-1.10.0/string/unescape.cc ./string/unescape.cc
--- ../tmp-orig/bobcat-1.10.0/string/unescape.cc2005-12-18 
21:16:55.0 +
+++ ./string/unescape.cc2006-07-25 06:35:14.0 +
@@ -7,7 +7,7 @@
 
 unsigned handleOctal(String *dest, String const src, unsigned pos)
 {
-unsigned const nOct = 3;// need exactly 3 octals
+size_t const nOct = 3;  // need exactly 3 octals
 
 unsigned pos2 = min(pos + nOct, 
 src.find_first_not_of(01234567, pos));
@@ -28,7 +28,7 @@
 
 unsigned handleHex(String *dest, String const src, unsigned pos)
 {
-unsigned const nHex = 2;// need exactly 2 hex digits
+size_t const nHex = 2;  // need exactly 2 hex digits
 
 ++pos;  // skip the 'x'
 unsigned pos2 = min(pos + nHex, 


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



Bug#379713: libapache-mod-limitipconn: FTBFS: bashisms

2006-07-25 Thread Julien Danjou
Package: libapache-mod-limitipconn
Version: 0.04-3
Severity: serious

Hello,

There was a problem while autobuilding your package:

 Automatic build of libapache-mod-limitipconn_0.04-3 on avidan by sbuild/i386 
 0.49
 Build started at 20060724-2108
 **
...
 if [ -d apache-build ]; then
 rm -rf apache-build
 fi
 mkdir apache-build
 pushd apache-build
 /bin/sh: pushd: not found
 make: *** [debian/build-stamp] Error 127
 **
 Build finished at 20060724-2109
 FAILED [dpkg-buildpackage died]
 --

-- 
Julien Danjou
.''`.  Debian Developer
: :' : http://julien.danjou.info
`. `'  http://people.debian.org/~acid
  `-   9A0D 5FD9 EB42 22F6 8974  C95C A462 B51E C2FE E5CD


signature.asc
Description: Digital signature


Bug#379716: trackballs: FTBFS: buid-dep on xlibmesa-glu-dev not available

2006-07-25 Thread Julien Danjou
Package: trackballs
Version: 1.1.1-3
Severity: serious

Hello,

There was a problem while autobuilding your package:

 Automatic build of trackballs_1.1.1-3 on avidan by sbuild/i386 0.49
 Build started at 20060725-0047
 **
 Checking available source versions...
 Fetching source files...
 Reading package lists...
 Building dependency tree...
 Need to get 6044kB of source archives.
 Get:1 http://ftp.fr.debian.org sid/main trackballs 1.1.1-3 (dsc) [786B]
 Get:2 http://ftp.fr.debian.org sid/main trackballs 1.1.1-3 (tar) [6025kB]
 Get:3 http://ftp.fr.debian.org sid/main trackballs 1.1.1-3 (diff) [18.0kB]
 Fetched 6044kB in 10s (597kB/s)
 Download complete and in download only mode
 ** Using build dependencies supplied by package:
 Build-Depends: debhelper (= 4.1.76), binutils (= 2.12.90.0.9), 
 guile-1.6-dev, xlibmesa-gl-dev | libgl-dev, xlibmesa-glu-dev | libglu-dev, 
 libsdl1.2-dev, libsdl-ttf2.0-dev, libsdl-mixer1.2-dev, libsdl-image1.2-dev
 ** Filtered missing central deps that are dependencies of or provide 
 build-deps:
 zlib1g-dev (= 1:1.2.1)
 Checking for already installed source dependencies...
 debhelper: already installed (5.0.37.3 = 4.1.76 is satisfied)
 binutils: already installed (2.17-1 = 2.12.90.0.9 is satisfied)
 guile-1.6-dev: missing
 xlibmesa-gl-dev: missing
 libgl-dev: missing
 xlibmesa-glu-dev: missing
 libglu-dev: missing
 libsdl1.2-dev: missing
 libsdl-ttf2.0-dev: missing
 libsdl-mixer1.2-dev: missing
 libsdl-image1.2-dev: missing
 Checking for source dependency conflicts...
 Reading package lists...
 Building dependency tree...
 E: Package xlibmesa-glu-dev has no installation candidate
 Package xlibmesa-glu-dev is not available, but is referred to by another 
 package.
 This may mean that the package is missing, has been obsoleted, or
 is only available from another source
 apt-get failed.
 Package installation failed
 Trying to reinstall removed packages:
 Trying to uninstall newly installed packages:
 Source-dependencies not satisfied; skipping trackballs
 **
 Finished at 20060725-0048
 Build needed 00:00:00, 0k disk space

-- 
Julien Danjou
.''`.  Debian Developer
: :' : http://julien.danjou.info
`. `'  http://people.debian.org/~acid
  `-   9A0D 5FD9 EB42 22F6 8974  C95C A462 B51E C2FE E5CD


signature.asc
Description: Digital signature


Bug#379687: [Pkg-xfce-devel] Bug#379687: xfce4-mcs-plugins: missing versioned conflicts/replaces

2006-07-25 Thread Stephen Gran
This one time, at band camp, Yves-Alexis Perez said:
 On Tue, 2006-07-25 at 00:23 +0100, Stephen Gran wrote:
  Package: xfce4-mcs-plugins
  Version: 4.3.90.2-1
  Severity: serious
  
  Preparing to replace xfce4-mcs-plugins 4.3.90.1-1
  (using .../xfce4-mcs-plugins_4.3.90.2-1_i386.deb) ...
  Unpacking replacement xfce4-mcs-plugins ...
  dpkg: error
  processing /var/cache/apt/archives/xfce4-mcs-plugins_4.3.90.2-1_i386.deb 
  (--unpack):
   trying to overwrite
  `/usr/share/icons/hicolor/48x48/apps/xfce-filemanager.png', which is
  also in package xfce4-panel
  
 
 By the way, I assumed that the conflicts was between xfce4-mcs-plugins
 4.3.90.2 and xfce4-panel 4.3.90.1 (because xfce4-panel 4.3.90.2 doesnt
 provide xfce-filemanager.png currently). But xfce4-panel should have
 been removed by libxfce4util4 installation. 
 
 Which was the xfce4-panel version currently installed ?

2006-07-25 00:19:24 upgrade xfce4-panel 4.3.90.1-3 4.3.90.2-1

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


signature.asc
Description: Digital signature


Bug#379728: slapd: upgrade to 2.3.24-2 hangs

2006-07-25 Thread Christoph Kaminski
Package: slapd
Version: 2.3.24-1
Severity: grave
Justification: renders package unusable

I cant upgrade to 2.3.24-2... 

Installing new version of config file /etc/default/slapd ...
Installing new version of config file /etc/init.d/slapd ...

It hangs here, and after 10mins I have aborted it

dpkg: error processing slapd (--configure):
 subprocess post-installation script killed by signal (Interrupt)
 Errors were encountered while processing:
  slapd

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17-1-k7
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to de_DE.UTF-8)

Versions of packages slapd depends on:
ii  coreutils [fileutils]   5.96-5   The GNU core utilities
ii  debconf [debconf-2.0]   1.5.2Debian configuration management sy
ii  libc6   2.3.6-15 GNU C Library: Shared libraries
ii  libdb4.24.2.52+dfsg-0.1  Berkeley v4.2 Database Libraries [
ii  libiodbc2   3.52.4-3 iODBC Driver Manager
ii  libldap-2.3-0   2.3.24-1 OpenLDAP libraries
ii  libltdl31.6-0+1.5a-4 A system independent dlopen wrappe
ii  libperl5.8  5.8.8-6  Shared Perl library
ii  libsasl22.1.19.dfsg1-0.2 Authentication abstraction library
ii  libslp1 1.2.1-5  OpenSLP libraries
ii  libssl0.9.8 0.9.8b-2 SSL shared libraries
ii  libwrap07.6.dbs-9Wietse Venema's TCP wrappers libra
ii  perl [libmime-base64-pe 5.8.8-6  Larry Wall's Practical Extraction 
ii  psmisc  22.2-1   Utilities that use the proc filesy

Versions of packages slapd recommends:
ii  db4.2-util  4.2.52+dfsg-0.1  Berkeley v4.2 Database Utilities
ii  libsasl2-modules2.1.19.dfsg1-0.2 Pluggable Authentication Modules f

-- debconf information:
* slapd/password2: (password omitted)
  slapd/internal/adminpw: (password omitted)
* slapd/password1: (password omitted)
  slapd/fix_directory: true
* shared/organization: chaos
  slapd/upgrade_slapcat_failure:
* slapd/backend: BDB
* slapd/allow_ldap_v2: true
* 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/domain: chaos
  slapd/password_mismatch:
  slapd/invalid_config: true
  slapd/upgrade_slapadd_failure:
* slapd/dump_database: always
  slapd/migrate_ldbm_to_bdb: false
* slapd/purge_database: true


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



Bug#379720: vdr-plugin-bitstreamout: FTBFS: error: 'fls' was not declared in this scope

2006-07-25 Thread Julien Danjou
Package: vdr-plugin-bitstreamout
Version: 0.85-5
Severity: serious

Hello,

There was a problem while autobuilding your package:

 Automatic build of vdr-plugin-bitstreamout_0.85-5 on avidan by sbuild/i386 
 0.49
 Build started at 20060725-0359
 **
...
  debian/rules build
 test -d debian/patched || install -d debian/patched
 dpatch  apply-all  
 applying patch 90_APIVERSION to ./ ... ok.
 dpatch  cat-all  patch-stampT
 mv -f patch-stampT patch-stamp
 dh_testdir
 touch configure-stamp
 dh_testdir
 /usr/bin/make all CXXARCH= VDRDIR=/usr/include/vdr LIBDIR=.
 make[1]: Entering directory `/build/buildd/vdr-plugin-bitstreamout-0.85'
 make[1]: Leaving directory `/build/buildd/vdr-plugin-bitstreamout-0.85'
 make[1]: Entering directory `/build/buildd/vdr-plugin-bitstreamout-0.85'
 bitstreamout Version 0.85
 g++ -O2  -Wall -Woverloaded-virtual -pthread -fPIC -fPIC -DPIC -c 
 -DPLUGIN_NAME_I18N='bitstreamout' -D_GNU_SOURCE  -I/usr/include/vdr/include 
 -I../../../../DVB/include bitstreamout.c
 /usr/include/asm-generic/bitops/fls64.h: In function 'int fls64(__u64)':
 /usr/include/asm-generic/bitops/fls64.h:10: error: 'fls' was not declared in 
 this scope
 /usr/include/asm-generic/bitops/fls64.h:11: error: 'fls' was not declared in 
 this scope
 make[1]: *** [bitstreamout.o] Error 1
 make[1]: Leaving directory `/build/buildd/vdr-plugin-bitstreamout-0.85'
 make: *** [build-stamp] Error 2
 **
 Build finished at 20060725-0359
 FAILED [dpkg-buildpackage died]
 --

-- 
Julien Danjou
.''`.  Debian Developer
: :' : http://julien.danjou.info
`. `'  http://people.debian.org/~acid
  `-   9A0D 5FD9 EB42 22F6 8974  C95C A462 B51E C2FE E5CD


signature.asc
Description: Digital signature


Bug#379593: marked as done (libwiki-toolkit-plugin-locator-grid-perl: FTBFS: E: Build-Depends-Indep dependency cannot be satisfied because the package libsearch-invertedindex-perl cannot be found)

2006-07-25 Thread Debian Bug Tracking System
Your message dated Tue, 25 Jul 2006 01:32:04 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#379593: fixed in libwiki-toolkit-plugin-locator-grid-perl 
0.05-2
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
Package: libwiki-toolkit-plugin-locator-grid-perl
Version: 0.05-1
Severity: serious

When building 'libwiki-toolkit-plugin-locator-grid-perl' in a clean
unstable chroot, I get the following error:

Building libwiki-toolkit-plugin-locator-grid-perl on unstable/amd64...
dpkg-source: extracting libwiki-toolkit-plugin-locator-grid-perl in 
libwiki-toolkit-plugin-locator-grid-perl-0.05
dpkg-source: unpacking libwiki-toolkit-plugin-locator-grid-perl_0.05.orig.tar.gz
dpkg-source: applying ./libwiki-toolkit-plugin-locator-grid-perl_0.05-1.diff.gz
Reading package lists...
Building dependency tree...
E: Build-Depends-Indep dependency for libwiki-toolkit-plugin-locator-grid-perl 
cannot be satisfied because the package libsearch-invertedindex-perl cannot be 
found

Regards
Andreas Jochens

---End Message---
---BeginMessage---
Source: libwiki-toolkit-plugin-locator-grid-perl
Source-Version: 0.05-2

We believe that the bug you reported is fixed in the latest version of
libwiki-toolkit-plugin-locator-grid-perl, which is due to be installed in the 
Debian FTP archive:

libwiki-toolkit-plugin-locator-grid-perl_0.05-2.diff.gz
  to 
pool/main/libw/libwiki-toolkit-plugin-locator-grid-perl/libwiki-toolkit-plugin-locator-grid-perl_0.05-2.diff.gz
libwiki-toolkit-plugin-locator-grid-perl_0.05-2.dsc
  to 
pool/main/libw/libwiki-toolkit-plugin-locator-grid-perl/libwiki-toolkit-plugin-locator-grid-perl_0.05-2.dsc
libwiki-toolkit-plugin-locator-grid-perl_0.05-2_all.deb
  to 
pool/main/libw/libwiki-toolkit-plugin-locator-grid-perl/libwiki-toolkit-plugin-locator-grid-perl_0.05-2_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Dominic Hargreaves [EMAIL PROTECTED] (supplier of updated 
libwiki-toolkit-plugin-locator-grid-perl package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 25 Jul 2006 08:45:51 +0100
Source: libwiki-toolkit-plugin-locator-grid-perl
Binary: libwiki-toolkit-plugin-locator-grid-perl
Architecture: source all
Version: 0.05-2
Distribution: unstable
Urgency: medium
Maintainer: Dominic Hargreaves [EMAIL PROTECTED]
Changed-By: Dominic Hargreaves [EMAIL PROTECTED]
Description: 
 libwiki-toolkit-plugin-locator-grid-perl - A Wiki::Toolkit plugin to manage 
co-ordinate data
Closes: 379593
Changes: 
 libwiki-toolkit-plugin-locator-grid-perl (0.05-2) unstable; urgency=medium
 .
   * Remove unneeded dependency on libsearch-invertedindex-perl which is
 not in Debian (closes: #379593)
Files: 
 76c54b569f9ababadc2d784d015c7776 787 perl optional 
libwiki-toolkit-plugin-locator-grid-perl_0.05-2.dsc
 39dd0a43de70ea01492e366f0eb14ea7 2436 perl optional 
libwiki-toolkit-plugin-locator-grid-perl_0.05-2.diff.gz
 70b8a2bea000b71a0309915d3c8d5f1a 9934 perl optional 
libwiki-toolkit-plugin-locator-grid-perl_0.05-2_all.deb

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

iD8DBQFExdVFYzuFKFF44qURAtNPAJ4uPFlaFkaT8LCvQGap++5YWkfRTgCgihxq
0F9WPaZqvAQd0pIJuTvOlDU=
=5CWI
-END PGP SIGNATURE-

---End Message---


Bug#379722: bobcat: FTBFS: INSTALL.cf: not found

2006-07-25 Thread Julien Danjou
Package: bobcat
Version: 1.10.0-2
Severity: serious

Hello,

There was a problem while autobuilding your package:

 Automatic build of bobcat_1.10.0-2 on avidan by sbuild/i386 0.49
 Build started at 20060725-0858
 **
...
  debian/rules build
 test -d debian/patched || install -d debian/patched
 dpatch  apply-all  
 applying patch 01_fix_yodl_macro to ./ ... ok.
 dpatch  cat-all  patch-stampT
 mv -f patch-stampT patch-stamp
 dh_testdir
 # Add here commands to configure the package.
 touch configure-stamp
 dh_testdir
 # Add here commands to compile the package.
 ./make/man
 .: 3: INSTALL.cf: not found
 make: *** [build-stamp] Error 2
 **
 Build finished at 20060725-0859
 FAILED [dpkg-buildpackage died]

-- 
Julien Danjou
.''`.  Debian Developer
: :' : http://julien.danjou.info
`. `'  http://people.debian.org/~acid
  `-   9A0D 5FD9 EB42 22F6 8974  C95C A462 B51E C2FE E5CD


signature.asc
Description: Digital signature


Bug#379714: modxslt: FTBFS: libtool: link: `/usr/lib/libgcrypt.la' is not a valid libtool archive

2006-07-25 Thread Julien Danjou
Package: modxslt
Version: 2004112100-3.1
Severity: serious

Hello,

There was a problem while autobuilding your package:

 Automatic build of modxslt_2004112100-3.1 on avidan by sbuild/i386 0.49
 Build started at 20060724-2127
 **
...
 ranlib .libs/libmodxslt0.a
 creating libmodxslt0.la
 /bin/sed: can't read /usr/lib/libgcrypt.la: No such file or directory
 libtool: link: `/usr/lib/libgcrypt.la' is not a valid libtool archive
 make[1]: *** [libmodxslt0.la] Error 1
 make[1]: Leaving directory `/build/buildd/modxslt-2004112100/lib'
 make: *** [build-stamp] Error 2
 **
 Build finished at 20060724-2128
 FAILED [dpkg-buildpackage died]

-- 
Julien Danjou
.''`.  Debian Developer
: :' : http://julien.danjou.info
`. `'  http://people.debian.org/~acid
  `-   9A0D 5FD9 EB42 22F6 8974  C95C A462 B51E C2FE E5CD


signature.asc
Description: Digital signature


Bug#379687: marked as done (xfce4-mcs-plugins: missing versioned conflicts/replaces)

2006-07-25 Thread Debian Bug Tracking System
Your message dated Tue, 25 Jul 2006 01:32:06 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#379687: fixed in xfce-mcs-plugins 4.3.90.2-2
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
Package: xfce4-mcs-plugins
Version: 4.3.90.2-1
Severity: serious

Preparing to replace xfce4-mcs-plugins 4.3.90.1-1 (using 
.../xfce4-mcs-plugins_4.3.90.2-1_i386.deb) ...
Unpacking replacement xfce4-mcs-plugins ...
dpkg: error processing 
/var/cache/apt/archives/xfce4-mcs-plugins_4.3.90.2-1_i386.deb (--unpack):
 trying to overwrite 
`/usr/share/icons/hicolor/48x48/apps/xfce-filemanager.png', which is also in 
package xfce4-panel

Please add a conflicts/replaces for versions below where the file was
moved.

Thanks,

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

Versions of packages xfce4-mcs-plugins depends on:
ii  libatk1.0-0  1.12.1-1The ATK accessibility toolkit
ii  libc62.3.6-15GNU C Library: Shared libraries
ii  libcairo21.2.0-3 The Cairo 2D vector graphics libra
ii  libfontconfig1   2.3.2-7 generic font configuration library
ii  libglib2.0-0 2.10.3-3The GLib library of C routines
ii  libgtk2.0-0  2.8.18-1The GTK+ graphical user interface 
ii  libice6  1:1.0.0-3   X11 Inter-Client Exchange library
ii  libpango1.0-01.12.3-1+b1 Layout and rendering of internatio
ii  libsm6   1:1.0.0-4   X11 Session Management library
ii  libx11-6 2:1.0.0-7   X11 client-side library
ii  libxcursor1  1.1.5.2-5   X cursor management library
ii  libxext6 1:1.0.0-4   X11 miscellaneous extension librar
ii  libxfce4mcs-client3  4.3.90.2-1  Client library for Xfce4 configure
ii  libxfce4mcs-manager3 4.3.90.2-1  Manager library for Xfce4 configur
ii  libxfce4util44.3.90.2-2  Utility functions library for Xfce
ii  libxfcegui4-44.3.90.2-1  Basic GUI C functions for Xfce4
ii  libxfixes3   1:3.0.1.2-4 X11 miscellaneous 'fixes' extensio
ii  libxi6   1:1.0.0-5   X11 Input extension library
ii  libxinerama1 1:1.0.1-4   X11 Xinerama extension library
ii  libxrandr2   2:1.1.0.2-4 X11 RandR extension library
ii  libxrender1  1:0.9.0.2-4 X Rendering Extension client libra
ii  libxxf86misc11:1.0.0-4   X11 XFree86 miscellaneous extensio
ii  libxxf86vm1  1:1.0.0-4   X11 XFree86 video mode extension l
ii  xfce4-mcs-manager4.3.90.2-1  Settings manager for Xfce4

xfce4-mcs-plugins recommends no packages.

-- no debconf information

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


signature.asc
Description: Digital signature
---End Message---
---BeginMessage---
Source: xfce-mcs-plugins
Source-Version: 4.3.90.2-2

We believe that the bug you reported is fixed in the latest version of
xfce-mcs-plugins, which is due to be installed in the Debian FTP archive:

xfce-mcs-plugins_4.3.90.2-2.diff.gz
  to pool/main/x/xfce-mcs-plugins/xfce-mcs-plugins_4.3.90.2-2.diff.gz
xfce-mcs-plugins_4.3.90.2-2.dsc
  to pool/main/x/xfce-mcs-plugins/xfce-mcs-plugins_4.3.90.2-2.dsc
xfce4-mcs-plugins_4.3.90.2-2_amd64.deb
  to pool/main/x/xfce-mcs-plugins/xfce4-mcs-plugins_4.3.90.2-2_amd64.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Yves-Alexis Perez [EMAIL PROTECTED] (supplier of updated xfce-mcs-plugins 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with 

Bug#378375: marked as done (mod-bt - FTBFS: error: WORDS_BIGENDIAN redefined)

2006-07-25 Thread Debian Bug Tracking System
Your message dated Tue, 25 Jul 2006 01:47:14 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#378375: fixed in mod-bt 0.0.18+p4.1386-1
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
Package: mod-bt
Version: 0.0.18+p4.1364-1
Severity: serious

There was an error while trying to autobuild your package:

 Automatic build of mod-bt_0.0.18+p4.1364-1 on debian-31 by sbuild/s390 85
[...]
  s390-linux-gnu-gcc -DPACKAGE_NAME=\\ -DPACKAGE_TARNAME=\\ 
 -DPACKAGE_VERSION=\\ -DPACKAGE_STRING=\\ -DPACKAGE_BUGREPORT=\\ 
 -DPACKAGE=\mod_bt\ -DVERSION=\0.0.18\ -DSTDC_HEADERS=1 
 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 
 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 
 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -D_FILE_OFFSET_BITS=64 
 -DHAVE_MODPERL_APACHE_INCLUDES_H=1 -DHAVE_ZEND_ZEND_H=1 -DSIZEOF_TIME_T=4 -I. 
 -I. -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM 
 -I/usr/include/php5/Zend -I/usr/include/php5/ext -DCOMPILE_DL=1 
 -I/usr/include/openssl -I/usr/include/apache2 -I/usr/include/apr-0 
 -I../../../src -I/usr/include/apr-0 -DLINUX=2 -D_REENTRANT 
 -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE 
 -I/usr/include/libxml2 -I/usr/include/apache2 -I/usr/include/php5 
 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend 
 -I/usr/include/php5/ext -fpic -g -O2 -O2 -Wall -Werror -MT php_mod_bt.lo -MD 
 -MP -MF .deps/php_mod_bt.Tpo -c php_mod_bt.c  -fPIC -DPIC -o 
 .libs/php_mod_bt.o
 In file included from /usr/include/apache2/ap_config.h:231,
  from /usr/include/apache2/httpd.h:30,
  from php_apache.h:4,
  from php_mod_bt.c:30:
 /usr/include/apache2/ap_config_auto.h:201:1: error: WORDS_BIGENDIAN 
 redefined
 In file included from /usr/include/php5/TSRM/tsrm_config.h:1,
  from /usr/include/php5/TSRM/tsrm_config_common.h:11,
  from /usr/include/php5/TSRM/tsrm_virtual_cwd.h:26,
  from /usr/include/php5/main/php.h:404,
  from php_mod_bt.c:24:
 /usr/include/php5/main/../main/php_config.h:2213:1: error: this is the 
 location of the previous definition
 make[4]: *** [php_mod_bt.lo] Error 1
 make[4]: Leaving directory 
 `/build/buildd/mod-bt-0.0.18+p4.1364/src/apache2/php_mod_bt'
 make[3]: *** [all-recursive] Error 1
 make[3]: Leaving directory `/build/buildd/mod-bt-0.0.18+p4.1364/src/apache2'
 make[2]: *** [all-recursive] Error 1
 make[2]: Leaving directory `/build/buildd/mod-bt-0.0.18+p4.1364/src'
 make[1]: *** [all-recursive] Error 1
 make[1]: Leaving directory `/build/buildd/mod-bt-0.0.18+p4.1364'
 make: *** [build-stamp] Error 2
 **
 Build finished at 20060714-0936
 FAILED [dpkg-buildpackage died]

---End Message---
---BeginMessage---
Source: mod-bt
Source-Version: 0.0.18+p4.1386-1

We believe that the bug you reported is fixed in the latest version of
mod-bt, which is due to be installed in the Debian FTP archive:

libapache2-mod-bt-dev_0.0.18+p4.1386-1_i386.deb
  to pool/main/m/mod-bt/libapache2-mod-bt-dev_0.0.18+p4.1386-1_i386.deb
libapache2-mod-bt_0.0.18+p4.1386-1_i386.deb
  to pool/main/m/mod-bt/libapache2-mod-bt_0.0.18+p4.1386-1_i386.deb
libapache2-modbt-perl_0.0.18+p4.1386-1_i386.deb
  to pool/main/m/mod-bt/libapache2-modbt-perl_0.0.18+p4.1386-1_i386.deb
libbttracker-utils_0.0.18+p4.1386-1_i386.deb
  to pool/main/m/mod-bt/libbttracker-utils_0.0.18+p4.1386-1_i386.deb
libbttracker0-dev_0.0.18+p4.1386-1_i386.deb
  to pool/main/m/mod-bt/libbttracker0-dev_0.0.18+p4.1386-1_i386.deb
libbttracker0_0.0.18+p4.1386-1_i386.deb
  to pool/main/m/mod-bt/libbttracker0_0.0.18+p4.1386-1_i386.deb
libbtutil-utils_0.0.18+p4.1386-1_i386.deb
  to pool/main/m/mod-bt/libbtutil-utils_0.0.18+p4.1386-1_i386.deb
libbtutil0-dev_0.0.18+p4.1386-1_i386.deb
  to pool/main/m/mod-bt/libbtutil0-dev_0.0.18+p4.1386-1_i386.deb
libbtutil0_0.0.18+p4.1386-1_i386.deb
  to pool/main/m/mod-bt/libbtutil0_0.0.18+p4.1386-1_i386.deb
libnet-bittorrent-libbt-tracker-perl_0.0.18+p4.1386-1_i386.deb
  to 
pool/main/m/mod-bt/libnet-bittorrent-libbt-tracker-perl_0.0.18+p4.1386-1_i386.deb
mod-bt_0.0.18+p4.1386-1.diff.gz
  to pool/main/m/mod-bt/mod-bt_0.0.18+p4.1386-1.diff.gz
mod-bt_0.0.18+p4.1386-1.dsc
  to pool/main/m/mod-bt/mod-bt_0.0.18+p4.1386-1.dsc
mod-bt_0.0.18+p4.1386.orig.tar.gz
  to pool/main/m/mod-bt/mod-bt_0.0.18+p4.1386.orig.tar.gz
php4-apache2-mod-bt_0.0.18+p4.1386-1_i386.deb
 

Bug#357439: amaya_wx-9.51-1_i386.deb from Amaya website works on Debian

2006-07-25 Thread Michel Dänzer
On Mon, 2006-07-24 at 15:50 +0100, Regis Boudin wrote: 
 
 The package in Debian uses shared libraries for wxWidgets and libGL.
 In most cases, the installed packages for libGL are libgl1-mesa-dri and
 libgl1-mesa-glx by default. The DRI version is buggy and gives rendering
 bugs on ATI radeon cards. When people disable DRI (or don't have it
 available), it reverts to GLX rendering, where this bug appears. If you
 install libgl1-mesa-swx11, miracle, no more crash, rendering is fine, only
 painfully slow.
 Use another OpenGL library (say, the Nvidia proprietary one), everything
 is fine.
 
 All this would point to a bug in libgl1-mesa-glx, hence CC'ing debian-x
 and Michel more specifically in case he has some more ideas since a couple
 of month ago.
 
 Also, for the record, having read about some rendering bugs fixed with DRI
 on radeon when using the mesa packages from experimental, I tried them.
 The crash is still present with GLX, using DRI gives yet another creative
 way to not work : The screen freezes except the mouse cursor can move,
 keys don't seem to work at all, and the only way to get to a usable state
 was to ssh to the machine and kill amaya.

Sounds like a hardware lockup. Most likely a bug in the libgl1-mesa-dri
driver, maybe in the radeon DRM.

 The problem seems to be definitely with OpenGL. I thought about
 reassigning this bug the libgl1-mesa-glx, but I have so many different
 ways to see the thing crash or do strange things, I suspect there might
 actually be a problem in Amaya (or wxWidgets) doing nasty things with
 OpenGL. Michel, it would be nice to have your opinion about it.

No matter how nasty things amaya may do, it should not lead to the
symptoms described here but be handled via the GL API error mechanisms.
It sounds like there's several bugs in libgl1-mesa-dri and at least
another one in libgl1-mesa-glx or xserver-xorg-core (it works with
indirect GLX here with development versions of all components; that and
the fact that libgl1-mesa-glx from experimental doesn't seem to make a
difference makes me suspect the GLX errors are actually X server bugs).


-- 
Earthling Michel Dänzer   |  http://tungstengraphics.com
Libre software enthusiast |  Debian, X and DRI developer




Bug#372649: ivtools: FTBFS: dh_movefiles: debian/tmp/usr/lib/libIV.so.1 not found

2006-07-25 Thread Daniel T. Chen
Using a shell other than bash will trigger the bug for this report. 
pushd/popd are the culprits in config/site.def.DEBIAN.


Thanks,
--
Daniel T. Chen[EMAIL PROTECTED]
GPG key:   www.sh.nu/~crimsun/pubkey.gpg.asc


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



Bug#378839: [Pkg-bluetooth-maintainers] Bug#378839: bluez-pcmcia-support: udev support broken

2006-07-25 Thread Filippo Giunchedi
On Fri, Jul 21, 2006 at 02:07:49PM +0200, Kay Sievers wrote:
  The solution is to replace ENV{BUS} by ENV{PHYSDEVBUS} in
  bluez-pcmcia-support.udev and to correspondingly change $DEVPATH to
  $PHYSDEVPATH in bluetooth.sh, i. e. revert to the solution I sent in
  #351106.
 
 ENV{BUS} never existed, so it can't work. The PHYDEV* values are
 deprecated and and should better not be used. They will not go away
 soon, but if that can be solved without them, it would be nice.
 PHYSDEVBUS is just the subsystem of the parent device, which can
 probably be matched with BUS==pcmcia.

I've modified the rules file, it is available at
http://svn.debian.org/wsvn/pkg-bluetooth/bluez-utils/trunk/debian/bluez-pcmcia-support.udev?op=filerev=0sc=0

and the bluetooth.sh invoked on RUN available at
http://svn.debian.org/wsvn/pkg-bluetooth/bluez-utils/trunk/debian/bluetooth.sh?op=filerev=0sc=0

what about the change from DEVPATH to PHYSDEVPATH Felix proposed in
bluetooth.sh?

Felix: do you mind trying the first file to see if it works for you?

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

UNIX IS user friendly, it is just selective who his friends are.


signature.asc
Description: Digital signature


Bug#373899: Corrections

2006-07-25 Thread Peter Köllner

The cupsys version is of course 1.2.1-4 and not 1.2.4.
udev version is 0.093-1
kernel is 2.6.17.6

I looked a bit closer at the behaviour today. When I switch on the  
printer, usblp module is loaded and the device /dev/usb/lp0 is created  
with access rights drw-rw root lp.
When I print a test page from the cupsys admin webpage on  
hp:/usb/hp_color_LaserJet_2550_series?serial=00CNFDD05275, I get open  
print channel failed and /dev/usb/lp0 vanishes immediately.




--
Using Opera's revolutionary e-mail client: http://www.opera.com/m2/



Bug#379732: popularity-contest: Fails to upload using http

2006-07-25 Thread Richard Antony Burton
Package: popularity-contest
Version: 1.33
Severity: grave
Justification: renders package unusable

Can no longer upload popcon result by http (which as the default method probably
means few other people are able to either). I added the -d option to the
uploader and ran it a few times (with several different results):

[EMAIL PROTECTED]:/etc/cron.weekly# ./popularity-contest
Failed to upload, answer ''

[EMAIL PROTECTED]:/etc/cron.weekly# ./popularity-contest
Failed to upload, answer '!DOCTYPE HTML PUBLIC -//IETF//DTD HTML 2.0//EN
HTMLHEAD
TITLE302 Found/TITLE
/HEADBODY
H1Found/H1
The document has moved A 
HREF=http://www.debian.org/distrib/ftplist;here/A. P
HR
ADDRESSApache/1.3.33 Server at gluck.debian.org Port 80/ADDRESS
/BODY/HTML
'
[EMAIL PROTECTED]:/etc/cron.weekly# ./popularity-contest
timeout in popcon-upload

Richard.

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

Versions of packages popularity-contest depends on:
ii  debconf [debconf-2.0] 1.5.2  Debian configuration management sy
ii  dpkg  1.13.22package maintenance system for Deb

Versions of packages popularity-contest recommends:
ii  cron  3.0pl1-95  management of regular background p
ii  exim4 4.62-2 metapackage to ease exim MTA (v4) 
ii  exim4-daemon-light [mail-tran 4.62-2 lightweight exim MTA (v4) daemon
pn  mime-constructnone (no description available)

-- debconf information:
  popularity-contest/hostid-failed:
* popularity-contest/participate: true
  popularity-contest/use-http: true


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



Bug#379728: slapd: upgrade to 2.3.24-2 hangs

2006-07-25 Thread Stephen Gran
This one time, at band camp, Christoph Kaminski said:
 I cant upgrade to 2.3.24-2... 
 
 Installing new version of config file /etc/default/slapd ...
 Installing new version of config file /etc/init.d/slapd ...
 
 It hangs here, and after 10mins I have aborted it
 
 dpkg: error processing slapd (--configure):
  subprocess post-installation script killed by signal (Interrupt)
  Errors were encountered while processing:
   slapd
 
 * slapd/dump_database_destdir: /var/backups/slapd-VERSION
 * slapd/dump_database: always

Can you add 
set -x

as the second line in /var/lib/dpkg/info/slapd.postinst, and run
dpkg --configure -a

I assume what's happening is that it's running slapcat and that's taking
a long time for some reason (out of disk space?  something else?  not
sure yet).

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


signature.asc
Description: Digital signature


Processed: severity of 379713 is important

2006-07-25 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.9.20
 severity 379713 important
Bug#379713: libapache-mod-limitipconn: FTBFS: bashisms
Severity set to `important' from `serious'


End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Processed: severity of 372649 is important, retitle 372649 to ivtools: FTBFS: bashisms

2006-07-25 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.9.20
 severity 372649 important
Bug#372649: ivtools: FTBFS: dh_movefiles: debian/tmp/usr/lib/libIV.so.1 not 
found
Severity set to `important' from `serious'

 retitle 372649 ivtools: FTBFS: bashisms
Bug#372649: ivtools: FTBFS: dh_movefiles: debian/tmp/usr/lib/libIV.so.1 not 
found
Changed Bug title.


End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#379743: cynthiune.app: FTBFS (amd64): CynthiuneHeaderCell.m:100: internal compiler error: in simplify_subreg, at simplify-rtx.c:3807

2006-07-25 Thread Andreas Jochens
Package: cynthiune.app
Version: 0.9.5-3
Severity: serious
Tags: patch

When building 'cynthiune.app' on amd64/unstable,
I get the following internal compiler error:

CynthiuneController.m:517: warning: '_OBJC_INSTANCE_8' defined but not used
 Compiling file CynthiuneFadingTextField.m ...
CynthiuneFadingTextField.m:107: warning: '_OBJC_INSTANCE_0' defined but not used
 Compiling file CynthiuneHeaderCell.m ...
CynthiuneHeaderCell.m: In function '-[CynthiuneHeaderCell 
drawInteriorWithFrame:inView:]':
CynthiuneHeaderCell.m:100: internal compiler error: in simplify_subreg, at 
simplify-rtx.c:3807
Please submit a full bug report,
with preprocessed source if appropriate.
See URL:http://gcc.gnu.org/bugs.html for instructions.
For Debian GNU/Linux specific bug reporting instructions,
see URL:file:///usr/share/doc/gcc-4.1/README.Bugs.
Preprocessed source stored into /tmp/ccnrMNrN.out file, please attach this to 
your bugreport.
make[2]: *** [shared_obj/CynthiuneHeaderCell.o] Error 1
make[1]: *** [Cynthiune.all.app.variables] Error 2
make[1]: Leaving directory `/cynthiune.app-0.9.5'
make: *** [build-stamp] Error 2

With the attached workaround patch 'cynthiune.app' can be compiled
on amd64 using gcc-4.1.

Regards
Andreas Jochens

diff -urN ../tmp-orig/cynthiune.app-0.9.5/CynthiuneHeaderCell.m 
./CynthiuneHeaderCell.m
--- ../tmp-orig/cynthiune.app-0.9.5/CynthiuneHeaderCell.m   2006-03-21 
07:52:16.0 +
+++ ./CynthiuneHeaderCell.m 2006-07-25 10:10:58.0 +
@@ -65,10 +65,11 @@
 pointA = 0.0;
 pointB = arrowSize.height;
   }
+  NSPoint p = NSMakePoint(0, pointA);
-  [bezier moveToPoint: RelativePoint (NSMakePoint(0, pointA), refPoint)];
+  [bezier moveToPoint: RelativePoint (p, refPoint)];
   [bezier lineToPoint: RelativePoint (NSMakePoint(arrowSize.width / 2, 
pointB), refPoint)];
   [bezier lineToPoint: RelativePoint (NSMakePoint(arrowSize.width, pointA), 
refPoint)];
-  [bezier lineToPoint: RelativePoint (NSMakePoint(0, pointA), refPoint)];
+  [bezier lineToPoint: RelativePoint (p, refPoint)];
   [bezier closePath];
   [bezier fill];
 }
@@ -90,9 +91,9 @@
 {
   NSDivideRect (cellFrame, arrowFrame, remainingFrame,
 arrowWidth + arrowOffset, NSMaxXEdge);
-  refPoint = RelativePoint (NSMakePoint (0, (cellFrame.size.height
- - arrowHeight) / 2),
-arrowFrame.origin);
+  NSPoint p = NSMakePoint (0, (cellFrame.size.height
+ - arrowHeight) / 2);
+  refPoint = RelativePoint (p, arrowFrame.origin);
   [self _drawArrowOfSize: NSMakeSize (arrowWidth, arrowHeight)
 flipped: [controlView isFlipped]
 atReferencePoint: refPoint];


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



Bug#378839: [Pkg-bluetooth-maintainers] Bug#378839: bluez-pcmcia-support: udev support broken

2006-07-25 Thread Felix Homann
On Tuesday 25 July 2006 11:12, Filippo Giunchedi wrote:
 I've modified the rules file, it is available at
 http://svn.debian.org/wsvn/pkg-bluetooth/bluez-utils/trunk/debian/bluez-pcm
cia-support.udev?op=filerev=0sc=0

 and the bluetooth.sh invoked on RUN available at
 http://svn.debian.org/wsvn/pkg-bluetooth/bluez-utils/trunk/debian/bluetooth
.sh?op=filerev=0sc=0

 what about the change from DEVPATH to PHYSDEVPATH Felix proposed in
 bluetooth.sh?

 Felix: do you mind trying the first file to see if it works for you?

It's working, but only if PHYSDEVPATH is used in bluetooth.sh. 

Kind regards,

Felix


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



Bug#379744: python-goopy: no python file in this package

2006-07-25 Thread LI Daobing

Package: python-goopy
Version: 0.1-1.1
Severity: grave
Justification: renders package unusable

$ dpkg -L python-goopy
/.
/usr
/usr/share
/usr/share/doc
/usr/share/doc/python-goopy
/usr/share/doc/python-goopy/functional_docs.html
/usr/share/doc/python-goopy/copyright
/usr/share/doc/python-goopy/changelog.Debian.gz
$

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

-- no debconf information


--
LI Daobing


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



Bug#378839: [Pkg-bluetooth-maintainers] Bug#378839: bluez-pcmcia-support: udev support broken

2006-07-25 Thread Felix Homann
On Tuesday 25 July 2006 11:12, Filippo Giunchedi wrote:
 what about the change from DEVPATH to PHYSDEVPATH Felix proposed in
 bluetooth.sh?

Hi again,

MANFID=`cat /sys/$PHYSDEVPATH/manf_id`,`cat /sys/$PHYSDEVPATH/card_id`

and

MANFID=`cat /sys/$DEVPATH/device/manf_id`,`cat /sys/$DEVPATH/device/card_id`

seem to be equivalent in this setting. I don't know if either one is prefered 
or deprecated, but I would now prefer the latter since it's simpler:

$DEVPATH - /class/tty/ttyS2
$PHYSDEVPATH -  /devices/pci:00/:00:1e.0/:06:01.0/0.0

(on insertion of a SPHINX card)

Kind regards,

Felix


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



Processed: Fixing patch

2006-07-25 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tags 379495 + patch
Bug#379495: predict: FTBFS: forms.h: No such file or directory
There were no tags set.
Tags added: patch

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#379495: Fixing patch

2006-07-25 Thread Luca Bruno
tags 379495 + patch
thanks

Hi,
Due to xorg transition and consequent FHS re-working, the forms.h is no
longer in /usr/X11R6/include/X11, but it has been moved
to /usr/include/X11/forms.h

The attached patch correct the include path. If no other errors are
present, this should fix the FTBFS.

At the moment I can't test in a pbuilder chroot, so you should better
check it by yourself before upload.

Cheers, Luca

-- 
 .''`.  ** Debian GNU/Linux **  | Luca Bruno
: :'  :   The Universal O.S.| luca.br(AT)uno.it
`. `'`  | GPG Key ID: 3BFB9FB3
  `- http://www.debian.org  | Proud Debian GNU/Linux User


predict-ftbfs.patch
Description: Binary data


pgpKh2YZ2IMVz.pgp
Description: PGP signature


Bug#339344: Patch for wrong pointer type

2006-07-25 Thread Goswin von Brederlow
Wouter Verhelst [EMAIL PROTECTED] writes:

 tags 339344 - patch
 thanks

 On Mon, Jul 17, 2006 at 09:56:10AM +0200, Goswin Brederlow wrote:
 Package: belpic
 Followup-For: Bug #339344
 
 Hi,
 
 attached is a patch for the pointer conversion error.

 It doesn't actually work, though; you can't change the definition of a
 class which is rather central in the entire class hierarchy and hope
 that things still compile. Also, this implies an API change, which is a
 Very Bad Thing(TM).

Worked fine here on amd64. What error do you get?

 The right fix is simpler: rather than trying to cast unsigned long to
 unsigned int, one should cast unsigned long to size_t (which happens to
 be the same thing on 32bit architectures, but nowhere else).

That isn't right. That might just be working on the relevant systems.

MfG
Goswin


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



Bug#378839: [Pkg-bluetooth-maintainers] Bug#378839: bluez-pcmcia-support: udev support broken

2006-07-25 Thread Kay Sievers
On Tue, 2006-07-25 at 12:52 +0200, Felix Homann wrote:
 On Tuesday 25 July 2006 11:12, Filippo Giunchedi wrote:
  what about the change from DEVPATH to PHYSDEVPATH Felix proposed in
  bluetooth.sh?
 
 Hi again,
 
 MANFID=`cat /sys/$PHYSDEVPATH/manf_id`,`cat /sys/$PHYSDEVPATH/card_id`
 
 and
 
 MANFID=`cat /sys/$DEVPATH/device/manf_id`,`cat /sys/$DEVPATH/device/card_id`
 
 seem to be equivalent in this setting. I don't know if either one is prefered 
 or deprecated, but I would now prefer the latter since it's simpler:
 
 $DEVPATH - /class/tty/ttyS2
 $PHYSDEVPATH -  /devices/pci:00/:00:1e.0/:06:01.0/0.0

PHYSDEVPATH and the 'device' link are both deprecated and will go away
some day in the future, you better pass the values you want to use in
your script down from udev with $sysfs{}. That is not dependent on a
specific order of devices in sysfs.

Kay



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



Processed: RM the package

2006-07-25 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 retitle 348357 RM: mozilla-firefox-locale-it -- RoM; superseded by 
 mozilla-firefox-locale-all
Bug#348357: mozilla-firefox-locale-it needs update for current firefox version
Changed Bug title.

 reassing 348357 ftp.debian.org
Unknown command or malformed arguments to command.

 thanks dude
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#379728: slapd: upgrade to 2.3.24-2 hangs

2006-07-25 Thread Christoph Kaminski

Stephen Gran schrieb:

This one time, at band camp, Christoph Kaminski said:
I cant upgrade to 2.3.24-2... 


Installing new version of config file /etc/default/slapd ...
Installing new version of config file /etc/init.d/slapd ...

It hangs here, and after 10mins I have aborted it

dpkg: error processing slapd (--configure):
 subprocess post-installation script killed by signal (Interrupt)
 Errors were encountered while processing:
  slapd

* slapd/dump_database_destdir: /var/backups/slapd-VERSION
* slapd/dump_database: always


Can you add 
set -x


as the second line in /var/lib/dpkg/info/slapd.postinst, and run
dpkg --configure -a

I assume what's happening is that it's running slapcat and that's taking
a long time for some reason (out of disk space?  something else?  not
sure yet).

Take care,

dpkg --configure -a
Setting up slapd (2.3.24-2) ...
+ set -e
+ . /usr/share/debconf/confmodule
++ '[' '!' '' ']'
++ PERL_DL_NONLAZY=1
++ export PERL_DL_NONLAZY
++ '[' '' ']'
++ exec /usr/share/debconf/frontend /var/lib/dpkg/info/slapd.postinst 
configure 2.3.24-1

+ set -e
+ . /usr/share/debconf/confmodule
++ '[' '!' 1 ']'
++ '[' -z '' ']'
++ exec
++ '[' '' ']'
++ exec
++ DEBCONF_REDIR=1
++ export DEBCONF_REDIR
+ MODE=configure
+ OLD_VERSION=2.3.24-1
+ '[' -f /etc/default/slapd ']'
+ . /etc/default/slapd
++ SLAPD_CONF=
++ SLAPD_USER=openldap
++ SLAPD_GROUP=openldap
++ SLAPD_PIDFILE=
++ SLURPD_START=auto
++ SLAPD_OPTIONS=
++ SLURPD_OPTIONS=
+ '[' -z '' ']'
+ SLAPD_CONF=/etc/ldap/slapd.conf
+ '[' configure = configure ']'
+ create_new_user
++ getent group openldap

it hangs here!

dpkg: error processing slapd (--configure):
 subprocess post-installation script killed by signal (Interrupt)
Errors were encountered while processing:
 slapd

--
MfG

Christoph Kaminski




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



Bug#339344: Patch for wrong pointer type

2006-07-25 Thread Wouter Verhelst
On Tue, Jul 25, 2006 at 01:21:44PM +0200, Goswin von Brederlow wrote:
 Wouter Verhelst [EMAIL PROTECTED] writes:
  tags 339344 - patch
  thanks
 
  On Mon, Jul 17, 2006 at 09:56:10AM +0200, Goswin Brederlow wrote:
  Package: belpic
  Followup-For: Bug #339344
  
  Hi,
  
  attached is a patch for the pointer conversion error.
 
  It doesn't actually work, though; you can't change the definition of a
  class which is rather central in the entire class hierarchy and hope
  that things still compile. Also, this implies an API change, which is a
  Very Bad Thing(TM).
 
 Worked fine here on amd64. What error do you get?

The exact reverse of what you got on amd64 without the fix.

Unfixed, the code assumed that size_t == unsigned int, and that one cast
broke on architectures where this is not true.

Your fix basically assumed that size_t == unsigned long (the code
refers to that modified data later on as size_t anyway). It also
happened to change the ABI (not just the API) of the library, which
would have required me to do a SONAME bump (the function was part of an
abstract class, and many child classes reimplement it).

  The right fix is simpler: rather than trying to cast unsigned long to
  unsigned int, one should cast unsigned long to size_t (which happens to
  be the same thing on 32bit architectures, but nowhere else).
 
 That isn't right. That might just be working on the relevant systems.

Sorry, after looking at the code for over three hours, I came to the
conclusion that it is. Please check the patch and prove to me that it is
wrong, or it will stay the way it is now.

-- 
Fun will now commence
  -- Seven Of Nine, Ashes to Ashes, stardate 53679.4


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



Bug#379750: FTBFS: missing X11 build-depends

2006-07-25 Thread Martin Michlmayr
Package: python-gd
Version: 0.52debian-1.3
Severity: serious

You're missing build-dependencies on:
  libx11-dev
  libxpm-dev


 Automatic build of python-gd_0.52debian-1.3 on usurper by sbuild/amd64 0.46
...
 gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall -Wstrict-prototypes 
 -fPIC -DHAVE_LIBGD -DHAVE_LIBJPEG -DHAVE_LIBPNG -DHAVE_LIBZ -DHAVE_LIBX11 
 -DHAVE_LIBFREETYPE -I/usr/include -I/usr/include/python2.3 -c _gdmodule.c -o 
 build/temp.linux-x86_64-2.3/_gdmodule.o
 _gdmodule.c: In function 'image_string':
 _gdmodule.c:888: warning: pointer targets in passing argument 5 of 
 'gdImageString' differ in signedness
 _gdmodule.c: In function 'image_string16':
 _gdmodule.c:903: warning: passing argument 5 of 'gdImageString16' from 
 incompatible pointer type
 _gdmodule.c: In function 'image_stringup':
 _gdmodule.c:917: warning: pointer targets in passing argument 5 of 
 'gdImageStringUp' differ in signedness
 _gdmodule.c: In function 'image_stringup16':
 _gdmodule.c:932: warning: passing argument 5 of 'gdImageStringUp16' from 
 incompatible pointer type
 gcc -pthread -shared build/temp.linux-x86_64-2.3/_gdmodule.o -L/usr/local/lib 
 -L/usr/lib -L/usr/lib/X11 -L/usr/X11R6/lib -lgd -ljpeg -lpng -lz -lX11 
 -lfreetype -o build/lib.linux-x86_64-2.3/_gd.so
 /usr/bin/ld: cannot find -lX11
 collect2: ld returned 1 exit status
 error: command 'gcc' failed with exit status 1

-- 
Martin Michlmayr
http://www.cyrius.com/


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



Bug#377615: marked as done (python-apt does not depend on apt)

2006-07-25 Thread Debian Bug Tracking System
Your message dated Tue, 25 Jul 2006 13:40:21 +0200
with message-id [EMAIL PROTECTED]
and subject line Bug#377615: python-apt does not depend on apt
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
Package: python-apt
Version: 0.6.18
Severity: important

After the python policy transition, the python-apt package now contains
the .so files for each of the relevant python versions. However, these
..so's depend on the existance of /usr/lib/libapt-pkg-libc6.3-6.so.3.11
and /usr/lib/libapt-inst-libc6.3-6.so.1.1 (both currently provided by
apt) which python-apt doesn't depend on. Previously this dependancy was
handled by the python2.x-apt packages, but no longer. python-apt should
probably depend on libapt-pkg-libc6.3-6-3.11 (provided by apt) in order
to fix this.

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

Versions of packages python-apt depends on:
ii  python2.3.5-11   An interactive high-level object-o
ii  python-central0.5.1  register and build utility for Pyt

python-apt recommends no packages.

-- no debconf information

---End Message---
---BeginMessage---
On Mon, Jul 10, 2006 at 01:24:24PM +0200, Tom Parker wrote:
 Package: python-apt
 Version: 0.6.18
 Severity: important

Thanks for your bugreport.
 
 After the python policy transition, the python-apt package now contains
 the .so files for each of the relevant python versions. However, these
 ..so's depend on the existance of /usr/lib/libapt-pkg-libc6.3-6.so.3.11
 and /usr/lib/libapt-inst-libc6.3-6.so.1.1 (both currently provided by
 apt) which python-apt doesn't depend on. Previously this dependancy was
 handled by the python2.x-apt packages, but no longer. python-apt should
 probably depend on libapt-pkg-libc6.3-6-3.11 (provided by apt) in order
 to fix this.
[..]

This is fixed with 0.6.18-0.2 currently in unstable.

Cheers,
 Michael

-- 
Linux is not The Answer. Yes is the answer. Linux is The Question. - Neo
---End Message---


Bug#379728: slapd: upgrade to 2.3.24-2 hangs

2006-07-25 Thread Stephen Gran
On Tue, Jul 25, 2006 at 12:07:25PM +0200, Christoph Kaminski said:
 + create_new_user
 ++ getent group openldap
 
 it hangs here!

Does that command hang for you when run normally?  Do you use
libnss-ldap?

P.S., please keep the bug log in the cc: list.
-- 
 --
|  Stephen Gran  | The C Programming Language -- A|
|  [EMAIL PROTECTED] | language which combines the flexibility |
|  http://www.lobefin.net/~steve | of assembly language with the power of  |
|| assembly language. |
 --


signature.asc
Description: Digital signature


Bug#379752: FTBFS: missing zlib1g-dev build-depends

2006-07-25 Thread Martin Michlmayr
Package: gst-plugins-bad0.10
Version: 0.10.3-1
Severity: serious

You're missing a build-depends on zlib1g-dev, or so it seems.

 Automatic build of gst-plugins-bad0.10_0.10.3-1 on usurper by sbuild/amd64 
 0.46
...
  gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../../gst-libs -I../../gst-libs 
 -pthread -I/usr/include/gstreamer-0.10 -I/usr/include/glib-2.0 
 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 -Wall -g 
 -DGST_DISABLE_DEPRECATED -g -O2 -MT libgstqtdemux_la-qtdemux.lo -MD -MP -MF 
 .deps/libgstqtdemux_la-qtdemux.Tpo -c qtdemux.c  -fPIC -DPIC -o 
 .libs/libgstqtdemux_la-qtdemux.o
 qtdemux.c:29:18: error: zlib.h: No such file or directory
 qtdemux.c: In function 'qtdemux_inflate':
 qtdemux.c:2037: error: 'z_stream' undeclared (first use in this function)
 qtdemux.c:2037: error: (Each undeclared identifier is reported only once
 qtdemux.c:2037: error: for each function it appears in.)
 qtdemux.c:2037: error: 'z' undeclared (first use in this function)
 qtdemux.c:2040: error: expected expression before ')' token
 qtdemux.c:2049: warning: implicit declaration of function 'inflateInit'
 qtdemux.c:2057: warning: implicit declaration of function 'inflate'
 qtdemux.c:2057: error: 'Z_SYNC_FLUSH' undeclared (first use in this function)
 qtdemux.c:2058: error: 'Z_OK' undeclared (first use in this function)
 qtdemux.c:2061: error: 'Z_STREAM_END' undeclared (first use in this function)
 make[4]: *** [libgstqtdemux_la-qtdemux.lo] Error 1
 make[4]: Leaving directory `/build/tbm/gst-plugins-bad0.10-0.10.3/gst/qtdemux'

-- 
Martin Michlmayr
http://www.cyrius.com/


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



Bug#379763: FTBFS: comparison between signed and unsigned

2006-07-25 Thread Martin Michlmayr
Package: filtergen
Version: 0.12.4-4.1
Severity: serious

Some builds fail with the following error.  This can be reproduced on
any arch, but for some reason it seems that scanner.c is not always
generated from scanner.l.  When you regenerate it manually, you
definitely see the error though.

I don't know if this is a bug in the scanner.l file or in flex itself.

 Automatic build of filtergen_0.12.4-4.1 on usurper by sbuild/amd64 0.46
...
 if x86_64-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.-D_GNU_SOURCE -O2 -W 
 -Wall -Werror -Waggregate-return -Wcast-align -Wcast-qual -Wnested-externs 
 -Wshadow -Wbad-function-cast -Wwrite-strings -MT scanner.o -MD -MP -MF 
 .deps/scanner.Tpo -c -o scanner.o scanner.c; \
   then mv -f .deps/scanner.Tpo .deps/scanner.Po; else rm -f 
 .deps/scanner.Tpo; exit 1; fi
 cc1: warnings being treated as errors
 scanner.c: In function 'yy_get_next_buffer':
 scanner.c:1317: warning: comparison between signed and unsigned
 make[3]: *** [scanner.o] Error 1

-- 
Martin Michlmayr
http://www.cyrius.com/


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



Processed: reassign 348357 to ftp.debian.org

2006-07-25 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.9.20
 reassign 348357 ftp.debian.org
Bug#348357: RM: mozilla-firefox-locale-it -- RoM; superseded by 
mozilla-firefox-locale-all
Bug reassigned from package `mozilla-firefox-locale-it' to `ftp.debian.org'.


End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Processed: severity of 379556 is minor

2006-07-25 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.9.20
 severity 379556 minor
Bug#379556: bonfire has no man page
Severity set to `minor' from `serious'


End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#379744: python-goopy: no python file in this package

2006-07-25 Thread Kumar Appaiah
On Tue, Jul 25, 2006 at 06:23:17PM +0800, LI Daobing wrote:
 -- System Information:
 Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
 Architecture: amd64 (x86_64)
 Shell:  /bin/sh linked to /bin/bash
 Kernel: Linux 2.6.17-1-em64t-p4-smp
 Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Many thanks for the information. Unfortunately, I am not near my sid
machine right now. Moreover, this upload was an NMU, so I haven't
exactly checked it out. I will need a couple of weeks to get back and
look at it.

Sorry!

Kumar
-- 
Kumar Appaiah,
462, Jamuna Hostel,
Indian Institute of Technology Madras,
Chennai - 600036


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



Bug#379765: weechat - FTBFSa: Broken build dependency: libgnutls13-dev

2006-07-25 Thread Bastian Blank
Package: weechat
Version: 0.1.9-2
Severity: serious

There was an error while trying to autobuild your package:

 Automatic build of weechat_0.1.9-2 on lxdebian.bfinv.de by sbuild/s390 85
[...]
 ** Using build dependencies supplied by package:
 Build-Depends: cdbs, debhelper (= 5), libncursesw5-dev, ruby, ruby1.8-dev, 
 libperl-dev, python-dev, liblualib50-dev, libgnutls13-dev | libgnutls-dev, 
 libtool, xsltproc, docbook-xsl, docbook-xml, dpkg-dev (= 1.13.19)
[...]
 E: Couldn't find package libgnutls13-dev
 apt-get failed.
 Package installation failed
 Trying to reinstall removed packages:
 Trying to uninstall newly installed packages:
 Source-dependencies not satisfied; skipping weechat
 **
 Finished at 20060724-1319
 Build needed 00:00:00, 0k disk space

Bastian

-- 
I'm a soldier, not a diplomat.  I can only tell the truth.
-- Kirk, Errand of Mercy, stardate 3198.9


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



Processed: Re: can't reproduce

2006-07-25 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tags 378397 unreproducible
Bug#378397: FTBFS, while processing doc/dejagnu.xml
Tags were: moreinfo
Tags added: unreproducible

 severity 378397 important
Bug#378397: FTBFS, while processing doc/dejagnu.xml
Severity set to `important' from `serious'

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#378393: diff for 1.4.4.cvs20060709-2.1 NMU

2006-07-25 Thread Julien Danjou
Package: dejagnu
Version: 1.4.4.cvs20060709-2
Severity: normal
Tags: patch

Hi,

Attached is the diff for my dejagnu 1.4.4.cvs20060709-2.1 NMU.

-- 
Julien Danjou
// Λ̊ [EMAIL PROTECTED]   http://julien.danjou.info
// 9A0D 5FD9 EB42 22F6 8974  C95C A462 B51E C2FE E5CD
// Tomorrow I was nothing, yesterday I'll be.
diff -u dejagnu-1.4.4.cvs20060709/debian/control 
dejagnu-1.4.4.cvs20060709/debian/control
--- dejagnu-1.4.4.cvs20060709/debian/control
+++ dejagnu-1.4.4.cvs20060709/debian/control
@@ -2,9 +2,9 @@
 Section: devel
 Priority: optional
 Maintainer: Daniel Jacobowitz [EMAIL PROTECTED]
-Standards-Version: 3.5.2
+Standards-Version: 3.7.2
 Build-Depends: cdbs (= 0.4.17), quilt (= 0.30-1), debhelper (= 5)
-Build-Depends-Indep: texinfo, jade, docbook-utils, tetex-bin, imagemagick, 
gs-common, transfig
+Build-Depends-Indep: texinfo, jade, docbook-utils, tetex-bin, imagemagick, 
gs-common, transfig, expect
 
 Package: dejagnu
 Architecture: all
diff -u dejagnu-1.4.4.cvs20060709/debian/changelog 
dejagnu-1.4.4.cvs20060709/debian/changelog
--- dejagnu-1.4.4.cvs20060709/debian/changelog
+++ dejagnu-1.4.4.cvs20060709/debian/changelog
@@ -1,3 +1,13 @@
+dejagnu (1.4.4.cvs20060709-2.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Add build-dep on expect (Closes: #378393)
+  * Remove duplicate conffiles
+  * Bump standards version
+  * Update FSF address in debian/copyright
+
+ -- Julien Danjou [EMAIL PROTECTED]  Tue, 25 Jul 2006 14:24:20 +0200
+
 dejagnu (1.4.4.cvs20060709-2) unstable; urgency=low
 
   * Correct syntax error when using --target_board board/-option.  Reported
reverted:
--- dejagnu-1.4.4.cvs20060709/debian/conffiles
+++ dejagnu-1.4.4.cvs20060709.orig/debian/conffiles
@@ -1 +0,0 @@
-/etc/dejagnu/site.exp
diff -u dejagnu-1.4.4.cvs20060709/debian/copyright 
dejagnu-1.4.4.cvs20060709/debian/copyright
--- dejagnu-1.4.4.cvs20060709/debian/copyright
+++ dejagnu-1.4.4.cvs20060709/debian/copyright
@@ -22,8 +22,7 @@
 
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
-   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-   02111-1307, USA.
+   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 
 On Debian GNU/Linux systems, the complete text of the GNU General
 Public License can be found in `/usr/share/common-licenses/GPL'.


signature.asc
Description: Digital signature


Bug#339344: Patch for wrong pointer type

2006-07-25 Thread Goswin von Brederlow
Wouter Verhelst [EMAIL PROTECTED] writes:

 On Tue, Jul 25, 2006 at 01:21:44PM +0200, Goswin von Brederlow wrote:
 Wouter Verhelst [EMAIL PROTECTED] writes:
  tags 339344 - patch
  thanks
 
  On Mon, Jul 17, 2006 at 09:56:10AM +0200, Goswin Brederlow wrote:
  Package: belpic
  Followup-For: Bug #339344
  
  Hi,
  
  attached is a patch for the pointer conversion error.
 
  It doesn't actually work, though; you can't change the definition of a
  class which is rather central in the entire class hierarchy and hope
  that things still compile. Also, this implies an API change, which is a
  Very Bad Thing(TM).
 
 Worked fine here on amd64. What error do you get?

 The exact reverse of what you got on amd64 without the fix.

 Unfixed, the code assumed that size_t == unsigned int, and that one cast
 broke on architectures where this is not true.

 Your fix basically assumed that size_t == unsigned long (the code
 refers to that modified data later on as size_t anyway). It also

My fix assumes size_t is size_t. As you said the data is used as
size_t later on and I just made it declare the argument as size_t
instead of unsigned long.

You probably run into problems on the calling side of the function
where someone used an unsigned long pointer instead of a size_t
pointer. That is why I asked for the error.

 happened to change the ABI (not just the API) of the library, which
 would have required me to do a SONAME bump (the function was part of an
 abstract class, and many child classes reimplement it).

The API/ABI change was always a given for me.

  The right fix is simpler: rather than trying to cast unsigned long to
  unsigned int, one should cast unsigned long to size_t (which happens to
  be the same thing on 32bit architectures, but nowhere else).
 
 That isn't right. That might just be working on the relevant systems.

 Sorry, after looking at the code for over three hours, I came to the
 conclusion that it is. Please check the patch and prove to me that it is
 wrong, or it will stay the way it is now.

Consider a system where size_t != unsigned long. I can't name you an
example in Debian but it isn't impossible. Point is that you are
casting the type of a pointer and they may not match.

I'm not sure but I think Mips N32 abi has this case. 32 bit pointers
but 64bit longs, size_t should be 32bit. The software would fail there.


MfG
Goswin


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



Bug#379628: ntfsresize: resizing a Vista NTFS partition leads to corrupted partition

2006-07-25 Thread Frans Pop
severity 379628 important
thanks

Just tested with 1.13.1, but it turns out the problem is not in 
ntfsresize.

The root of the problem seems to be how the Vista installer created 
partitions. Yuval was correct: using default cylinder based partitioning, 
the starting sector _is_ indeed changed from 2048 to 63.

Before deleting/creating the partition:
   /dev/sda1   *   12550204810247  HPFS/NTFS
after toggling display/entry units with 'u':
   /dev/sda1   *204840964095204810247  HPFS/NTFS

After deleting/creating the partition:
   /dev/sda1   *   11217 97755217  HPFS/NTFS
after toggling display/entry units with 'u':
   /dev/sda1   *  6319551104 97755217  HPFS/NTFS

After recreating the partition with start sector 2048, the NTFS partition 
was correct.

I would suggest very strongly to document this aspect of resizing an NTFS 
partition better and warn users of this possible cause of data loss.
Neither the upstream FAQ [1] nor the documentation included with the 
package (manpage or /usr/share/doc) currently document this.
Even stronger: the example in the FAQ uses cylinders rather than sectors 
just like I did!
The troubleshooting part of the FAQ does explain about starting sector, 
but does not explain the difference between cylinders based and sector 
based partitioning. Most users will react the same as I did: but the 
start is still at 1, so that cannot be the problem.

Reducing the severity of this bug report to from RC to important as I feel 
properly documenting this deserves that severity.

With this information, I will try to see if we can fix this issue in the 
Debian Installer. Thank you for helping find the cause of the issue.

Cheers,
FJP

[1] http://mlf.linux.rulez.org/mlf/ezaz/ntfsresize.html


pgpcAkjMC9LpV.pgp
Description: PGP signature


Bug#378372: libxmlada2 - FTBFS

2006-07-25 Thread Bastian Blank
found 378372 2.2-4
thanks

There was an error while trying to autobuild your package:

 Automatic build of libxmlada2_2.2-4 on lxdebian.bfinv.de by sbuild/s390 85
[...]
 gcc-4.1 -c -O2 -gnatafno -gnatVa -fPIC -I- -gnatA 
 /build/buildd/libxmlada2-2.2/schema/schema-validators-ur_type.adb
 rm obj-shared/build_xmlada*
 gnatgcc -shared -o libxmlada.so.2.2 \
  -lgnat -Wl,--soname,libxmlada.so.2 -Wl,--export-dynamic \
  obj-shared/*.o
 /usr/bin/ld: cannot find -lgnat
 collect2: ld returned 1 exit status
 make: *** [libxmlada.so.2] Error 1
 **
 Build finished at 20060721-2305
 FAILED [dpkg-buildpackage died]


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



Bug#378397: can't reproduce

2006-07-25 Thread Julien Danjou
tags 378397 unreproducible
severity 378397 important
thanks

 This bug was reported against version 1.4.4.cvs20060709 which I don't
 find a record of as being in debian.
 
 I tried building both 1.4.4.cvs20060709-1 and 1.4.4.cvs20060709-2 in
 pbuilder, they are missing the build-dep on expect that is documented in
 #378393, but neither seem to suffer from this bug.

Same here, so downgraded as important.

Cheers,
-- 
Julien Danjou
.''`.  Debian Developer
: :' : http://julien.danjou.info
`. `'  http://people.debian.org/~acid
  `-   9A0D 5FD9 EB42 22F6 8974  C95C A462 B51E C2FE E5CD


signature.asc
Description: Digital signature


Processed: Re: FTBFS: libbluetooth1-dev is not available anymore

2006-07-25 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tags 376863 +patch
Bug#376863: FTBFS: libbluetooth1-dev is not available anymore
There were no tags set.
Tags added: patch

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Processed: Fixed in NMU of dejagnu 1.4.4.cvs20060709-2.1

2006-07-25 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tag 378393 + fixed
Bug#378393: FTBFS, missing b-d on expect
There were no tags set.
Tags added: fixed

 quit
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#379728: slapd: upgrade to 2.3.24-2 hangs

2006-07-25 Thread Christoph Kaminski

Stephen Gran schrieb:

On Tue, Jul 25, 2006 at 12:07:25PM +0200, Christoph Kaminski said:

+ create_new_user
++ getent group openldap

it hangs here!


Does that command hang for you when run normally?  Do you use
libnss-ldap?

P.S., please keep the bug log in the cc: list.

getent group openldap doesnt hang here but it hasnt any output

yes I use libnss-ldap.

--
MfG

Christoph Kaminski



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



Bug#378393: diff for 1.4.4.cvs20060709-2.1 NMU

2006-07-25 Thread Daniel Jacobowitz
On Tue, Jul 25, 2006 at 02:31:52PM +0200, Julien Danjou wrote:
 Package: dejagnu
 Version: 1.4.4.cvs20060709-2
 Severity: normal
 Tags: patch
 
 Hi,
 
 Attached is the diff for my dejagnu 1.4.4.cvs20060709-2.1 NMU.

Thanks, I've merged this in my local tree.

-- 
Daniel Jacobowitz
CodeSourcery


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



Bug#378839: [Pkg-bluetooth-maintainers] Bug#378839: bluez-pcmcia-support: udev support broken

2006-07-25 Thread Kay Sievers
On Tue, 2006-07-25 at 15:43 +0200, Felix Homann wrote:
 On Tuesday 25 July 2006 13:18, Kay Sievers wrote:
  PHYSDEVPATH and the 'device' link are both deprecated and will go away
  some day in the future, you better pass the values you want to use in
  your script down from udev with $sysfs{}. That is not dependent on a
  specific order of devices in sysfs.

 I've attached working (for me) rules+bluetooth.sh.  $sysfs{manf_id} and 
 $sysfs{card_id} are passed to bluetooth.sh.

Looks fine, and should not break, if something in sysfs changes, which
is nice.

Btw, you should be able to just do RUN+=bluetooth.sh, as udev will
look in /lib/udev/ if it does not start with a '/'.

Thanks,
Kay



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



Bug#379775: FTBFS: links object files twice

2006-07-25 Thread Martin Michlmayr
Package: rsplib
Version: 1.0.0-4
Severity: serious

This package fails to build in unstable:

 Automatic build of rsplib_1.0.0-4 on usurper by sbuild/amd64 0.46
 Build started at 20060724-0842
 ...
 /bin/sh ../libtool --mode=link g++  -g -O2 -I/usr/include/glib-1.2 
 -I/usr/lib/glib/include -D_REENTRANT -DINCLUDE_LEAFLINKEDREDBLACKTREE 
 -DUSE_LEAFLINKEDREDBLACKTREE -Wall -g -DLINUX -D_BSD_SOURCE -D_REENTRANT 
 -D_THREAD_SAFE -O0 -g   -o libcppthread.la -rpath /usr/lib  mutex.lo 
 thread.lo  
 g++ -shared /usr/lib/../lib64/crti.o 
 /usr/lib/gcc-snapshot/lib/gcc/x86_64-linux-gnu/4.2.0/crtbeginS.o  
 .libs/mutex.o .libs/thread.o  -L/usr/lib -L/lib 
 -L/usr/lib/gcc-snapshot/lib/gcc/x86_64-linux-gnu/4.2.0 
 -L/usr/lib/gcc-snapshot/lib/gcc/x86_64-linux-gnu/4.2.0/../../../../lib64 
 -L/lib/../lib64 -L/usr/lib/../lib64 
 -L/usr/lib/gcc-snapshot/lib/gcc/x86_64-linux-gnu/4.2.0/../../.. 
 /usr/lib/gcc-snapshot/lib64/libstdc++.so -lm -lc -lgcc_s 
 /usr/lib/gcc-snapshot/lib/gcc/x86_64-linux-gnu/4.2.0/crtendS.o 
 /usr/lib/../lib64/crtn.o  -o .libs/libcppthread.so.0.0.0
 /usr/lib/../lib64/crti.o: In function `_init':
 /home/aurel32/tmp/amd64/glibc-2.3.6/build-tree/amd64-libc/csu/crti.S:25: 
 multiple definition of `_init'
 /usr/lib/../lib64/crti.o:/home/aurel32/tmp/amd64/glibc-2.3.6/build-tree/amd64-libc/csu/crti.S:25:
  first defined here
 /usr/lib/../lib64/crti.o: In function `_fini':
 /home/aurel32/tmp/amd64/glibc-2.3.6/build-tree/amd64-libc/csu/crti.S:37: 
 multiple definition of `_fini'
 /usr/lib/../lib64/crti.o:/home/aurel32/tmp/amd64/glibc-2.3.6/build-tree/amd64-libc/csu/crti.S:37:
  first defined here
 /usr/lib/gcc-snapshot/lib/gcc/x86_64-linux-gnu/4.2.0/crtbeginS.o:(.data.rel+0x0):
  multiple definition of `__dso_handle'
 /usr/lib/gcc-snapshot/lib/gcc/x86_64-linux-gnu/4.2.0/crtbeginS.o:(.data.rel+0x0):
  first defined here
 collect2: ld returned 1 exit status
 make[2]: *** [libcppthread.la] Error 1

-- 
Martin Michlmayr
http://www.cyrius.com/


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



Bug#372782: version 1.2.1-4 solves my problems

2006-07-25 Thread Eike Sauer
Version 1.2.1-4 solved my printing problems.
(But please mind that I'm not the original bug reporter.)


pgphOSKHTrDCe.pgp
Description: PGP signature


Bug#284770: Bug #284770: dbmail: FTBFS (amd64/gcc-4.0): invalid lvalue in assignment

2006-07-25 Thread Paul J Stevens
(cc Francisco)

Julien,

I've just released dbmail-2.1.7 and have uploaded i386 and amd64
packages to my deb repo. The packages are lintian clean, and I'm quite
happy with their state. All that remains tbd are some debconf cleanups.

I've asked my sponsor Francisco Lovergine to vet the latest package set,
and upload them if he's satisfied.

Personally, the only obstacle I see is their dependency on a library
that's not yet in debian (libsieve.sf.net). But I've also prepared
packages for those that will close the related ITP (#325086) and have
approached the owner of that ticket.


Julien Danjou wrote:
 On Sun, May 14, 2006 at 07:02:42PM +0200, Paul J Stevens wrote:
 We really need this bug to be fixed soon.
 dbmail-2.2 is imminent. And the packages I have prepared for that
 release address all concerns my sponsor raised (hopefully). Expect an
 upload within the next three or four weeks.
 
 Time's out. Any news ?
 
 Cheers,

-- 
  
  Paul Stevens  paul at nfg.nl
  NET FACILITIES GROUP GPG/PGP: 1024D/11F8CD31
  The Netherlandshttp://www.nfg.nl


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



Bug#375477: Possibly fixed by new cups upload

2006-07-25 Thread Joaquim Ortega
The recent upload of cupsys version  1.2.1-4 solved a problem (Bug#373839) 
that shares the same symptoms as this bug. Please check that whether the new 
packages solve the problem (the packages will hit testing in three days).
Regards,
Quim


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



Bug#379648: csound: There are some files with a license not DFSG compatible

2006-07-25 Thread Hans Fugal
From README.Debian:

  The scansyn and scansynx opcodes have a license incompatible with the
  Debian Free Software Guidelines. They have therefore been omitted from
  this build of Csound.

If the files sneaked back into the source tarball somehow then it was my
mistake. 

On Mon, 24 Jul 2006 at 20:02 +0200, Roberto Gordo Saez wrote:
 Package: csound
 Version: 1:4.23f13-1
 Severity: serious
 Justification: Policy 2.2.1
 
 
 csound originally had a restrictive license allowing educational and
 research purposes only. Back on 2003 there was an effort to relicense
 everything in csound as GNU LGPL:
 
 http://lists.debian.org/debian-devel/2003/07/msg00621.html
 
 csound is now included in Debian main, but the copyright file in the
 package does mention the old incompatible license for at least 4 source
 files.
 
 I've verified that this notice is actually included on upstream source
 files, so it appears that there are some files not licensed under LGPL,
 or maybe it is just a mistake and forgot to update the notices when
 relicensing. I hope it is because of the second case, but it should be
 clarified anyways.
 
 This is the relevant excerpt of /usr/share/doc/csound/copyright:
 
 scansyn.c
 scansyn.h
 scansynx.c
 scansynx.h
 /* Scanned Synthesis Opcodes:
scansyn.c, scansyn.csd, scansyn.h and related files
are Copyright, 1999 by Interval Research.
Coded by Paris Smaragdis
From an algorithm by Bill Verplank, Max Mathews and Rob Shaw
 
Permission to use, copy, or modify these programs and their documentation
for educational and research purposes only and without fee is hereby
 [...]
 

-- 
Hans Fugal ; http://hans.fugal.net
 
There's nothing remarkable about it. All one has to do is hit the 
right keys at the right time and the instrument plays itself.
-- Johann Sebastian Bach


signature.asc
Description: Digital signature


Bug#378839: [Pkg-bluetooth-maintainers] Bug#378839: bluez-pcmcia-support: udev support broken

2006-07-25 Thread Felix Homann
On Tuesday 25 July 2006 13:18, Kay Sievers wrote:
 PHYSDEVPATH and the 'device' link are both deprecated and will go away
 some day in the future, you better pass the values you want to use in
 your script down from udev with $sysfs{}. That is not dependent on a
 specific order of devices in sysfs.

 Kay

Thanks,

I've attached working (for me) rules+bluetooth.sh.  $sysfs{manf_id} and 
$sysfs{card_id} are passed to bluetooth.sh.

Kind regards,

Felix
## PCMCIA-Cards 
# Brain Boxes BL-620 Bluetooth Adapter
SUBSYSTEM==tty, BUS==pcmcia, SYSFS{prod_id1}==Brain Boxes, 
SYSFS{prod_id2}==Bluetooth PC Card, RUN+=/lib/udev/bluetooth.sh 
$sysfs{manf_id} $sysfs{card_id}
# Xircom CreditCard Bluetooth Adapter
SUBSYSTEM==tty, BUS==pcmcia, SYSFS{prod_id1}==Xircom, 
SYSFS{prod_id3}==CBT, RUN+=/lib/udev/bluetooth.sh $sysfs{manf_id} 
$sysfs{card_id}
# Xircom RealPort2 Bluetooth Adapter
SUBSYSTEM==tty, BUS==pcmcia, SYSFS{prod_id1}==Xircom, 
SYSFS{prod_id3}==CBT, RUN+=/lib/udev/bluetooth.sh $sysfs{manf_id} 
$sysfs{card_id}
# IBM Bluetooth PC Card II
SUBSYSTEM==tty, BUS==pcmcia, SYSFS{prod_id1}==IBM, 
SYSFS{prod_id2}==Bluetooth PC Card II, RUN+=/lib/udev/bluetooth.sh 
$sysfs{manf_id} $sysfs{card_id}
# TDK Bluetooth PC Card
SUBSYSTEM==tty, BUS==pcmcia, SYSFS{prod_id1}==TDK, 
SYSFS{prod_id2}==Bluetooth PC Card II, RUN+=/lib/udev/bluetooth.sh 
$sysfs{manf_id} $sysfs{card_id}
# AmbiCom BT2000C Bluetooth PC/CF Card
SUBSYSTEM==tty, BUS==pcmcia, SYSFS{prod_id1}==AmbiCom BT2000C, 
SYSFS{prod_id2}==Bluetooth PC/CF Card, RUN+=/lib/udev/bluetooth.sh 
$sysfs{manf_id} $sysfs{card_id}
# COM One Platinium Bluetooth PC Card
SUBSYSTEM==tty, BUS==pcmcia, SYSFS{prod_id1}==COM1 SA, 
SYSFS{prod_id2}==MC310 CARD, RUN+=/lib/udev/bluetooth.sh $sysfs{manf_id} 
$sysfs{card_id}
# Sphinx PICO Card
SUBSYSTEM==tty, BUS==pcmcia, SYSFS{prod_id1}==SPHINX, 
SYSFS{prod_id2}==BT-CARD, RUN+=/lib/udev/bluetooth.sh $sysfs{manf_id} 
$sysfs{card_id}
# H-Soft blue+Card
SUBSYSTEM==tty, BUS==pcmcia, SYSFS{prod_id1}==H-Soft, 
SYSFS{prod_id2}==Blue+CARD, RUN+=/lib/udev/bluetooth.sh $sysfs{manf_id} 
$sysfs{card_id}
# Compaq iPAQ Bluetooth Sleeve
SUBSYSTEM==tty, BUS==pcmcia, SYSFS{prod_id1}==CF CARD, 
SYSFS{prod_id2}==GENERIC, RUN+=/lib/udev/bluetooth.sh $sysfs{manf_id} 
$sysfs{card_id}
# Zoom Bluetooth Card
# Sitecom CN-504 Card
SUBSYSTEM==tty, BUS==pcmcia, SYSFS{prod_id1}==PCMCIA, 
SYSFS{prod_id2}==Bluetooth Card, RUN+=/lib/udev/bluetooth.sh $sysfs{manf_id} 
$sysfs{card_id}


#
# dtl1_cs
#
# card Nokia Bluetooth Card
SUBSYSTEM==tty, BUS==pcmcia, SYSFS{prod_id1}==Nokia Mobile Phones, 
SYSFS{prod_id2}==DTL-1, RUN+=/lib/udev/bluetooth.sh $sysfs{manf_id} 
$sysfs{card_id}
SUBSYSTEM==tty, BUS==pcmcia, SYSFS{prod_id1}==Nokia Mobile Phones, 
SYSFS{prod_id2}==DTL-4, RUN+=/lib/udev/bluetooth.sh $sysfs{manf_id} 
$sysfs{card_id}
# Socket Bluetooth Card
SUBSYSTEM==tty, BUS==pcmcia, SYSFS{prod_id1}==Socket, 
SYSFS{prod_id2}==CF+ Personal Network Card, RUN+=/lib/udev/bluetooth.sh 
$sysfs{manf_id} $sysfs{card_id}


#
# bt3c_cs
#

# 3Com Bluetooth PC Card
SUBSYSTEM==tty, BUS==pcmcia, SYSFS{prod_id1}==3COM, 
SYSFS{prod_id3}==Bluetooth PC Card, RUN+=/lib/udev/bluetooth.sh 
$sysfs{manf_id} $sysfs{card_id}

#
# bluecard_cs
#

# LSE041 Bluetooth PC Card
SUBSYSTEM==tty, BUS==pcmcia, SYSFS{prod_id1}==BlueCard, 
SYSFS{prod_id2}==LSE041, RUN+=/lib/udev/bluetooth.sh $sysfs{manf_id} 
$sysfs{card_id}
# LSE039 Bluetooth Compact Flash Card
SUBSYSTEM==tty, BUS==pcmcia, SYSFS{prod_id1}==WSS, 
SYSFS{prod_id2}==LSE039, RUN+=/lib/udev/bluetooth.sh $sysfs{manf_id} 
$sysfs{card_id}
# LSE139 Bluetooth Compact Flash Card
SUBSYSTEM==tty, BUS==pcmcia, SYSFS{prod_id1}==BTCFCARD, 
SYSFS{prod_id2}==LSE139, RUN+=/lib/udev/bluetooth.sh $sysfs{manf_id} 
$sysfs{card_id}


#
# bt950_cs
#

# AmbiCom BT2000E Bluetooth Card
SUBSYSTEM==tty, BUS==pcmcia, SYSFS{prod_id1}==AmbiCom,Inc, 
SYSFS{prod_id2}==BT2000E, RUN+=/lib/udev/bluetooth.sh $sysfs{manf_id} 
$sysfs{card_id}
# Pretec BT2000E Bluetooth Card
SUBSYSTEM==tty, BUS==pcmcia, SYSFS{prod_id1}==Pretec, 
SYSFS{prod_id2}==BT2000E, RUN+=/lib/udev/bluetooth.sh $sysfs{manf_id} 
$sysfs{card_id}
# Billionton Bluetooth Card
SUBSYSTEM==tty, BUS==pcmcia, SYSFS{prod_id1}==Compact Flash, 
SYSFS{prod_id2}==Bluetooth Card, RUN+=/lib/udev/bluetooth.sh $sysfs{manf_id} 
$sysfs{card_id}


#
# btuart_cs
#

# Cyber-blue Compact Flash Card
SUBSYSTEM==tty, BUS==pcmcia, SYSFS{prod_id1}==BT, SYSFS{prod_id2}==, 
SYSFS{prod_id3}==, SYSFS{prod_id4}==, RUN+=/lib/udev/bluetooth.sh 
$sysfs{manf_id} $sysfs{card_id}



bluetooth.sh
Description: application/shellscript


Bug#379628: Frans forgot to send the mail to [EMAIL PROTECTED]

2006-07-25 Thread David Martínez Moreno
severity 379628 important
thanks for the fish

Now the severity is correct.


Ender.
-- 
Network engineer
Debian Developer


pgpkQYGnaZkQc.pgp
Description: PGP signature


Processed: Frans forgot to send the mail to [EMAIL PROTECTED]

2006-07-25 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 severity 379628 important
Bug#379628: ntfsresize: resizing a Vista NTFS partition leads to corrupted 
partition
Severity set to `important' from `critical'

 thanks for the fish
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#379728: [Pkg-openldap-devel] Bug#379728: slapd: upgrade to 2.3.24-2 hangs

2006-07-25 Thread Matthijs Mohlmann

Christoph Kaminski wrote:

Stephen Gran schrieb:

On Tue, Jul 25, 2006 at 12:07:25PM +0200, Christoph Kaminski said:

+ create_new_user
++ getent group openldap

it hangs here!


Does that command hang for you when run normally?  Do you use
libnss-ldap?

P.S., please keep the bug log in the cc: list.

getent group openldap doesnt hang here but it hasnt any output

yes I use libnss-ldap.



Ok, the problem is the following: (I would get the same trouble on my 
production systems if I upgrade them, but they're running Sarge)


upgrade procedure:
 - stop slapd
 - check if user exists (including group) getent
 - adduser if it doesn't exist
 - standard procedure to upgrade a database.

At the moment it checks for the user the LDAP database is down (I assume 
that libnss-ldap is using the database at localhost) which causes getent 
group openldap to hang.


Solution:
Move the checking code to the preinst before stopping slapd, add a flag 
to /var/lib/slapd that the user exist or not. And create the user 
according to that in the postinst. (Or add the user in the preinst too)


Until someone comes up with a better solution, I'll implement that 
tonight and hopefully my sponsor is available to upload.


Regards,

Matthijs Mohlmann




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



Processed: severity of 379621 is important

2006-07-25 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.9.20
 severity 379621 important
Bug#379621: libnss-db: FTBFS: bashisms in build scripts
Severity set to `important' from `serious'


End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#378319: marked as done (maxdb-server: init.d scripts are using bashisms)

2006-07-25 Thread Debian Bug Tracking System
Your message dated Tue, 25 Jul 2006 07:47:32 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#378319: fixed in maxdb-7.5.00 7.5.00.34-3
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
Package: maxdb-server
Version: 7.5.00.34-2
Severity: serious
Tags: patch
Justification: Policy 10.4


The start/stop-scripts for maxdb-server do not work if your /bin/sh
is linked to /bin/dash.

--- /etc/init.d/maxdb-server.orig   2006-07-15 11:17:15.0 +0200
+++ /etc/init.d/maxdb-server2006-07-15 11:17:56.0 +0200
@@ -24,7 +24,7 @@
 # if dbmcli is not installed then we cannot start anything
 test -x $DBMCLI -a -x $DBSTARTCMD -a -x $DBSTOPCMD || exit 0
 
-function checkNPTL()
+checkNPTL()
 {
 ARCH=`uname -m`
 case $ARCH in
@@ -50,7 +50,7 @@
 fi
 }
 
-function getDbInfo()
+getDbInfo()
 {
 database=`cut -d: -f1 EOF
 $1
--- /etc/init.d/maxdb-xserver.orig  2006-07-15 11:17:09.0 +0200
+++ /etc/init.d/maxdb-xserver   2006-07-15 11:18:17.0 +0200
@@ -18,7 +18,7 @@
 
 set -e
 
-function checkNPTL()
+checkNPTL()
 {
 ARCH=`uname -m`
 case $ARCH in

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

Versions of packages maxdb-server depends on:
ii  adduser   3.92   Add and remove users and groups
ii  dpkg  1.13.22package maintenance system for Deb
ii  libc6 2.3.6-15   GNU C Library: Shared libraries
ii  libgcc1   1:4.1.1-8  GCC support library
ii  libstdc++64.1.1-8The GNU Standard C++ Library v3

Versions of packages maxdb-server recommends:
pn  maxdb-server-7.5.00   none (no description available)

-- no debconf information

---End Message---
---BeginMessage---
Source: maxdb-7.5.00
Source-Version: 7.5.00.34-3

We believe that the bug you reported is fixed in the latest version of
maxdb-7.5.00, which is due to be installed in the Debian FTP archive:

libsqldbc75-dev_7.5.00.34-3_i386.deb
  to pool/main/m/maxdb-7.5.00/libsqldbc75-dev_7.5.00.34-3_i386.deb
libsqldbc75_7.5.00.34-3_i386.deb
  to pool/main/m/maxdb-7.5.00/libsqldbc75_7.5.00.34-3_i386.deb
libsqlod75-dev_7.5.00.34-3_i386.deb
  to pool/main/m/maxdb-7.5.00/libsqlod75-dev_7.5.00.34-3_i386.deb
libsqlod75_7.5.00.34-3_i386.deb
  to pool/main/m/maxdb-7.5.00/libsqlod75_7.5.00.34-3_i386.deb
maxdb-7.5.00_7.5.00.34-3.diff.gz
  to pool/main/m/maxdb-7.5.00/maxdb-7.5.00_7.5.00.34-3.diff.gz
maxdb-7.5.00_7.5.00.34-3.dsc
  to pool/main/m/maxdb-7.5.00/maxdb-7.5.00_7.5.00.34-3.dsc
maxdb-dbanalyzer_7.5.00.34-3_i386.deb
  to pool/main/m/maxdb-7.5.00/maxdb-dbanalyzer_7.5.00.34-3_i386.deb
maxdb-dbmcli_7.5.00.34-3_i386.deb
  to pool/main/m/maxdb-7.5.00/maxdb-dbmcli_7.5.00.34-3_i386.deb
maxdb-loadercli_7.5.00.34-3_i386.deb
  to pool/main/m/maxdb-7.5.00/maxdb-loadercli_7.5.00.34-3_i386.deb
maxdb-lserver_7.5.00.34-3_i386.deb
  to pool/main/m/maxdb-7.5.00/maxdb-lserver_7.5.00.34-3_i386.deb
maxdb-server-7.5.00_7.5.00.34-3_i386.deb
  to pool/main/m/maxdb-7.5.00/maxdb-server-7.5.00_7.5.00.34-3_i386.deb
maxdb-server-dbg-7.5.00_7.5.00.34-3_i386.deb
  to pool/main/m/maxdb-7.5.00/maxdb-server-dbg-7.5.00_7.5.00.34-3_i386.deb
maxdb-server_7.5.00.34-3_i386.deb
  to pool/main/m/maxdb-7.5.00/maxdb-server_7.5.00.34-3_i386.deb
maxdb-sqlcli_7.5.00.34-3_i386.deb
  to pool/main/m/maxdb-7.5.00/maxdb-sqlcli_7.5.00.34-3_i386.deb
maxdb-webtools_7.5.00.34-3_i386.deb
  to pool/main/m/maxdb-7.5.00/maxdb-webtools_7.5.00.34-3_i386.deb
python-maxdb-loader_7.5.00.34-3_i386.deb
  to pool/main/m/maxdb-7.5.00/python-maxdb-loader_7.5.00.34-3_i386.deb
python-maxdb_7.5.00.34-3_i386.deb
  to pool/main/m/maxdb-7.5.00/python-maxdb_7.5.00.34-3_i386.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Martin Kittel [EMAIL PROTECTED] (supplier of updated maxdb-7.5.00 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Bug#378839: [Pkg-bluetooth-maintainers] Bug#378839: bluez-pcmcia-support: udev support broken

2006-07-25 Thread Marcel Holtmann
Hi,

   PHYSDEVPATH and the 'device' link are both deprecated and will go away
   some day in the future, you better pass the values you want to use in
   your script down from udev with $sysfs{}. That is not dependent on a
   specific order of devices in sysfs.
 
  I've attached working (for me) rules+bluetooth.sh.  $sysfs{manf_id} and 
  $sysfs{card_id} are passed to bluetooth.sh.
 
 Looks fine, and should not break, if something in sysfs changes, which
 is nice.
 
 Btw, you should be able to just do RUN+=bluetooth.sh, as udev will
 look in /lib/udev/ if it does not start with a '/'.

this is nice, but there is no need to run bluetooth.sh on non-serial
based Bluetooth cards like the Nokia DTL1 for example. They work
perfectly fine without any additional udev rule.

I also don't like that bluetooth.sh tries to run /etc/init.d/bluetooth,
because this should not be a task of an udev script. Either Bluetooth is
enabled to be started a system boot or not.

The other thing is that this is not Debian specific. So why does nobody
tried to start an upstream discussion on bluez-devel or linux-hotplug
mailing list.

Regards

Marcel




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



Bug#263783: debpartial-mirror: consider allowing into etch

2006-07-25 Thread Vagrant Cascadian
Package: debpartial-mirror
Followup-For: Bug #263783
Version: 0.2.92

i tried debpartial-mirror with both etch and sid, and it seems to be
working well. 

what additional features, testing, etc. do we need to consider closing 
this bug?

it would be really nice to have debpartial-mirror in etch :)

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

Versions of packages debpartial-mirror depends on:
ii  python2.3.5-11   An interactive high-level object-o
ii  python-apt0.6.18 Python interface to libapt-pkg
ii  python-cdd0.0.4  library to make easier to build CD
ii  python-central0.5.1  register and build utility for Pyt
ii  python-pycurl 7.15.4-1   Python bindings to libcurl


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



Bug#378305: marked as done ('internal consistency failure' on i386)

2006-07-25 Thread Debian Bug Tracking System
Your message dated Tue, 25 Jul 2006 07:47:32 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#378305: fixed in maxdb-7.5.00 7.5.00.34-3
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
Package: maxdb-7.5.00
Version: 7.5.00.34-2
Severity: serious

Hello,

There was a problem while autobuilding your package:

 Automatic build of maxdb-7.5.00_7.5.00.34-2 on avidan by sbuild/i386 0.48
 Build started at 20060715-0428
 **
...
 vpr03-w   fast 
 `-mcpu=' is deprecated. Use `-mtune=' or '-march=' instead.
 vpr03c-w.c fast 
 `-mcpu=' is deprecated. Use `-mtune=' or '-march=' instead.
 vpr03cac   
 vpr03cac-w fast 
 `-mcpu=' is deprecated. Use `-mtune=' or '-march=' instead.
 vpr03sc-w fast 
 `-mcpu=' is deprecated. Use `-mtune=' or '-march=' instead.
 vpr04c-w.c fast 
 `-mcpu=' is deprecated. Use `-mtune=' or '-march=' instead.
 vpr08-w   fast 
 `-mcpu=' is deprecated. Use `-mtune=' or '-march=' instead.
 vpr08trace.h  
 vpr08trace-w.c fast 
 `-mcpu=' is deprecated. Use `-mtune=' or '-march=' instead.
 vpr10-w   fast 
 `-mcpu=' is deprecated. Use `-mtune=' or '-march=' instead.
 vpr10c.c  fast 
 `-mcpu=' is deprecated. Use `-mtune=' or '-march=' instead.
 vpr11-w   fast 
 `-mcpu=' is deprecated. Use `-mtune=' or '-march=' instead.
 vpr12-w   fast 
 `-mcpu=' is deprecated. Use `-mtune=' or '-march=' instead.
 vpr15-w   fast 
 `-mcpu=' is deprecated. Use `-mtune=' or '-march=' instead.
 vpr09Config.h  
 vpr09Config.c fast 
 `-mcpu=' is deprecated. Use `-mtune=' or '-march=' instead.
 libcpc-odbc.lib fast 
 `-mcpu=' is deprecated. Use `-mtune=' or '-march=' instead.
 'libsqlod.lib' not made because of dependency errors 
 heo130.h   
 veo130.c  fast 
 `-mcpu=' is deprecated. Use `-mtune=' or '-march=' instead.
 libsqlrte1.lib fast 
 vsp91 fast 
 `-mcpu=' is deprecated. Use `-mtune=' or '-march=' instead.
 libsqlrte2.lib fast 
 libsqlrte.lib fast 
 `-mcpu=' is deprecated. Use `-mtune=' or '-march=' instead.
 'libsqlod.dld' not made because of dependency errors 
 15-07-06 02:50:51 endoflibsqlod.dld   fast 
 make: *** [build-shared-libs-stamp] Error 2
 **
 Build finished at 20060715-0450
 FAILED [dpkg-buildpackage died]

-- 
Julien Danjou
.''`.  Debian Developer
: :' : http://julien.danjou.info
`. `'  http://people.debian.org/~acid
  `-   9A0D 5FD9 EB42 22F6 8974  C95C A462 B51E C2FE E5CD


signature.asc
Description: Digital signature
---End Message---
---BeginMessage---
Source: maxdb-7.5.00
Source-Version: 7.5.00.34-3

We believe that the bug you reported is fixed in the latest version of
maxdb-7.5.00, which is due to be installed in the Debian FTP archive:

libsqldbc75-dev_7.5.00.34-3_i386.deb
  to pool/main/m/maxdb-7.5.00/libsqldbc75-dev_7.5.00.34-3_i386.deb
libsqldbc75_7.5.00.34-3_i386.deb
  to pool/main/m/maxdb-7.5.00/libsqldbc75_7.5.00.34-3_i386.deb
libsqlod75-dev_7.5.00.34-3_i386.deb
  to pool/main/m/maxdb-7.5.00/libsqlod75-dev_7.5.00.34-3_i386.deb
libsqlod75_7.5.00.34-3_i386.deb
  to pool/main/m/maxdb-7.5.00/libsqlod75_7.5.00.34-3_i386.deb
maxdb-7.5.00_7.5.00.34-3.diff.gz
  to pool/main/m/maxdb-7.5.00/maxdb-7.5.00_7.5.00.34-3.diff.gz
maxdb-7.5.00_7.5.00.34-3.dsc
  to pool/main/m/maxdb-7.5.00/maxdb-7.5.00_7.5.00.34-3.dsc
maxdb-dbanalyzer_7.5.00.34-3_i386.deb
  to pool/main/m/maxdb-7.5.00/maxdb-dbanalyzer_7.5.00.34-3_i386.deb
maxdb-dbmcli_7.5.00.34-3_i386.deb
  to pool/main/m/maxdb-7.5.00/maxdb-dbmcli_7.5.00.34-3_i386.deb
maxdb-loadercli_7.5.00.34-3_i386.deb
  to pool/main/m/maxdb-7.5.00/maxdb-loadercli_7.5.00.34-3_i386.deb
maxdb-lserver_7.5.00.34-3_i386.deb
  to pool/main/m/maxdb-7.5.00/maxdb-lserver_7.5.00.34-3_i386.deb
maxdb-server-7.5.00_7.5.00.34-3_i386.deb
  to pool/main/m/maxdb-7.5.00/maxdb-server-7.5.00_7.5.00.34-3_i386.deb
maxdb-server-dbg-7.5.00_7.5.00.34-3_i386.deb
  to pool/main/m/maxdb-7.5.00/maxdb-server-dbg-7.5.00_7.5.00.34-3_i386.deb
maxdb-server_7.5.00.34-3_i386.deb
  to pool/main/m/maxdb-7.5.00/maxdb-server_7.5.00.34-3_i386.deb
maxdb-sqlcli_7.5.00.34-3_i386.deb
  to pool/main/m/maxdb-7.5.00/maxdb-sqlcli_7.5.00.34-3_i386.deb
maxdb-webtools_7.5.00.34-3_i386.deb
  to pool/main/m/maxdb-7.5.00/maxdb-webtools_7.5.00.34-3_i386.deb
python-maxdb-loader_7.5.00.34-3_i386.deb
  to pool/main/m/maxdb-7.5.00/python-maxdb-loader_7.5.00.34-3_i386.deb
python-maxdb_7.5.00.34-3_i386.deb
  to pool/main/m/maxdb-7.5.00/python-maxdb_7.5.00.34-3_i386.deb



A 

Bug#284770: Bug #284770: dbmail: FTBFS (amd64/gcc-4.0): invalid lvalue in assignment

2006-07-25 Thread Thijs Kinkhorst
Hello Paul,

On Tue, 2006-07-25 at 16:01 +0200, Paul J Stevens wrote:
 I've just released dbmail-2.1.7 and have uploaded i386 and amd64
 packages to my deb repo. The packages are lintian clean, and I'm quite
 happy with their state. All that remains tbd are some debconf cleanups.

I've taken a quick look at the packages and they look fine. There's two
things I think you need to change before you upload:

1) The changelog mentions a long list of bugs closed. That's not
appreciated, better mark every bug separately. Like this:

  * New upstream release.
  * Correctly install init scripts (Closes: #235026)
  * Fixes build failures (Closes: #284770, #376381).
  * Add debconf-2.0 alternate (Closes: #331793).
  * Update MySQL dependency (Closes: #358832).
  * Add debconf translations (Closes: #310183, #308204, #310182,
#336044).


2) You really should add LSB dependency information to the init script,
that's not that difficult:
http://wiki.debian.org/LSBInitScripts

If you need another sponsor you can ask me if frankie is busy or on
holiday.


thanks,
Thijs


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


Processed: closing 273871

2006-07-25 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.9.20
 close 273871
Bug#273871: libslc violates library policies
'close' is deprecated; see http://www.debian.org/Bugs/Developer#closing.
Bug closed, send any further explanations to Ari Pollak [EMAIL PROTECTED]


End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Processed: block 333907 with 331630

2006-07-25 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.9.20
 block 333907 with 331630
Bug#333907: FTBFS: build-depends on a non-existing package
Was not blocked by any bugs.
Blocking bugs of 333907 added: 331630, 328889


End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#378839: [Pkg-bluetooth-maintainers] Bug#378839: bluez-pcmcia-support: udev support broken

2006-07-25 Thread Felix Homann
On Tuesday 25 July 2006 17:12, Marcel Holtmann wrote:
 this is nice, but there is no need to run bluetooth.sh on non-serial
 based Bluetooth cards like the Nokia DTL1 for example. They work
 perfectly fine without any additional udev rule.

The rules are essentially taken from SuSE, I don't know where they got them 
from.

 I also don't like that bluetooth.sh tries to run /etc/init.d/bluetooth,
 because this should not be a task of an udev script. Either Bluetooth is
 enabled to be started a system boot or not.

Agreed!

 The other thing is that this is not Debian specific. So why does nobody
 tried to start an upstream discussion on bluez-devel or linux-hotplug
 mailing list.

Very good point!!!


Kind regards,

Felix


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



Bug#331630: diff for 0.9.12-4.3 NMU

2006-07-25 Thread Julien Danjou
Package: silc-toolkit
Version: 0.9.12-4.2
Severity: normal
Tags: patch

Hi,

Attached is the diff for my silc-toolkit 0.9.12-4.3 NMU.

-- 
Julien Danjou
// Λ̊ [EMAIL PROTECTED]   http://julien.danjou.info
// 9A0D 5FD9 EB42 22F6 8974  C95C A462 B51E C2FE E5CD
// And thinking so much differently.
reverted:
--- silc-toolkit-0.9.12/debian/libsilc.install
+++ silc-toolkit-0.9.12.orig/debian/libsilc.install
@@ -1,2 +0,0 @@
-usr/lib/*.so*
-usr/lib/silc/*.so*
diff -u silc-toolkit-0.9.12/debian/control silc-toolkit-0.9.12/debian/control
--- silc-toolkit-0.9.12/debian/control
+++ silc-toolkit-0.9.12/debian/control
@@ -3,7 +3,7 @@
 Maintainer: Tamas SZERB [EMAIL PROTECTED]
 Section: devel
 Build-Depends: debhelper (= 4.0.0), autotools-dev
-Standards-Version: 3.6.0
+Standards-Version: 3.7.2
 
 Package: libsilc-1.0-2-dev
 Section: libdevel
reverted:
--- silc-toolkit-0.9.12/debian/libsilc-dev.install
+++ silc-toolkit-0.9.12.orig/debian/libsilc-dev.install
@@ -1,5 +0,0 @@
-usr/include/silc/*.h
-usr/lib/*.a
-usr/lib/*.la
-usr/lib/pkgconfig/*.pc
-usr/share/doc/libsilc-dev/toolkit
diff -u silc-toolkit-0.9.12/debian/changelog 
silc-toolkit-0.9.12/debian/changelog
--- silc-toolkit-0.9.12/debian/changelog
+++ silc-toolkit-0.9.12/debian/changelog
@@ -1,3 +1,11 @@
+silc-toolkit (0.9.12-4.3) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix empty packages (Closes: #331630)
+  * Bump standards version
+
+ -- Julien Danjou [EMAIL PROTECTED]  Tue, 25 Jul 2006 17:50:00 +0200
+
 silc-toolkit (0.9.12-4.2) unstable; urgency=low
 
   * 0-day NMU to fix an RC bug.
diff -u silc-toolkit-0.9.12/config.sub silc-toolkit-0.9.12/config.sub
--- silc-toolkit-0.9.12/config.sub
+++ silc-toolkit-0.9.12/config.sub
@@ -3,7 +3,7 @@
 #   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
 #   2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
 
-timestamp='2005-07-08'
+timestamp='2006-02-23'
 
 # This file is (in principle) common to ALL GNU software.
 # The presence of a machine in this file suggests that SOME GNU software
@@ -119,8 +119,9 @@
 # Here we must recognize all the valid KERNEL-OS combinations.
 maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
 case $maybe_os in
-  nto-qnx* | linux-gnu* | linux-dietlibc | linux-uclibc* | uclinux-uclibc* | 
uclinux-gnu* | \
-  kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | storm-chaos* | os2-emx* | 
rtmk-nova*)
+  nto-qnx* | linux-gnu* | linux-dietlibc | linux-newlib* | linux-uclibc* | \
+  uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | 
netbsd*-gnu* | \
+  storm-chaos* | os2-emx* | rtmk-nova*)
 os=-$maybe_os
 basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
 ;;
@@ -171,6 +172,10 @@
-hiux*)
os=-hiuxwe2
;;
+   -sco6)
+   os=-sco5v6
+   basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
+   ;;
-sco5)
os=-sco3.2v5
basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
@@ -187,6 +192,10 @@
# Don't forget version if it is 3.2v4 or newer.
basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
;;
+   -sco5v6*)
+   # Don't forget version if it is 3.2v4 or newer.
+   basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
+   ;;
-sco*)
os=-sco3.2v2
basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
@@ -239,7 +248,7 @@
| h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \
| i370 | i860 | i960 | ia64 \
| ip2k | iq2000 \
-   | m32r | m32rle | m68000 | m68k | m88k | maxq | mcore \
+   | m32r | m32rle | m68000 | m68k | m88k | maxq | mb | microblaze | mcore 
\
| mips | mipsbe | mipseb | mipsel | mipsle \
| mips16 \
| mips64 | mips64el \
@@ -257,8 +266,9 @@
| mipsisa64sr71k | mipsisa64sr71kel \
| mipstx39 | mipstx39el \
| mn10200 | mn10300 \
-   | ms1 \
+   | mt \
| msp430 \
+   | nios | nios2 \
| ns16k | ns32k \
| or32 \
| pdp10 | pdp11 | pj | pjl \
@@ -286,6 +296,9 @@
;;
m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k)
;;
+   ms1)
+   basic_machine=mt-unknown
+   ;;
 
# We use `pc' rather than `unknown'
# because (1) that's what they normally are, and
@@ -336,8 +349,9 @@
| mipsisa64sr71k-* | mipsisa64sr71kel-* \
| mipstx39-* | mipstx39el-* \
| mmix-* \
-   | ms1-* \
+   | mt-* \
| msp430-* \
+   | nios-* | nios2-* \
| none-* | np1-* | ns16k-* | ns32k-* \
| orion-* \
| pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \
@@ -696,6 +710,9 @@
basic_machine=i386-pc
os=-msdos
;;
+   ms1-*)
+   basic_machine=`echo $basic_machine | sed -e 

Bug#375835: reassigning to kaffe

2006-07-25 Thread Mike O'Connor
reassign 375835 kaffe
thanks

The line the compilation of nice fails on is:

CLASSPATH=classes JAVA=kaffe -Dnice.inlined=classes-inline 
bin/nicec.bootstrap --exclude-runtime -d classes.old 
--sourcepath=stdlib.old:stdlib:src.old:src --classpath=classes -R 
nice.tools.repository

Which explictly calls kaffe.  If I try to execute this command with sun, or 
sablevm, or gij, this command succeeds, so it seems to be a problem with 
kaffee.  I'm reassigning.

thanks,
stew


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



Processed: Fixed in NMU of silc-toolkit 0.9.12-4.3

2006-07-25 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tag 331630 + fixed
Bug#331630: libsilc-1.0.2: Libraries missing
Tags were: patch
Bug#328889: libsilc-1.0-2 0.9.12-4.1 missing everything but 
/usr/share/doc/libsilc-1.0-2/*
Tags added: fixed

 quit
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Processed: reassigning to kaffe

2006-07-25 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 reassign 375835 kaffe
Bug#375835: nice: FTBFS (amd64+i386): java/lang/StackOverflowError
Bug reassigned from package `nice' to `kaffe'.

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#333907: patch and nmu

2006-07-25 Thread Julien Danjou
On Sat, Jul 15, 2006 at 10:25:50AM +0200, Julien Cristau wrote:
Hello,

 The only version of libsilc-1.0-2-dev in the archive seems to be
 0.9.12-4.2, so the versioned build-dependency makes silky unbuildable.

I just uploaded 0.9.12-4.3 which fix #331630.

So a binNMU of silky should fix #333907.

Cheers,
-- 
Julien Danjou
.''`.  Debian Developer
: :' : http://julien.danjou.info
`. `'  http://people.debian.org/~acid
  `-   9A0D 5FD9 EB42 22F6 8974  C95C A462 B51E C2FE E5CD


signature.asc
Description: Digital signature


Processed: severity of 379728 is normal

2006-07-25 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.9.20
  # hanging getent is not actually slapd's fault
 severity 379728 normal
Bug#379728: slapd: upgrade to 2.3.24-2 hangs
Severity set to `normal' from `grave'


End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#379775: [EMAIL PROTECTED]: Re: multiple definition of `_init']

2006-07-25 Thread Martin Michlmayr
FYI

- Forwarded message from Bastian Blank [EMAIL PROTECTED] -

From: Bastian Blank [EMAIL PROTECTED]
Subject: Re: multiple definition of `_init'
Date: Tue, 25 Jul 2006 14:15:18 +0200
To: debian-glibc@lists.debian.org
User-Agent: Mutt/1.5.11+cvs20060403
X-Spam-Status: No, score=-4.0 required=4.0 tests=AWL,IMPRONONCABLE_1,
LDOSUBSCRIBER,MURPHY_WRONG_WORD1,MURPHY_WRONG_WORD2 autolearn=no 
version=3.0.3

On Tue, Jul 25, 2006 at 01:30:34PM +0200, Martin Michlmayr wrote:
 While building rsplib, I get the following errors.  Is that an
 application or glibc problem?

Application. You can't link the same object files in more than one time.

 g++ -shared /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../lib64/crti.o 
 /usr/lib/gcc/x86_64-linux-gnu/4.1.2/crtbeginS.o  .libs/mutex.o .libs/thread.o 
  -L/usr/lib/gcc/x86_64-linux-gnu/4.1.2 
 -L/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../lib64 -L/lib/../lib64 
 -L/usr/lib/../lib64 -lstdc++ -lm -lc -lgcc_s 
 /usr/lib/gcc/x86_64-linux-gnu/4.1.2/crtendS.o 
 /usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../lib64/crtn.o  -o 
 .libs/libcppthread.so.0.0.0

It lists crtbeginS.o explicitely, which is already included into the
link list by gcc. Also the whole -L definitions looks pretty wrong. It
lists the default paths again.

Bastian

-- 
You!  What PLANET is this!
-- McCoy, The City on the Edge of Forever, stardate 3134.0



- End forwarded message -

-- 
Martin Michlmayr
http://www.cyrius.com/


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



Bug#379784: marked as done (tdsodbc: fails to install. says package broken. unmet )

2006-07-25 Thread Debian Bug Tracking System
Your message dated Tue, 25 Jul 2006 09:58:47 -0700
with message-id [EMAIL PROTECTED]
and subject line tdsodbc: fails to install. says package broken. unmet
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
Package: tdsodbc
Severity: grave
Justification: renders package unusable

not sure this isn't user error on my part, but it said to submit it as a
bug so i am.

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

---End Message---
---BeginMessage---
 not sure this isn't user error on my part, but it said to submit it as a
 bug so i am.

It is user errror of some form or another.  The dependencies of tdsodbc are
satisfiable in unstable and in testing, so something else on your system is
preventing the installation of odbcinst1debian1 (and the removal of
odbcinst1).

Please retry with apt-get install tdsodbc odbcinst1debian1 to further
identify the source of the trouble, and contact debian-user if you need
assistance beyond that.

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


Bug#379800: silc-toolkit: libsilc.so and libsilcclient.so should be in the -dev package

2006-07-25 Thread Julien Cristau
Package: silc-toolkit
Version: 0.9.12-4.3
Severity: serious
Justification: Policy 8.4

$ dpkg-deb --contents libsilc-1.0-2_0.9.12-4.3_i386.deb |grep 'so '
lrwxrwxrwx root/root 0 2006-07-25 18:07 ./usr/lib/libsilc.so - 
libsilc-1.0.so.2.1.0
lrwxrwxrwx root/root 0 2006-07-25 18:07 ./usr/lib/libsilcclient.so - 
libsilcclient-1.0.so.2.1.0

These files should not be in the shared library package, only in the
-dev.

Cheers,
Julien


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

-- 
Julien Cristau [EMAIL PROTECTED]
Ph.D Student  LIAFA - Universite Paris 7
http://liafa.jussieu.fr/~jcristau/


signature.asc
Description: Digital signature


Bug#378839: [Pkg-bluetooth-maintainers] Bug#378839: bluez-pcmcia-support: udev support broken

2006-07-25 Thread Filippo Giunchedi
On Tue, Jul 25, 2006 at 12:52:30PM +0200, Felix Homann wrote:
 On Tuesday 25 July 2006 11:12, Filippo Giunchedi wrote:
  what about the change from DEVPATH to PHYSDEVPATH Felix proposed in
  bluetooth.sh?
 
 Hi again,
 
 MANFID=`cat /sys/$PHYSDEVPATH/manf_id`,`cat /sys/$PHYSDEVPATH/card_id`
 
 and
 
 MANFID=`cat /sys/$DEVPATH/device/manf_id`,`cat /sys/$DEVPATH/device/card_id`
 
 seem to be equivalent in this setting. I don't know if either one is prefered 
 or deprecated, but I would now prefer the latter since it's simpler:
 
 $DEVPATH - /class/tty/ttyS2
 $PHYSDEVPATH -  /devices/pci:00/:00:1e.0/:06:01.0/0.0

okay, I've updated bluetooth.sh and bluez-pcmcia-support.udev again, do you mind
trying if it works as expected? Also can you paste the relevant udev database
entry for your card? searching the output of udevinfo -e might help.
Only the mapping for $DEVICENAME is left to figure out.

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

Date: Tuesday, 2002/10/22 - 08:09
dselect proves the existence of Satan. It's the worst part of Debian.


signature.asc
Description: Digital signature


Bug#366196: marked as done (libgnatprj4.1 needs prio optional in the override file)

2006-07-25 Thread Debian Bug Tracking System
Your message dated Tue, 25 Jul 2006 18:52:27 +0200
with message-id [EMAIL PROTECTED]
and subject line libgnatprj4.1 needs prio optional in the override file
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
Package: libgnatprj4.1
Version: 4.1.0-2
Severity: serious
Justification: Policy 2.5

priority standard libgnatprj4.1 depends on optional libgnat-4.1.
I don't think ada or ada libraries should be priority standard.


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

Versions of packages libgnatprj4.1 depends on:
ii  gcc-4.1-base  4.1.0-2The GNU Compiler Collection (base 
ii  libgnat-4.1   4.1.0-2Runtime library for GNU Ada applic
ii  libgnatvsn4.1 4.1.0-2GNU Ada compiler version library

libgnatprj4.1 recommends no packages.

-- no debconf information

---End Message---
---BeginMessage---
Agreed, closing this bug.

-- 
Ludovic Brenta (gnat maintainer).
---End Message---


Bug#379648: csound: There are some files with a license not DFSG compatible

2006-07-25 Thread Roberto Gordo Saez

On 7/25/06, Hans Fugal [EMAIL PROTECTED] wrote:

From README.Debian:

  The scansyn and scansynx opcodes have a license incompatible with the
  Debian Free Software Guidelines. They have therefore been omitted from
  this build of Csound.

If the files sneaked back into the source tarball somehow then it was my
mistake.


You are right, sorry, I've made a mistake.

I have checked the files in upstream source, not Debian source. Then
I've executed:
grep -r research purposes csound-4.23f13
against your Debian sources. Since grep returned some lines, I've
(incorrectly) concluded that those files were also contained on Debian
package.

Files are not there, so please, consider removing the notice from
copyright file. It does remain another strange thing, though. Now,
paying more attention to the output of grep, I see that scansyn and
scansynx files does not appear, but the notice is contained in two
other files instead: grain4.c and grain4.h. They contain both
licenses, the LGPL and the other non DFSG one (Why?)

Well, I think you can downgrade severity (or close, at your option)
this bug to avoid increasing the bug counter for etch release ;-)


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



Bug#379744: python-goopy: no python file in this package

2006-07-25 Thread Steve Langasek
On Tue, Jul 25, 2006 at 05:22:20PM +0530, Kumar Appaiah wrote:
 On Tue, Jul 25, 2006 at 06:23:17PM +0800, LI Daobing wrote:
  -- System Information:
  Debian Release: testing/unstable
   APT prefers unstable
   APT policy: (500, 'unstable')
  Architecture: amd64 (x86_64)
  Shell:  /bin/sh linked to /bin/bash
  Kernel: Linux 2.6.17-1-em64t-p4-smp
  Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
 
 Many thanks for the information. Unfortunately, I am not near my sid
 machine right now. Moreover, this upload was an NMU, so I haven't
 exactly checked it out.

Then let's look pointedly in the direction of the NMUer (cc:ed).

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


signature.asc
Description: Digital signature


Bug#310542: marked as done ('kernel-patch-adamantix' does not apply to any current sarge kernel)

2006-07-25 Thread Debian Bug Tracking System
Your message dated Tue, 25 Jul 2006 20:44:51 +0200
with message-id [EMAIL PROTECTED]
and subject line Removed
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
Package: kernel-patch-adamantix
Version: 1.7
Severity: grave

Dear Javier Fernandez-Sanguino Pen~a 

As reported in http://people.debian.org/~frankie/kernel-patches-checks.txt, 
kernel-patch-adamantix does not
apply clean to a current kernel-source. If you think this package is anyway 
useful at least with
an up-to-date vanilla kernel and sure that it apply properly, feel free to 
document this in the 
package and reduce the severity of this report, else this kernel-patch will be 
hinted for 
removing in sarge.

See also this ML thread about the issue:

http://lists.debian.org/debian-release/2005/05/msg01325.html

--
Francesco P. Lovergine

---End Message---
---BeginMessage---
This package has now been removed (RC buggy, unmaintained).
-- 
Martin Michlmayr
http://www.cyrius.com/
---End Message---


Bug#379752: marked as done (FTBFS: missing zlib1g-dev build-depends)

2006-07-25 Thread Debian Bug Tracking System
Your message dated Tue, 25 Jul 2006 11:32:16 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#379752: fixed in gst-plugins-bad0.10 0.10.3-2
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
Package: gst-plugins-bad0.10
Version: 0.10.3-1
Severity: serious

You're missing a build-depends on zlib1g-dev, or so it seems.

 Automatic build of gst-plugins-bad0.10_0.10.3-1 on usurper by sbuild/amd64 
 0.46
...
  gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../../gst-libs -I../../gst-libs 
 -pthread -I/usr/include/gstreamer-0.10 -I/usr/include/glib-2.0 
 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 -Wall -g 
 -DGST_DISABLE_DEPRECATED -g -O2 -MT libgstqtdemux_la-qtdemux.lo -MD -MP -MF 
 .deps/libgstqtdemux_la-qtdemux.Tpo -c qtdemux.c  -fPIC -DPIC -o 
 .libs/libgstqtdemux_la-qtdemux.o
 qtdemux.c:29:18: error: zlib.h: No such file or directory
 qtdemux.c: In function 'qtdemux_inflate':
 qtdemux.c:2037: error: 'z_stream' undeclared (first use in this function)
 qtdemux.c:2037: error: (Each undeclared identifier is reported only once
 qtdemux.c:2037: error: for each function it appears in.)
 qtdemux.c:2037: error: 'z' undeclared (first use in this function)
 qtdemux.c:2040: error: expected expression before ')' token
 qtdemux.c:2049: warning: implicit declaration of function 'inflateInit'
 qtdemux.c:2057: warning: implicit declaration of function 'inflate'
 qtdemux.c:2057: error: 'Z_SYNC_FLUSH' undeclared (first use in this function)
 qtdemux.c:2058: error: 'Z_OK' undeclared (first use in this function)
 qtdemux.c:2061: error: 'Z_STREAM_END' undeclared (first use in this function)
 make[4]: *** [libgstqtdemux_la-qtdemux.lo] Error 1
 make[4]: Leaving directory `/build/tbm/gst-plugins-bad0.10-0.10.3/gst/qtdemux'

-- 
Martin Michlmayr
http://www.cyrius.com/

---End Message---
---BeginMessage---
Source: gst-plugins-bad0.10
Source-Version: 0.10.3-2

We believe that the bug you reported is fixed in the latest version of
gst-plugins-bad0.10, which is due to be installed in the Debian FTP archive:

gst-plugins-bad0.10_0.10.3-2.diff.gz
  to pool/main/g/gst-plugins-bad0.10/gst-plugins-bad0.10_0.10.3-2.diff.gz
gst-plugins-bad0.10_0.10.3-2.dsc
  to pool/main/g/gst-plugins-bad0.10/gst-plugins-bad0.10_0.10.3-2.dsc
gstreamer0.10-plugins-bad_0.10.3-2_i386.deb
  to pool/main/g/gst-plugins-bad0.10/gstreamer0.10-plugins-bad_0.10.3-2_i386.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Joe Wreschnig [EMAIL PROTECTED] (supplier of updated gst-plugins-bad0.10 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 25 Jul 2006 11:46:05 -0500
Source: gst-plugins-bad0.10
Binary: gstreamer0.10-plugins-bad
Architecture: source i386
Version: 0.10.3-2
Distribution: unstable
Urgency: low
Maintainer: Joe Wreschnig [EMAIL PROTECTED]
Changed-By: Joe Wreschnig [EMAIL PROTECTED]
Description: 
 gstreamer0.10-plugins-bad - various GStreamer plugins
Closes: 379752
Changes: 
 gst-plugins-bad0.10 (0.10.3-2) unstable; urgency=low
 .
   * Build-Depend on zlib1g-dev. (Closes: #379752)
Files: 
 d3db79b8131d2f53bd8a64edc34ed83f 795 libs extra 
gst-plugins-bad0.10_0.10.3-2.dsc
 995827c1b6521028dcf596a00c9ac640 9323 libs extra 
gst-plugins-bad0.10_0.10.3-2.diff.gz
 be07a57c96b38f9c8eef048646d0d243 477264 libs extra 
gstreamer0.10-plugins-bad_0.10.3-2_i386.deb

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

iD8DBQFExmInTFkUq7Drx3cRAtoRAJ9AyxJNH1VGo688FIBo1DGXWMIxbwCcCEvA
jdjH3RLpbDRVDPFCNcluYp0=
=qnys
-END PGP SIGNATURE-

---End Message---


Bug#300525: marked as done (rsbac-admin: FTBFS: patches changed)

2006-07-25 Thread Debian Bug Tracking System
Your message dated Tue, 25 Jul 2006 20:45:19 +0200
with message-id [EMAIL PROTECTED]
and subject line Removed
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
Package: rsbac-admin
Version: 1.2.2-15
Severity: serious

Hi,

building the package rsbac-admin in a clean build environment
(with pbuilder) on i386 results in:

=
[...]
checking for strerror in -lcposix... no
checking for gcc... gcc
checking whether the C compiler (gcc  ) works... yes
checking whether the C compiler (gcc  ) is a cross-compiler... no
checking whether we are using GNU C... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ANSI C... none needed
checking how to run the C preprocessor... gcc -E
checking for ANSI C header files... yes
updating cache ./config.cache
creating ./config.status
creating Makefile
creating src/Makefile
creating rklogd-viewer/Makefile
creating man/Makefile
creating config.h
dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; 
using uid of process (1001)
dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; 
using uid of process (1001)
dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; 
using uid of process (1001)
dh_testdir
# Based on what selinux does to avoid providing the kernel-patch
# in the sources of the userland utilities
[ ! -d kernel-patch ]  mkdir kernel-patch
zcat /usr/src/kernel-patches/diffs/adamantix/adamantix-2.4.21.patch.gz |\
 perl debian/grep-filename-diff.pl rsbac | ( cd kernel-patch ; patch -p1 -s )
zcat: /usr/src/kernel-patches/diffs/adamantix/adamantix-2.4.21.patch.gz: No 
such file or directory
# This is a hack in order to build in the supported architectures
cd  kernel-patch/include/rsbac/  ln -s unistd-ppc.h unistd-powerpc.h
/bin/sh: line 0: cd: kernel-patch/include/rsbac/: No such file or directory
make: *** [kernel-patch-stamp] Error 1
=

Thanks for considering.


--
DARTS - Debian Archive Regression Test Suite
http://darts.alioth.debian.org/

Please note that this report has not been generated fully automatically.
DARTS just helped finding the problem.

---End Message---
---BeginMessage---
This package has been removed because nobody maintained it.
-- 
Martin Michlmayr
http://www.cyrius.com/
---End Message---


Bug#367852: marked as done (xsim: FTBFS: Fails to detect X)

2006-07-25 Thread Debian Bug Tracking System
Your message dated Tue, 25 Jul 2006 20:44:20 +0200
with message-id [EMAIL PROTECTED]
and subject line Removed
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
Package: xsim
Version: 0.3.9.4-6.1
Severity: serious

From my pbuilder build log:

...
checking for i486-linux-gnu-ld... no
checking for ld... ld
checking for X... no
configure: error: X Window System not found
make: *** [config.status] Error 1
-- 
Daniel Schepler

---End Message---
---BeginMessage---
xsim has been removed from Debian because dead upstream; alternatives
exist, see #364618 for more information.
-- 
Martin Michlmayr
http://www.cyrius.com/
---End Message---


Bug#337394: marked as done (Recent security problem from NetSNMP also affects ucd-snmp?)

2006-07-25 Thread Debian Bug Tracking System
Your message dated Tue, 25 Jul 2006 20:41:04 +0200
with message-id [EMAIL PROTECTED]
and subject line Removed
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
Package: ucd-snmp
Severity: critical
Tags: security patch

Hello

According to 
http://online.securityfocus.com/bid/14168/references
other vendors also updated their ucd-snmp packages due to the recent
security bug in net-snmp (which was based upon ucd-snmp).

The patch that Connectiva used looks quite simple:

--- ucd-snmp-4.2.5/snmplib/snmp_api.c.DoS   2005-08-03 17:16:17.0 
+0200  
+++ ucd-snmp-4.2.5/snmplib/snmp_api.c   2005-08-03 17:22:12.0 +0200 
 
@@ -4120,7 +4120,7 @@   
 
 else   
 
   isp-proper_len = asn_check_packet(isp-packet, isp-packet_len);
 

 
-if (isp-proper_len  MAX_PACKET_LENGTH) { 
 
+if (isp-proper_len  MAX_PACKET_LENGTH || isp-proper_len  0) {  
 
   /* illegal length, drop the connection */
 
   snmp_log(LOG_ERR,Maximum packet size exceeded in a request.\n);
 
   isp-sd = -1;   

bye,

-christian-

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

---End Message---
---BeginMessage---
ucd-snmp has been removed from Debian unstable because it is
superseded by net-snmp; dead upstream.

-- 
Martin Michlmayr
http://www.cyrius.com/
---End Message---


Bug#194985: marked as done (lphdisk: FTBFS with gcc-3.3: Uses multiline strings)

2006-07-25 Thread Debian Bug Tracking System
Your message dated Tue, 25 Jul 2006 11:47:26 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#194985: fixed in lphdisk 0.9.1-1
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
Package: lphdisk
Version: 0.9-1
Severity: serious

From my build log:

...
cc -g -Wall   -c -o lphdisk.o lphdisk.c
lphdisk.c:721:29: missing terminating  character
lphdisk.c:723: error: parse error before Prepare
lphdisk.c:733:1: warning: character constant too long for its type
lphdisk.c:736:3: invalid suffix $s on integer constant
...
make[1]: *** [lphdisk.o] Error 1
make[1]: Leaving directory `/tmp/buildd/lphdisk-0.9'
make: *** [build-stamp] Error 2

-- System Information:
Debian Release: testing/unstable
Architecture: i386
Kernel: Linux frobnitz 2.4.21-pre5 #1 Sat Mar 1 09:01:10 PST 2003 i686
Locale: LANG=C, LC_CTYPE=C


-- 
Daniel Schepler  Please don't disillusion me.  I
[EMAIL PROTECTED]haven't had breakfast yet.
 -- Orson Scott Card

---End Message---
---BeginMessage---
Source: lphdisk
Source-Version: 0.9.1-1

We believe that the bug you reported is fixed in the latest version of
lphdisk, which is due to be installed in the Debian FTP archive:

lphdisk_0.9.1-1.diff.gz
  to pool/main/l/lphdisk/lphdisk_0.9.1-1.diff.gz
lphdisk_0.9.1-1.dsc
  to pool/main/l/lphdisk/lphdisk_0.9.1-1.dsc
lphdisk_0.9.1-1_i386.deb
  to pool/main/l/lphdisk/lphdisk_0.9.1-1_i386.deb
lphdisk_0.9.1.orig.tar.gz
  to pool/main/l/lphdisk/lphdisk_0.9.1.orig.tar.gz



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Roberto Lumbreras [EMAIL PROTECTED] (supplier of updated lphdisk package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 25 Jul 2006 18:21:01 +0200
Source: lphdisk
Binary: lphdisk
Architecture: source i386
Version: 0.9.1-1
Distribution: unstable
Urgency: low
Maintainer: Roberto Lumbreras [EMAIL PROTECTED]
Changed-By: Roberto Lumbreras [EMAIL PROTECTED]
Description: 
 lphdisk- prepares hibernation partition for Phoenix NoteBIOS
Closes: 105438 183560 194985 223106 223123 358699 358701 358703 374110
Changes: 
 lphdisk (0.9.1-1) unstable; urgency=low
 .
   * New maintainer. (Closes: #374110)
   * New upstream version. (Closes: #358699, #183560, #105438)
   * Fix spelling typos. (Closes: #358703)
   * Fix /proc/meminfo parsing. (Closes: #358701, #223106, #223123)
   * ACKing NMU. (Closes: #194985)
   * Switch to cdbs.
   * Updated standards.
Files: 
 9e3ea262ceae1e447486f20b096bccfa 566 admin extra lphdisk_0.9.1-1.dsc
 4f8d8e746883a361dbfdbf240db200c7 28577 admin extra lphdisk_0.9.1.orig.tar.gz
 cc37ab5c46d13a6078e98fa1516f0e1a 3021 admin extra lphdisk_0.9.1-1.diff.gz
 f62ccb64016fb690ae3644d9e154df55 21642 admin extra lphdisk_0.9.1-1_i386.deb

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

iD8DBQFExmPofIEQE/XJcI0RAvi/AKCB5UR9tqu4tvnfAXNa2byUcXgKmACg87YU
tmJ09l3UVKtbptTZibD5y80=
=kKZ1
-END PGP SIGNATURE-

---End Message---


Bug#374766: marked as done (xsim: FTBFS: error: X Window System not found)

2006-07-25 Thread Debian Bug Tracking System
Your message dated Tue, 25 Jul 2006 20:44:20 +0200
with message-id [EMAIL PROTECTED]
and subject line Removed
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
Package: xsim
Version: 0.3.9.4-6.1
Severity: serious

Hello,

There was a problem while autobuilding your package:

 Automatic build of xsim_0.3.9.4-6.1 on avidan by sbuild/i386 0.47
 Build started at 20060621-0151
 **
 Checking available source versions...
 Fetching source files...
 Reading package lists...
 Building dependency tree...
 Need to get 1053kB of source archives.
 Get:1 http://ftp.fr.debian.org sid/main xsim 0.3.9.4-6.1 (dsc) [608B]
 Get:2 http://ftp.fr.debian.org sid/main xsim 0.3.9.4-6.1 (tar) [1024kB]
 Get:3 http://ftp.fr.debian.org sid/main xsim 0.3.9.4-6.1 (diff) [27.9kB]
 Fetched 1053kB in 2s (384kB/s)
 Download complete and in download only mode
 ** Using build dependencies supplied by package:
 Build-Depends: debhelper ( 3.0.0), libdb4.4++-dev, xutils, locales, 
 libx11-dev, x-dev
  Warning:
  The following central src deps are (probably) missing:
   xlibs-dev ( 4.1.0)
 Checking for already installed source dependencies...
 debhelper: missing
 libdb4.4++-dev: missing
 xutils: missing
 locales: missing
 libx11-dev: missing
 x-dev: missing
 Checking for source dependency conflicts...
 Reading package lists...
 Building dependency tree...
 The following extra packages will be installed:
   file gettext html2text intltool-debian libdb4.4++ libdb4.4-dev libfontenc1
   libfreetype6 libfs6 libmagic1 libx11-6 libx11-data libxau-dev libxau6
   libxdmcp-dev libxdmcp6 libxext-dev libxext6 libxfont1 po-debconf x11-common
   x11proto-core-dev x11proto-input-dev x11proto-kb-dev x11proto-xext-dev
   xfonts-encodings xfonts-utils xtrans-dev xutils-dev
 Suggested packages:
   dh-make cvs gettext-doc db4.4-doc libfreetype6-dev pdksh
 Recommended packages:
   curl wget lynx libmail-sendmail-perl libcompress-zlib-perl
 The following NEW packages will be installed:
   debhelper file gettext html2text intltool-debian libdb4.4++ libdb4.4++-dev
   libdb4.4-dev libfontenc1 libfreetype6 libfs6 libmagic1 libx11-6 libx11-data
   libx11-dev libxau-dev libxau6 libxdmcp-dev libxdmcp6 libxext-dev libxext6
   libxfont1 locales po-debconf x-dev x11-common x11proto-core-dev
   x11proto-input-dev x11proto-kb-dev x11proto-xext-dev xfonts-encodings
   xfonts-utils xtrans-dev xutils xutils-dev
 0 upgraded, 35 newly installed, 0 to remove and 0 not upgraded.
 Need to get 6104kB/13.1MB of archives.
 After unpacking 39.4MB of additional disk space will be used.
 Get:1 ftp://ftp.dmz.naquadah.org sid/main locales 2.3.6-15 [3936kB]
 Get:2 ftp://ftp.dmz.naquadah.org sid/main libdb4.4++ 4.4.20-6 [497kB]
 Get:3 ftp://ftp.dmz.naquadah.org sid/main libdb4.4-dev 4.4.20-6 [551kB]
 Get:4 ftp://ftp.dmz.naquadah.org sid/main libdb4.4++-dev 4.4.20-6 [1121kB]
 Fetched 6104kB in 3s (1590kB/s)
 Selecting previously deselected package x11-common.
 (Reading database ... 10454 files and directories currently installed.)
 Unpacking x11-common (from .../x11-common_1%3a7.0.22_i386.deb) ...
 debconf: unable to initialize frontend: Dialog
 debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell 
 buffer, or without a controlling terminal.)
 debconf: falling back to frontend: Readline
 debconf: unable to initialize frontend: Readline
 debconf: (This frontend requires a controlling tty.)
 debconf: falling back to frontend: Teletype
 Configuring x11-common
 --
 
 Major possible upgrade issues
 
 Some users have reported that upon upgrade to the current package set, their 
 xserver package was no longer installed. Because there is no easy way around 
 this problem, you should be sure to check that the xserver-xorg package is 
 installed after upgrade. If it is not installed and you require it, it is 
 recommended that you install the xorg package to make sure you have a fully 
 functional X setup.
 
 Selecting previously deselected package libxau6.
 Unpacking libxau6 (from .../libxau6_1%3a1.0.0-3_i386.deb) ...
 Selecting previously deselected package libxdmcp6.
 Unpacking libxdmcp6 (from .../libxdmcp6_1%3a1.0.0-4_i386.deb) ...
 Setting up x11-common (7.0.22) ...
 debconf: unable to initialize frontend: Dialog
 debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell 
 buffer, or without a controlling terminal.)
 debconf: falling back to frontend: Readline
 debconf: unable to initialize 

Bug#346242: marked as done (ftbfs: build-depends on libdb4.1++-dev)

2006-07-25 Thread Debian Bug Tracking System
Your message dated Tue, 25 Jul 2006 20:44:20 +0200
with message-id [EMAIL PROTECTED]
and subject line Removed
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
Package: xsim
Version: 0.3.9.4-6
Severity: serious
Justification: fails to build from source

xsim build-depends on the no longer available libdb4.1++-dev package.

Since it has multiple longstanding release-critical bugs and has never
been in a stable release, I think it should be considered for removal
from unstable.


---End Message---
---BeginMessage---
xsim has been removed from Debian because dead upstream; alternatives
exist, see #364618 for more information.
-- 
Martin Michlmayr
http://www.cyrius.com/
---End Message---


Bug#363487: marked as done (nvidia-modules-i386: FTBFS (unsatisfied nvidia-kernel-source) in testing)

2006-07-25 Thread Debian Bug Tracking System
Your message dated Tue, 25 Jul 2006 20:42:19 +0200
with message-id [EMAIL PROTECTED]
and subject line removed
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
Package: nvidia-modules-i386
Severity: serious
Justification: no longer builds from source

This package Build-Deps on nvidia-kernel-source, which was removed from
testing. This only affects testing.

If #355117 was not enough to remove this package, here is another
reason. There is apparently no request from the maintainer to remove the
package from unstable yet, so it would be good IMO to remove it from testing
meanwhile.

---End Message---
---BeginMessage---
superseded by nvidia-graphics-modules-i386

-- 
Martin Michlmayr
http://www.cyrius.com/
---End Message---


Bug#194340: marked as done (xsim_0.3.9.4-5(unstable/sparc): FTBFS)

2006-07-25 Thread Debian Bug Tracking System
Your message dated Tue, 25 Jul 2006 20:44:20 +0200
with message-id [EMAIL PROTECTED]
and subject line Removed
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
Package: xsim
Version: 0.3.9.4-5
Severity: serious

a) it lookes like you need to build-depends on locales, b) even once
it's installed you can't assume any given locale are available, you'll
need to see the gcc-3.3 source package for an example of how to work
around this problem.

| Automatic build of xsim_0.3.9.4-5 on vore by sbuild/sparc 1.170.2
| Build started at 20030521-2121
| **

[...]

| ** Using build dependencies supplied by package:
| Build-Depends: debhelper ( 3.0.0), libdb4.0++-dev, xlibs-dev, xutils

[...]

| ./char2db char.GB2312 chardb zh_CN.GB2312 charfreq
| Failed setting locale to zh_CN.GB2312
| make[3]: *** [chardb] Error 1

A complete build log can be found at
http://buildd.debian.org/build.php?arch=sparcpkg=xsimver=0.3.9.4-5

-- 
James

---End Message---
---BeginMessage---
xsim has been removed from Debian because dead upstream; alternatives
exist, see #364618 for more information.
-- 
Martin Michlmayr
http://www.cyrius.com/
---End Message---


Bug#355117: marked as done (nvidia-modules-i386: Built from old drivers version)

2006-07-25 Thread Debian Bug Tracking System
Your message dated Tue, 25 Jul 2006 20:42:19 +0200
with message-id [EMAIL PROTECTED]
and subject line removed
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
Package: nvidia-modules-i386
Version: 1.0.7174+1
Severity: grave
Justification: renders package unusable

The NVIDIA graphics drivers prebuilt modules for kernel 2.4 are built
from version 1.0.7174, while 1.0.8178 X libs are in Etch. The purpose of these
packages is to provide nvidia-kernel-version, which nvidia-glx depends
on, but currently nvidia-kernel-1.0.7174 is provided while nvidia-glx
depends on nvidia-kernel-1.0.8178. There are still 7174 drivers in the
archive, but nvidia-glx-legacy depends on nvidia-kernel-legacy-1.0.7174.

This package should either be rebuilt from 8178 or removed. I'm not sure
of the binNMU capabilities of this package, but as the source package is
versioned with the NVIDIA graphics driver version, I guess a source
upload would be needed.

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

---End Message---
---BeginMessage---
superseded by nvidia-graphics-modules-i386

-- 
Martin Michlmayr
http://www.cyrius.com/
---End Message---


Bug#346794: marked as done (xcalendar-i18n: FTBFS: build-depends on removed xlibs-dev)

2006-07-25 Thread Debian Bug Tracking System
Your message dated Tue, 25 Jul 2006 11:32:20 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#346794: fixed in xcalendar-i18n 4.0.0.i18p1-14
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
Package: xcalendar-i18n
Version: 4.0.0.i18p1-13
Severity: serious

Hello,

  This is a serious bug filed against your package because it
  build-depends on xlibs-dev, which as announced in [1] a while ago, is
  no longer available in sid. This makes your package fail to build from
  source.

[1] http://lists.debian.org/debian-devel-announce/2005/11/msg00022.html

  To fix this bug, you need to update your build-dependencies and
  substitute xlibs-dev for the list of individual X development
  libraries that your package needs to be built. You can find detailed
  information about how to do that in the DependsXlibsDev wiki page [2].

[2] http://wiki.debian.org/DependsXlibsDev

  As indicated by the Release Team [3], the full transition from XFree86
  to Xorg is a release blocker for Etch, which means that Etch will not
  be released until this bug is fixed (or your package removed from
  testing). So, please, try to fix in a timely manner.

[3] http://lists.debian.org/debian-devel-announce/2005/10/msg4.html

  The number of affected packages by the xlibs-dev transition is huge,
  so if you feel like helping with patches or uploads, feel free to
  follow the instructions contained in the wiki page above. A list of
  affected packages can be found here [4].

[4] http://people.debian.org/~adeodato/release-usertag/transition-xlibs-dev

  Finally, if there's a strong reason for which your package should not
  be NMUed, please note so in this bug report. Prospective NMUers will
  read your reasoning, and will decide if it's strong enough to delay
  their upload.

  Thanks for your collaboration!

-- 
Adeodato Simó dato at net.com.org.es
Debian Developer  adeodato at debian.org


---End Message---
---BeginMessage---
Source: xcalendar-i18n
Source-Version: 4.0.0.i18p1-14

We believe that the bug you reported is fixed in the latest version of
xcalendar-i18n, which is due to be installed in the Debian FTP archive:

xcalendar-i18n_4.0.0.i18p1-14.diff.gz
  to pool/main/x/xcalendar-i18n/xcalendar-i18n_4.0.0.i18p1-14.diff.gz
xcalendar-i18n_4.0.0.i18p1-14.dsc
  to pool/main/x/xcalendar-i18n/xcalendar-i18n_4.0.0.i18p1-14.dsc
xcalendar-i18n_4.0.0.i18p1-14_i386.deb
  to pool/main/x/xcalendar-i18n/xcalendar-i18n_4.0.0.i18p1-14_i386.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Taketoshi Sano [EMAIL PROTECTED] (supplier of updated xcalendar-i18n package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 26 Jul 2006 03:09:50 +0900
Source: xcalendar-i18n
Binary: xcalendar-i18n
Architecture: source i386
Version: 4.0.0.i18p1-14
Distribution: unstable
Urgency: low
Maintainer: Taketoshi Sano [EMAIL PROTECTED]
Changed-By: Taketoshi Sano [EMAIL PROTECTED]
Description: 
 xcalendar-i18n - calendar program on X with i18n support
Closes: 346794 364512 376403
Changes: 
 xcalendar-i18n (4.0.0.i18p1-14) unstable; urgency=low
 .
   * a little modification based on 13.2
 Thanks for Luk Claes. (Closes: #346794, #376403, #364512)
   * remove x-dev from build-depends because x-dev is a dummy package
 to depend on x11proto-core-dev, and libxt-dev in build-depends
 already depends on x11proto-core-dev.
   * switch debhelper V5 from old V1 (debian/rules has changed)
   * Bump to Standards-Version 3.7.2 from 3.5.9
Files: 
 bdeb897394c267a9fd8fb143181a6ee3 670 x11 extra 
xcalendar-i18n_4.0.0.i18p1-14.dsc
 5f2bf8d1ce488422774f11d99ef08f41 12618 x11 extra 
xcalendar-i18n_4.0.0.i18p1-14.diff.gz
 789820ea4681ab64ef5130b1060660cd 33504 x11 extra 
xcalendar-i18n_4.0.0.i18p1-14_i386.deb

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

iD8DBQFExmKo0LPz0K4xwAkRAuREAJsGRl37hpkMjLwyZa62hheya6pAbwCcCHOF
VMV5EUKLNd+QWDDjsV/GzS0=
=MTJY
-END PGP SIGNATURE-

---End Message---


Bug#348494: marked as done (gnome2-user-guide: [NONFREE-DOC:GFDL] Licenced under the GFDL (debian/copyright claims GPL???))

2006-07-25 Thread Debian Bug Tracking System
Your message dated Tue, 25 Jul 2006 20:39:34 +0200
with message-id [EMAIL PROTECTED]
and subject line Removed
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
Package: gnome2-user-guide
Version: 2.8.1-2
Severity: serious
Justification: DFSG

The current release of the GFDL is non-free, and the content of this
package is almost entirely licenced under the GFDL (except
automake/autoconf stuff). I count 5 copies of the GFDL: COPYING,
COPYING-DOCS and 3 legal.xml files.

In addition, the debian/copyright file has incorrect copyright notices,
and an incorrect licence notice. The work is GFDL licenced, not GPL
licenced. The copyright owner is Sun Microsystems, Inc. not Red Hat
Software and David A. Wheeler.

I also wonder if the people listed in the changelog have asserted
copyright on any part(s) of the work.

-- 
bye,
pabs

http://wiki.debian.org/PaulWise


signature.asc
Description: This is a digitally signed message part
---End Message---
---BeginMessage---
This package has been superseded by gnome-user-docs.

-- 
Martin Michlmayr
http://www.cyrius.com/
---End Message---


Bug#376403: marked as done (Uninstallable due to xorg transition)

2006-07-25 Thread Debian Bug Tracking System
Your message dated Tue, 25 Jul 2006 11:32:20 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#376403: fixed in xcalendar-i18n 4.0.0.i18p1-14
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
Package: xcalendar-i18n
Severity: serious
Version: 4.0.0.i18p1-13.1

Hi

Your package is not installable as x11-common conflicts with your
package version = 4.0.0.i18p1-13.1

The reason x11-common conflicts with your package is that you still use
/usr/X11R6

Cheers

Luk

-- 
Luk Claes - http://people.debian.org/~luk - GPG key 1024D/9B7C328D
Fingerprint:   D5AF 25FB 316B 53BB 08E7   F999 E544 DE07 9B7C 328D



signature.asc
Description: OpenPGP digital signature
---End Message---
---BeginMessage---
Source: xcalendar-i18n
Source-Version: 4.0.0.i18p1-14

We believe that the bug you reported is fixed in the latest version of
xcalendar-i18n, which is due to be installed in the Debian FTP archive:

xcalendar-i18n_4.0.0.i18p1-14.diff.gz
  to pool/main/x/xcalendar-i18n/xcalendar-i18n_4.0.0.i18p1-14.diff.gz
xcalendar-i18n_4.0.0.i18p1-14.dsc
  to pool/main/x/xcalendar-i18n/xcalendar-i18n_4.0.0.i18p1-14.dsc
xcalendar-i18n_4.0.0.i18p1-14_i386.deb
  to pool/main/x/xcalendar-i18n/xcalendar-i18n_4.0.0.i18p1-14_i386.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Taketoshi Sano [EMAIL PROTECTED] (supplier of updated xcalendar-i18n package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 26 Jul 2006 03:09:50 +0900
Source: xcalendar-i18n
Binary: xcalendar-i18n
Architecture: source i386
Version: 4.0.0.i18p1-14
Distribution: unstable
Urgency: low
Maintainer: Taketoshi Sano [EMAIL PROTECTED]
Changed-By: Taketoshi Sano [EMAIL PROTECTED]
Description: 
 xcalendar-i18n - calendar program on X with i18n support
Closes: 346794 364512 376403
Changes: 
 xcalendar-i18n (4.0.0.i18p1-14) unstable; urgency=low
 .
   * a little modification based on 13.2
 Thanks for Luk Claes. (Closes: #346794, #376403, #364512)
   * remove x-dev from build-depends because x-dev is a dummy package
 to depend on x11proto-core-dev, and libxt-dev in build-depends
 already depends on x11proto-core-dev.
   * switch debhelper V5 from old V1 (debian/rules has changed)
   * Bump to Standards-Version 3.7.2 from 3.5.9
Files: 
 bdeb897394c267a9fd8fb143181a6ee3 670 x11 extra 
xcalendar-i18n_4.0.0.i18p1-14.dsc
 5f2bf8d1ce488422774f11d99ef08f41 12618 x11 extra 
xcalendar-i18n_4.0.0.i18p1-14.diff.gz
 789820ea4681ab64ef5130b1060660cd 33504 x11 extra 
xcalendar-i18n_4.0.0.i18p1-14_i386.deb

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

iD8DBQFExmKo0LPz0K4xwAkRAuREAJsGRl37hpkMjLwyZa62hheya6pAbwCcCHOF
VMV5EUKLNd+QWDDjsV/GzS0=
=MTJY
-END PGP SIGNATURE-

---End Message---


Bug#379807: Causes other packages to FTBFS

2006-07-25 Thread Martin Michlmayr
Package: libxml2
Severity: grave

A number of packages fail with a cannot find -lz error due to
libxml2.


- Forwarded message from Steve Langasek [EMAIL PROTECTED] -

From: Steve Langasek [EMAIL PROTECTED]
Subject: Re: Build failure: cannot find -lz
Date: Tue, 25 Jul 2006 11:16:30 -0700
To: Martin Michlmayr [EMAIL PROTECTED]
Cc: debian-devel@lists.debian.org,
[EMAIL PROTECTED],
Julien Cristau [EMAIL PROTECTED]
User-Agent: Mutt/1.5.11+cvs20060403

On Tue, Jul 25, 2006 at 07:45:53PM +0200, Martin Michlmayr wrote:
 A number of applications currently fail to build with something like:

 | sparc-linux-gnu-gcc -g -O2 -o .libs/ots ots.o ../src/.libs/libots-1.so 
 /usr/lib/libglib-2.0.so /usr/lib/libxml2.so -ldl -lz -lm /usr/lib/libpopt.so
 | /usr/bin/ld: cannot find -lz

 In bug #378494, filed on one of these packages (ices2), Julien Cristau
 first claims this -lz comes from libxml2's .la file, which libtool
 uses to link ices2.  This could be fixed by libxml2-dev depending on
 zlib1g-dev again, or not installing libxml2.la (which would probably
 be better in the long term, but risks breaking existing packages).
 He later adds, Actually, relibtoolizing ices2 (with the Debian libtool)
 seems to be enough to fix this.

 Should I file individual bugs on these packages or one grave bug on
 libxml2.

One grave bug on libxml2, please.  The common case of linking against
libxml2 using libtool is now broken, for no discernable reason.  This is
irresponsible library maintenance; it shouldn't be left to the maintainers
of all the *other* packages to make this work again, particularly when we
have freeze deadlines we want to be hitting...

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



- End forwarded message -

-- 
Martin Michlmayr
http://www.cyrius.com/


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



  1   2   >