Processed: your mail

2004-08-26 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> severity 267894 serious
Bug#267894: kdelibs4 uninstallable in sid [sparc] uses nonexistant libopenexr0
Severity set to `serious'.

> severity 267690 serious
Bug#267690: kdelibs4: depends on libopenexr0 which is not avalable. It is 
replaced by libopenexr2.
Severity set to `serious'.

> severity 267970 serious
Bug#267970: dependcy problem: kdelibs4 depends on libopenexr0
Severity set to `serious'.

> merge 266504 267894 267690 267970
Bug#266504: kdelibs4: uninstallable - rebuild against libopenexr2
Bug#267690: kdelibs4: depends on libopenexr0 which is not avalable. It is 
replaced by libopenexr2.
Bug#267894: kdelibs4 uninstallable in sid [sparc] uses nonexistant libopenexr0
Bug#267970: dependcy problem: kdelibs4 depends on libopenexr0
Merged 266504 267690 267894 267970.

> thanks
Stopping processing here.

Please contact me if you need assistance.

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



Bug#267690: clarification

2004-08-26 Thread bil Jeschke
I am not sure if I was clear on my problem.  I am trying to upgrade from KDE 
3.2.3
to 3.3 and the thing holding me back is kdelibs4 which depends on libopenexr0. 
libopenexr0 is not in any repository anymore as it has been replaced by 
libopenexr2.

[EMAIL PROTECTED]:~# apt-get -t unstable install libopenexr0
Reading Package Lists... Done
Building Dependency Tree... Done
Package libopenexr0 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
However the following packages replace it:
  libopenexr2
E: Package libopenexr0 has no installation candidate

=
I am the Lord of the Realm of Stupidity
All are Welcome to My Domain
Good to See you again!



__
Do you Yahoo!?
Read only the mail you want - Yahoo! Mail SpamGuard.
http://promotions.yahoo.com/new_mail 



Bug#266600: kopete: many things include irc.protocol including konversation and kvirc3

2004-08-26 Thread Nathaniel W. Turner
package kopete
tags 266600 + patch
thanks

Unless upstream or someone else has a better solution (which would be great), 
I think the attached patch (which manages irc.protocol with 
update-alternatives) should be applied to kdenetwork.

I have done a similar thing with my latest konversation snapshot at 
http://debian.houseofnate.net/, and I can confirm that both packages now 
install without conflicts.

Cheers,
nate

-- 
Nathaniel W. Turner
http://houseofnate.net/
diff -u -N -r ../debian.orig/changelog debian/changelog
--- ../debian.orig/changelog	2004-08-26 06:37:30.0 -0400
+++ debian/changelog	2004-08-26 07:18:20.0 -0400
@@ -1,3 +1,10 @@
+kdenetwork (4:3.3.0-1.1) unstable; urgency=low
+
+  * Manage kopete's /usr/share/services/irc.protocol with update-alternatives
+(Closes: #266600)
+
+ -- Nathaniel W. Turner <[EMAIL PROTECTED]>  Thu, 26 Aug 2004 07:15:41 -0400
+
 kdenetwork (4:3.3.0-1) unstable; urgency=high
 
   * New upstream release.
diff -u -N -r ../debian.orig/kopete.install debian/kopete.install
--- ../debian.orig/kopete.install	2004-08-26 06:37:30.0 -0400
+++ debian/kopete.install	2004-08-26 06:47:12.0 -0400
@@ -848,7 +848,7 @@
 debian/tmp/usr/share/mimelnk/application/x-kopete-emoticons.desktop
 debian/tmp/usr/share/services/aim.protocol
 debian/tmp/usr/share/services/chatwindow.desktop
-debian/tmp/usr/share/services/irc.protocol
+debian/tmp/usr/share/services/irc.protocol usr/share/apps/kopete/
 debian/tmp/usr/share/services/kconfiguredialog/kopete_alias_config.desktop
 debian/tmp/usr/share/services/kconfiguredialog/kopete_autoreplace_config.desktop
 debian/tmp/usr/share/services/kconfiguredialog/kopete_cryptography_config.desktop
diff -u -N -r ../debian.orig/kopete.postinst debian/kopete.postinst
--- ../debian.orig/kopete.postinst	1969-12-31 19:00:00.0 -0500
+++ debian/kopete.postinst	2004-08-26 07:12:44.0 -0400
@@ -0,0 +1,42 @@
+#! /bin/sh
+# postinst script for kopete
+#
+# see: dh_installdeb(1)
+
+set -e
+
+# summary of how this script can be called:
+#*  `configure' 
+#*  `abort-upgrade' 
+#*  `abort-remove' `in-favour' 
+#  
+#*  `abort-deconfigure' `in-favour'
+#`removing'
+#   
+# for details, see http://www.debian.org/doc/debian-policy/ or
+# the debian-policy package
+#
+
+case "$1" in
+configure)
+update-alternatives --quiet --install \
+/usr/share/services/irc.protocol irc.protocol \
+/usr/share/apps/kopete/irc.protocol 40
+;;
+
+abort-upgrade|abort-remove|abort-deconfigure)
+
+;;
+
+*)
+echo "postinst called with unknown argument \`$1'" >&2
+exit 1
+;;
+esac
+
+# dh_installdeb will replace this with shell code automatically
+# generated by other debhelper scripts.
+
+#DEBHELPER#
+
+exit 0
diff -u -N -r ../debian.orig/kopete.prerm debian/kopete.prerm
--- ../debian.orig/kopete.prerm	1969-12-31 19:00:00.0 -0500
+++ debian/kopete.prerm	2004-08-26 07:04:32.0 -0400
@@ -0,0 +1,36 @@
+#! /bin/sh
+# prerm script for kopete
+#
+# see: dh_installdeb(1)
+
+set -e
+
+# summary of how this script can be called:
+#*  `remove'
+#*  `upgrade' 
+#*  `failed-upgrade' 
+#*  `remove' `in-favour'  
+#*  `deconfigure' `in-favour'
+#`removing'
+#   
+# for details, see /usr/share/doc/packaging-manual/
+
+case "$1" in
+remove|upgrade|deconfigure)
+update-alternatives --quiet --remove irc.protocol \
+/usr/share/apps/kopete/irc.protocol
+;;
+failed-upgrade)
+;;
+*)
+echo "prerm called with unknown argument \`$1'" >&2
+exit 0
+;;
+esac
+
+# dh_installdeb will replace this with shell code automatically
+# generated by other debhelper scripts.
+
+#DEBHELPER#
+
+exit 0


