Bug#417294: FTBFS with GCC 4.3: missing #includes

2007-04-02 Thread Martin Michlmayr
Package: klineakconfig
Version: 0.9-4
Usertags: ftbfs-gcc-4.3
Tags: patch

Your package fails to build with GCC 4.3.  Version 4.3 has not been
released yet but I'm building with a snapshot in order to find errors
and give people an advance warning.  In GCC 4.3, the C++ header
dependencies have been cleaned up.  The advantage of this is that
programs will compile faster.  The downside is that you actually
need to directly #include everything you use (but you really should
do this anyway, otherwise your program won't work with any compiler
other than GCC).  Some background of this can be found at
http://gcc.gnu.org/PR28080

You can reproduce this problem with gcc-snapshot from unstable.

> Automatic build of klineakconfig_0.9-4 on coconut0 by sbuild/ia64 0.49
...
> klineakdef.cpp: In member function 'virtual bool 
> KlineakDef::x11Event(XEvent*)':
> klineakdef.cpp:63: warning: conversion to 'int' from 'unsigned int' may alter 
> its value
> klineakdef.cpp: In member function 'QString KlineakDef::hashKbIdent()':
> klineakdef.cpp:160: error: 'getenv' was not declared in this scope
> klineakdef.cpp: In member function 'virtual QString 
> KlineakDef::saveDefFile()':
> klineakdef.cpp:172: error: 'getenv' was not declared in this scope
> klineakdef.cpp: In member function 'virtual void 
> KlineakDef::onSubmitButtonClicked()':
> klineakdef.cpp:294: error: 'getenv' was not declared in this scope
> klineakdef.cpp: In member function 'void KlineakDef::parseUserDef()':
> klineakdef.cpp:327: error: 'getenv' was not declared in this scope


--- klineakconfig/klineakdef.cpp~   2007-04-02 09:29:18.0 +
+++ klineakconfig/klineakdef.cpp2007-04-02 09:29:26.0 +
@@ -22,6 +22,7 @@
 #include "klmailclient.h"
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 

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


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



Bug#417305: FTBFS with GCC 4.3: missing #includes

2007-04-02 Thread Martin Michlmayr
Package: ksimus
Version: 0.3.6-2-12
Usertags: ftbfs-gcc-4.3
Tags: patch

Your package fails to build with GCC 4.3.  Version 4.3 has not been
released yet but I'm building with a snapshot in order to find errors
and give people an advance warning.  In GCC 4.3, the C++ header
dependencies have been cleaned up.  The advantage of this is that
programs will compile faster.  The downside is that you actually
need to directly #include everything you use (but you really should
do this anyway, otherwise your program won't work with any compiler
other than GCC).  Some background of this can be found at
http://gcc.gnu.org/PR28080

You can reproduce this problem with gcc-snapshot from unstable.

> Automatic build of ksimus_0.3.6-2-12 on coconut0 by sbuild/ia64 0.49
...
> componentmap.cpp: In member function 'void 
> ComponentMap::addRouteList(CPointListList*, mapItem)':
> componentmap.cpp:140: warning: conversion to 'unsigned int' from 'int' may 
> alter its value
> componentmap.cpp:140: warning: conversion to 'unsigned int' from 'int' may 
> alter its value
> componentmap.cpp: In member function 'void ComponentMap::draw(QPainter*)':
> componentmap.cpp:153: warning: conversion to 'unsigned int' from 'int' may 
> alter its value
> componentmap.cpp: In member function 'bool 
> ComponentMap::findRoute(ConnectorList*, CPointListList*)':
> componentmap.cpp:211: error: 'abs' was not declared in this scope
> componentmap.cpp:240: error: 'abs' was not declared in this scope


--- ksimus/componentmap.cpp~2007-04-02 09:52:52.0 +
+++ ksimus/componentmap.cpp 2007-04-02 09:53:01.0 +
@@ -18,6 +18,7 @@
 #include 
 #include 
 #include 
+#include 
 
 
 #include "resource.h"

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


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



Bug#417317: FTBFS with GCC 4.3: missing #includes

2007-04-02 Thread Martin Michlmayr
Package: late
Version: 0.1.0-9
Usertags: ftbfs-gcc-4.3
Tags: patch

