Bug#261386: marked as done (/usr/lib/libkdeinit_dcopserver.so: not using mkstemp, creating temp file unsafely)

2004-08-03 Thread Debian Bug Tracking System
Your message dated Tue, 03 Aug 2004 00:47:16 -0400
with message-id [EMAIL PROTECTED]
and subject line Bug#261386: fixed in kdelibs 4:3.2.3-4
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)

--
Received: (at submit) by bugs.debian.org; 25 Jul 2004 17:56:42 +
From [EMAIL PROTECTED] Sun Jul 25 10:56:42 2004
Return-path: [EMAIL PROTECTED]
Received: from anchor-post-36.mail.demon.net (anchor-post-37.mail.demon.net) 
[194.217.242.86] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1BonEn-0004Ne-00; Sun, 25 Jul 2004 10:56:42 -0700
Received: from cph.demon.co.uk ([83.104.40.52])
by anchor-post-37.mail.demon.net with esmtp (Exim 3.35 #1)
id 1BonEl-0001mx-0b
for [EMAIL PROTECTED]; Sun, 25 Jul 2004 17:56:40 +
Received: by cph.demon.co.uk (Postfix, from userid 1000)
id 4F8DA56FFA; Sun, 25 Jul 2004 18:55:51 +0100 (BST)
Date: Sun, 25 Jul 2004 18:55:50 +0100
From: Colin Phipps [EMAIL PROTECTED]
To: Debian Bug Tracking System [EMAIL PROTECTED]
Subject: /usr/lib/libkdeinit_dcopserver.so: not using mkstemp, creating temp 
file unsafely
Message-ID: [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
X-Reportbug-Version: 2.63
User-Agent: Mutt/1.5.6+20040523i
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 

Package: kdelibs-bin
Version: 4:3.2.3-2
Severity: grave
File: /usr/lib/libkdeinit_dcopserver.so
Tags: security patch
Justification: user security hole

dcop/dcopserver.cpp creates a temporary file /tmp/dcopXX. This file
should be created using mkstemp(3), to avoid /tmp symlink races/attacks.
However, due to a build file oversight, the configure script does not
test for the availability of mkstemp, so HAVE_MKSTEMP is not defined,
and dcopserver.cpp falls back on the insecure tempnam(3) instead.

So every time the dcopserver is started, it creates its temporary file
unsafely, making it potentially vulnerable to symlink attacks. As the
file in question is passed to iceauth, this could expose local
authentication data, or be used to submit mischevious commands to
iceauth.

% nm -D /usr/lib/libkdeinit_dcopserver.so|egrep 'tempnam|mkstemp'
U tempnam

The patch below should correct (I haven't the nerve to rebuild the whole
of kdelibs :-), but have checked that the individual source file
recompiles correctly) the build scripts to detect mkstemp, enabling the
safe code path in dcopserver.cpp. Of course, in addition to the patch
below, configure.in, configure  config.h.in must be regenerated in the
normal way. This should result in a config.h that defined HAVE_MKSTEMP,
and libkdeinit_dcopserver.so should then use mkstemp instead.

diff -pru kdelibs-3.2.3/acinclude.m4 ../kdelibs-3.2.3/acinclude.m4
--- kdelibs-3.2.3/acinclude.m4  2004-07-25 18:08:43.0 +0100
+++ ../kdelibs-3.2.3/acinclude.m4   2004-07-25 18:14:05.0 +0100
@@ -2302,6 +2302,19 @@ mkstemps(/tmp/aaaXX, 6);
[MKSTEMPS])
 ])
 