pgpspah7bLP2G.pgp
Description: signature


Processed: Re: kopete: many things include irc.protocol including konversation and kvirc3

2004-08-26 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> package kopete
Ignoring bugs not assigned to: kopete

> tags 266600 + patch
Bug#266600: kopete: many things include irc.protocol including konversation and 
kvirc3
Tags were: sid
Tags added: patch

> thanks
Stopping processing here.

Please contact me if you need assistance.

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



Processed: merging these two wishlist bugs

2004-08-26 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> merge 237742 250363
Bug#237742: kde: should upgrade to latest KDE
Bug#250363: Please package KDE version 3.2.2 for Debian.
Merged 237742 250363.

> thanks
Stopping processing here.

Please contact me if you need assistance.

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



Bug#268273: kontact: splashscreen content missing

2004-08-26 Thread Friedemann Schorer
Package: kontact
Version: 4:3.3.0-1
Severity: minor

Starting kontact here invokes kontact, a splash screen is opend, but no
image is displayed in it (is this on purpose? are my anticipations
wrong? ;-) )
The status bar at bottom of the splash screen is displayed properly.

Best regards,


F.Schorer


-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.7-1-k7
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED]

Versions of packages kontact depends on:
ii  kdelibs4 4:3.3.0-1   KDE core libraries
ii  korganizer   4:3.3.0-1   KDE personal organizer
ii  kpilot   4:3.3.0-1   KDE Palm Pilot hot-sync tool
ii  libc62.3.2.ds1-13GNU C Library: Shared libraries a
ii  libgcc1  1:3.4.1-4sarge1 GCC support library
ii  libkcal2 4:3.3.0-1   KDE calendaring library
ii  libkdenetwork2   4:3.3.0-1   KDE Network library
ii  libkdepim1   4:3.3.0-1   KDE PIM library
ii  libqt3c102-mt3:3.3.3-4   Qt GUI Library (Threaded runtime 
ii  libstdc++5   1:3.3.4-6sarge1 The GNU Standard C++ Library v3

-- no debconf information

-- 
Anekdote:
Der englische Arbeiterfuehrer Bevan war ein leidenschaftlicher Zeitungsleser. 
Noch auf dem Krankenlager kurz vor seinem Tode, las er taeglich ein Dutzend 
Zeitungen. Lassen Sie mich nur, sagte er zu seinem Arzt; die Zeitungen sind 
die einzige Form der Dichtung, fuer die ich in meinem Leben Zeit gehabt habe.

Bitte senden Sie mir keine Word- oder sonstige Microsoft-Office-Dokumente. Die 
Begruendung fuer diese vielleicht etwas befremdlich erscheinende Bitte finden 
Sie unter

http://www.fsf.org/philosophy/no-word-attachments.de.html



Bug#266504: Workaround

2004-08-26 Thread Pierre Habouzit
>The workaround as highlighted in the #debian-kde faq is to install the
>appropriate libopenexr0 from 
>http://snapshot.debian.net/archive/2004/08/18/debian/pool/main/o/openexr/.

sure, but still, it's very annoying since nothing that depends on 
kdelibs is able to be built from autobuilders :

[habouzit amaretto] pdebuild
[...]
 -> Considering  kdepim-dev (>= 3.2.0)
   -> Trying kdepim-dev
   -> Cannot install kdepim-dev; apt errors follow:
[...]


so I cannot build a package of mine. and it will be the same for the 
freshly uploaded kdepim and stuff like that...
-- 
Pierre Habouzit


pgpP8VxzrpK2S.pgp
Description: PGP signature


Bug#266504: Workaround

2004-08-26 Thread Jeff Bonham
The workaround as highlighted in the #debian-kde faq is to install the
appropriate libopenexr0 from
http://snapshot.debian.net/archive/2004/08/18/debian/pool/main/o/openexr/.

-- 
Jeff Bonham
[EMAIL PROTECTED]
PGP Public Key ID: BA289747


signature.asc
Description: Digital signature


Bug#268215: kedit: saving and losing of 'tab' and maybe others.

2004-08-26 Thread Kevin Mark
Package: kedit
Version: 4:3.3.0-1
Severity: normal

Hi kedit folks,
a local lug users complained that his kedit 3.3 lost tabs. I tried a
test on my kedit 3.2: new doc,add tabs and text, save doc, close, reopen
doc. This was ok. I had the previous kde 3.2 and had no prob. I recently 
upgraded to 3.3 and now I have the same problem. That if I do the same 
test, when I reopen, the tab->space. note: he uses Arch Linux. I did a 
comparison of the ldd output of my old, my new and his and I didnt find 
any issues, so I guess it was a recent change to the source. That is a 
guess from an amature, so dont take it to the bank. but who knows? Also,
would an ldd comparison be helpful?
HTH
-Kev

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.4-1-386
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8

Versions of packages kedit depends on:
ii  kdelibs4  4:3.3.0-1  KDE core libraries
ii  libart-2.0-2  2.3.16-6   Library of functions for 2D graphi
ii  libc6 2.3.2.ds1-16   GNU C Library: Shared libraries an
ii  libfam0c102   2.7.0-5client library to control the FAM 
ii  libgcc1   1:3.4.1-5  GCC support library
ii  libice6   4.3.0.dfsg.1-6 Inter-Client Exchange library
ii  libidn11  0.5.2-1GNU libidn library, implementation
ii  libpng12-01.2.5.0-7  PNG library - runtime
ii  libqt3c102-mt 3:3.3.3-4  Qt GUI Library (Threaded runtime v
ii  libsm64.3.0.dfsg.1-6 X Window System Session Management
ii  libstdc++51:3.3.4-7  The GNU Standard C++ Library v3
ii  libx11-6  4.3.0.dfsg.1-6 X Window System protocol client li
ii  libxext6  4.3.0.dfsg.1-6 X Window System miscellaneous exte
ii  libxrender1   0.8.3-7X Rendering Extension client libra
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#266764: Subject: kdepim-dev: overwrite conflicts with kdelibs4-dev

2004-08-26 Thread Goswin von Brederlow
Hi,

I'm setting this serious since it causes FTBFS bugs on other packages.

MfG
Goswin



Bug#268213: kdelibs4-dev: overwrite conflicts with kdepim-dev

2004-08-26 Thread Goswin Brederlow
Package: kdelibs4-dev
Version: 4:3.3.0-1
Severity: important

Hi,

kdelibs4-dev and kdepim-dev have overlapping files. One of them has to
drop the file and both need to add versioned depends or conflicts
to fixed versions.

--
Unpacking kdepim-dev (from .../kdepim-dev_4%3a3.2.3-1_mips.deb) ...
dpkg: error processing 
/home/buildd/build/chroot-unstable/var/cache/apt/archives/kdepim-dev_4%3a3.2.3-1_mips.deb
 (--unpack):
 trying to overwrite `/usr/include/kde/knewstuff/downloaddialog.h', which is 
also in package kdelibs4-dev
dpkg-deb: subprocess paste killed by signal (Broken pipe)
--

MfG
Goswin



Processed: severity of 266764 is serious

2004-08-26 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> severity 266764 serious
Bug#266764: kdepim-dev: overwrite conflicts with kdelibs4-dev
Severity set to `serious'.

>
End of message, stopping processing here.

Please contact me if you need assistance.

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



Limited time offer.

2004-08-26 Thread Ezra Padgett








Hello Hedrick,

 



 

Fantastic, huh? Take a look in your 128 bit secure site


 

 

 

 

 

 

Hope to see you soon.

 

 

 

May

http://www.a-z-meds.com/book/

There if you don’t care

 

 








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

iD8DBQFBJu5KmqjQ0CJFipgRAlWiAKDXTRUqWqhoeRAivy7VOzPKCq/V4wCfZN8o
GMqJ2higHvhiSI/uKyg5Xyg=ER04
-END PGP SIGNATURE-


Bug#267894: Ditto for i386 (Was : kdelibs4 uninstallable in sid [sparc] uses nonexistant libopenexr0)

2004-08-26 Thread Emmanuel Charpentier
All is in the title... A modicuml of search shows that libopenexr2 
exists for alpha, arm, hppa, i386, ia64, m68k, mips, mipsel, powerpc, 
s390 and sparc, bit no libopenexr0 exists currently.


A misnomer ? A candidate for a virtual package ? Or someting else 
entierely ?


Emmanuel Charpentier



Bug#266106: kdm: confirmed

2004-08-26 Thread Sebastian Bleikamp
Package: kdm
Version: 4:3.3.0-1
Followup-For: Bug #266106



Hey, I have the same problem.

When I start kdm and try to type something, nothing happens. If I manage to 
switch 
kdm off again (kill x with mouse / from a remote machine), I see what I typed 
in 
console no 2. Nasty, because of the passwords. 

If I start kde manually w/o kdm, everything is fine.


Sebastian




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

Versions of packages kdm depends on:
ii  debconf   1.4.32 Debian configuration management sy
ii  kdebase-bin   4:3.3.0-1  KDE Base (binaries)
ii  kdelibs4  4:3.3.0-1  KDE core libraries
ii  libart-2.0-2  2.3.16-6   Library of functions for 2D graphi
ii  libc6 2.3.2.ds1-16   GNU C Library: Shared libraries an
ii  libfam0c102   2.7.0-5client library to control the FAM 
ii  libgcc1   1:3.4.1-7  GCC support library
ii  libice6   4.3.0.dfsg.1-6 Inter-Client Exchange library
ii  libidn11  0.5.2-3GNU libidn library, implementation
ii  libpam-runtime0.76-22Runtime support for the PAM librar
ii  libpam0g  0.76-22Pluggable Authentication Modules l
ii  libpng12-01.2.5.0-7  PNG library - runtime
ii  libqt3c102-mt 3:3.3.3-4  Qt GUI Library (Threaded runtime v
ii  libsm64.3.0.dfsg.1-6 X Window System Session Management
ii  libstdc++51:3.3.4-9  The GNU Standard C++ Library v3
ii  libx11-6  4.3.0.dfsg.1-6 X Window System protocol client li
ii  libxext6  4.3.0.dfsg.1-6 X Window System miscellaneous exte
ii  libxrender1   0.8.3-7X Rendering Extension client libra
ii  libxtst6  4.3.0.dfsg.1-6 X Window System event recording an
ii  xbase-clients 4.3.0.dfsg.1-6 miscellaneous X clients
ii  xlibs 4.3.0.dfsg.1-6 X Window System client libraries m
ii  zlib1g1:1.2.1.1-5compression library - runtime

-- debconf information:
  kdm/stop_running_server_with_children: false
* shared/default-x-display-manager: kdm
  kdm/daemon_name: /usr/bin/kdm




kdegames_3.3.0-1_i386.changes ACCEPTED

2004-08-26 Thread Debian Installer

Accepted:
atlantik-dev_3.3.0-1_i386.deb
  to pool/main/k/kdegames/atlantik-dev_3.3.0-1_i386.deb
atlantik_3.3.0-1_i386.deb
  to pool/main/k/kdegames/atlantik_3.3.0-1_i386.deb
kasteroids_3.3.0-1_i386.deb
  to pool/main/k/kdegames/kasteroids_3.3.0-1_i386.deb
katomic_3.3.0-1_i386.deb
  to pool/main/k/kdegames/katomic_3.3.0-1_i386.deb
kbackgammon_3.3.0-1_i386.deb
  to pool/main/k/kdegames/kbackgammon_3.3.0-1_i386.deb
kbattleship_3.3.0-1_i386.deb
  to pool/main/k/kdegames/kbattleship_3.3.0-1_i386.deb
kblackbox_3.3.0-1_i386.deb
  to pool/main/k/kdegames/kblackbox_3.3.0-1_i386.deb
kbounce_3.3.0-1_i386.deb
  to pool/main/k/kdegames/kbounce_3.3.0-1_i386.deb
kdegames-card-data_3.3.0-1_all.deb
  to pool/main/k/kdegames/kdegames-card-data_3.3.0-1_all.deb
kdegames-doc-html_3.3.0-1_all.deb
  to pool/main/k/kdegames/kdegames-doc-html_3.3.0-1_all.deb
kdegames_3.3.0-1.diff.gz
  to pool/main/k/kdegames/kdegames_3.3.0-1.diff.gz
kdegames_3.3.0-1.dsc
  to pool/main/k/kdegames/kdegames_3.3.0-1.dsc
kdegames_3.3.0-1_all.deb
  to pool/main/k/kdegames/kdegames_3.3.0-1_all.deb
kdegames_3.3.0.orig.tar.gz
  to pool/main/k/kdegames/kdegames_3.3.0.orig.tar.gz
kenolaba_3.3.0-1_i386.deb
  to pool/main/k/kdegames/kenolaba_3.3.0-1_i386.deb
kfouleggs_3.3.0-1_i386.deb
  to pool/main/k/kdegames/kfouleggs_3.3.0-1_i386.deb
kgoldrunner_3.3.0-1_i386.deb
  to pool/main/k/kdegames/kgoldrunner_3.3.0-1_i386.deb
kjumpingcube_3.3.0-1_i386.deb
  to pool/main/k/kdegames/kjumpingcube_3.3.0-1_i386.deb
klickety_3.3.0-1_i386.deb
  to pool/main/k/kdegames/klickety_3.3.0-1_i386.deb
klines_3.3.0-1_i386.deb
  to pool/main/k/kdegames/klines_3.3.0-1_i386.deb
kmahjongg_3.3.0-1_i386.deb
  to pool/main/k/kdegames/kmahjongg_3.3.0-1_i386.deb
kmines_3.3.0-1_i386.deb
  to pool/main/k/kdegames/kmines_3.3.0-1_i386.deb
kolf-dev_3.3.0-1_i386.deb
  to pool/main/k/kdegames/kolf-dev_3.3.0-1_i386.deb
kolf_3.3.0-1_i386.deb
  to pool/main/k/kdegames/kolf_3.3.0-1_i386.deb
konquest_3.3.0-1_i386.deb
  to pool/main/k/kdegames/konquest_3.3.0-1_i386.deb
kpat_3.3.0-1_i386.deb
  to pool/main/k/kdegames/kpat_3.3.0-1_i386.deb
kpoker_3.3.0-1_i386.deb
  to pool/main/k/kdegames/kpoker_3.3.0-1_i386.deb
kreversi_3.3.0-1_i386.deb
  to pool/main/k/kdegames/kreversi_3.3.0-1_i386.deb
ksame_3.3.0-1_i386.deb
  to pool/main/k/kdegames/ksame_3.3.0-1_i386.deb
kshisen_3.3.0-1_i386.deb
  to pool/main/k/kdegames/kshisen_3.3.0-1_i386.deb
ksirtet_3.3.0-1_i386.deb
  to pool/main/k/kdegames/ksirtet_3.3.0-1_i386.deb
ksmiletris_3.3.0-1_i386.deb
  to pool/main/k/kdegames/ksmiletris_3.3.0-1_i386.deb
ksnake_3.3.0-1_i386.deb
  to pool/main/k/kdegames/ksnake_3.3.0-1_i386.deb
ksokoban_3.3.0-1_i386.deb
  to pool/main/k/kdegames/ksokoban_3.3.0-1_i386.deb
kspaceduel_3.3.0-1_i386.deb
  to pool/main/k/kdegames/kspaceduel_3.3.0-1_i386.deb
ktron_3.3.0-1_i386.deb
  to pool/main/k/kdegames/ktron_3.3.0-1_i386.deb
ktuberling_3.3.0-1_i386.deb
  to pool/main/k/kdegames/ktuberling_3.3.0-1_i386.deb
kwin4_3.3.0-1_i386.deb
  to pool/main/k/kdegames/kwin4_3.3.0-1_i386.deb
libkdegames-dev_3.3.0-1_i386.deb
  to pool/main/k/kdegames/libkdegames-dev_3.3.0-1_i386.deb
libkdegames-doc_3.3.0-1_all.deb
  to pool/main/k/kdegames/libkdegames-doc_3.3.0-1_all.deb
libkdegames1_3.3.0-1_i386.deb
  to pool/main/k/kdegames/libkdegames1_3.3.0-1_i386.deb
lskat_3.3.0-1_i386.deb
  to pool/main/k/kdegames/lskat_3.3.0-1_i386.deb
Announcing to debian-devel-changes@lists.debian.org


Thank you for your contribution to Debian.



Processing of kdegames_3.3.0-1_i386.changes

2004-08-26 Thread Archive Administrator
kdegames_3.3.0-1_i386.changes uploaded successfully to localhost
along with the files:
  kdegames_3.3.0-1.dsc
  kdegames_3.3.0.orig.tar.gz
  kdegames_3.3.0-1.diff.gz
  kdegames_3.3.0-1_all.deb
  kdegames-doc-html_3.3.0-1_all.deb
  libkdegames-doc_3.3.0-1_all.deb
  kdegames-card-data_3.3.0-1_all.deb
  libkdegames1_3.3.0-1_i386.deb
  libkdegames-dev_3.3.0-1_i386.deb
  atlantik_3.3.0-1_i386.deb
  atlantik-dev_3.3.0-1_i386.deb
  kasteroids_3.3.0-1_i386.deb
  katomic_3.3.0-1_i386.deb
  kbackgammon_3.3.0-1_i386.deb
  kbattleship_3.3.0-1_i386.deb
  kblackbox_3.3.0-1_i386.deb
  kbounce_3.3.0-1_i386.deb
  kenolaba_3.3.0-1_i386.deb
  kfouleggs_3.3.0-1_i386.deb
  kgoldrunner_3.3.0-1_i386.deb
  kjumpingcube_3.3.0-1_i386.deb
  klickety_3.3.0-1_i386.deb
  klines_3.3.0-1_i386.deb
  kmahjongg_3.3.0-1_i386.deb
  kmines_3.3.0-1_i386.deb
  kolf_3.3.0-1_i386.deb
  kolf-dev_3.3.0-1_i386.deb
  konquest_3.3.0-1_i386.deb
  kpat_3.3.0-1_i386.deb
  kpoker_3.3.0-1_i386.deb
  kreversi_3.3.0-1_i386.deb
  ksame_3.3.0-1_i386.deb
  kshisen_3.3.0-1_i386.deb
  ksirtet_3.3.0-1_i386.deb
  ksmiletris_3.3.0-1_i386.deb
  ksnake_3.3.0-1_i386.deb
  ksokoban_3.3.0-1_i386.deb
  kspaceduel_3.3.0-1_i386.deb
  ktron_3.3.0-1_i386.deb
  ktuberling_3.3.0-1_i386.deb
  kwin4_3.3.0-1_i386.deb
  lskat_3.3.0-1_i386.deb

Greetings,

Your Debian queue daemon