Your package fails to build with GCC 4.3.  Version 4.3 has not been
released yet but I'm building with a snapshot in order to find errors
and give people an advance warning.  In GCC 4.3, the C++ header
dependencies have been cleaned up.  The advantage of this is that
programs will compile faster.  The downside is that you actually
need to directly #include everything you use (but you really should
do this anyway, otherwise your program won't work with any compiler
other than GCC).  Some background of this can be found at
http://gcc.gnu.org/PR28080

You can reproduce this problem with gcc-snapshot from unstable.

> Automatic build of late_0.1.0-9 on coconut0 by sbuild/ia64 0.49
...
> if ia64-linux-gnu-g++ -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" 
> -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" 
> -DPACKAGE=\"late\" -DVERSION=\"0.1.0\" -DX_DISPLAY_MISSING=1 
> -DHAVE_LIBSDL_IMAGE=1 -DHAVE_LIBSTDC__=1  -I. -I.  -Wall 
> -DDATADIR=\"/usr/share/games/late\" -DLOCALSTATEDIR=\"/usr/var\"   -Wall -g 
> -O2 -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -MT init.o -MD -MP -MF 
> ".deps/init.Tpo" \
> -c -o init.o `test -f 'init.cpp' || echo './'`init.cpp; \
>   then mv -f ".deps/init.Tpo" ".deps/init.Po"; \
>   else rm -f ".deps/init.Tpo"; exit 1; \
>   fi
> init.cpp: In function 'int main(int, char**)':
> init.cpp:196: error: 'exit' was not declared in this scope

--- src/init.cpp~   2007-04-02 10:22:19.0 +
+++ src/init.cpp2007-04-02 10:22:27.0 +
@@ -24,6 +24,7 @@
 #include "graphics.h"
 #include "arch.h"
 #include "scorescreen.h"
+#include 
 #include 
 #include 
 using namespace std; 

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


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



Processing of drip_0.9.0-4_amd64.changes

2007-04-02 Thread Archive Administrator
drip_0.9.0-4_amd64.changes uploaded successfully to localhost
along with the files:
  drip_0.9.0-4.dsc
  drip_0.9.0-4.diff.gz
  drip_0.9.0-4_amd64.deb

Greetings,

Your Debian queue daemon


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



Processing of noffle_1.2.0~rc1-7_amd64.changes

2007-04-02 Thread Archive Administrator
noffle_1.2.0~rc1-7_amd64.changes uploaded successfully to localhost
along with the files:
  noffle_1.2.0~rc1-7.dsc
  noffle_1.2.0~rc1-7.diff.gz
  noffle_1.2.0~rc1-7_amd64.deb

Greetings,

Your Debian queue daemon


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



drip_0.9.0-4_amd64.changes ACCEPTED

2007-04-02 Thread Debian Installer

Accepted:
drip_0.9.0-4.diff.gz
  to pool/main/d/drip/drip_0.9.0-4.diff.gz
drip_0.9.0-4.dsc
  to pool/main/d/drip/drip_0.9.0-4.dsc
drip_0.9.0-4_amd64.deb
  to pool/main/d/drip/drip_0.9.0-4_amd64.deb


Override entries for your package:
drip_0.9.0-4.dsc - source graphics
drip_0.9.0-4_amd64.deb - extra graphics

Announcing to debian-devel-changes@lists.debian.org


Thank you for your contribution to Debian.


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



Bug#417370: FTBFS with GCC 4.3: missing #includes

2007-04-02 Thread Martin Michlmayr
Package: lineak-xosdplugin
Version: 1:0.9-4
Usertags: ftbfs-gcc-4.3
Tags: patch

Your package fails to build with GCC 4.3.  Version 4.3 has not been
released yet but I'm building with a snapshot in order to find errors
and give people an advance warning.  In GCC 4.3, the C++ header
dependencies have been cleaned up.  The advantage of this is that
programs will compile faster.  The downside is that you actually
need to directly #include everything you use (but you really should
do this anyway, otherwise your program won't work with any compiler
other than GCC).  Some background of this can be found at
http://gcc.gnu.org/PR28080

You can reproduce this problem with gcc-snapshot (20070326-1 or higher)
from unstable.