+AC_DEFUN([AC_CHECK_MKSTEMP],
+[
+   KDE_CHECK_FUNC_EXT(mkstemp, [
+#include stdlib.h
+#include unistd.h
+],
+   [
+mkstemp(/tmp/aaaXX);
+],
+   [int mkstemp(char *, int)],
+   [MKSTEMP])
+])
+
 AC_DEFUN([AC_CHECK_MKDTEMP],
 [
KDE_CHECK_FUNC_EXT(mkdtemp, [
diff -pru kdelibs-3.2.3/configure.in.in ../kdelibs-3.2.3/configure.in.in
--- kdelibs-3.2.3/configure.in.in   2004-01-19 13:01:23.0 +
+++ ../kdelibs-3.2.3/configure.in.in2004-07-25 18:03:36.0 +0100
@@ -111,6 +113,7 @@ AC_CHECK_SETENV
 AC_CHECK_UNSETENV
 AC_CHECK_RANDOM
 AC_CHECK_MKSTEMPS
+AC_CHECK_MKSTEMP
 AC_CHECK_MKDTEMP
 AC_CHECK_FUNCS(strtoll socket seteuid setegid strfmon stpcpy gettimeofday)
 

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

Versions of packages kdelibs-bin depends on:
ii  kdelibs4   4:3.2.3-2 KDE core libraries
ii  libart-2.0-2   2.3.16-5  Library of functions for 2D graphi
ii  libbz2-1.0 1.0.2-1   A high-quality block-sorting file 
ii  libc6  2.3.2.ds1-13  GNU C Library: Shared libraries an
ii  libcupsys2-gnu 

Bug#262589: marked as done (kdelibs4 needs rebuild against libtiff4)

2004-08-03 Thread Debian Bug Tracking System
Your message dated Tue, 03 Aug 2004 00:47:16 -0400
with message-id [EMAIL PROTECTED]
and subject line Bug#262589: fixed in kdelibs 4:3.2.3-4
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)

--
Received: (at submit) by bugs.debian.org; 31 Jul 2004 23:10:31 +
From [EMAIL PROTECTED] Sat Jul 31 16:10:30 2004
Return-path: [EMAIL PROTECTED]
Received: from bureau8.utcc.utoronto.ca [128.100.132.18] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1Br2zm-0006zc-00; Sat, 31 Jul 2004 16:10:30 -0700
Received: from webmail5.ns.utoronto.ca ([128.100.132.37] EHLO 
webmail5.ns.utoronto.ca ident: IDENT-NOT-QUERIED [port 51762]) by 
bureau8.utcc.utoronto.ca with ESMTP id 25002-21723; Sat, 31 Jul 2004 19:10:21 
-0400
Received: by webmail5.ns.utoronto.ca id 873017-7389; Sat, 31 Jul 2004 
19:10:12 -0400
Received: from 161.184.40.88 ( [161.184.40.88])
as user [EMAIL PROTECTED] by webmail.utoronto.ca with HTTP;
Sat, 31 Jul 2004 19:09:59 -0400
Message-ID: [EMAIL PROTECTED]
Date: Sat, 31 Jul 2004 19:09:59 -0400
From: Christopher Martin [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: kdelibs4 needs rebuild against libtiff4
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7BIT
User-Agent: Internet Messaging Program (IMP) 3.1
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_20,HAS_PACKAGE 
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 

Package: kdelibs4
Version: 4:3.2.3-3
Severity: serious

libtiff3g has been replaced by libtiff4. kdelibs thus needs to be rebuilt 
against the new library. This needs to be fixed soon, since all packages 
which build-depend on kdelibs are now failing, as the buildds can't 
install it. I can't NMU from this location, but hopefully someone else 
can...

Thanks,
Christopher Martin

---
Received: (at 262589-close) by bugs.debian.org; 3 Aug 2004 04:49:46 +
From [EMAIL PROTECTED] Mon Aug 02 21:49:46 2004
Return-path: [EMAIL PROTECTED]
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1BrrFC-0007FX-00; Mon, 02 Aug 2004 21:49:46 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1BrrCm-0007vf-00; Tue, 03 Aug 2004 00:47:16 -0400
From: Christopher L Cheney [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.51 $
Subject: Bug#262589: fixed in kdelibs 4:3.2.3-4
Message-Id: [EMAIL PROTECTED]
Sender: Archive Administrator [EMAIL PROTECTED]
Date: Tue, 03 Aug 2004 00:47:16 -0400
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 

Source: kdelibs
Source-Version: 4:3.2.3-4

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

kdelibs-bin_3.2.3-4_i386.deb
  to pool/main/k/kdelibs/kdelibs-bin_3.2.3-4_i386.deb
kdelibs-data_3.2.3-4_all.deb
  to pool/main/k/kdelibs/kdelibs-data_3.2.3-4_all.deb
kdelibs4-dev_3.2.3-4_i386.deb
  to pool/main/k/kdelibs/kdelibs4-dev_3.2.3-4_i386.deb
kdelibs4-doc_3.2.3-4_all.deb
  to pool/main/k/kdelibs/kdelibs4-doc_3.2.3-4_all.deb
kdelibs4_3.2.3-4_i386.deb
  to pool/main/k/kdelibs/kdelibs4_3.2.3-4_i386.deb
kdelibs_3.2.3-4.diff.gz
  to pool/main/k/kdelibs/kdelibs_3.2.3-4.diff.gz
kdelibs_3.2.3-4.dsc
  to pool/main/k/kdelibs/kdelibs_3.2.3-4.dsc
kdelibs_3.2.3-4_all.deb
  to pool/main/k/kdelibs/kdelibs_3.2.3-4_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.
Christopher L Cheney [EMAIL PROTECTED] (supplier of updated kdelibs 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

Bug#262832: marked as done (rebuild with libtiff4, upload with urgency=medium)

2004-08-03 Thread Debian Bug Tracking System
Your message dated Tue, 03 Aug 2004 00:47:16 -0400
with message-id [EMAIL PROTECTED]
and subject line Bug#262589: fixed in kdelibs 4:3.2.3-4
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)

--
Received: (at maintonly) by bugs.debian.org; 2 Aug 2004 00:21:02 +
From [EMAIL PROTECTED] Sun Aug 01 17:21:02 2004
Return-path: [EMAIL PROTECTED]
Received: from lakermmtao10.cox.net [68.230.240.29] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1BrQZZ-0005IT-00; Sun, 01 Aug 2004 17:21:01 -0700
Received: from gwendolyn.in.ql.org ([68.100.32.28]) by lakermmtao10.cox.net
  (InterMail vM.6.01.03.02.01 201-2131-111-104-103-20040709)
  with ESMTP
  id [EMAIL PROTECTED]
  for [EMAIL PROTECTED]; Sun, 1 Aug 2004 20:20:30 -0400
Received: from soup.in.ql.org (soup.in.ql.org [10.160.59.17])
by gwendolyn.in.ql.org (8.12.11/8.12.11/Debian-1) with ESMTP id 
i720Ek1t020061
for [EMAIL PROTECTED]; Sun, 1 Aug 2004 20:14:46 -0400
Received: from soup.in.ql.org (localhost [127.0.0.1])
by soup.in.ql.org (8.12.11/8.12.11/Debian-5) with ESMTP id 
i720EjQ6011326
for [EMAIL PROTECTED]; Sun, 1 Aug 2004 20:14:45 -0400
Received: (from [EMAIL PROTECTED])
by soup.in.ql.org (8.12.11/8.12.11/Debian-5) id i720Ejul011322;
Sun, 1 Aug 2004 20:14:45 -0400
Date: Sun, 1 Aug 2004 20:14:45 -0400
From: Jay Berkenbilt [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: rebuild with libtiff4, upload with urgency=medium
Message-ID: [EMAIL PROTECTED]
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-7.0 required=4.0 tests=BAYES_00,DATING,HAS_PACKAGE 
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 


Severity: Serious
Justification: FTBFS
Package: kdelibs4

As of version 4:3.2.3-3, package kdelibs4 has not yet been rebuilt
with libtiff4.  Please rebuild the package with libtiff4 and upload
with urgency=medium.  Note that taking care of this problem is a
prerequisite for ultimately being included in sarge, even if a version
of this package already appears in testing.  No source changes are
required; updating dependencies and rebuilding should be sufficient.
All packages not uploaded within several days will be NMUed.  Many
thanks for your patience and cooperation.

All maintainers and package tracking system addresses for affected
packages have been previously notified.  As a reminder, here is a copy
of that original notification (slightly edited).  Note that since this
was sent out, there have been various other threads on both
debian-devel and debian-release.

---

An accidental ABI change was made in libtiff (upstream) between
version 3.5.7 (the version currently in sarge) and 3.6.1 (the version
currently in sid).  This has resulted in 10 merged release-critical
bugs filed against libtiff3g for packages that don't work correctly
when compiled with one of these versions and run with the other.

Unfortunately, since this problem has been left unresolved for some
time, many packages have been compiled with 3.6.1 in sid and have
transitioned into sarge where they may not work correctly with 3.5.7.
Some of these packages are known to work correctly in sid but not in
sarge.  Transitioning version 3.6.1 of libtiff into sarge is
unaccaptable because it would create incompatbility with woody and
third-party applications that were compiled with libtiff 3.5.7 or
earlier.

To ensure that this problem is fully corrected, sarge will not contain
a libtiff.so.3.  Version 3.6.1 of libtiff will be included as
libtiff.so.4, with support of upstream.  All packages that depend upon
libtiff3g or libtiff3g-dev will have to be rebuilt with libtiff4 or
libtiff4-dev.  Doing this update is a precondition for the package
being included in sarge.  Please note that there were no source-level
interface changes between 3.5.7 and 3.6.1, so it should be sufficient
to just update the dependencies and recompile.  Use urgency=medium
when making this change.

It will be important for these changes to be made quickly as, once the
new tiff packages are uploaded, many packages will no longer be
installable or buildable from source.  As such, release-critical bugs
(severity serous, justification FTBFS) will be filed against any
package that still depends upon libtiff3g or libtiff3g-dev a few days
after the upload of the new tiff packages, and any packages 

Incomplete upload found in Debian upload queue

2004-08-03 Thread Archive Administrator
Probably you are the uploader of the following file(s) in
the Debian upload queue directory:
  kdebase_3.2.3-1.diff.gz
  kdebase_3.2.3-1.dsc
  kdebase_3.2.3.orig.tar.gz
This looks like an upload, but a .changes file is missing, so the job
cannot be processed.

If no .changes file arrives within 23:23:30, the files will be deleted.

If you didn't upload those files, please just ignore this message.

Greetings,

Your Debian queue daemon



Processing of kdebase_3.2.3-1_i386.changes

2004-08-03 Thread Archive Administrator
kdebase_3.2.3-1_i386.changes uploaded successfully to localhost
along with the files:
  kdebase_3.2.3-1.dsc
  kdebase_3.2.3.orig.tar.gz
  kdebase_3.2.3-1.diff.gz
  kappfinder_3.2.3-1_i386.deb
  kate_3.2.3-1_i386.deb
  kcontrol_3.2.3-1_i386.deb
  kdebase-bin_3.2.3-1_i386.deb
  kdebase-dev_3.2.3-1_i386.deb
  kdebase-kio-plugins_3.2.3-1_i386.deb
  kdeprint_3.2.3-1_i386.deb
  kdesktop_3.2.3-1_i386.deb
  kdm_3.2.3-1_i386.deb
  kfind_3.2.3-1_i386.deb
  khelpcenter_3.2.3-1_i386.deb
  kicker_3.2.3-1_i386.deb
  klipper_3.2.3-1_i386.deb
  kmenuedit_3.2.3-1_i386.deb
  konqueror_3.2.3-1_i386.deb
  konqueror-nsplugins_3.2.3-1_i386.deb
  konsole_3.2.3-1_i386.deb
  kpager_3.2.3-1_i386.deb
  kpersonalizer_3.2.3-1_i386.deb
  ksmserver_3.2.3-1_i386.deb
  ksplash_3.2.3-1_i386.deb
  ksysguard_3.2.3-1_i386.deb
  ksysguardd_3.2.3-1_i386.deb
  ktip_3.2.3-1_i386.deb
  kwin_3.2.3-1_i386.deb
  libkonq4_3.2.3-1_i386.deb
  libkonq4-dev_3.2.3-1_i386.deb
  kdebase_3.2.3-1_all.deb
  kdebase-data_3.2.3-1_all.deb
  kdebase-doc_3.2.3-1_all.deb
  xfonts-konsole_3.2.3-1_all.deb

Greetings,

Your Debian queue daemon



kdebase_3.2.3-1_i386.changes ACCEPTED

2004-08-03 Thread Debian Installer

Accepted:
kappfinder_3.2.3-1_i386.deb
  to pool/main/k/kdebase/kappfinder_3.2.3-1_i386.deb
kate_3.2.3-1_i386.deb
  to pool/main/k/kdebase/kate_3.2.3-1_i386.deb
kcontrol_3.2.3-1_i386.deb
  to pool/main/k/kdebase/kcontrol_3.2.3-1_i386.deb
kdebase-bin_3.2.3-1_i386.deb
  to pool/main/k/kdebase/kdebase-bin_3.2.3-1_i386.deb
kdebase-data_3.2.3-1_all.deb
  to pool/main/k/kdebase/kdebase-data_3.2.3-1_all.deb
kdebase-dev_3.2.3-1_i386.deb
  to pool/main/k/kdebase/kdebase-dev_3.2.3-1_i386.deb
kdebase-doc_3.2.3-1_all.deb
  to pool/main/k/kdebase/kdebase-doc_3.2.3-1_all.deb
kdebase-kio-plugins_3.2.3-1_i386.deb
  to pool/main/k/kdebase/kdebase-kio-plugins_3.2.3-1_i386.deb
kdebase_3.2.3-1.diff.gz
  to pool/main/k/kdebase/kdebase_3.2.3-1.diff.gz
kdebase_3.2.3-1.dsc
  to pool/main/k/kdebase/kdebase_3.2.3-1.dsc
kdebase_3.2.3-1_all.deb
  to pool/main/k/kdebase/kdebase_3.2.3-1_all.deb
kdebase_3.2.3.orig.tar.gz
  to pool/main/k/kdebase/kdebase_3.2.3.orig.tar.gz
kdeprint_3.2.3-1_i386.deb
  to pool/main/k/kdebase/kdeprint_3.2.3-1_i386.deb
kdesktop_3.2.3-1_i386.deb
  to pool/main/k/kdebase/kdesktop_3.2.3-1_i386.deb
kdm_3.2.3-1_i386.deb
  to pool/main/k/kdebase/kdm_3.2.3-1_i386.deb
kfind_3.2.3-1_i386.deb
  to pool/main/k/kdebase/kfind_3.2.3-1_i386.deb
khelpcenter_3.2.3-1_i386.deb
  to pool/main/k/kdebase/khelpcenter_3.2.3-1_i386.deb
kicker_3.2.3-1_i386.deb
  to pool/main/k/kdebase/kicker_3.2.3-1_i386.deb
klipper_3.2.3-1_i386.deb
  to pool/main/k/kdebase/klipper_3.2.3-1_i386.deb
kmenuedit_3.2.3-1_i386.deb
  to pool/main/k/kdebase/kmenuedit_3.2.3-1_i386.deb
konqueror-nsplugins_3.2.3-1_i386.deb
  to pool/main/k/kdebase/konqueror-nsplugins_3.2.3-1_i386.deb
konqueror_3.2.3-1_i386.deb
  to pool/main/k/kdebase/konqueror_3.2.3-1_i386.deb
konsole_3.2.3-1_i386.deb
  to pool/main/k/kdebase/konsole_3.2.3-1_i386.deb
kpager_3.2.3-1_i386.deb
  to pool/main/k/kdebase/kpager_3.2.3-1_i386.deb
kpersonalizer_3.2.3-1_i386.deb
  to pool/main/k/kdebase/kpersonalizer_3.2.3-1_i386.deb
ksmserver_3.2.3-1_i386.deb
  to pool/main/k/kdebase/ksmserver_3.2.3-1_i386.deb
ksplash_3.2.3-1_i386.deb
  to pool/main/k/kdebase/ksplash_3.2.3-1_i386.deb
ksysguard_3.2.3-1_i386.deb
  to pool/main/k/kdebase/ksysguard_3.2.3-1_i386.deb
ksysguardd_3.2.3-1_i386.deb
  to pool/main/k/kdebase/ksysguardd_3.2.3-1_i386.deb
ktip_3.2.3-1_i386.deb
  to pool/main/k/kdebase/ktip_3.2.3-1_i386.deb
kwin_3.2.3-1_i386.deb
  to pool/main/k/kdebase/kwin_3.2.3-1_i386.deb
libkonq4-dev_3.2.3-1_i386.deb
  to pool/main/k/kdebase/libkonq4-dev_3.2.3-1_i386.deb
libkonq4_3.2.3-1_i386.deb
  to pool/main/k/kdebase/libkonq4_3.2.3-1_i386.deb
xfonts-konsole_3.2.3-1_all.deb
  to pool/main/k/kdebase/xfonts-konsole_3.2.3-1_all.deb
Announcing to debian-devel-changes@lists.debian.org
Closing bugs: 258677 259638 260959 


Thank you for your contribution to Debian.



Bug#260959: marked as done (FTBFS: missing xlibs-static-pic from Build-Depends inter alia)

2004-08-03 Thread Debian Bug Tracking System
Your message dated Tue, 03 Aug 2004 05:47:36 -0400
with message-id [EMAIL PROTECTED]
and subject line Bug#260959: fixed in kdebase 4:3.2.3-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)

--
Received: (at submit) by bugs.debian.org; 23 Jul 2004 00:28:13 +
From [EMAIL PROTECTED] Thu Jul 22 17:28:13 2004
Return-path: [EMAIL PROTECTED]
Received: from zoon.lafn.org [206.117.18.9] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1Bnnv3-0004HJ-00; Thu, 22 Jul 2004 17:28:13 -0700
Received: from localhost (host-66-81-181-87.rev.o1.com [66.81.181.87])
by zoon.lafn.org (8.12.3p3/8.11.3) with ESMTP id i6N0Qt4Y008197
for [EMAIL PROTECTED]; Thu, 22 Jul 2004 17:28:09 -0700 (PDT)
(envelope-from [EMAIL PROTECTED])
Received: from kraai by localhost with local (Exim 4.32)
id 1BnhRU-NM-AZ
for [EMAIL PROTECTED]; Thu, 22 Jul 2004 10:33:16 -0700
Date: Thu, 22 Jul 2004 10:33:16 -0700
From: Matt Kraai [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: FTBFS: missing xlibs-static-pic from Build-Depends inter alia
Message-ID: [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha1;
protocol=application/pgp-signature; boundary=9jxsPFA5p3P2qPhR
Content-Disposition: inline
User-Agent: Mutt/1.5.6+20040523i
Sender: Matt Kraai [EMAIL PROTECTED]
X-Virus-Scanned: clamd / ClamAV version 0.70, clamav-milter version 0.70j
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-7.3 required=4.0 tests=BAYES_00,DATE_IN_PAST_06_12,
HAS_PACKAGE autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 


--9jxsPFA5p3P2qPhR
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable

Package: kdebase
Version: 4:3.2.2-1
Severity: important

This package fails to build from source:

 ...
 /bin/sh ../libtool --silent --mode=3Dlink --tag=3DCXX g++  -Wnon-virtual-d=
tor -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=3D500 -D_BSD_SOURCE -Wcast=
-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -Wwrite-stri=
ngs -DNDEBUG -DNO_DEBUG -O2 -Wformat-security -Wmissing-format-attribute -f=
no-exceptions -fno-check-new -fno-common -DQT_CLEAN_NAMESPACE -DQT_NO_ASCII=
_CAST -DQT_NO_STL -DQT_NO_COMPAT -DQT_NO_TRANSLATION -D_GNU_SOURCE-o kc=
m_keyboard.la -rpath /usr/lib/kde3 -L/usr/X11R6/lib -L/usr/share/qt3/lib -L=
/usr/lib  -module -avoid-version -no-undefined -Wl,--no-undefined -Wl,--all=
ow-shlib-undefined rules.lo kcmlayout.lo pixmap.lo kcmmisc.lo kcmlayoutwidg=
et.lo kcmmiscwidget.lo -lXtst -lkio -lxkbfile_pic=20
 /usr/bin/ld: cannot find -lxkbfile_pic
 collect2: ld returned 1 exit status
 make[4]: *** [kcm_keyboard.la] Error 1
 make[4]: Leaving directory `/tmp/buildd/kdebase-3.2.2/obj-i386-linux/kxkb'
 ...

Adding xlibs-static-pic to the Build-Depends, but the build still
fails:

 /bin/sh ../libtool --silent --mode=3Dlink --tag=3DCXX g++  -Wnon-virtual-d=
tor -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=3D500 -D_BSD_SOURCE -Wcast=
-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -Wwrite-stri=
ngs -DNDEBUG -DNO_DEBUG -O2 -Wformat-security -Wmissing-format-attribute -f=
no-exceptions -fno-check-new -fno-common -DQT_CLEAN_NAMESPACE -DQT_NO_ASCII=
_CAST -DQT_NO_STL -DQT_NO_COMPAT -DQT_NO_TRANSLATION -D_GNU_SOURCE-o ko=
nq_sound.la -rpath /usr/lib/kde3 -L/usr/X11R6/lib -L/usr/share/qt3/lib -L/u=
sr/lib  -module -avoid-version -module -no-undefined -Wl,--no-undefined -Wl=
,--allow-shlib-undefined   konq_sound.lo -lsoundserver_idl -lartskde
 /usr/bin/ld: .libs/konq_sound.so: undefined versioned symbol name std::tim=
e_put_w@@GLIBCPP_3.2
 /usr/bin/ld: failed to set dynamic section sizes: Bad value
 collect2: ld returned 1 exit status
 make[4]: *** [konq_sound.la] Error 1
 make[4]: Leaving directory `/tmp/buildd/kdebase-3.2.2/obj-i386-linux/libko=
nq'

--=20
Matt Kraai[EMAIL PROTECTED]http://ftbfs.org/

--9jxsPFA5p3P2qPhR
Content-Type: application/pgp-signature; name=signature.asc
Content-Description: Digital signature
Content-Disposition: inline

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

iD8DBQFA//pbfNdgYxVXvBARAlecAKCx0ZMbee5DpQ0xxKsyXLY6gorvQwCfceFm
q6HVe4cvd6rA5H+cGPBcOKs=
=7jcc
-END PGP SIGNATURE-

--9jxsPFA5p3P2qPhR--

---
Received: (at 260959-close) by 

Bug#258677: marked as done (ksmserver: should provide x-session-manager)

2004-08-03 Thread Debian Bug Tracking System
Your message dated Tue, 03 Aug 2004 05:47:36 -0400
with message-id [EMAIL PROTECTED]
and subject line Bug#258677: fixed in kdebase 4:3.2.3-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)

--
Received: (at submit) by bugs.debian.org; 11 Jul 2004 00:15:35 +
From [EMAIL PROTECTED] Sat Jul 10 17:15:35 2004
Return-path: [EMAIL PROTECTED]
Received: from (straylight.cyberhqz.com) [24.85.92.182] (postfix)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1BjS0F-0003Eq-00; Sat, 10 Jul 2004 17:15:35 -0700
Received: from localhost (localhost [127.0.0.1])
by straylight.cyberhqz.com (Postfix) with ESMTP
id CC724541A3; Sat, 10 Jul 2004 17:15:34 -0700 (PDT)
Received: from straylight.cyberhqz.com ([127.0.0.1])
by localhost (straylight [127.0.0.1]) (amavisd-new, port 10024)
with ESMTP id 17495-07; Sat, 10 Jul 2004 17:15:28 -0700 (PDT)
Received: from cyberhq.internal.cyberhqz.com (cyberhq.internal.cyberhqz.com 
[192.168.0.2])
by straylight.cyberhqz.com (Postfix) with ESMTP
id DE0505416E; Sat, 10 Jul 2004 17:15:27 -0700 (PDT)
Received: by cyberhq.internal.cyberhqz.com (Postfix, from userid 1000)
id CD8E527C1D9; Sat, 10 Jul 2004 17:15:27 -0700 (PDT)
From: Ryan Murray [EMAIL PROTECTED]
Subject: ksmserver: should provide x-session-manager
To: [EMAIL PROTECTED]
X-Mailer: bug 3.3.10.2
Message-Id: [EMAIL PROTECTED]
Date: Sat, 10 Jul 2004 17:15:27 -0700 (PDT)
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 

Package: ksmserver
Version: 4:3.2.2-1
Severity: normal

ksmserver provides an alternative for x-session-manager, but the package does
not provide x-session-manager

-- System Information
Debian Release: testing/unstable
Kernel Version: Linux cyberhq 2.6.7 #1 SMP Sat Jul 3 15:38:46 PDT 2004 i686 
GNU/Linux


---
Received: (at 258677-close) by bugs.debian.org; 3 Aug 2004 09:50:04 +
From [EMAIL PROTECTED] Tue Aug 03 02:50:04 2004
Return-path: [EMAIL PROTECTED]
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1Brvvo-00029F-00; Tue, 03 Aug 2004 02:50:04 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1BrvtQ-0006O0-00; Tue, 03 Aug 2004 05:47:36 -0400
From: Christopher L Cheney [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.51 $
Subject: Bug#258677: fixed in kdebase 4:3.2.3-1
Message-Id: [EMAIL PROTECTED]
Sender: Archive Administrator [EMAIL PROTECTED]
Date: Tue, 03 Aug 2004 05:47:36 -0400
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 
X-CrossAssassin-Score: 2

Source: kdebase
Source-Version: 4:3.2.3-1

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

kappfinder_3.2.3-1_i386.deb
  to pool/main/k/kdebase/kappfinder_3.2.3-1_i386.deb
kate_3.2.3-1_i386.deb
  to pool/main/k/kdebase/kate_3.2.3-1_i386.deb
kcontrol_3.2.3-1_i386.deb
  to pool/main/k/kdebase/kcontrol_3.2.3-1_i386.deb
kdebase-bin_3.2.3-1_i386.deb
  to pool/main/k/kdebase/kdebase-bin_3.2.3-1_i386.deb
kdebase-data_3.2.3-1_all.deb
  to pool/main/k/kdebase/kdebase-data_3.2.3-1_all.deb
kdebase-dev_3.2.3-1_i386.deb
  to pool/main/k/kdebase/kdebase-dev_3.2.3-1_i386.deb
kdebase-doc_3.2.3-1_all.deb
  to pool/main/k/kdebase/kdebase-doc_3.2.3-1_all.deb
kdebase-kio-plugins_3.2.3-1_i386.deb
  to pool/main/k/kdebase/kdebase-kio-plugins_3.2.3-1_i386.deb
kdebase_3.2.3-1.diff.gz
  to pool/main/k/kdebase/kdebase_3.2.3-1.diff.gz
kdebase_3.2.3-1.dsc
  to pool/main/k/kdebase/kdebase_3.2.3-1.dsc
kdebase_3.2.3-1_all.deb
  to pool/main/k/kdebase/kdebase_3.2.3-1_all.deb
kdebase_3.2.3.orig.tar.gz
  to pool/main/k/kdebase/kdebase_3.2.3.orig.tar.gz
kdeprint_3.2.3-1_i386.deb
  to pool/main/k/kdebase/kdeprint_3.2.3-1_i386.deb
kdesktop_3.2.3-1_i386.deb
  to pool/main/k/kdebase/kdesktop_3.2.3-1_i386.deb
kdm_3.2.3-1_i386.deb
  to pool/main/k/kdebase/kdm_3.2.3-1_i386.deb

Bug#259638: marked as done (kcontrol: energy star logo is non-free)

2004-08-03 Thread Debian Bug Tracking System
Your message dated Tue, 03 Aug 2004 05:47:36 -0400
with message-id [EMAIL PROTECTED]
and subject line Bug#259638: fixed in kdebase 4:3.2.3-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)

--
Received: (at submit) by bugs.debian.org; 15 Jul 2004 20:23:26 +
From [EMAIL PROTECTED] Thu Jul 15 13:23:26 2004
Return-path: [EMAIL PROTECTED]
Received: from mail.enyo.de [212.9.189.167] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1BlClJ-As-00; Thu, 15 Jul 2004 13:23:25 -0700
Received: (debugging) helo=deneb.enyo.de ip=212.9.189.171 name=deneb.enyo.de
Received: from deneb.enyo.de ([212.9.189.171])
by mail.enyo.de with esmtp id 1BlClG-0006S6-ND
for [EMAIL PROTECTED]; Thu, 15 Jul 2004 22:23:22 +0200
Received: from fw by deneb.enyo.de with local (Exim 4.34)
id 1Bl5j1-L1-JT; Thu, 15 Jul 2004 14:52:35 +0200
Content-Type: text/plain; charset=us-ascii
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
From: Florian Weimer [EMAIL PROTECTED]
To: Debian Bug Tracking System [EMAIL PROTECTED]
Subject: kcontrol: energy star logo is non-free
X-Mailer: reportbug 2.63
Date: Thu, 15 Jul 2004 14:52:35 +0200
Message-Id: [EMAIL PROTECTED]
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-7.3 required=4.0 tests=BAYES_00,DATE_IN_PAST_06_12,
HAS_PACKAGE autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 

Package: kcontrol
Version: 4:3.2.2-1
Severity: serious

/usr/share/apps/kcontrol/pics/energybig.png contains the Energy Star
logo, which is non-free according to the guidelines at:

http://www.energystar.gov/ia/partners/logos/downloads/BrandBook_allpages.pdf

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (800, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.8-rc1
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8

Versions of packages kcontrol depends on:
ii  kdebase-data  4:3.2.2-1  KDE Base (shared data)
ii  kdelibs4  4:3.2.3-2  KDE core libraries
ii  libart-2.0-2  2.3.16-5   Library of functions for 2D graphi
ii  libasound21.0.5-1Advanced Linux Sound Architecture 
ii  libaudio2 1.6d-1 The Network Audio System (NAS). (s
ii  libc6 2.3.2.ds1-13   GNU C Library: Shared libraries an
ii  libfam0c102   2.7.0-5client library to control the FAM 
ii  libfontconfig12.2.3-1generic font configuration library
ii  libfreetype6  2.1.7-2.1  FreeType 2 font engine, shared lib
ii  libgcc1   1:3.4.0-2  GCC support library
ii  libice6   4.3.0.dfsg.1-6 Inter-Client Exchange library
ii  libjpeg62 6b-9   The Independent JPEG Group's JPEG 
ii  libpcre3  4.5-1.1Perl 5 Compatible Regular Expressi
ii  libpng12-01.2.5.0-6  PNG library - runtime
ii  libqt3c102-mt 3:3.2.3-4  Qt GUI Library (Threaded runtime v
ii  libraw1394-5  0.10.1-1   library for direct access to IEEE 
ii  libsm64.3.0.dfsg.1-6 X Window System Session Management
ii  libssl0.9.7   0.9.7d-3.1 SSL shared libraries
ii  libstdc++51:3.3.4-3  The GNU Standard C++ Library v3
ii  libx11-6  4.3.0.dfsg.1-6 X Window System protocol client li
ii  libxcursor1   1.1.3-1X cursor management library
ii  libxext6  4.3.0.dfsg.1-6 X Window System miscellaneous exte
ii  libxft2   2.1.2-6FreeType-based font drawing librar
ii  libxmu6   4.3.0.dfsg.1-6 X Window System miscellaneous util
ii  libxrandr24.3.0.dfsg.1-6 X Window System Resize, Rotate and
ii  libxrender1   0.8.3-7X Rendering Extension client libra
ii  libxt64.3.0.dfsg.1-6 X Toolkit Intrinsics
ii  libxtst6  4.3.0.dfsg.1-6 X Window System event recording an
ii  xlibmesa-gl [libgl1]  4.3.0.dfsg.1-6 Mesa 3D graphics library [XFree86]
ii  xlibs 4.3.0.dfsg.1-6 X Window System client libraries m
ii  zlib1g1:1.2.1.1-5compression library - runtime

-- no debconf information

---
Received: (at 259638-close) by 

Processing of kdeaccessibility_3.2.3-1_i386.changes

2004-08-03 Thread Archive Administrator
kdeaccessibility_3.2.3-1_i386.changes uploaded successfully to localhost
along with the files:
  kdeaccessibility_3.2.3-1.dsc
  kdeaccessibility_3.2.3.orig.tar.gz
  kdeaccessibility_3.2.3-1.diff.gz
  kmag_3.2.3-1_i386.deb
  kmousetool_3.2.3-1_i386.deb
  kmouth_3.2.3-1_i386.deb
  kdeaccessibility_3.2.3-1_all.deb

Greetings,

Your Debian queue daemon



kdeaccessibility_3.2.3-1_i386.changes ACCEPTED

2004-08-03 Thread Debian Installer

Accepted:
kdeaccessibility_3.2.3-1.diff.gz
  to pool/main/k/kdeaccessibility/kdeaccessibility_3.2.3-1.diff.gz
kdeaccessibility_3.2.3-1.dsc
  to pool/main/k/kdeaccessibility/kdeaccessibility_3.2.3-1.dsc
kdeaccessibility_3.2.3-1_all.deb
  to pool/main/k/kdeaccessibility/kdeaccessibility_3.2.3-1_all.deb
kdeaccessibility_3.2.3.orig.tar.gz
  to pool/main/k/kdeaccessibility/kdeaccessibility_3.2.3.orig.tar.gz
kmag_3.2.3-1_i386.deb
  to pool/main/k/kdeaccessibility/kmag_3.2.3-1_i386.deb
kmousetool_3.2.3-1_i386.deb
  to pool/main/k/kdeaccessibility/kmousetool_3.2.3-1_i386.deb
kmouth_3.2.3-1_i386.deb
  to pool/main/k/kdeaccessibility/kmouth_3.2.3-1_i386.deb
Announcing to debian-devel-changes@lists.debian.org


Thank you for your contribution to Debian.



kdenonbeta/kdedebian/kapture/kurrent

2004-08-03 Thread Peter Rockai
CVS commit by mornfall: 

Improve GenericName a bit.


  M +1 -1  kurrent.desktop   1.7


--- kdenonbeta/kdedebian/kapture/kurrent/kurrent.desktop  #1.6:1.7
@@ -7,5 +7,5 @@
 Type=Application
 DocPath=kurrent/kurrent.html
-GenericName=Debian KDE system upgrader
+GenericName=Debian system upgrader
 GenericName[es]=Actualizador del sistema de KDE para Debian
 GenericName[et]=Debiani KDE süsteemi uuendaja




Processing of kdeadmin_3.2.3-1_i386.changes

2004-08-03 Thread Archive Administrator
kdeadmin_3.2.3-1_i386.changes uploaded successfully to localhost
along with the files:
  kdeadmin_3.2.3-1.dsc
  kdeadmin_3.2.3.orig.tar.gz
  kdeadmin_3.2.3-1.diff.gz
  kcmlinuz_3.2.3-1_i386.deb
  kcron_3.2.3-1_i386.deb
  kdat_3.2.3-1_i386.deb
  kdeadmin-kfile-plugins_3.2.3-1_i386.deb
  kpackage_3.2.3-1_i386.deb
  ksysv_3.2.3-1_i386.deb
  kuser_3.2.3-1_i386.deb
  lilo-config_3.2.3-1_i386.deb
  secpolicy_3.2.3-1_i386.deb
  kdeadmin_3.2.3-1_all.deb

Greetings,

Your Debian queue daemon



kdeadmin_3.2.3-1_i386.changes ACCEPTED

2004-08-03 Thread Debian Installer

Accepted:
kcmlinuz_3.2.3-1_i386.deb
  to pool/main/k/kdeadmin/kcmlinuz_3.2.3-1_i386.deb
kcron_3.2.3-1_i386.deb
  to pool/main/k/kdeadmin/kcron_3.2.3-1_i386.deb
kdat_3.2.3-1_i386.deb
  to pool/main/k/kdeadmin/kdat_3.2.3-1_i386.deb
kdeadmin-kfile-plugins_3.2.3-1_i386.deb
  to pool/main/k/kdeadmin/kdeadmin-kfile-plugins_3.2.3-1_i386.deb
kdeadmin_3.2.3-1.diff.gz
  to pool/main/k/kdeadmin/kdeadmin_3.2.3-1.diff.gz
kdeadmin_3.2.3-1.dsc
  to pool/main/k/kdeadmin/kdeadmin_3.2.3-1.dsc
kdeadmin_3.2.3-1_all.deb
  to pool/main/k/kdeadmin/kdeadmin_3.2.3-1_all.deb
kdeadmin_3.2.3.orig.tar.gz
  to pool/main/k/kdeadmin/kdeadmin_3.2.3.orig.tar.gz
kpackage_3.2.3-1_i386.deb
  to pool/main/k/kdeadmin/kpackage_3.2.3-1_i386.deb
ksysv_3.2.3-1_i386.deb
  to pool/main/k/kdeadmin/ksysv_3.2.3-1_i386.deb
kuser_3.2.3-1_i386.deb
  to pool/main/k/kdeadmin/kuser_3.2.3-1_i386.deb
lilo-config_3.2.3-1_i386.deb
  to pool/main/k/kdeadmin/lilo-config_3.2.3-1_i386.deb
secpolicy_3.2.3-1_i386.deb
  to pool/main/k/kdeadmin/secpolicy_3.2.3-1_i386.deb
Announcing to debian-devel-changes@lists.debian.org


Thank you for your contribution to Debian.



kdenonbeta/kdedebian/kapture

2004-08-03 Thread Peter Rockai
CVS commit by mornfall: 

* post-release:
  - add the Open in new tab action to kapture (CElemActor)
  - fix typo in menu and call upgrade and distUpgrade from the
respective KActions (thanks Achim Bohnet for pointing out)
* pre-release:
  - add some profiling timers
  - prepare the 0.4 release, update debian/changelog, fix the
debian/control descriptions
  - cvs2cl  add error-dialog changes to NEWS


  M +126 -0ChangeLog   1.7
  M +1 -0  NEWS   1.6
  M +19 -0 debian/changelog   1.9
  M +27 -53debian/control   1.8
  M +12 -3 kapture/kapture.cpp   1.43
  M +1 -0  kapture/kapture.h   1.21
  M +2 -0  libcapture/groupermanager.cpp   1.7
  M +3 -0  libcapture/pkgcache.cpp   1.31
  M +4 -0  libcapture/tree.cpp   1.24





Bug#260962: marked as done (FTBFS: xlibs-static-pic missing from Build-Depends inter alia)

2004-08-03 Thread Debian Bug Tracking System
Your message dated Tue, 03 Aug 2004 20:02:15 -0400
with message-id [EMAIL PROTECTED]
and subject line Bug#260962: fixed in kdegraphics 4:3.2.3-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)

--
Received: (at submit) by bugs.debian.org; 23 Jul 2004 00:28:40 +
From [EMAIL PROTECTED] Thu Jul 22 17:28:40 2004
Return-path: [EMAIL PROTECTED]
Received: from zoon.lafn.org [206.117.18.9] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1BnnvT-0004KS-00; Thu, 22 Jul 2004 17:28:39 -0700
Received: from localhost (host-66-81-181-87.rev.o1.com [66.81.181.87])
by zoon.lafn.org (8.12.3p3/8.11.3) with ESMTP id i6N0Qt4b008197
for [EMAIL PROTECTED]; Thu, 22 Jul 2004 17:28:30 -0700 (PDT)
(envelope-from [EMAIL PROTECTED])
Received: from kraai by localhost with local (Exim 4.32)
id 1Bnggs-J8-0g
for [EMAIL PROTECTED]; Thu, 22 Jul 2004 09:45:06 -0700
Date: Thu, 22 Jul 2004 09:45:05 -0700
From: Matt Kraai [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: FTBFS: xlibs-static-pic missing from Build-Depends inter alia
Message-ID: [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha1;
protocol=application/pgp-signature; boundary=sdtB3X0nJg68CQEu
Content-Disposition: inline
User-Agent: Mutt/1.5.6+20040523i
Sender: Matt Kraai [EMAIL PROTECTED]
X-Virus-Scanned: clamd / ClamAV version 0.70, clamav-milter version 0.70j
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 


--sdtB3X0nJg68CQEu
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable

Package: kdegraphics
Version: 4:3.2.2-1
Severity: important

This package fails to build from source:

 ...
 cp: cannot stat `./debian/tmp/usr/bin/xf86gammacfg': No such file or direc=
tory
 dh_install: command returned error code 256
 make: *** [install-arch] Error 1
 pbuilder: Failed autobuilding of package
 ...

It doesn't build xf86gammacfg because configure decides not to
build kgamma because it uses a library in xlibs-static-pic to
determine whether it should be built.  Adding xlibs-static-pic to
the Build-Depends fixes this bug.  Unfortunately, the build still
fails:

 /bin/sh ../../libtool --silent --mode=3Dlink --tag=3DCXX g++  -Wnon-virtua=
l-dtor -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=3D500 -D_BSD_SOURCE -Wc=
ast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -Wwrite-s=
trings -DNDEBUG -DNO_DEBUG -O2 -Wformat-security -Wmissing-format-attribute=
 -fno-exceptions -fno-check-new -fno-common -DQT_CLEAN_NAMESPACE -DQT_NO_AS=
CII_CAST -DQT_NO_STL -DQT_NO_COMPAT -DQT_NO_TRANSLATION-o kcm_kgamma.la=
 -rpath /usr/lib/kde3 -L/usr/X11R6/lib -L/usr/share/qt3/lib -L/usr/lib  -mo=
dule -avoid-version -module -no-undefined -Wl,--no-undefined -Wl,--allow-sh=
lib-undefined   xf86configpath.lo xvidextwrap.lo displaynumber.lo gammactrl=
=2Elo kgamma.lo -lXxf86vm_pic -lkdeui -lkdecore -lqt-mt  -lz -lpng -lz -lm =
-lXext -lX11  -lSM -lICE -lpthread
 /usr/bin/ld: .libs/kcm_kgamma.so: undefined versioned symbol name std::tim=
e_put_w@@GLIBCPP_3.2
 /usr/bin/ld: failed to set dynamic section sizes: Bad value
 collect2: ld returned 1 exit status
 make[5]: *** [kcm_kgamma.la] Error 1
 make[5]: Leaving directory `/tmp/buildd/kdegraphics-3.2.2/obj-i386-linux/k=
gamma/kcmkgamma'
 make[4]: *** [all-recursive] Error 1
 make[4]: Leaving directory `/tmp/buildd/kdegraphics-3.2.2/obj-i386-linux/k=
gamma/kcmkgamma'
 make[3]: *** [all-recursive] Error 1
 make[3]: Leaving directory `/tmp/buildd/kdegraphics-3.2.2/obj-i386-linux/k=
gamma'make[2]: *** [all-recursive] Error 1
 make[2]: Leaving directory `/tmp/buildd/kdegraphics-3.2.2/obj-i386-linux'
 make[1]: *** [all] Error 2
 make[1]: Leaving directory `/tmp/buildd/kdegraphics-3.2.2/obj-i386-linux'
 make: *** [build-arch-stamp] Error 2
 pbuilder: Failed autobuilding of package

--=20
Matt Kraai[EMAIL PROTECTED]http://ftbfs.org/

--sdtB3X0nJg68CQEu
Content-Type: application/pgp-signature; name=signature.asc
Content-Description: Digital signature
Content-Disposition: inline

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

iD8DBQFA/+8RfNdgYxVXvBARAkqxAKCwUlx9nxrYcMWc/e54tIsS3eruiwCghFLy
DEsvZE/4cPPLAXa52QMP7Cs=

Bug#260731: marked as done (missing MIME configuration)

2004-08-03 Thread Debian Bug Tracking System
Your message dated Tue, 03 Aug 2004 20:02:15 -0400
with message-id [EMAIL PROTECTED]
and subject line Bug#260731: fixed in kdegraphics 4:3.2.3-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)

--
Received: (at submit) by bugs.debian.org; 21 Jul 2004 21:32:08 +
From [EMAIL PROTECTED] Wed Jul 21 14:32:08 2004
Return-path: [EMAIL PROTECTED]
Received: from adsl-212-59-30-232.takas.lt (localhost) [212.59.30.232] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1BnOh5-0007bm-00; Wed, 21 Jul 2004 14:32:08 -0700
Received: from gintas by localhost with local (Exim 4.34)
id 1BnOh3-0006jv-3D; Thu, 22 Jul 2004 00:32:05 +0300
Date: Thu, 22 Jul 2004 00:32:05 +0300
From: Gintautas Miliauskas [EMAIL PROTECTED]
To: Debian Bug Tracking System [EMAIL PROTECTED]
Subject: missing MIME configuration
Message-ID: [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha1;
protocol=application/pgp-signature; boundary=qMm9M+Fa2AknHoGS
Content-Disposition: inline
X-Reportbug-Version: 2.63
User-Agent: Mutt/1.5.6+20040523i
Sender: Gintautas Miliauskas [EMAIL PROTECTED]
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 


--qMm9M+Fa2AknHoGS
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable

Package: kpdf
Version: 4:3.2.2-1
Severity: minor

kpdf is missing an entry in /usr/lib/mime/packages/.  I'd like it to
register as a system-wide PDF viewer automatically, like kghostview
or gpdf does.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.7
Locale: LANG=3DC, LC_CTYPE=3Dlt_LT.UTF-8

Versions of packages kpdf depends on:
ii  kdelibs4  4:3.2.3-2  KDE core libraries
ii  libart-2.0-2  2.3.16-5   Library of functions for 2D gr=
aphi
ii  libc6 2.3.2.ds1-13   GNU C Library: Shared librarie=
s an
ii  libfam0c102   2.7.0-5client library to control the =
FAM=20
ii  libfreetype6  2.1.7-2.1  FreeType 2 font engine, shared=
 lib
ii  libgcc1   1:3.4-0pre4GCC support library
ii  libice6   4.3.0.dfsg.1-6 Inter-Client Exchange library
ii  libpaper1 1.1.14-0.1 Library for handling paper cha=
ract
ii  libpng12-01.2.5.0-6  PNG library - runtime
ii  libqt3c102-mt 3:3.2.3-4  Qt GUI Library (Threaded runti=
me v
ii  libsm64.3.0.dfsg.1-6 X Window System Session Manage=
ment
ii  libstdc++51:3.3.4-3  The GNU Standard C++ Library v3
ii  libx11-6  4.3.0.dfsg.1-6 X Window System protocol clien=
t li
ii  libxext6  4.3.0.dfsg.1-6 X Window System miscellaneous =
exte
ii  libxrender1   0.8.3-7X Rendering Extension client l=
ibra
ii  xlibs 4.3.0.dfsg.1-6 X Window System client librari=
es m
ii  zlib1g1:1.2.1.1-5compression library - runtime

-- no debconf information

--=20
Gintautas

--qMm9M+Fa2AknHoGS
Content-Type: application/pgp-signature; name=signature.asc
Content-Description: Digital signature
Content-Disposition: inline

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

iD8DBQFA/uDVZEjTEI4o1DsRAvgGAJ49XNcQw1XJ6n3oxrukFwxcbEID3QCdHMpq
hVFn94vbbNM1rUAicIPGvSY=
=DJKk
-END PGP SIGNATURE-

--qMm9M+Fa2AknHoGS--

---
Received: (at 260731-close) by bugs.debian.org; 4 Aug 2004 00:08:09 +
From [EMAIL PROTECTED] Tue Aug 03 17:08:09 2004
Return-path: [EMAIL PROTECTED]
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1Bs9KD-0002RH-00; Tue, 03 Aug 2004 17:08:09 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1Bs9EV-0004XO-00; Tue, 03 Aug 2004 20:02:15 -0400
From: Christopher L Cheney [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.51 $
Subject: Bug#260731: fixed in kdegraphics 4:3.2.3-1
Message-Id: [EMAIL PROTECTED]
Sender: Archive Administrator [EMAIL 

Bug#261158: marked as done (kamera uninstallable in unstable)

2004-08-03 Thread Debian Bug Tracking System
Your message dated Tue, 03 Aug 2004 20:02:15 -0400
with message-id [EMAIL PROTECTED]
and subject line Bug#255709: fixed in kdegraphics 4:3.2.3-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)

--
Received: (at submit) by bugs.debian.org; 24 Jul 2004 01:15:17 +
From [EMAIL PROTECTED] Fri Jul 23 18:15:17 2004
Return-path: [EMAIL PROTECTED]
Received: from carlsberg.amagerkollegiet.dk [194.182.238.3] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1BoB88-TZ-00; Fri, 23 Jul 2004 18:15:17 -0700
Received: from grignard.amagerkollegiet.dk ([172.16.0.130])
by carlsberg.amagerkollegiet.dk with esmtp (Exim 3.35 #1 (Debian))
id 1BoB7x-0005gA-00; Sat, 24 Jul 2004 03:15:05 +0200
Received: from moffe by grignard.amagerkollegiet.dk with local (Exim 4.34)
id 1BoB7w-0007a2-MQ; Sat, 24 Jul 2004 03:15:04 +0200
Content-Type: text/plain; charset=us-ascii
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
From: =?iso-8859-1?q?Rasmus_B=F8g_Hansen?= [EMAIL PROTECTED]
To: Debian Bug Tracking System [EMAIL PROTECTED]
Subject: kamera uninstallable in unstable
X-Mailer: reportbug 2.63
Date: Sat, 24 Jul 2004 03:15:04 +0200
Message-Id: [EMAIL PROTECTED]
Sender: =?UTF-8?Q?Rasmus_B=F8g_Hansen?= [EMAIL PROTECTED]
X-MailScanner: Found to be clean
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 

Package: kamera
Version: 4:3.2.2-1
Severity: normal
Tags: sid

kamera is uninstallable in unstable as libexif9 is no longer available.
Rebuild against libexif10 fixes the problem.

[EMAIL PROTECTED]:/tmp# sudo apt-get install kamera
Reading Package Lists... Done
Building Dependency Tree... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.

Since you only requested a single operation it is extremely likely that
the package is simply not installable and a bug report against
that package should be filed.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
  kamera: Depends: libexif9 but it is not installable
E: Broken packages

-- System Information:
Debian Release: unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.7
Locale: LANG=da_DK, LC_CTYPE=da_DK (ignored: LC_ALL set to da_DK)

---
Received: (at 255709-close) by bugs.debian.org; 4 Aug 2004 00:08:10 +
From [EMAIL PROTECTED] Tue Aug 03 17:08:10 2004
Return-path: [EMAIL PROTECTED]
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1Bs9KE-0002Rk-00; Tue, 03 Aug 2004 17:08:10 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1Bs9EV-0004XK-00; Tue, 03 Aug 2004 20:02:15 -0400
From: Christopher L Cheney [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.51 $
Subject: Bug#255709: fixed in kdegraphics 4:3.2.3-1
Message-Id: [EMAIL PROTECTED]
Sender: Archive Administrator [EMAIL PROTECTED]
Date: Tue, 03 Aug 2004 20:02:15 -0400
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 
X-CrossAssassin-Score: 3

Source: kdegraphics
Source-Version: 4:3.2.3-1

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

kamera_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kamera_3.2.3-1_i386.deb
kcoloredit_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kcoloredit_3.2.3-1_i386.deb
kdegraphics-dev_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kdegraphics-dev_3.2.3-1_i386.deb
kdegraphics-kfile-plugins_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kdegraphics-kfile-plugins_3.2.3-1_i386.deb
kdegraphics_3.2.3-1.diff.gz
  to pool/main/k/kdegraphics/kdegraphics_3.2.3-1.diff.gz
kdegraphics_3.2.3-1.dsc
  to 

Bug#257690: marked as done (kamera: uninstallable, rebuild against libexif10)

2004-08-03 Thread Debian Bug Tracking System
Your message dated Tue, 03 Aug 2004 20:02:15 -0400
with message-id [EMAIL PROTECTED]
and subject line Bug#255709: fixed in kdegraphics 4:3.2.3-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)

--
Received: (at submit) by bugs.debian.org; 5 Jul 2004 12:55:02 +
From [EMAIL PROTECTED] Mon Jul 05 05:55:02 2004
Return-path: [EMAIL PROTECTED]
Received: from master.debian.org [146.82.138.7] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1BhSzt-00066T-00; Mon, 05 Jul 2004 05:55:02 -0700
Received: from static-90-30.dsl.tht.net ([127.0.0.1]) [216.126.90.30] 
by master.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1BhSzt-sV-00; Mon, 05 Jul 2004 07:55:01 -0500
Content-Type: text/plain; charset=us-ascii
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
From: Christina Norman [EMAIL PROTECTED]
To: Debian Bug Tracking System [EMAIL PROTECTED]
Subject: kdegraphics: No installation candidate
X-Mailer: reportbug 2.63
Date: Mon, 05 Jul 2004 04:57:03 -0400
X-Debbugs-Cc: [EMAIL PROTECTED]
Message-Id: [EMAIL PROTECTED]
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-8.6 required=4.0 tests=BAYES_00,DATE_IN_PAST_03_06,
HAS_PACKAGE,OUR_MTA_MSGID,X_DEBBUGS_CC autolearn=ham 
version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 

Package: kdegraphics
Severity: grave
Tags: experimental
Justification: renders package unusable

=(

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

---
Received: (at 255709-close) by bugs.debian.org; 4 Aug 2004 00:08:10 +
From [EMAIL PROTECTED] Tue Aug 03 17:08:10 2004
Return-path: [EMAIL PROTECTED]
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1Bs9KE-0002Rk-00; Tue, 03 Aug 2004 17:08:10 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1Bs9EV-0004XK-00; Tue, 03 Aug 2004 20:02:15 -0400
From: Christopher L Cheney [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.51 $
Subject: Bug#255709: fixed in kdegraphics 4:3.2.3-1
Message-Id: [EMAIL PROTECTED]
Sender: Archive Administrator [EMAIL PROTECTED]
Date: Tue, 03 Aug 2004 20:02:15 -0400
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 
X-CrossAssassin-Score: 3

Source: kdegraphics
Source-Version: 4:3.2.3-1

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

kamera_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kamera_3.2.3-1_i386.deb
kcoloredit_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kcoloredit_3.2.3-1_i386.deb
kdegraphics-dev_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kdegraphics-dev_3.2.3-1_i386.deb
kdegraphics-kfile-plugins_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kdegraphics-kfile-plugins_3.2.3-1_i386.deb
kdegraphics_3.2.3-1.diff.gz
  to pool/main/k/kdegraphics/kdegraphics_3.2.3-1.diff.gz
kdegraphics_3.2.3-1.dsc
  to pool/main/k/kdegraphics/kdegraphics_3.2.3-1.dsc
kdegraphics_3.2.3-1_all.deb
  to pool/main/k/kdegraphics/kdegraphics_3.2.3-1_all.deb
kdegraphics_3.2.3.orig.tar.gz
  to pool/main/k/kdegraphics/kdegraphics_3.2.3.orig.tar.gz
kdvi_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kdvi_3.2.3-1_i386.deb
kfax_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kfax_3.2.3-1_i386.deb
kgamma_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kgamma_3.2.3-1_i386.deb
kghostview_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kghostview_3.2.3-1_i386.deb
kiconedit_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kiconedit_3.2.3-1_i386.deb
kmrml_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kmrml_3.2.3-1_i386.deb
kooka_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kooka_3.2.3-1_i386.deb
kpaint_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kpaint_3.2.3-1_i386.deb
kpdf_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kpdf_3.2.3-1_i386.deb
kpovmodeler_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kpovmodeler_3.2.3-1_i386.deb

Bug#255709: marked as done (kamera depends on the removed package libexif9)

2004-08-03 Thread Debian Bug Tracking System
Your message dated Tue, 03 Aug 2004 20:02:15 -0400
with message-id [EMAIL PROTECTED]
and subject line Bug#255709: fixed in kdegraphics 4:3.2.3-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)

--
Received: (at submit) by bugs.debian.org; 22 Jun 2004 15:27:50 +
From [EMAIL PROTECTED] Tue Jun 22 08:27:50 2004
Return-path: [EMAIL PROTECTED]
Received: from av11-2-sn4.m-sp.skanova.net [81.228.10.105] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1BcnBe-0005zb-00; Tue, 22 Jun 2004 08:27:50 -0700
Received: by av11-2-sn4.m-sp.skanova.net (Postfix, from userid 502)
id 5996837E53; Tue, 22 Jun 2004 17:27:19 +0200 (CEST)
Received: from smtp4-1-sn4.m-sp.skanova.net (smtp4-1-sn4.m-sp.skanova.net 
[81.228.10.181])
by av11-2-sn4.m-sp.skanova.net (Postfix) with ESMTP
id 4863837E46; Tue, 22 Jun 2004 17:27:19 +0200 (CEST)
Received: from [127.0.0.1] (h107n2fls25o1063.bredband.comhem.se 
[213.66.137.107])
by smtp4-1-sn4.m-sp.skanova.net (Postfix) with ESMTP
id D537B37E45; Tue, 22 Jun 2004 17:27:18 +0200 (CEST)
Content-Type: text/plain; charset=us-ascii
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
From: Mario Boikov [EMAIL PROTECTED]
To: Debian Bug Tracking System [EMAIL PROTECTED]
Subject: kamera depends on the removed package libexif9
X-Mailer: reportbug 2.61
Date: Tue, 22 Jun 2004 17:27:20 +0200
Message-Id: [EMAIL PROTECTED]
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 

Package: kamera
Version: 4:3.2.2-1
Severity: normal
Tags: sid

libexif9 has been replaced by libexif10. libgphoto2-2 has been updated
to have the libexif10 dependency.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.4.26-1-686-smp
Locale: LANG=sv_SE, LC_CTYPE=sv_SE

Versions of packages kamera depends on:
ii  kdelibs4  4:3.2.3-2  KDE core libraries
ii  libart-2.0-2  2.3.16-5   Library of functions for 2D graphi
ii  libc6 2.3.2.ds1-13   GNU C Library: Shared libraries an
ii  libexif9  0.5.12-1   The EXIF library allows you to par
ii  libfam0c102   2.7.0-5client library to control the FAM 
ii  libgcc1   1:3.3.4-1  GCC support library
ii  libgphoto2-2  2.1.4-6The gphoto2 digital camera library
ii  libgphoto2-port0  2.1.4-6The gphoto2 digital camera port li
ii  libice6   4.3.0.dfsg.1-5 Inter-Client Exchange library
ii  libpng12-01.2.5.0-6  PNG library - runtime
ii  libqt3c102-mt 3:3.2.3-3  Qt GUI Library (Threaded runtime v
ii  libsm64.3.0.dfsg.1-5 X Window System Session Management
ii  libstdc++51:3.3.4-1  The GNU Standard C++ Library v3
ii  libx11-6  4.3.0.dfsg.1-5 X Window System protocol client li
ii  libxext6  4.3.0.dfsg.1-5 X Window System miscellaneous exte
ii  libxrender1   0.8.3-7X Rendering Extension client libra
ii  xlibs 4.3.0.dfsg.1-5 X Window System client libraries m
ii  zlib1g1:1.2.1.1-3compression library - runtime

-- no debconf information

---
Received: (at 255709-close) by bugs.debian.org; 4 Aug 2004 00:08:10 +
From [EMAIL PROTECTED] Tue Aug 03 17:08:10 2004
Return-path: [EMAIL PROTECTED]
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1Bs9KE-0002Rk-00; Tue, 03 Aug 2004 17:08:10 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1Bs9EV-0004XK-00; Tue, 03 Aug 2004 20:02:15 -0400
From: Christopher L Cheney [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.51 $
Subject: Bug#255709: fixed in kdegraphics 4:3.2.3-1
Message-Id: [EMAIL PROTECTED]
Sender: Archive Administrator [EMAIL PROTECTED]
Date: Tue, 03 Aug 2004 20:02:15 -0400
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.0 required=4.0 

Bug#246210: marked as done (kdvi: wrong menu location)

2004-08-03 Thread Debian Bug Tracking System
Your message dated Tue, 03 Aug 2004 20:02:15 -0400
with message-id [EMAIL PROTECTED]
and subject line Bug#246210: fixed in kdegraphics 4:3.2.3-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)

--
Received: (at submit) by bugs.debian.org; 27 Apr 2004 20:05:57 +
From [EMAIL PROTECTED] Tue Apr 27 13:05:57 2004
Return-path: [EMAIL PROTECTED]
Received: from smtp3.wanadoo.fr (mwinf0304.wanadoo.fr) [193.252.22.28] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1BIYq5-0003W1-00; Tue, 27 Apr 2004 13:05:57 -0700
Received: from bylbo.nowhere.earth (APuteaux-115-1-16-112.w81-51.abo.wanadoo.fr 
[81.51.82.112])
by mwinf0304.wanadoo.fr (SMTP Server) with ESMTP
id 41553A803E3C; Tue, 27 Apr 2004 22:05:25 +0200 (CEST)
Received: from dwitch by bylbo.nowhere.earth with local (Exim 3.36 #1 (Debian))
id 1BIYt5-0004os-00; Tue, 27 Apr 2004 22:09:03 +0200
Date: Tue, 27 Apr 2004 22:09:03 +0200
From: Yann Dirson [EMAIL PROTECTED]
To: Debian Bug Tracking System [EMAIL PROTECTED]
Subject: kdvi: wrong menu location
Message-ID: [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
X-Reportbug-Version: 2.58
User-Agent: Mutt/1.5.5.1+cvs20040105i
Sender: Yann Dirson [EMAIL PROTECTED]
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-7.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 
X-CrossAssassin-Score: 1

Package: kdvi
Version: 3.1.5-1
Severity: normal
Tags: patch

much like xdvi:
- section should be Apps/Viewers
- hints should contain hints=DVI,Documents

That gives:

?package(kdvi):\
needs=X11\
section=Apps/Viewers\
hints=KDE,DVI,Documents\
title=kdvi\
command=/usr/bin/kdvi

-- 
Yann Dirson[EMAIL PROTECTED] |Why make M$-Bill richer  richer ?
Debian-related: [EMAIL PROTECTED] |   Support Debian GNU/Linux:
Pro:[EMAIL PROTECTED] |  Freedom, Power, Stability, Gratuity
 http://ydirson.free.fr/| Check http://www.debian.org/

---
Received: (at 246210-close) by bugs.debian.org; 4 Aug 2004 00:08:11 +
From [EMAIL PROTECTED] Tue Aug 03 17:08:11 2004
Return-path: [EMAIL PROTECTED]
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1Bs9KF-0002Rz-00; Tue, 03 Aug 2004 17:08:11 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1Bs9EV-0004XI-00; Tue, 03 Aug 2004 20:02:15 -0400
From: Christopher L Cheney [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.51 $
Subject: Bug#246210: fixed in kdegraphics 4:3.2.3-1
Message-Id: [EMAIL PROTECTED]
Sender: Archive Administrator [EMAIL PROTECTED]
Date: Tue, 03 Aug 2004 20:02:15 -0400
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 
X-CrossAssassin-Score: 2

Source: kdegraphics
Source-Version: 4:3.2.3-1

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

kamera_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kamera_3.2.3-1_i386.deb
kcoloredit_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kcoloredit_3.2.3-1_i386.deb
kdegraphics-dev_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kdegraphics-dev_3.2.3-1_i386.deb
kdegraphics-kfile-plugins_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kdegraphics-kfile-plugins_3.2.3-1_i386.deb
kdegraphics_3.2.3-1.diff.gz
  to pool/main/k/kdegraphics/kdegraphics_3.2.3-1.diff.gz
kdegraphics_3.2.3-1.dsc
  to pool/main/k/kdegraphics/kdegraphics_3.2.3-1.dsc
kdegraphics_3.2.3-1_all.deb
  to pool/main/k/kdegraphics/kdegraphics_3.2.3-1_all.deb
kdegraphics_3.2.3.orig.tar.gz
  to pool/main/k/kdegraphics/kdegraphics_3.2.3.orig.tar.gz
kdvi_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kdvi_3.2.3-1_i386.deb
kfax_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kfax_3.2.3-1_i386.deb
kgamma_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kgamma_3.2.3-1_i386.deb
kghostview_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kghostview_3.2.3-1_i386.deb

Bug#246203: marked as done (kpovmodeler: please add menu hint Modeler)

2004-08-03 Thread Debian Bug Tracking System
Your message dated Tue, 03 Aug 2004 20:02:15 -0400
with message-id [EMAIL PROTECTED]
and subject line Bug#246203: fixed in kdegraphics 4:3.2.3-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)

--
Received: (at submit) by bugs.debian.org; 27 Apr 2004 19:11:09 +
From [EMAIL PROTECTED] Tue Apr 27 12:11:09 2004
Return-path: [EMAIL PROTECTED]
Received: from smtp5.wanadoo.fr (mwinf0502.wanadoo.fr) [193.252.22.26] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1BIXz3-0005Ap-00; Tue, 27 Apr 2004 12:11:09 -0700
Received: from bylbo.nowhere.earth (APuteaux-115-1-16-112.w81-51.abo.wanadoo.fr 
[81.51.82.112])
by mwinf0502.wanadoo.fr (SMTP Server) with ESMTP
id 333BEE800A7F; Tue, 27 Apr 2004 21:10:38 +0200 (CEST)
Received: from dwitch by bylbo.nowhere.earth with local (Exim 3.36 #1 (Debian))
id 1BIY24-00041g-00; Tue, 27 Apr 2004 21:14:16 +0200
Date: Tue, 27 Apr 2004 21:14:15 +0200
From: Yann Dirson [EMAIL PROTECTED]
To: Debian Bug Tracking System [EMAIL PROTECTED]
Subject: kpovmodeler: please add menu hint Modeler
Message-ID: [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
X-Reportbug-Version: 2.58
User-Agent: Mutt/1.5.5.1+cvs20040105i
Sender: Yann Dirson [EMAIL PROTECTED]
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-7.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 
X-CrossAssassin-Score: 1

Package: kpovmodeler
Version: 3.1.5-1
Severity: wishlist
Tags: patch

To allow grouping with other modelers, such as blender (for which I requested
the hint to fixed):


?package(kpovmodeler):\
needs=X11\
section=Apps/Graphics\
hints=KDE,Modeler\
title=KPovModeler\
command=/usr/bin/kpovmodeler


-- 
Yann Dirson[EMAIL PROTECTED] |Why make M$-Bill richer  richer ?
Debian-related: [EMAIL PROTECTED] |   Support Debian GNU/Linux:
Pro:[EMAIL PROTECTED] |  Freedom, Power, Stability, Gratuity
 http://ydirson.free.fr/| Check http://www.debian.org/

---
Received: (at 246203-close) by bugs.debian.org; 4 Aug 2004 00:09:29 +
From [EMAIL PROTECTED] Tue Aug 03 17:09:29 2004
Return-path: [EMAIL PROTECTED]
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1Bs9LV-0002Zw-00; Tue, 03 Aug 2004 17:09:29 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1Bs9EV-0004XG-00; Tue, 03 Aug 2004 20:02:15 -0400
From: Christopher L Cheney [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.51 $
Subject: Bug#246203: fixed in kdegraphics 4:3.2.3-1
Message-Id: [EMAIL PROTECTED]
Sender: Archive Administrator [EMAIL PROTECTED]
Date: Tue, 03 Aug 2004 20:02:15 -0400
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 

Source: kdegraphics
Source-Version: 4:3.2.3-1

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

kamera_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kamera_3.2.3-1_i386.deb
kcoloredit_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kcoloredit_3.2.3-1_i386.deb
kdegraphics-dev_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kdegraphics-dev_3.2.3-1_i386.deb
kdegraphics-kfile-plugins_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kdegraphics-kfile-plugins_3.2.3-1_i386.deb
kdegraphics_3.2.3-1.diff.gz
  to pool/main/k/kdegraphics/kdegraphics_3.2.3-1.diff.gz
kdegraphics_3.2.3-1.dsc
  to pool/main/k/kdegraphics/kdegraphics_3.2.3-1.dsc
kdegraphics_3.2.3-1_all.deb
  to pool/main/k/kdegraphics/kdegraphics_3.2.3-1_all.deb
kdegraphics_3.2.3.orig.tar.gz
  to pool/main/k/kdegraphics/kdegraphics_3.2.3.orig.tar.gz
kdvi_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kdvi_3.2.3-1_i386.deb
kfax_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kfax_3.2.3-1_i386.deb
kgamma_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kgamma_3.2.3-1_i386.deb
kghostview_3.2.3-1_i386.deb
  to 

kdegraphics_3.2.3-1_i386.changes ACCEPTED

2004-08-03 Thread Debian Installer

Accepted:
kamera_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kamera_3.2.3-1_i386.deb
kcoloredit_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kcoloredit_3.2.3-1_i386.deb
kdegraphics-dev_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kdegraphics-dev_3.2.3-1_i386.deb
kdegraphics-kfile-plugins_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kdegraphics-kfile-plugins_3.2.3-1_i386.deb
kdegraphics_3.2.3-1.diff.gz
  to pool/main/k/kdegraphics/kdegraphics_3.2.3-1.diff.gz
kdegraphics_3.2.3-1.dsc
  to pool/main/k/kdegraphics/kdegraphics_3.2.3-1.dsc
kdegraphics_3.2.3-1_all.deb
  to pool/main/k/kdegraphics/kdegraphics_3.2.3-1_all.deb
kdegraphics_3.2.3.orig.tar.gz
  to pool/main/k/kdegraphics/kdegraphics_3.2.3.orig.tar.gz
kdvi_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kdvi_3.2.3-1_i386.deb
kfax_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kfax_3.2.3-1_i386.deb
kgamma_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kgamma_3.2.3-1_i386.deb
kghostview_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kghostview_3.2.3-1_i386.deb
kiconedit_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kiconedit_3.2.3-1_i386.deb
kmrml_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kmrml_3.2.3-1_i386.deb
kooka_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kooka_3.2.3-1_i386.deb
kpaint_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kpaint_3.2.3-1_i386.deb
kpdf_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kpdf_3.2.3-1_i386.deb
kpovmodeler_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kpovmodeler_3.2.3-1_i386.deb
kruler_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kruler_3.2.3-1_i386.deb
ksnapshot_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/ksnapshot_3.2.3-1_i386.deb
ksvg_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/ksvg_3.2.3-1_i386.deb
kuickshow_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kuickshow_3.2.3-1_i386.deb
kview_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kview_3.2.3-1_i386.deb
kviewshell_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kviewshell_3.2.3-1_i386.deb
libkscan-dev_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/libkscan-dev_3.2.3-1_i386.deb
libkscan1_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/libkscan1_3.2.3-1_i386.deb
Announcing to debian-devel-changes@lists.debian.org
Closing bugs: 246203 246210 255709 257690 260731 260962 261158 262591 262853 


Thank you for your contribution to Debian.



Bug#262853: marked as done (rebuild with libtiff4, upload with urgency=medium)

2004-08-03 Thread Debian Bug Tracking System
Your message dated Tue, 03 Aug 2004 20:02:15 -0400
with message-id [EMAIL PROTECTED]
and subject line Bug#262853: fixed in kdegraphics 4:3.2.3-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)

--
Received: (at maintonly) by bugs.debian.org; 2 Aug 2004 00:24:12 +
From [EMAIL PROTECTED] Sun Aug 01 17:24:12 2004
Return-path: [EMAIL PROTECTED]
Received: from lakermmtao10.cox.net [68.230.240.29] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1BrQcd-0005Rg-00; Sun, 01 Aug 2004 17:24:11 -0700
Received: from gwendolyn.in.ql.org ([68.100.32.28]) by lakermmtao10.cox.net
  (InterMail vM.6.01.03.02.01 201-2131-111-104-103-20040709)
  with ESMTP
  id [EMAIL PROTECTED]
  for [EMAIL PROTECTED]; Sun, 1 Aug 2004 20:23:40 -0400
Received: from soup.in.ql.org (soup.in.ql.org [10.160.59.17])
by gwendolyn.in.ql.org (8.12.11/8.12.11/Debian-1) with ESMTP id 
i720EjZu020058
for [EMAIL PROTECTED]; Sun, 1 Aug 2004 20:14:45 -0400
Received: from soup.in.ql.org (localhost [127.0.0.1])
by soup.in.ql.org (8.12.11/8.12.11/Debian-5) with ESMTP id 
i720EjaH011319
for [EMAIL PROTECTED]; Sun, 1 Aug 2004 20:14:45 -0400
Received: (from [EMAIL PROTECTED])
by soup.in.ql.org (8.12.11/8.12.11/Debian-5) id i720EjPc011315;
Sun, 1 Aug 2004 20:14:45 -0400
Date: Sun, 1 Aug 2004 20:14:45 -0400
From: Jay Berkenbilt [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: rebuild with libtiff4, upload with urgency=medium
Message-ID: [EMAIL PROTECTED]
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-7.0 required=4.0 tests=BAYES_00,DATING,HAS_PACKAGE 
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 


Severity: Serious
Justification: FTBFS
Package: kdegraphics-kfile-plugins

As of version 4:3.2.2-1, package kdegraphics-kfile-plugins has not yet
been rebuilt with libtiff4.  Please rebuild the package with libtiff4
and upload with urgency=medium.  Note that taking care of this problem
is a prerequisite for ultimately being included in sarge, even if a
version of this package already appears in testing.  No source changes
are required; updating dependencies and rebuilding should be
sufficient.  All packages not uploaded within several days will be
NMUed.  Many thanks for your patience and cooperation.

All maintainers and package tracking system addresses for affected
packages have been previously notified.  As a reminder, here is a copy
of that original notification (slightly edited).  Note that since this
was sent out, there have been various other threads on both
debian-devel and debian-release.

---

An accidental ABI change was made in libtiff (upstream) between
version 3.5.7 (the version currently in sarge) and 3.6.1 (the version
currently in sid).  This has resulted in 10 merged release-critical
bugs filed against libtiff3g for packages that don't work correctly
when compiled with one of these versions and run with the other.

Unfortunately, since this problem has been left unresolved for some
time, many packages have been compiled with 3.6.1 in sid and have
transitioned into sarge where they may not work correctly with 3.5.7.
Some of these packages are known to work correctly in sid but not in
sarge.  Transitioning version 3.6.1 of libtiff into sarge is
unaccaptable because it would create incompatbility with woody and
third-party applications that were compiled with libtiff 3.5.7 or
earlier.

To ensure that this problem is fully corrected, sarge will not contain
a libtiff.so.3.  Version 3.6.1 of libtiff will be included as
libtiff.so.4, with support of upstream.  All packages that depend upon
libtiff3g or libtiff3g-dev will have to be rebuilt with libtiff4 or
libtiff4-dev.  Doing this update is a precondition for the package
being included in sarge.  Please note that there were no source-level
interface changes between 3.5.7 and 3.6.1, so it should be sufficient
to just update the dependencies and recompile.  Use urgency=medium
when making this change.

It will be important for these changes to be made quickly as, once the
new tiff packages are uploaded, many packages will no longer be
installable or buildable from source.  As such, release-critical bugs
(severity serous, justification FTBFS) will be filed against any
package that still depends upon libtiff3g or libtiff3g-dev a few days
after the upload of the 

Bug#262591: marked as done (kdegraphics needs rebuild against libtiff4)

2004-08-03 Thread Debian Bug Tracking System
Your message dated Tue, 03 Aug 2004 20:02:15 -0400
with message-id [EMAIL PROTECTED]
and subject line Bug#262591: fixed in kdegraphics 4:3.2.3-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)

--
Received: (at submit) by bugs.debian.org; 31 Jul 2004 23:27:21 +
From [EMAIL PROTECTED] Sat Jul 31 16:27:21 2004
Return-path: [EMAIL PROTECTED]
Received: from bureau8.utcc.utoronto.ca [128.100.132.18] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1Br3G4-0001O8-00; Sat, 31 Jul 2004 16:27:20 -0700
Received: from webmail5.ns.utoronto.ca ([128.100.132.37] EHLO 
webmail5.ns.utoronto.ca ident: IDENT-NOT-QUERIED [port 51762]) by 
bureau8.utcc.utoronto.ca with ESMTP id 25032-23435; Sat, 31 Jul 2004 19:27:15 
-0400
Received: by webmail5.ns.utoronto.ca id 873011-7387; Sat, 31 Jul 2004 
19:27:02 -0400
Received: from 161.184.40.88 ( [161.184.40.88])
as user [EMAIL PROTECTED] by webmail.utoronto.ca with HTTP;
Sat, 31 Jul 2004 19:26:56 -0400
Message-ID: [EMAIL PROTECTED]
Date: Sat, 31 Jul 2004 19:26:56 -0400
From: Christopher Martin [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: kdegraphics needs rebuild against libtiff4
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7BIT
User-Agent: Internet Messaging Program (IMP) 3.1
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_20,HAS_PACKAGE 
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 

Package: kdegraphics
Version: 4:3.2.2-1
Severity: serious

libtiff3g has been replaced by libtiff4. kdegraphics (specifically 
kdegraphics-kfile-plugins, kfax, kooka, and kuickshow) needs to be 
rebuilt against the new library. Unfortunately, I can't NMU from this 
location (I'm on vacation), but hopefully someone else can... 
transitioning to libexif10 at the same time would be great, since that 
would close another 3 RC bugs.

Thanks, 
Christopher Martin

---
Received: (at 262591-close) by bugs.debian.org; 4 Aug 2004 00:08:07 +
From [EMAIL PROTECTED] Tue Aug 03 17:08:07 2004
Return-path: [EMAIL PROTECTED]
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1Bs9KB-0002Qa-00; Tue, 03 Aug 2004 17:08:07 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1Bs9EV-0004XU-00; Tue, 03 Aug 2004 20:02:15 -0400
From: Christopher L Cheney [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.51 $
Subject: Bug#262591: fixed in kdegraphics 4:3.2.3-1
Message-Id: [EMAIL PROTECTED]
Sender: Archive Administrator [EMAIL PROTECTED]
Date: Tue, 03 Aug 2004 20:02:15 -0400
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 
X-CrossAssassin-Score: 8

Source: kdegraphics
Source-Version: 4:3.2.3-1

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

kamera_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kamera_3.2.3-1_i386.deb
kcoloredit_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kcoloredit_3.2.3-1_i386.deb
kdegraphics-dev_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kdegraphics-dev_3.2.3-1_i386.deb
kdegraphics-kfile-plugins_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kdegraphics-kfile-plugins_3.2.3-1_i386.deb
kdegraphics_3.2.3-1.diff.gz
  to pool/main/k/kdegraphics/kdegraphics_3.2.3-1.diff.gz
kdegraphics_3.2.3-1.dsc
  to pool/main/k/kdegraphics/kdegraphics_3.2.3-1.dsc
kdegraphics_3.2.3-1_all.deb
  to pool/main/k/kdegraphics/kdegraphics_3.2.3-1_all.deb
kdegraphics_3.2.3.orig.tar.gz
  to pool/main/k/kdegraphics/kdegraphics_3.2.3.orig.tar.gz
kdvi_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kdvi_3.2.3-1_i386.deb
kfax_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kfax_3.2.3-1_i386.deb
kgamma_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kgamma_3.2.3-1_i386.deb
kghostview_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kghostview_3.2.3-1_i386.deb
kiconedit_3.2.3-1_i386.deb
  to pool/main/k/kdegraphics/kiconedit_3.2.3-1_i386.deb
kmrml_3.2.3-1_i386.deb
  to 

Bug#263372: kcontrol: crashes on start

2004-08-03 Thread Emilian Nowak
Package: kcontrol
Version: 4:3.2.3-1
Severity: grave
Justification: renders package unusable

The newst kcontrol from sid doesn't work:

~$ kcontrol 
kcontrol: relocation error: /usr/lib/libkdeinit_kcontrol.so: undefined symbol:
_ZN12KTextBrowser15createPopupMenuERK6QPoint~$ 


-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.6-1-k7
Locale: LANG=pl_PL, LC_CTYPE=pl_PL

Versions of packages kcontrol depends on:
ii  kdebase-data  4:3.2.2-1  KDE Base (shared data)
ii  kdelibs4  4:3.2.3-2  KDE core libraries
ii  libart-2.0-2  2.3.16-3   Library of functions for 2D graphi
ii  libasound21.0.5-1Advanced Linux Sound Architecture 
ii  libaudio2 1.6d-1 The Network Audio System (NAS). (s
ii  libc6 2.3.2.ds1-13   GNU C Library: Shared libraries an
ii  libfam0c102   2.6.10-6   client library to control the FAM 
ii  libfontconfig12.2.2-2generic font configuration library
ii  libfreetype6  2.1.7-2FreeType 2 font engine, shared lib
ii  libgcc1   1:3.4.1-3  GCC support library
ii  libice6   4.3.0.dfsg.1-4 Inter-Client Exchange library
ii  libjpeg62 6b-9   The Independent JPEG Group's JPEG 
ii  libpcre3  4.5-1.1Perl 5 Compatible Regular Expressi
ii  libpng12-01.2.5.0-6  PNG library - runtime
ii  libqt3c102-mt 3:3.2.3-4  Qt GUI Library (Threaded runtime v
ii  libraw1394-5  0.10.1-1   library for direct access to IEEE 
ii  libsm64.3.0.dfsg.1-6 X Window System Session Management
ii  libssl0.9.7   0.9.7d-3   SSL shared libraries
ii  libstdc++51:3.3.4-2  The GNU Standard C++ Library v3
ii  libx11-6  4.3.0.dfsg.1-4 X Window System protocol client li
ii  libxcursor1   1.1.3-1X cursor management library
ii  libxext6  4.3.0.dfsg.1-4 X Window System miscellaneous exte
ii  libxft2   2.1.2-6FreeType-based font drawing librar
ii  libxmu6   4.3.0.dfsg.1-4 X Window System miscellaneous util
ii  libxrandr24.3.0.dfsg.1-4 X Window System Resize, Rotate and
ii  libxrender1   0.8.3-7X Rendering Extension client libra
ii  libxt64.3.0.dfsg.1-4 X Toolkit Intrinsics
ii  libxtst6  4.3.0-5X Window System event recording an
ii  perl-suid 5.8.4-2Runs setuid Perl scripts.
ii  xlibmesa-gl [libgl1]  4.3.0.dfsg.1-6 Mesa 3D graphics library [XFree86]
ii  xlibs 4.3.0.dfsg.1-6 X Window System client libraries m
ii  zlib1g1:1.2.1.1-5compression library - runtime

-- no debconf information



Bug#263372: incomplete upgrade?

2004-08-03 Thread Josh Metzler
It looks to me like you have an incomplete upgrade.  My guess is that the 
problem is because your kdebase-data is old.  I just upgraded today, and my 
kdebase-data is version 4:3.2.3-1.  kcontrol works fine for me.

I also see that a number of your X packages are 2 debian revisions out of 
date.  Maybe you haven't done an apt-get -u dist-upgrade in a while?

I hope this helps,
Josh



Processing of kdemultimedia_3.2.3-1_i386.changes

2004-08-03 Thread Archive Administrator
kdemultimedia_3.2.3-1_i386.changes uploaded successfully to localhost
along with the files:
  kdemultimedia_3.2.3-1.dsc
  kdemultimedia_3.2.3.orig.tar.gz
  kdemultimedia_3.2.3-1.diff.gz
  kdemultimedia-dev_3.2.3-1_i386.deb
  artsbuilder_3.2.3-1_i386.deb
  juk_3.2.3-1_i386.deb
  kaboodle_3.2.3-1_i386.deb
  kaudiocreator_3.2.3-1_i386.deb
  kdemultimedia-kfile-plugins_3.2.3-1_i386.deb
  kdemultimedia-kio-plugins_3.2.3-1_i386.deb
  kmid_3.2.3-1_i386.deb
  kmix_3.2.3-1_i386.deb
  krec_3.2.3-1_i386.deb
  kscd_3.2.3-1_i386.deb
  libarts1-audiofile_3.2.3-1_i386.deb
  libarts1-mpeglib_3.2.3-1_i386.deb
  libarts1-xine_3.2.3-1_i386.deb
  libkcddb1_3.2.3-1_i386.deb
  mpeglib_3.2.3-1_i386.deb
  noatun_3.2.3-1_i386.deb
  kdemultimedia_3.2.3-1_all.deb

Greetings,

Your Debian queue daemon



Bug#260749: marked as done (FTBFS: Missing Build-Depends inter alia)

2004-08-03 Thread Debian Bug Tracking System
Your message dated Tue, 03 Aug 2004 22:02:08 -0400
with message-id [EMAIL PROTECTED]
and subject line Bug#260749: fixed in kdemultimedia 4:3.2.3-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)

--
Received: (at submit) by bugs.debian.org; 21 Jul 2004 23:57:17 +
From [EMAIL PROTECTED] Wed Jul 21 16:57:17 2004
Return-path: [EMAIL PROTECTED]
Received: from zoon.lafn.org [206.117.18.9] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1BnQxZ-0003mM-00; Wed, 21 Jul 2004 16:57:17 -0700
Received: from localhost (host-66-81-29-93.rev.o1.com [66.81.29.93])
by zoon.lafn.org (8.12.3p3/8.11.3) with ESMTP id i6LNv0ox063523
for [EMAIL PROTECTED]; Wed, 21 Jul 2004 16:57:13 -0700 (PDT)
(envelope-from [EMAIL PROTECTED])
Received: from kraai by localhost with local (Exim 4.32)
id 1BnPS0-RF-OM
for [EMAIL PROTECTED]; Wed, 21 Jul 2004 15:20:36 -0700
Date: Wed, 21 Jul 2004 15:20:36 -0700
From: Matt Kraai [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: FTBFS: Missing Build-Depends inter alia
Message-ID: [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha1;
protocol=application/pgp-signature; boundary=YiEDa0DAkWCtVeE4
Content-Disposition: inline
User-Agent: Mutt/1.5.6+20040523i
Sender: Matt Kraai [EMAIL PROTECTED]
X-Virus-Scanned: clamd / ClamAV version 0.70, clamav-milter version 0.70j
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 


--YiEDa0DAkWCtVeE4
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable

Package: kdemultimedia
Version: 4:3.2.2-1
Severity: important

This package fails to build from source:

 ...
 /bin/sh ../../libtool --silent --mode=3Dlink --tag=3DCXX g++  -Wnon-virtua=
l-dtor -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=3D500 -D_BSD_SOURCE -Wc=
ast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -Wwrite-s=
trings -DNDEBUG -DNO_DEBUG -O2 -Wformat-security -Wmissing-format-attribute=
 -fno-exceptions -fno-check-new -fno-common -DQT_CLEAN_NAMESPACE -DQT_NO_AS=
CII_CAST -DQT_NO_STL -DQT_NO_COMPAT -DQT_NO_TRANSLATION-o libmpeg.la -r=
path /usr/lib -L/usr/X11R6/lib -L/usr/share/qt3/lib -L/usr/lib  -release 0.=
3.0 dummy.lo mpgplayer/libmpgplayer.la mpegplay/libmpegplay.la splay/libspl=
ay.la oggvorbis/liboggvorbisbase.la tplay/libtplay.la decoder/libdecoder.la=
 output/liboutput.la input/libinput.la util/libutil.la frame/libframe.la yu=
v/libyuvPlugin.la  -lX11 -lXext -lm -lstdc++ -lXv -lXxf86dga_pic  -lXxf86vm=
_pic  -lcdda_paranoia -lcdda_interface  -lvorbisfile -lvorbis -logg -lpthre=
ad=20
 /usr/bin/ld: cannot find -lXxf86dga_pic
 collect2: ld returned 1 exit status
 make[5]: *** [libmpeg.la] Error 1
 make[5]: Leaving directory `/tmp/buildd/kdemultimedia-3.2.2/obj-i386-linux=
/mpeglib/lib'
 ...

Adding xlibs-static-pic to the Build-Depends fixes this problem,
but the build still fails with the following error:

 ...
 /bin/sh ../../libtool --silent --mode=3Dlink --tag=3DCXX g++ -DEXAMPLES_DI=
R=3D'/usr/share/apps/artsbuilder/examples' -Wnon-virtual-dtor -Wno-long-l=
ong -Wundef -ansi -D_XOPEN_SOURCE=3D500 -D_BSD_SOURCE -Wcast-align -Wconver=
sion -Wchar-subscripts -Wall -W -Wpointer-arith -Wwrite-strings -DNDEBUG -D=
NO_DEBUG -O2 -Wformat-security -Wmissing-format-attribute -fno-exceptions -=
fno-check-new -fno-common -DQT_CLEAN_NAMESPACE -DQT_NO_ASCII_CAST -DQT_NO_S=
TL -DQT_NO_COMPAT -DQT_NO_TRANSLATION   -o libartsbuilder.la -rpath /usr/li=
b -L/usr/X11R6/lib -L/usr/share/qt3/lib -L/usr/lib  -L/usr/lib -no-undefine=
d -Wl,--no-undefined -Wl,--allow-shlib-undefined libartsbuilder_la.all_cc.l=
o  -lmcop -lartsflow -ldl
 /usr/bin/ld: .libs/libartsbuilder.so.0.0.0: undefined versioned symbol nam=
e std::time_put_w@@GLIBCPP_3.2
 /usr/bin/ld: failed to set dynamic section sizes: Bad value
 collect2: ld returned 1 exit status
 make[4]: *** [libartsbuilder.la] Error 1
 ...

--=20
Matt Kraai[EMAIL PROTECTED]http://ftbfs.org/

--YiEDa0DAkWCtVeE4
Content-Type: application/pgp-signature; name=signature.asc
Content-Description: Digital signature
Content-Disposition: inline

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


Bug#258649: marked as done (kdemultimedia-dev: missing header file in libkcddb)

2004-08-03 Thread Debian Bug Tracking System
Your message dated Tue, 03 Aug 2004 22:02:08 -0400
with message-id [EMAIL PROTECTED]
and subject line Bug#258649: fixed in kdemultimedia 4:3.2.3-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)

--
Received: (at submit) by bugs.debian.org; 10 Jul 2004 21:05:08 +
From [EMAIL PROTECTED] Sat Jul 10 14:05:08 2004
Return-path: [EMAIL PROTECTED]
Received: from sentinel.hibernaculum.net [212.104.159.194] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1BjP1w-0006ep-00; Sat, 10 Jul 2004 14:05:08 -0700
Received: from sheba.hibernaculum.net ([192.168.16.2])
by sentinel.hibernaculum.net with esmtp (Exim 3.35 #1)
id 1BjP1u-0005wK-00; Sat, 10 Jul 2004 22:05:06 +0100
Received: from psiren by sheba.hibernaculum.net with local (Exim 4.34)
id 1BjP1u-0002ql-BC; Sat, 10 Jul 2004 22:05:06 +0100
Content-Type: text/plain; charset=us-ascii
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
From: Damian Kramer [EMAIL PROTECTED]
To: Debian Bug Tracking System [EMAIL PROTECTED]
Subject: kdemultimedia-dev: missing header file in libkcddb
X-Mailer: reportbug 2.63
Date: Sat, 10 Jul 2004 22:05:06 +0100
Message-Id: [EMAIL PROTECTED]
Sender: Damian Kramer [EMAIL PROTECTED]
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 

Package: kdemultimedia-dev
Version: 4:3.2.2-1
Severity: normal

The header file  /usr/include/kde/libkcddb/config.h has #include 
libkcddb/configbase.h and the Config class 
inherits ConfigBase. This file does not allow compilation, due to the missing 
configbase header file. However, it 
does not seem necessary, as removing the #include and the : public ConfigBase 
seem to allow compilation to continue.

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

Versions of packages kdemultimedia-dev depends on:
ii  artsbuilder   4:3.2.2-1  Arts synthesizer designer
ii  kdelibs4-dev  4:3.2.3-2  KDE core libraries (development fi
ii  kmid  4:3.2.2-1  midi/karaoke player for KDE
ii  kmix  4:3.2.2-1  KDE based mixer app
ii  krec  4:3.2.2-1  KDE based recorder app
ii  kscd  4:3.2.2-1  KDE based cd player
ii  libarts1-mpeglib  4:3.2.2-1  mpeglib is a mp3 and mpeg I video/
ii  libkcddb1 4:3.2.2-1  cddb library for KDE
ii  mpeglib   4:3.2.2-1  mp3 and mpeg I video/audio library
ii  noatun4:3.2.2-1  Media player (for video and audio)

-- no debconf information

---
Received: (at 258649-close) by bugs.debian.org; 4 Aug 2004 02:08:06 +
From [EMAIL PROTECTED] Tue Aug 03 19:08:06 2004
Return-path: [EMAIL PROTECTED]
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1BsBCH-0007oJ-00; Tue, 03 Aug 2004 19:08:05 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1BsB6W-0006h5-00; Tue, 03 Aug 2004 22:02:08 -0400
From: Christopher L Cheney [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.51 $
Subject: Bug#258649: fixed in kdemultimedia 4:3.2.3-1
Message-Id: [EMAIL PROTECTED]
Sender: Archive Administrator [EMAIL PROTECTED]
Date: Tue, 03 Aug 2004 22:02:08 -0400
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 

Source: kdemultimedia
Source-Version: 4:3.2.3-1

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

artsbuilder_3.2.3-1_i386.deb
  to pool/main/k/kdemultimedia/artsbuilder_3.2.3-1_i386.deb
juk_3.2.3-1_i386.deb
  to pool/main/k/kdemultimedia/juk_3.2.3-1_i386.deb
kaboodle_3.2.3-1_i386.deb
  to pool/main/k/kdemultimedia/kaboodle_3.2.3-1_i386.deb
kaudiocreator_3.2.3-1_i386.deb
  to 

kdemultimedia override disparity

2004-08-03 Thread Debian Installer
There are disparities between your recently accepted upload and the
override file for the following file(s):

juk_3.2.3-1_i386.deb: package says section is sound, override says kde.

Either the package or the override file is incorrect.  If you think
the override is correct and the package wrong please fix the package
so that this disparity is fixed in the next upload.  If you feel the
override is incorrect then please reply to this mail and explain why.

[NB: this is an automatically generated mail; if you replied to one
like it before and have not received a response yet, please ignore
this mail.  Your reply needs to be processed by a human and will be in
due course, but until then the installer will send these automated
mails; sorry.]

--
Debian distribution maintenance software

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



kdemultimedia_3.2.3-1_i386.changes ACCEPTED

2004-08-03 Thread Debian Installer

Accepted:
artsbuilder_3.2.3-1_i386.deb
  to pool/main/k/kdemultimedia/artsbuilder_3.2.3-1_i386.deb
juk_3.2.3-1_i386.deb
  to pool/main/k/kdemultimedia/juk_3.2.3-1_i386.deb
kaboodle_3.2.3-1_i386.deb
  to pool/main/k/kdemultimedia/kaboodle_3.2.3-1_i386.deb
kaudiocreator_3.2.3-1_i386.deb
  to pool/main/k/kdemultimedia/kaudiocreator_3.2.3-1_i386.deb
kdemultimedia-dev_3.2.3-1_i386.deb
  to pool/main/k/kdemultimedia/kdemultimedia-dev_3.2.3-1_i386.deb
kdemultimedia-kfile-plugins_3.2.3-1_i386.deb
  to pool/main/k/kdemultimedia/kdemultimedia-kfile-plugins_3.2.3-1_i386.deb
kdemultimedia-kio-plugins_3.2.3-1_i386.deb
  to pool/main/k/kdemultimedia/kdemultimedia-kio-plugins_3.2.3-1_i386.deb
kdemultimedia_3.2.3-1.diff.gz
  to pool/main/k/kdemultimedia/kdemultimedia_3.2.3-1.diff.gz
kdemultimedia_3.2.3-1.dsc
  to pool/main/k/kdemultimedia/kdemultimedia_3.2.3-1.dsc
kdemultimedia_3.2.3-1_all.deb
  to pool/main/k/kdemultimedia/kdemultimedia_3.2.3-1_all.deb
kdemultimedia_3.2.3.orig.tar.gz
  to pool/main/k/kdemultimedia/kdemultimedia_3.2.3.orig.tar.gz
kmid_3.2.3-1_i386.deb
  to pool/main/k/kdemultimedia/kmid_3.2.3-1_i386.deb
kmix_3.2.3-1_i386.deb
  to pool/main/k/kdemultimedia/kmix_3.2.3-1_i386.deb
krec_3.2.3-1_i386.deb
  to pool/main/k/kdemultimedia/krec_3.2.3-1_i386.deb
kscd_3.2.3-1_i386.deb
  to pool/main/k/kdemultimedia/kscd_3.2.3-1_i386.deb
libarts1-audiofile_3.2.3-1_i386.deb
  to pool/main/k/kdemultimedia/libarts1-audiofile_3.2.3-1_i386.deb
libarts1-mpeglib_3.2.3-1_i386.deb
  to pool/main/k/kdemultimedia/libarts1-mpeglib_3.2.3-1_i386.deb
libarts1-xine_3.2.3-1_i386.deb
  to pool/main/k/kdemultimedia/libarts1-xine_3.2.3-1_i386.deb
libkcddb1_3.2.3-1_i386.deb
  to pool/main/k/kdemultimedia/libkcddb1_3.2.3-1_i386.deb
mpeglib_3.2.3-1_i386.deb
  to pool/main/k/kdemultimedia/mpeglib_3.2.3-1_i386.deb
noatun_3.2.3-1_i386.deb
  to pool/main/k/kdemultimedia/noatun_3.2.3-1_i386.deb
Announcing to debian-devel-changes@lists.debian.org
Closing bugs: 258649 260749 


Thank you for your contribution to Debian.



packaging on KDE 3.3 (coordination effort)

2004-08-03 Thread Jeremy Shaw
Hello,

Since it looks like KDE 3.2 will be going into Sarge, and not KDE 3.3,
I assume this means the packaging of the KDE 3.3 is going to be on
hold for a while, until KDE 3.2.3 is flushed out.

We, (linspire, inc), however, are still interested in getting KDE 3.3
packaged ASAP -- which (probably) means doing it ourselves. But, I
wanted to coordinate our efforts as much as possible, so we are not
duplicating each others work.

I am not exactly sure how this would work best. I could annouce each
morning what we intend to work on, and post patches at the end of the
day...

We are managing our changes in tla and could provide a public mirror
if that would be preferable. Or, we would be happy to commit to a
repository of your choice.

Please let us know.

Thanks!
Jeremy Shaw.



Bug#263372: incomplete upgrade?

2004-08-03 Thread Emilian Nowak
Josh Metzler [EMAIL PROTECTED] wrote:

 It looks to me like you have an incomplete upgrade.  My guess is that the 
 problem is because your kdebase-data is old.  I just upgraded today, and my 
 kdebase-data is version 4:3.2.3-1.  kcontrol works fine for me.
I made update of kdebase-data and still got the same error. Anyway if kcontrol
needs it should be in
Depends: kdebase-data (= 4:3.2.3)

 I also see that a number of your X packages are 2 debian revisions out of 
 date.  Maybe you haven't done an apt-get -u dist-upgrade in a while?
yes, that's true. But that's why packages exist - if kcontrol needs something
in other version it should depend on it. 



Re: packaging on KDE 3.3 (coordination effort)

2004-08-03 Thread Chris Cheney
On Tue, Aug 03, 2004 at 07:48:57PM -0700, Jeremy Shaw wrote:
 Hello,
 
 Since it looks like KDE 3.2 will be going into Sarge, and not KDE 3.3,
 I assume this means the packaging of the KDE 3.3 is going to be on
 hold for a while, until KDE 3.2.3 is flushed out.
 
 We, (linspire, inc), however, are still interested in getting KDE 3.3
 packaged ASAP -- which (probably) means doing it ourselves. But, I
 wanted to coordinate our efforts as much as possible, so we are not
 duplicating each others work.
 
 I am not exactly sure how this would work best. I could annouce each
 morning what we intend to work on, and post patches at the end of the
 day...
 
 We are managing our changes in tla and could provide a public mirror
 if that would be preferable. Or, we would be happy to commit to a
 repository of your choice.
 
 Please let us know.
 
 Thanks!
 Jeremy Shaw.

I am hoping to have all of my KDE 3.2.3 debs in incoming by the end of
the night. I will continue to be working on KDE 3.3 after that. The
first rough set of debs are in experimental (some stuck in NEW queue)
right now, but they haven't been run through the file conflicts
checker, etc. I am hoping to have some usable 3.2.92 (3.3b2) debs done
by the time RC1 is released to packagers on Aug 7 so updating to KDE 3.3
won't be hard.

Thanks,

Chris Cheney

BTW - I am still looking for a job if any companies are looking for more
employees... ;)


signature.asc
Description: Digital signature


Processing of kdenetwork_3.2.3-1_i386.changes

2004-08-03 Thread Archive Administrator
kdenetwork_3.2.3-1_i386.changes uploaded successfully to localhost
along with the files:
  kdenetwork_3.2.3-1.dsc
  kdenetwork_3.2.3.orig.tar.gz
  kdenetwork_3.2.3-1.diff.gz
  dcoprss_3.2.3-1_i386.deb
  kdict_3.2.3-1_i386.deb
  kget_3.2.3-1_i386.deb
  knewsticker_3.2.3-1_i386.deb
  kopete_3.2.3-1_i386.deb
  kpf_3.2.3-1_i386.deb
  kppp_3.2.3-1_i386.deb
  krdc_3.2.3-1_i386.deb
  krfb_3.2.3-1_i386.deb
  ksirc_3.2.3-1_i386.deb
  ktalkd_3.2.3-1_i386.deb
  kwifimanager_3.2.3-1_i386.deb
  librss1_3.2.3-1_i386.deb
  librss1-dev_3.2.3-1_i386.deb
  lisa_3.2.3-1_i386.deb
  kdenetwork_3.2.3-1_all.deb

Greetings,

Your Debian queue daemon