> Automatic build of lineak-xosdplugin_1:0.9-4 on coconut0 by sbuild/ia64 0.49
...
>  ia64-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I. -I.. -g -Wall -O2 -I/usr/include 
> -I.. -I. -I -I/usr/include/lineak -I/usr/include -Wnon-virtual-dtor 
> -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align 
> -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -Wwrite-strings -O2 
> -Wformat-security -Wmissing-format-attribute -fno-exceptions -fno-check-new 
> -fno-common -MT xosdctrl.lo -MD -MP -MF .deps/xosdctrl.Tpo -c xosdctrl.cpp  
> -fPIC -DPIC -o .libs/xosdctrl.o
> xosdctrl.cpp: In constructor 'xosdCtrl::xosdCtrl()':
> xosdctrl.cpp:87: error: 'atoi' was not declared in this scope
> xosdctrl.cpp: In member function 'virtual void xosdCtrl::init(LConfig&, 
> bool)':
> xosdctrl.cpp:143: error: 'atoi' was not declared in this scope
> xosdctrl.cpp: In member function 'virtual void xosdCtrl::volume(float)':
> xosdctrl.cpp:271: warning: conversion to 'float' from 'double' may alter its 
> value
> xosdctrl.cpp: In member function 'virtual void xosdCtrl::setColor(const 
> std::string&)':
> xosdctrl.cpp:330: error: 'malloc' was not declared in this scope
> xosdctrl.cpp:335: error: 'free' was not declared in this scope
> make[3]: *** [xosdctrl.lo] Error 1

--- xosd_plugin/xosdctrl.cpp~   2007-04-02 13:16:28.0 +
+++ xosd_plugin/xosdctrl.cpp2007-04-02 13:16:36.0 +
@@ -21,6 +21,7 @@
 #include 
 #include 
 
+#include 
 
 using namespace lineak_core_functions;
 using namespace std;

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


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



Bug#417369: FTBFS with GCC 4.3: missing #includes

2007-04-02 Thread Martin Michlmayr
Package: lineak-kdeplugins
Version: 2:0.9-4
Usertags: ftbfs-gcc-4.3
Tags: patch

Your package fails to build with GCC 4.3.  Version 4.3 has not been
released yet but I'm building with a snapshot in order to find errors
and give people an advance warning.  In GCC 4.3, the C++ header
dependencies have been cleaned up.  The advantage of this is that
programs will compile faster.  The downside is that you actually
need to directly #include everything you use (but you really should
do this anyway, otherwise your program won't work with any compiler
other than GCC).  Some background of this can be found at
http://gcc.gnu.org/PR28080

You can reproduce this problem with gcc-snapshot (20070326-1 or higher)
from unstable.

> Automatic build of lineak-kdeplugins_2:0.9-4 on coconut0 by sbuild/ia64 0.49
...
> kmixclient.cpp: In member function 'int KMIXClient::volumeUp(int, 
> std::string)':
> kmixclient.cpp:80: error: 'abs' was not declared in this scope
> kmixclient.cpp: In member function 'int KMIXClient::volumeDown(int, 
> std::string)':
> kmixclient.cpp:98: error: 'abs' was not declared in this scope
> kmixclient.cpp: In member function 'int KMIXClient::mute(std::string)':
> kmixclient.cpp:119: error: 'atoi' was not declared in this scope

--- kmix_plugin/kmixclient.cpp~ 2007-04-02 13:14:33.0 +
+++ kmix_plugin/kmixclient.cpp  2007-04-02 13:14:44.0 +
@@ -28,6 +28,7 @@
 #include 

 #include 

 #include 

+#include 

 #include 

 #include 

 #include "kmixclient.h"


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


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



noffle_1.2.0~rc1-7_amd64.changes ACCEPTED

2007-04-02 Thread Debian Installer

Accepted:
noffle_1.2.0~rc1-7.diff.gz
  to pool/main/n/noffle/noffle_1.2.0~rc1-7.diff.gz
noffle_1.2.0~rc1-7.dsc
  to pool/main/n/noffle/noffle_1.2.0~rc1-7.dsc
noffle_1.2.0~rc1-7_amd64.deb
  to pool/main/n/noffle/noffle_1.2.0~rc1-7_amd64.deb


Override entries for your package:
noffle_1.2.0~rc1-7.dsc - source news
noffle_1.2.0~rc1-7_amd64.deb - optional news

Announcing to debian-devel-changes@lists.debian.org
Closing bugs: 417037 


Thank you for your contribution to Debian.


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



Bug#417373: FTBFS with GCC 4.3: missing #includes

2007-04-02 Thread Martin Michlmayr
Package: lineakd
Version: 1:0.9-3
Usertags: ftbfs-gcc-4.3
Tags: patch

Your package fails to build with GCC 4.3.  Version 4.3 has not been
released yet but I'm building with a snapshot in order to find errors
and give people an advance warning.  In GCC 4.3, the C++ header
dependencies have been cleaned up.  The advantage of this is that
programs will compile faster.  The downside is that you actually
need to directly #include everything you use (but you really should
do this anyway, otherwise your program won't work with any compiler
other than GCC).  Some background of this can be found at
http://gcc.gnu.org/PR28080

You can reproduce this problem with gcc-snapshot (20070326-1 or higher)
from unstable.

> Automatic build of lineakd_1:0.9-3 on coconut0 by sbuild/ia64 0.49
...
> ../lineak/lbutton.h:46: warning: type qualifiers ignored on function return 
> type
> xmgr.cpp: In constructor 'Xmgr::Xmgr(std::string)':
> xmgr.cpp:46: warning: cast from 'const char*' to '*' 
> increases required alignment of target type
> xmgr.cpp: In member function 'void Xmgr::openXkbDisplay(std::string)':
> xmgr.cpp:78: error: 'malloc' was not declared in this scope
> xmgr.cpp:82: error: 'free' was not declared in this scope
> xmgr.cpp: In member function 'void Xmgr::commitXKBChanges(int)':
> xmgr.cpp:126: warning: conversion to 'KeyCode' from 'int' may alter its value
> xmgr.cpp: In member function 'void Xmgr::setXKBKey(int, KeySym)':
> xmgr.cpp:172: warning: conversion to 'KeyCode' from 'int' may alter its value
> xmgr.cpp: At global scope:
> xmgr.cpp:194: warning: unused parameter 'theDisplay'
> xmgr.cpp: In member function 'bool Xmgr::getModifiers()':
> xmgr.cpp:235: warning: conversion to 'unsigned int' from 'int' may alter its 
> value
> xmgr.cpp:237: warning: conversion to 'unsigned int' from 'int' may alter its 
> value
> xmgr.cpp: In member function 'bool Xmgr::initialize(LKbd&)':
> xmgr.cpp:285: warning: conversion to 'long int' from 'long unsigned int' may 
> alter its value
> xmgr.cpp:322: error: 'exit' was not declared in this scope

--- lineak/xmgr.cpp~2007-04-02 13:17:31.0 +
+++ lineak/xmgr.cpp 2007-04-02 13:17:39.0 +
@@ -21,6 +21,7 @@
 #include 
 
 extern "C" {
+   #include 
#include 
#include 
#include 
--- lineak/defloader.h~ 2007-04-02 13:20:35.0 +
+++ lineak/defloader.h  2007-04-02 13:20:47.0 +
@@ -23,6 +23,7 @@
 #   endif
 
 #   include 
+#   include 
 #   include 
 
 class LDef;

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


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



Bug#417037: marked as done (depends on non-essential package ucf in postrm)

2007-04-02 Thread Debian Bug Tracking System
Your message dated Mon, 02 Apr 2007 13:32:03 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#417037: fixed in noffle 1.2.0~rc1-7
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)

--- Begin Message ---
Package: noffle
Version: 1.2.0~rc1-6
Severity: serious
Tags: etch-ignore
Justification: Policy violation, see section 7.2

hi,

while running archive wide piuparts tests your package failed on purge
because of ucf beeing unavailable during postrm:

  Removing noffle ...
  Purging configuration files for noffle ...
  /var/lib/dpkg/info/noffle.postrm: line 23: ucf: command not found
  dpkg: error processing noffle (--purge):
   subprocess post-removal script returned error exit status 127
  Errors were encountered while processing:
   noffle

the full log can be found here:

 http://people.debian.org/~abi/piuparts/

please be sure to use a conditional call.

Please also note: Bugs filed on Packages failing in postrm because of ucf
beeing unavailable are not considered RC for etch, so are tagged etch-ignore.

bye,
- michael

--- End Message ---
--- Begin Message ---
Source: noffle
Source-Version: 1.2.0~rc1-7

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

noffle_1.2.0~rc1-7.diff.gz
  to pool/main/n/noffle/noffle_1.2.0~rc1-7.diff.gz
noffle_1.2.0~rc1-7.dsc
  to pool/main/n/noffle/noffle_1.2.0~rc1-7.dsc
noffle_1.2.0~rc1-7_amd64.deb
  to pool/main/n/noffle/noffle_1.2.0~rc1-7_amd64.deb



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

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

Debian distribution maintenance software
pp.
Michael Ablassmeier <[EMAIL PROTECTED]> (supplier of updated noffle package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 02 Apr 2007 15:02:20 +0200
Source: noffle
Binary: noffle
Architecture: source amd64
Version: 1.2.0~rc1-7
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group <[EMAIL PROTECTED]>
Changed-By: Michael Ablassmeier <[EMAIL PROTECTED]>
Description: 
 noffle - offline news server
Closes: 417037
Changes: 
 noffle (1.2.0~rc1-7) unstable; urgency=low
 .
   * QA Upload
   * Conditional call to ucf in postrm (Closes: #417037)
Files: 
 44eca4fef4de88933820b5f8d0d14786 603 news optional noffle_1.2.0~rc1-7.dsc
 557e292c1f82e3edfa0d791153198015 26701 news optional noffle_1.2.0~rc1-7.diff.gz
 f780219d70a750f097c2be928d49c953 128344 news optional 
noffle_1.2.0~rc1-7_amd64.deb

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

iD8DBQFGEQGHEFV7g4B8rCURAms5AJ9aPC1nd0m9CaAZR+mn1Aq9S5qQJQCgwkwx
a6hxZpdU6KXP+JUAJ1zY18w=
=TQXi
-END PGP SIGNATURE-

--- End Message ---


Bug#417531: emacs-snapshot: snapshot vs elisp-manual package

2007-04-02 Thread Kevin Ryde
Package: emacs-snapshot
Version: 1:20070302-1
Severity: normal

Running up

emacs-snapshot -Q

and opening the manual

C-h i g (emacs)

then following the emacs lisp manual link

Tab Ret

opens the emacs 21 manual from the elisp-manual package,
ie. /usr/share/info/elisp.gz, if you've got that package installed.
It'd be nice if it opened the emacs-snapshot version,
ie. /usr/share/info/emacs-snapshot/elisp.gz.

Maybe "/usr/share/info/emacs-MAJOR" in Info-default-directory-list
could be ahead of the plain "/usr/share/info".  Or maybe elisp-manual
should be putting its bits in the emacs-21 subdir, if that doesn't
break standalone info readers that don't know about the subdirs.


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

Versions of packages emacs-snapshot depends on:
ii  emacs-snapshot-bin-common 1:20070302-1   The GNU Emacs editor's shared, arc
ii  libasound21.0.13-2   ALSA library
ii  libc6 2.3.6.ds1-12   GNU C Library: Shared libraries
ii  libice6   1:1.0.1-2  X11 Inter-Client Exchange library
ii  libjpeg62 6b-13  The Independent JPEG Group's JPEG 
ii  libncurses5   5.5-5  Shared libraries for terminal hand
ii  libpng12-01.2.15~beta5-1 PNG library - runtime
ii  libsm61:1.0.1-3  X11 Session Management library
ii  libtiff4  3.8.2-7Tag Image File Format (TIFF) libra
ii  libungif4g4.1.4-4shared library for GIF images
ii  libx11-6  2:1.0.3-6  X11 client-side library
ii  libxmu6   1:1.0.2-2  X11 miscellaneous utility library
ii  libxpm4   1:3.5.5-2  X11 pixmap library
ii  libxt61:1.0.2-2  X11 toolkit intrinsics library
ii  xaw3dg1.5+E-14   Xaw3d widget set

emacs-snapshot recommends no packages.

Versions of packages emacs-snapshot-common depends on:
ii  dpkg  1.13.25package maintenance system for Deb
ii  emacsen-common1.4.17 Common facilities for all emacsen

Versions of packages emacs-snapshot-bin-common depends on:
ii  emacs-snapshot-common   1:20070302-1 The GNU Emacs editor's common infr
ii  libc6   2.3.6.ds1-12 GNU C Library: Shared libraries
ii  liblockfile11.06.1   NFS-safe locking library, includes

Versions of packages emacsen-common depends on:
ii  bsdmainutils  6.1.6  collection of more utilities from 

Versions of packages emacs-snapshot is related to:
ii  dictionaries-common   0.70.12Common utilities for spelling dict

-- no debconf information


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