Bug#291022: sed version of patch

2005-01-18 Thread Jörg Sommer
Hi,

I don't know if it is legal to call a program from /usr/ within an init
script, which is the case with awk. This is a sed part for the replacing:

-e 'h; s/^.*=//; x; s/[[:space:]]*=.*$/=/; s#\.#/#g; G; s/\n//'

HTH, Jörg.

-- 
Fuchs' Paradoxon (http://www.bruhaha.de/laws.html):
Wer eine allgemeine Frage beliebigen Themas nach de.alt.arnooo postet und
eine ernsthafte Antwort erwartet, ist dort eigentlich ziemlich ontopic.


signature.asc
Description: Digital signature


Bug#292155: pari-gp: Spelling mistake in Description

2005-01-25 Thread Jörg Sommer
Package: pari-gp
Severity: minor

Hi,

there should be no comma before etc in the description of the package.

 functions to compute with mathematical entities such as matrices,
 polynomials, power series, algebraic numbers, etc., and a lot of
 ^
 transcendental functions. PARI is also available as a C library to allow

etc comes from the french 'et cetera' and before et (=and) is no comma.

Jörg.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (990, 'unstable')
Architecture: powerpc (ppc)
Kernel: Linux 2.6.9
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)


signature.asc
Description: Digital signature


Bug#292501: dash doesn't parse $ENV when invoked with -c

2005-01-27 Thread Jörg Sommer
Package: dash
Version: 0.5.1-3
Severity: normal

Hi,

man dash says:
 If the environment variable ENV is set on entry to a shell, or is set in
 the .profile of a login shell, the shell next reads commands from the
 file named in ENV.  Therefore, a user should place commands that are to
...
 substituting for ``.shinit'' any filename you wish.  Since the ENV file
 is read for every invocation of the shell, including shell scripts and
 ^
 non-interactive shells, the following paradigm is useful for restricting

But dash behaves:

$ echo $ENV
/home/joerg/.shrc
$ head -4 $ENV
# ~/.shrc: executed by sh(1) for non-login shells.
# throught $ENV set in ~/.profile

echo $0 shrc
(joerg):~$ dash -c true
(joerg):~$ posh -c true
posh shrc

Bye, Jörg.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (990, 'unstable')
Architecture: powerpc (ppc)
Kernel: Linux 2.6.9
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages dash depends on:
ii  libc6   2.3.2.ds1-20 GNU C Library: Shared libraries an

-- debconf information excluded


signature.asc
Description: Digital signature


Bug#292632: file-rc: /e/i/rc doesn't run with posh

2005-01-28 Thread Jörg Sommer
Package: file-rc
Version: 0.8.7
Severity: normal
Tags: patch

Hi,

posh is a very strictly POSIX implementation, which shows some errors in
your rc and rcS script.

stty: Standardeingabe: Das Argument ist ungültig
rc: 2 -> 0
/etc/init.d/rc:96: [: -a: unexpected operator/operand
Reading configuration file /etc/runlevel.conf.
/etc/init.d/rc:219: [: -a: unexpected operator/operand
/etc/init.d/rc:237: [: -a: unexpected operator/operand
/etc/init.d/rc:237: [: -a: unexpected operator/operand
/etc/init.d/rc:237: [: -a: unexpected operator/operand
/etc/init.d/rc:243: [: -a: unexpected operator/operand
set centerline=here

The POSIX standard doesn't know the argument -a for test and the keyword
local.

A patch is appended.

Jörg.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (990, 'unstable')
Architecture: powerpc (ppc)
Kernel: Linux 2.6.9
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

-- no debconf information
--- /etc/init.d/rc  2004-08-14 18:47:29.0 +0200
+++ /tmp/rc 2005-01-28 12:49:35.687350368 +0100
@@ -60,7 +60,7 @@
 [ $debug -eq 1 ] && echo "rc: $prevlevel -> $runlevel"
   # wait for any lock to vanish (but only when not booting)
 i=0
-while [ -f "$LOCKFILE" -a "$previous" != "N" ]
+while [ -f "$LOCKFILE" ] && [ "$previous" != "N" ]
 do
 read pid < "$LOCKFILE"
 if ! kill -0 $pid &> /dev/null
@@ -129,7 +129,7 @@
 *) return $false ;;
 esac
 
-if [ $1 -ge $valid_min_seq -a $1 -le $valid_max_seq ]
+if [ $1 -ge $valid_min_seq ] && [ $1 -le $valid_max_seq ]
 then
return $true
 fi
@@ -137,8 +137,6 @@
 }
 
 element() {
-local element list IFS
-
 element="$1"
 case "$element" in
reboot | R) element=0 ;;
@@ -160,8 +158,6 @@
 }
 
 is_elem() {
-local elem x
-
 elem=$1; shift
 
 for x in $*
@@ -175,7 +171,6 @@
 # list of commands and levels is tested.
 #
 pushlevel() {
-local newcmd newlevels i add outline
 newcmd=$1;shift
 newlevels=$1; shift
 add="$newcmd:$newlevels"
@@ -213,7 +208,7 @@
 
 
 # lock the configuration file
-if [ "$prevlevel" != "N" -a "$runlevel" != "1" -a "$runlevel" != "6" ]
+if [ "$prevlevel" != "N" ] && [ "$runlevel" != "1" ] && [ "$runlevel" != "6" ]
 then
 (echo "$$" > "$LOCKFILE") || true
 fi
@@ -237,7 +232,7 @@
 done < $CFGFILE
 
 # remove lock of configuration file
-if [ "$prevlevel" != "N" -a "$runlevel" != "1" -a "$runlevel" != "6" ]
+if [ "$prevlevel" != "N" ] && [ "$runlevel" != "1" ] && [ "$runlevel" != "6" ]
 then
 rm -f "$LOCKFILE"
 fi
--- /etc/init.d/rcS 2004-08-14 18:47:29.0 +0200
+++ /tmp/rcS2005-01-28 12:58:54.377718384 +0100
@@ -55,9 +55,6 @@
 trap ":" INT QUIT TSTP
 
 element() {
-local element list IFS
-
-
 element="$1"

 [ "$2" = "in" ] && shift


signature.asc
Description: Digital signature


Bug#341107: libffi4-dev: mistake in description of package

2005-11-28 Thread Jörg Sommer
Package: libffi4-dev
Severity: minor

Hi,

the word "building" occures two time in the description: "necessary for
building building programs"

Bye, Jörg.

-- System Information:
Debian Release: unstable/experimental
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.13.1
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)


pgprvfV0zV5OL.pgp
Description: PGP signature


Bug#341272: procps: top exit with 1 (=error) when hitting 'q'

2005-11-29 Thread Jörg Sommer
Package: procps
Version: 1:3.2.6-2
Severity: normal

Hi,

when I close top the 'q' it returns with the exit status 1 which signals
and error (EXIT_FAILURE in stdlib.h). I don't see where the error should
be. top sould IMHO return with 0 as exit code.

Bye, Jörg.

-- System Information:
Debian Release: unstable/experimental
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.13.1
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages procps depends on:
ii  libc6 2.3.5-7GNU C Library: Shared libraries an
ii  libncurses5   5.5-1  Shared libraries for terminal hand

Versions of packages procps recommends:
ii  psmisc21.8-1 Utilities that use the proc filesy

-- no debconf information


pgp5GB5lpWJzn.pgp
Description: PGP signature


Bug#341369: mutt-ng: leaves new flag on mailbox when new messages get deleted

2005-11-30 Thread Jörg Sommer
Package: mutt-ng
Version: 0.0+20050814-1
Severity: normal

Hi,

when I delete a new message (flag N), but don't open the message or
remove the new flag anyhow and than switch to another mailbox, the new
flag of the old mailbox stays even through no new message is in the
mailbox.

The same I observe when I view a new message, mark it as deleted and jump
immediately to another mailbox, without going back to the index. The new
flag is held on the mailbox even through no new message is there.

Bye, Jörg.

-- System Information:
Debian Release: unstable/experimental
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.13.1
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages mutt-ng depends on:
ii  exim4-daemon-light [mail-tran 4.54-2 lightweight exim MTA (v4) daemon
ii  libc6 2.3.5-7GNU C Library: Shared libraries an
ii  libgnutls11   1.0.16-14  GNU TLS library - runtime library
ii  libidn11  0.5.18-1   GNU libidn library, implementation
ii  libncursesw5  5.5-1  Shared libraries for terminal hand
ii  libqdbm11 1.8.33-1.1 QDBM Database Libraries [runtime]
ii  libsasl2  2.1.19-1.7 Authentication abstraction library

mutt-ng recommends no packages.

-- no debconf information


pgp3lH4Chmvw5.pgp
Description: PGP signature


Bug#341704: spamoracle: support --help and --version

2005-12-02 Thread Jörg Sommer
Package: spamoracle
Version: 1.4-4
Severity: wishlist

Hi,

can you please add support for the command line options --help and
--version or their short forms -V and -h? And if --help is requested,
please do not print the help message to stderr as you do now if a wrong
option is given.

Bye, Jörg.

-- System Information:
Debian Release: unstable/experimental
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.13.1
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages spamoracle depends on:
ii  libc6 2.3.5-7GNU C Library: Shared libraries an

spamoracle recommends no packages.

-- no debconf information


pgpQrKiTUajQz.pgp
Description: PGP signature


Bug#342596: spamprobe: exits with error code after version message

2005-12-08 Thread Jörg Sommer
Package: spamprobe
Version: 1.2a-1
Severity: normal

Hi,

spamprobe exits with an error code when I request the version information:

$ spamprobe -V
error: /home/joerg/.spamprobe is not a directory
usage: spamprobe [-chmTvVxY78] [-a char] [-d basedir] [-H headers] command 
[filename...]
SpamProbe v1.2a using null database.

Copyright 2002-2005 Burton Computer Corporation
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Q Public License for more details.
$ echo $?
1

This is not apposite, because everthing's allright.

Bye, Jörg.

-- System Information:
Debian Release: unstable/experimental
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.13.1
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages spamprobe depends on:
ii  debconf [debconf-2.0] 1.4.62 Debian configuration management sy
ii  libc6 2.3.5-8GNU C Library: Shared libraries an
ii  libdb4.2  4.2.52-20  Berkeley v4.2 Database Libraries [
ii  libgcc1   1:4.0.2-5  GCC support library
ii  libstdc++64.0.2-5The GNU Standard C++ Library v3

Versions of packages spamprobe recommends:
ii  procmail  3.22-11Versatile e-mail processor

-- debconf information excluded


pgpkl7acbiGgT.pgp
Description: PGP signature


Bug#344193: rubber: support xindy

2005-12-20 Thread Jörg Sommer
Package: rubber
Version: 1.0-1
Severity: wishlist
Tags: patch

Hi,

xindy  is a new index processing system that has
some advantages over makeindex, e.g. it can handle expanded spaces (\, \;
etc.) correct.

It would be nice if rubber would support xindy. So I propose this patch.
But take it as a proof of concept. I am not a python programmer and I
didn't understand the magic in the class Module.

With this patch it works for me as expected, if I add this lines to my
latex source:

% rubber: index.xindy (default) 1
% rubber: index.language (default) german-duden
% rubber: index.modules (default) indexstyle.xdy

Regards, Jörg.

BTW: rubber is really hot!

-- System Information:
Debian Release: unstable/experimental
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.13.1
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages rubber depends on:
ii  python2.3.5-3An interactive high-level object-o
ii  tetex-bin 3.0-10.1   The teTeX binary files

rubber recommends no packages.

-- no debconf information
--- index.py2005-06-16 10:28:27.0 +0200
+++ /usr/share/rubber/rubber/rules/latex/index.py   2005-12-20 
19:40:41.0 +0100
@@ -64,6 +64,9 @@
self.path.append(doc.src_path)
self.style = None
self.opts = []
+   self.xindy = 0
+   self.modules = []
+   self.lang = ""
 
def do_order (self, *args):
for opt in args:
@@ -79,6 +82,15 @@
def do_style (self, style):
self.style = style
 
+   def do_xindy (self, use_it):
+   self.xindy = 1
+
+   def do_modules (self, *args):
+   self.modules.extend(args)
+
+   def do_language (self, lang):
+   self.lang = lang
+
def post_compile (self):
"""
Run makeindex if needed, with appropriate options and 
environment.
@@ -90,13 +102,35 @@
return 0
 
msg.progress(_("processing index %s") % self.source)
-   cmd = ["makeindex", "-o", self.target] + self.opts
-   if self.style:
-   cmd.extend(["-s", self.style])
-   cmd.append(self.pbase)
+   if self.xindy:
+   cmd = ["texindy", "--quiet"]
+   for opt in self.opts:
+   if opt == "-g":
+   if self.lang != "": 
msg.warn("\".language\" overrides \".order german\"")
+   else: self.lang = "german-din"
+   elif opt == "-l":
+   self.modules.append("letter-ordering")
+   msg.warn("specify \"letter-ordering\" 
as module instead of using .order letter")
+   else:
+   msg.error("unknown option to xindy: %s" 
% opt)
+   for mod in self.modules:
+   cmd.extend(["--module", mod])
+   if self.lang != "": cmd.extend(["--language", 
self.lang])
+   else:
+   cmd = ["makeindex"]
+   if self.style:
+   cmd.extend(["-s", self.style])
+   cmd.extend(self.opts)
+   cmd.extend(["-o", self.target])
+   if self.xindy:
+   cmd.append(self.source)
+   else:
+   cmd.append(self.pbase)
if self.path != [""]:
-   env = { 'INDEXSTYLE':
-   string.join(self.path + 
[os.getenv("INDEXSTYLE", "")], ":") }
+   if self.xindy: var_name = "XINDY_SEARCHPATH"
+   else: var_name = "INDEXSTYLE"
+   env = { var_name:
+   string.join(self.path + [os.getenv(var_name, 
"")], ":") }
else:
env = {}
if self.doc.env.execute(cmd, env):
@@ -135,6 +169,29 @@
msg.log(_("removing %s") % file, pkg="index")
os.unlink(file)
 
+# Stolen from __init__.py
+   def command (self, cmd, args, pos={}):
+   """
+   Execute the rubber command 'cmd' with arguments 'args'. This is 
called
+   when a command is found in the source file or in a 
configuration file.
+   A command name of the form 'foo.bar' is considered to be a 
command
+   'bar' for module 'foo'. The argument 'pos' describes the 
position
+   (file and line) where the command occurs.
+   """
+   #

Bug#338544: xfig: manpage missen note on .rigidtext

2005-11-10 Thread Jörg Sommer
Package: xfig
Version: 1:3.2.5-alpha5-4
Severity: normal

Hi,

the manpage misses a hint on the X resouce .rigidtext that has the same
effect as -rigid.

Bye, Jörg.

-- System Information:
Debian Release: unstable/experimental
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.13.1
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages xfig depends on:
ii  libc62.3.5-7 GNU C Library: Shared libraries an
ii  libice6  6.8.2.dfsg.1-10 Inter-Client Exchange library
ii  libjpeg626b-10   The Independent JPEG Group's JPEG 
ii  libpng12-0   1.2.8rel-5  PNG library - runtime
ii  libsm6   6.8.2.dfsg.1-10 X Window System Session Management
ii  libx11-6 6.8.2.dfsg.1-10 X Window System protocol client li
ii  libxext6 6.8.2.dfsg.1-10 X Window System miscellaneous exte
ii  libxi6   6.8.2.dfsg.1-10 X Window System Input extension li
ii  libxmu6  6.8.2.dfsg.1-10 X Window System miscellaneous util
ii  libxp6   6.8.2.dfsg.1-10 X Window System printing extension
ii  libxpm4  6.8.2.dfsg.1-10 X pixmap library
ii  libxt6   6.8.2.dfsg.1-10 X Toolkit Intrinsics
ii  xaw3dg   1.5+E-9 Xaw3d widget set
ii  xlibs6.8.2.dfsg.1-10 X Window System client libraries m
ii  zlib1g   1:1.2.3-6   compression library - runtime

Versions of packages xfig recommends:
ii  transfig1:3.2.5-alpha5-3 Utilities for converting XFig figu
ii  xfig-libs   1:3.2.5-alpha5-4 XFig image libraries and examples

-- no debconf information


pgpu3AKrHafMg.pgp
Description: PGP signature


Bug#346035: rubber: provide a summary line

2006-01-04 Thread Jörg Sommer
Package: rubber
Version: 1.0-1
Severity: wishlist

Hi,

can rubber print a summary line after compiling. Something like:

XY errors, XY warnings, XY under-/overfull boxes and XY pages written

Maybe, it is only activated if a special option (-S) is given.

Bye, Jörg.

-- System Information:
Debian Release: unstable/experimental
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.13.1
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages rubber depends on:
ii  python2.3.5-3An interactive high-level object-o
ii  tetex-bin 3.0-10.1   The teTeX binary files

rubber recommends no packages.

-- no debconf information


pgpF7Y5xU8UgG.pgp
Description: PGP signature


Bug#346139: initscripts: postinst fails, because /var/log/fsck/checkroot is missing

2006-01-05 Thread Jörg Sommer
Package: initscripts
Version: 2.86.ds1-8
Severity: important

Hi,

Installiere neue Version der Konfigurationsdatei /etc/default/tmpfs ...
/var/lib/dpkg/info/initscripts.postinst: 216: cannot create 
/var/log/fsck/checkroot: Directory nonexistent
dpkg: Fehler beim Bearbeiten von initscripts (--configure):
 Unterprozess post-installation script gab den Fehlerwert 2 zurück
Fehler traten auf beim Bearbeiten von:
 initscripts
E: Sub-process /usr/bin/dpkg returned an error code (1)

I've created /var/log/fsck by hand. 

Bye, Jörg.

-- System Information:
Debian Release: unstable/experimental
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.13.1
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages initscripts depends on:
ii  coreutils 5.93-5 The GNU core utilities
ii  debianutils   2.15.1 Miscellaneous utilities specific t
ii  dpkg  1.13.11package maintenance system for Deb
ii  e2fsprogs 1.38-2 ext2 file system utilities and lib
ii  libc6 2.3.5-8GNU C Library: Shared libraries an
ii  lsb-base  3.0-12 Linux Standard Base 3.0 init scrip
ii  util-linux2.12r-2Miscellaneous system utilities

initscripts recommends no packages.

-- no debconf information


pgpDWdkwfnKoQ.pgp
Description: PGP signature


Bug#346326: tetex-bin: postinst fails -- dvips35.map not found

2006-01-06 Thread Jörg Sommer
Package: tetex-bin
Version: 3.0-13
Severity: serious
Justification: renders package unusable

Hi,

with this version the packages tetex-extra (3.0-13) and tetex-base
(3.0-11) aren't installable anymore. Their postinst scripts fail, because
dvips35.map or bsr-interpolated.map is not found.

Bye, Jörg.

-- System Information:
Debian Release: unstable/experimental
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.13.1
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages tetex-bin depends on:
ii  debconf [debconf-2.0]1.4.67  Debian configuration management sy
ii  debianutils  2.15.2  Miscellaneous utilities specific t
ii  dpkg 1.13.11 package maintenance system for Deb
ii  ed   0.2-20  The classic unix line editor
ii  libc62.3.5-11GNU C Library: Shared libraries an
ii  libcairo21.0.2-3 The Cairo 2D vector graphics libra
ii  libfontconfig1   2.3.2-1.1   generic font configuration library
ii  libfreetype6 2.1.10-1FreeType 2 font engine, shared lib
ii  libgcc1  1:4.0.2-5   GCC support library
ii  libice6  6.8.2.dfsg.1-11 Inter-Client Exchange library
ii  libjpeg626b-11   The Independent JPEG Group's JPEG 
ii  libkpathsea4 3.0-13  path search library for teTeX (run
ii  libpaper11.1.14-3Library for handling paper charact
ii  libpng12-0   1.2.8rel-5  PNG library - runtime
ii  libpoppler0c20.4.2-1 PDF rendering library
ii  libsm6   6.8.2.dfsg.1-11 X Window System Session Management
ii  libstdc++6   4.0.2-5 The GNU Standard C++ Library v3
ii  libt1-5  5.1.0-2 Type 1 font rasterizer library - r
ii  libx11-6 6.8.2.dfsg.1-11 X Window System protocol client li
ii  libxaw8  6.8.2.dfsg.1-11 X Athena widget set library
ii  libxext6 6.8.2.dfsg.1-11 X Window System miscellaneous exte
ii  libxmu6  6.8.2.dfsg.1-11 X Window System miscellaneous util
ii  libxp6   6.8.2.dfsg.1-11 X Window System printing extension
ii  libxpm4  6.8.2.dfsg.1-11 X pixmap library
ii  libxrender1  1:0.9.0.2-1 X Rendering Extension client libra
ii  libxt6   6.8.2.dfsg.1-11 X Toolkit Intrinsics
ii  mime-support 3.35-1  MIME files 'mime.types' & 'mailcap
ii  perl 5.8.7-10Larry Wall's Practical Extraction 
ii  sed  4.1.4-5 The GNU sed stream editor
ii  tetex-base   3.0-11  Basic library files of teTeX
ii  ucf  2.004   Update Configuration File: preserv
ii  zlib1g   1:1.2.3-9   compression library - runtime

Versions of packages tetex-bin recommends:
ii  dialog1.0-20060101-1 Displays user-friendly dialog boxe
ii  libxml-parser-perl2.34-4 Perl module for parsing XML files
ii  perl-tk   1:800.025-2Perl module providing the Tk graph
ii  psutils   1.17-21A collection of PostScript documen

-- debconf information:
  tetex-bin/cnf_name:
updmap-sys: This is updmap-sys, version 1107552857-debian
updmap-sys: using transcript file `/var/lib/texmf/web2c/updmap-sys.log'

updmap is creating new map files using the following configuration:

  config file: `/var/lib/texmf/web2c/updmap.cfg'
  dvips output directory: `/var/lib/texmf/fonts/map/dvips/updmap'
  pdftex output directory: `/var/lib/texmf/fonts/map/pdftex/updmap'
  dvipdfm output directory: `/var/lib/texmf/fonts/map/dvipdfm/updmap'

  prefer outlines: `true'
  texhash enabled: `true'
  download standard fonts (dvips): `false'
  download standard fonts (pdftex): `true'
  download standard fonts (dvipdfm): `true'

updmap-sys: Scanning for LW35 support files

!!! ERROR! The map file `dvips35.map' has not been found at all.

Either put this file into the right place or remove the
reference from the configuration file. An automatic way
to disable unavailable map files is to call
  updmap-sys --syncwithtrees

For manual editing, call
  updmap-sys --edit

updmap-sys: This is updmap-sys, version 1107552857-debian
updmap-sys: using transcript file `/var/lib/texmf/web2c/updmap-sys.log'

updmap is creating new map files using the following configuration:

  config file: `/var/lib/texmf/web2c/updmap.cfg'
  dvips output directory: `/var/lib/texmf/fonts/map/dvips/updmap'
  pdftex output directory: `/var/lib/texmf/fonts/map/pdftex/updmap'
  dvipdfm output directory: `/var/lib/texmf/fonts/map/dvipdfm/updmap'

  prefer outlines: `true'
  texhash enabled: `false'
  dow

Bug#317717: pppstatus: don't cleanup /var/run

2006-01-08 Thread Jörg Sommer
Hello John,

John Hasler schrieb am Thu 05. Jan, 17:13 (-0600):
> Jörg Sommer writes:
> > you don't need to cleanup /var/run/, because this is done in mountall or
> > mountnfs by bootclean.
> 
> Someone might remove the package while ppp is up and then reinstall it
> later.

But on boot up all files in /var/run get removed by mountall.sh, which
is called prior to pppstatus-clean.

Bye, Jörg.
-- 
Der Klügere gibt nach 
...deshalb regieren die Dummen die Welt!


pgpFx9PE40r44.pgp
Description: PGP signature


Bug#346527: chipcard-tools removes the user for libchipcard2-tools

2006-01-08 Thread Jörg Sommer
Package: libchipcard2-tools
Version: 1.9.15.99+1.9.16alpha-1
Severity: important

Hi,

I don't know which packages owns this bug really, but I think
libchipcard2-tools reuses the user added by chipcard-tools without caring
about it.

If the chipcard-tools package is removed after lc2-t was installed, it
removes the user chipcard, which is needed by lc2-t

Bye, Jörg.

-- System Information:
Debian Release: unstable/experimental
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.13.1
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages libchipcard2-tools depends on:
ii  adduser  3.80Add and remove users and groups
ii  libc62.3.5-11GNU C Library: Shared libraries an
ii  libchipcard2-0c2 1.9.15.99+1.9.16alpha-1 library for accessing smartcards
ii  libchipcard2-dat 1.9.15.99+1.9.16alpha-1 configuration files for libchipcar
ii  libgcc1  1:4.0.2-5   GCC support library
ii  libgwenhywfar17c 1.19.0-1OS abstraction layer
ii  libstdc++6   4.0.2-5 The GNU Standard C++ Library v3
ii  libsysfs11.3.0-6 interface library to sysfs
ii  libusb-0.1-4 2:0.1.10a-22userspace USB programming library

libchipcard2-tools recommends no packages.

-- no debconf information


pgpSgdWe7k3za.pgp
Description: PGP signature


Bug#346556: libchipcard2-tools: a --help request is not an error

2006-01-08 Thread Jörg Sommer
Package: libchipcard2-tools
Version: 1.9.15.99+1.9.16alpha-1
Severity: normal

Hi,

all tools should not print the message requested by --help to stderr,
because it is not an error.

for i in $(dpkg -L libchipcard2-tools |grep /bin/); do
$i --help >/dev/null
done 2>&1 |wc -l
185

Bye, Jörg.

-- System Information:
Debian Release: unstable/experimental
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.13.1
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages libchipcard2-tools depends on:
ii  adduser  3.80Add and remove users and groups
ii  libc62.3.5-11GNU C Library: Shared libraries an
ii  libchipcard2-0c2 1.9.15.99+1.9.16alpha-1 library for accessing smartcards
ii  libchipcard2-dat 1.9.15.99+1.9.16alpha-1 configuration files for libchipcar
ii  libgcc1  1:4.0.2-5   GCC support library
ii  libgwenhywfar17c 1.19.0-1OS abstraction layer
ii  libstdc++6   4.0.2-5 The GNU Standard C++ Library v3
ii  libsysfs11.3.0-6 interface library to sysfs
ii  libusb-0.1-4 2:0.1.10a-22userspace USB programming library

libchipcard2-tools recommends no packages.

-- no debconf information


pgp1kFjWfepRz.pgp
Description: PGP signature


Bug#346557: aqhbci-qt3-wizard: double free causes abort

2006-01-08 Thread Jörg Sommer
Package: libaqhbci8
Version: 1.6.1-1
Severity: normal

Hi,

$ /usr/lib/aqbanking/plugins/0/wizards/aqhbci/aqhbci-qt3-wizard 
6:2006/01/08 19-17-15:(null)(18409):qt3_wizard.cpp:  116: I18N available for 
your language
5:2006/01/08 19-17-18:(null)(18409):pageimport.cpp:  132: Current import mode: 
YES
6:2006/01/08 19-17-31:(null)(18409):pagemedium.cpp:  180: Chipcard selected, 
will check for type
3:2006/01/08 19-17-33:(null)(18409):hbci.c:  983: Token is not supported by any 
plugin
*** glibc detected *** double free or corruption (fasttop): 0x10124e48 ***
Abgebrochen
$ echo $?
134

Bye, Jörg.

-- System Information:
Debian Release: unstable/experimental
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.13.1
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages libaqhbci8 depends on:
ii  libaqbanking-data1.6.1-1 configuration files for libaqbanki
ii  libaqbanking0c2a 1.6.1-1 library for online banking applica
ii  libaudio21.7-3   The Network Audio System (NAS). (s
ii  libc62.3.5-11GNU C Library: Shared libraries an
ii  libfontconfig1   2.3.2-1.1   generic font configuration library
ii  libfreetype6 2.1.10-1FreeType 2 font engine, shared lib
ii  libgcc1  1:4.0.2-5   GCC support library
ii  libgwenhywfar17c21.19.0-1OS abstraction layer
ii  libice6  6.8.2.dfsg.1-11 Inter-Client Exchange library
ii  libjpeg626b-11   The Independent JPEG Group's JPEG 
ii  libpng12-0   1.2.8rel-5  PNG library - runtime
ii  libqbanking1 1.6.1-1 QT frontend library for AqBanking
ii  libqt3-mt3:3.3.5-3   Qt GUI Library (Threaded runtime v
ii  libsm6   6.8.2.dfsg.1-11 X Window System Session Management
ii  libssl0.9.8  0.9.8a-5SSL shared libraries
ii  libstdc++6   4.0.2-5 The GNU Standard C++ Library v3
ii  libx11-6 6.8.2.dfsg.1-11 X Window System protocol client li
ii  libxcursor1  1.1.3-1 X cursor management library
ii  libxext6 6.8.2.dfsg.1-11 X Window System miscellaneous exte
ii  libxft2  2.1.7-1 FreeType-based font drawing librar
ii  libxi6   6.8.2.dfsg.1-11 X Window System Input extension li
ii  libxinerama1 6.8.2.dfsg.1-11 X Window System multi-head display
ii  libxrandr2   6.8.2.dfsg.1-11 X Window System Resize, Rotate and
ii  libxrender1  1:0.9.0.2-1 X Rendering Extension client libra
ii  libxt6   6.8.2.dfsg.1-11 X Toolkit Intrinsics
ii  xlibs6.9.0.dfsg.1-1  X Window System client libraries m
ii  zlib1g   1:1.2.3-9   compression library - runtime

libaqhbci8 recommends no packages.

-- no debconf information


pgpuHX5ovJzvo.pgp
Description: PGP signature


Bug#346558: libchipcard2-data: do not wast /etc with example files

2006-01-08 Thread Jörg Sommer
Package: libchipcard2-data
Version: 1.9.15.99+1.9.16alpha-1
Severity: important

Hi,

Policy 12.6 says that example files should go to
/usr/share/doc/libchipcard2-data/examples/. You should not install them
in /etc!

$ dpkg -L libchipcard2-data |grep exam   
/etc/chipcard2-client/apps/examplecard.xml
/etc/chipcard2-client/chipcardc2.conf.example
/etc/chipcard2-server/chipcardd2.conf.example
/etc/chipcard2-server/chipcardrd.conf.example

Jörg.
-- System Information:
Debian Release: unstable/experimental
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.13.1
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

-- no debconf information


pgpMTUDNAAPDL.pgp
Description: PGP signature


Bug#346527: chipcard-tools removes the user for libchipcard2-tools

2006-01-08 Thread Jörg Sommer
Hello Thomas,

Thomas Viehmann schrieb am Sun 08. Jan, 18:46 (+0100):
> Jörg Sommer wrote:
> > I don't know which packages owns this bug really, but I think
> > libchipcard2-tools reuses the user added by chipcard-tools without caring
> > about it.
> 
> > If the chipcard-tools package is removed after lc2-t was installed, it
> > removes the user chipcard, which is needed by lc2-t
> 
> I guess the user should probably not be removed at all and will switch
> to that. That won't help for chipcard-tools because that's not in the
> archive anymore, though.

Why not conflict with it? Both packages share the same resources
(chipcard reader).

Bye, Jörg.
-- 
Dein Gesicht wird dir geschenkt. Lächeln musst du selber! (Inga Hermann)


pgpZwnDVU13sy.pgp
Description: PGP signature


Bug#346557: aqhbci-qt3-wizard: double free causes abort

2006-01-09 Thread Jörg Sommer
Hello Micha,

Micha Lenk schrieb am Mon 09. Jan, 00:37 (+0100):
> Jörg Sommer wrote:
> > Package: libaqhbci8
> > Version: 1.6.1-1
> > Severity: normal
> > 
> > Hi,
> > 
> > $ /usr/lib/aqbanking/plugins/0/wizards/aqhbci/aqhbci-qt3-wizard 
> > 6:2006/01/08 19-17-15:(null)(18409):qt3_wizard.cpp:  116: I18N available 
> > for your language
> > 5:2006/01/08 19-17-18:(null)(18409):pageimport.cpp:  132: Current import 
> > mode: YES
> > 6:2006/01/08 19-17-31:(null)(18409):pagemedium.cpp:  180: Chipcard 
> > selected, will check for type
> > 3:2006/01/08 19-17-33:(null)(18409):hbci.c:  983: Token is not supported by 
> > any plugin
> > *** glibc detected *** double free or corruption (fasttop): 0x10124e48 ***
> > Abgebrochen
> > $ echo $?
> > 134
> 
> Even if this probably won't help, could you please try again with the
> newer packages for AqBanking and Gwenhywfar available on
> http://aqbanking.alioth.debian.org/unstable/ Thank you.

It does not help. I get the same error.

BTW: Can you add a Packages, Sources and Release file to this directory
to make it directly usable by apt?

Jörg.
-- 
Der Hase läuft schneller als der Fuchs,
denn der Hase läuft um sein Leben.


pgppE34iLapi5.pgp
Description: PGP signature


Bug#346326: tetex-bin: postinst fails -- dvips35.map not found

2006-01-09 Thread Jörg Sommer
Hello Frank,

Frank Küster schrieb am Mon 09. Jan, 15:54 (+0100):
> Jörg Sommer <[EMAIL PROTECTED]> wrote:
> 
> > Package: tetex-bin
> > Version: 3.0-13
> > Severity: serious
> > Justification: renders package unusable
> >
> > Hi,
> >
> > with this version the packages tetex-extra (3.0-13) and tetex-base
> > (3.0-11) aren't installable anymore. 
> 
> You probably mean tetex-bin (3.0-13), tetex-extra is still at 3.0-11.

Oh, sorry, I mean 3.0-11.

> > Their postinst scripts fail, because
> > dvips35.map or bsr-interpolated.map is not found.
> [...]
> > updmap-sys: Scanning for LW35 support files
> >
> > !!! ERROR! The map file `dvips35.map' has not been found at all.
> 
> Please send us the output of 
> 
> ls /usr/share/texmf-tetex/fonts/map/dvips/tetex/

bsr-interpolated.map  dvips35.map mathpple.mappdftex35.map  txfonts.map
bsr.map   hoekwater.map   mt-belleek.map  ps2pk35.map
contnav.map   lucidabr-o.map  mt-plus.map pxfonts.map
dvipdfm35.map lumath-o.mapmt-yy.map   ttcmex.map

> dpkg -S dvips35.map

tetex-base: /usr/share/texmf-tetex/fonts/map/dvips/tetex/dvips35.map

> kpsewhich --format=map dvips35.map

nothing, exit code 1

> kpsewhich --show-path=map

.:!!/home/joerg/.texmf-config/fonts/map/kpsewhich//:!!/home/joerg/.texmf-var/fonts/map/kpsewhich//:/home/joerg/.texmf/fonts/map/kpsewhich//:!!/usr/local/share/texmf/fonts/map/kpsewhich//:!!/var/lib/texmf/fonts/map/kpsewhich//:!!/usr/share/texmf/fonts/map/kpsewhich//:!!/home/joerg/.texmf-config//kpsewhich//:!!/home/joerg/.texmf-var//kpsewhich//:/home/joerg/.texmf//kpsewhich//:!!/usr/local/share/texmf//kpsewhich//:!!/var/lib/texmf//kpsewhich//:!!/usr/share/texmf//kpsewhich//:!!/home/joerg/.texmf-config/fonts/map/pdftex//:!!/home/joerg/.texmf-var/fonts/map/pdftex//:/home/joerg/.texmf/fonts/map/pdftex//:!!/usr/local/share/texmf/fonts/map/pdftex//:!!/var/lib/texmf/fonts/map/pdftex//:!!/usr/share/texmf/fonts/map/pdftex//:!!/home/joerg/.texmf-config//pdftex//:!!/home/joerg/.texmf-var//pdftex//:/home/joerg/.texmf//pdftex//:!!/usr/local/share/texmf//pdftex//:!!/var/lib/texmf//pdftex//:!!/usr/share/texmf//pdftex//:!!/home/joerg/.texmf-config/fonts/map/dvips//:!!/home/joerg/.texmf-var/fonts/map/dvips//:/home/joerg/.texmf/fonts/map/dvips//:!!/usr/local/share/texmf/fonts/map/dvips//:!!/var/lib/texmf/fonts/map/dvips//:!!/usr/share/texmf/fonts/map/dvips//:!!/home/joerg/.texmf-config//dvips//:!!/home/joerg/.texmf-var//dvips//:/home/joerg/.texmf//dvips//:!!/usr/local/share/texmf//dvips//:!!/var/lib/texmf//dvips//:!!/usr/share/texmf//dvips//:!!/home/joerg/.texmf-config/fonts/map///:!!/home/joerg/.texmf-var/fonts/map///:/home/joerg/.texmf/fonts/map///:!!/usr/local/share/texmf/fonts/map///:!!/var/lib/texmf/fonts/map///:!!/usr/share/texmf/fonts/map///:!!/home/joerg/.texmf-config:!!/home/joerg/.texmf-var:/home/joerg/.texmf:!!/usr/local/share/texmf:!!/var/lib/texmf:!!/usr/share/texmf:!!/home/joerg/.texmf-config/dvips//:!!/home/joerg/.texmf-var/dvips//:/home/joerg/.texmf/dvips//:!!/usr/local/share/texmf/dvips//:!!/var/lib/texmf/dvips//:!!/usr/share/texmf/dvips//

> grep TEXFONTMAPS /etc/texmf/texmf.cnf

% TEXFONTMAPS = .;$TEXMF/{fonts/map,}/{$progname,pdftex,dvips,}//
TEXFONTMAPS = .;$TEXMF/{fonts/map,}/{$progname,pdftex,dvips,}//;$TEXMF/dvips//

> Did you constantly upgrade your system

No.

> , or what were the previous versions of tetex-bin and tetex-base?

tetex-base: 3.0-8
tetex-bin: 3.0-10.1
tetex-extra: 3.0-8

Bye, Jörg.
-- 
Das Recht, seine Meinung zu wechseln, ist eines der wichtigsten
menschlichen Previlegien.
(Robert Peel)


pgpoAXfOx0QJw.pgp
Description: PGP signature


Bug#346326: tetex-bin: postinst fails -- dvips35.map not found

2006-01-09 Thread Jörg Sommer
Hello Frank,

Frank Küster schrieb am Mon 09. Jan, 17:47 (+0100):
> Jörg Sommer <[EMAIL PROTECTED]> wrote:
> 
> >> > Package: tetex-bin
> >> > Version: 3.0-13
> >> > Severity: serious
> >> > Justification: renders package unusable
> [...]
> >> kpsewhich --show-path=map
> >
> > .:!!/home/joerg/.texmf-config/fonts/map/kpsewhich//:!!/home/joerg/.texmf-var/fonts/map/kpsewhich//:/home/joerg/.texmf/fonts/map/kpsewhich//:!!/usr/local/share/texmf/fonts/map/kpsewhich//:!!/var/lib/texmf/fonts/map/kpsewhich//:!!/usr/share/texmf/fonts/map/kpsewhich//:!!/home/joerg/.texmf-config//kpsewhich//:!!/home/joerg/.texmf-var//kpsewhich//:/home/joerg/.texmf//kpsewhich//:!!/usr/local/share/texmf//kpsewhich//:!!/var/lib/texmf//kpsewhich//:!!/usr/share/texmf//kpsewhich//:!!/home/joerg/.texmf-config/fonts/map/pdftex//:!!/home/joerg/.texmf-var/fonts/map/pdftex//:/home/joerg/.texmf/fonts/map/pdftex//:!!/usr/local/share/texmf/fonts/map/pdftex//:!!/var/lib/texmf/fonts/map/pdftex//:!!/usr/share/texmf/fonts/map/pdftex//:!!/home/joerg/.texmf-config//pdftex//:!!/home/joerg/.texmf-var//pdftex//:/home/joerg/.texmf//pdftex//:!!/usr/local/share/texmf//pdftex//:!!/var/lib/texmf//pdftex//:!!/usr/share/texmf//pdftex//:!!/home/joerg/.texmf-config/fonts/map/dvips//:!!/home/joerg/.texmf-var/fonts/map/dvips//:/home/joerg/.texmf/fonts/map/dvips//:!!/usr/local/share/texmf/fonts/map/dvips//:!!/var/lib/texmf/fonts/map/dvips//:!!/usr/share/texmf/fonts/map/dvips//:!!/home/joerg/.texmf-config//dvips//:!!/home/joerg/.texmf-var//dvips//:/home/joerg/.texmf//dvips//:!!/usr/local/share/texmf//dvips//:!!/var/lib/texmf//dvips//:!!/usr/share/texmf//dvips//:!!/home/joerg/.texmf-config/fonts/map///:!!/home/joerg/.texmf-var/fonts/map///:/home/joerg/.texmf/fonts/map///:!!/usr/local/share/texmf/fonts/map///:!!/var/lib/texmf/fonts/map///:!!/usr/share/texmf/fonts/map///:!!/home/joerg/.texmf-config:!!/home/joerg/.texmf-var:/home/joerg/.texmf:!!/usr/local/share/texmf:!!/var/lib/texmf:!!/usr/share/texmf:!!/home/joerg/.texmf-config/dvips//:!!/home/joerg/.texmf-var/dvips//:/home/joerg/.texmf/dvips//:!!/usr/local/share/texmf/dvips//:!!/var/lib/texmf/dvips//:!!/usr/share/texmf/dvips//
> 
> There is no mention of /usr/share/texmf-tetex at all here.

Thanks. I've got the hint. It was the old problem, that I update the
config after package installation, which causes tetex-extra got installed
with the old config.

Did you ever discuss this issue in debian-devel?

Thanks, Jörg.
-- 
Die beste Tarnung ist die Wahrheit. Die glaubt einem keiner!
  (Max Frisch: "Biedermann und die Brandstifter")


pgpGTQtqloI5B.pgp
Description: PGP signature


Bug#346326: tetex-bin: postinst fails -- dvips35.map not found

2006-01-10 Thread Jörg Sommer
Hello Frank,

Frank Küster schrieb am Tue 10. Jan, 10:39 (+0100):
> Jörg Sommer <[EMAIL PROTECTED]> wrote:
> 
> > Did you ever discuss this issue in debian-devel?
> 
> Yes, and it's clear that it's not a bug to fail if the local admin
> refuses to update the configuration

It's legal that the package installation fails? Why you don't refuse to
install, e.g. the preinstall script should check and fail or bring a
warning and the postinst should not run the hazardous parts and the admin
must do it by hand (i.e. call dpkg-reconfigure tex-common or update-XY).

Regards, Jörg.
-- 
NetBSD ist für Frauen: es läuft auf Waschmaschinen


pgpBHNpRdHXk6.pgp
Description: PGP signature


Bug#290149: second inclusion of DFN-PCA certificate

2006-01-10 Thread Jörg Sommer
Hi,

I second the request to include the DFN-PCA certificate to the
ca-certificates package.

Bye, Jörg.
-- 
Thema: Der FSR bringt die Evalusationshefte erst ein Semester nach der
Evaluation raus.
Prof: Was will man auch von Leuten erwarten, die für ihre Arbeit nicht
bezahlt werden.


pgpBmfbDcNnAm.pgp
Description: PGP signature


Bug#347601: libstdc++6-4.0-doc: unreachable URL

2006-01-11 Thread Jörg Sommer
Package: libstdc++6-4.0-doc
Version: 4.0.2-6
Severity: minor

Hi,

the URL http://www.informatik.uni-konstanz.de/~kuehl/cpp/cppfaq.htm
in /usr/share/doc/libstdc++6-4.0-doc/C++/README.C++ is not available.

Bye, Jörg.

-- System Information:
Debian Release: unstable/experimental
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.13.1
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages libstdc++6-4.0-doc depends on:
ii  gcc-4.0-base  4.0.2-6The GNU Compiler Collection (base 

libstdc++6-4.0-doc recommends no packages.

-- no debconf information


pgped7d2qM1GG.pgp
Description: PGP signature


Bug#347905: libchipcard2-tools: init script prints messages to stderr

2006-01-13 Thread Jörg Sommer
Package: libchipcard2-tools
Version: 1.9.15.99+1.9.16alpha-1
Severity: normal

Hi Thomas,

the init script of libchipcard2-tools prints its log messages to stderr.
You need to redirect stderr to /dev/null to held the console clean.

Regards, Jörg.

-- System Information:
Debian Release: unstable/experimental
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.13.1
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages libchipcard2-tools depends on:
ii  adduser  3.80Add and remove users and groups
ii  libc62.3.5-11GNU C Library: Shared libraries an
ii  libchipcard2-0c2 1.9.15.99+1.9.16alpha-1 library for accessing smartcards
ii  libchipcard2-dat 1.9.15.99+1.9.16alpha-1 configuration files for libchipcar
ii  libgcc1  1:4.0.2-6   GCC support library
ii  libgwenhywfar17c 1.19.2-1OS abstraction layer
ii  libstdc++6   4.0.2-6 The GNU Standard C++ Library v3
ii  libsysfs11.3.0-6 interface library to sysfs
ii  libusb-0.1-4 2:0.1.10a-22userspace USB programming library

libchipcard2-tools recommends no packages.

-- no debconf information


pgpB7NoDjDBj9.pgp
Description: PGP signature


Bug#341369: mutt-ng: leaves new flag on mailbox when new messages get deleted

2005-12-30 Thread Jörg Sommer
Hello Elimar,

Elimar Riesebieter schrieb am Thu 01. Dec, 19:40 (+0100):
> On Tue, 29 Nov 2005 the mental interface of
> Jörg Sommer told:
> 
> > Package: mutt-ng
> > Version: 0.0+20050814-1
> > Severity: normal
> > 
> > Hi,
> > 
> > when I delete a new message (flag N), but don't open the message or
> > remove the new flag anyhow and than switch to another mailbox, the new
> > flag of the old mailbox stays even through no new message is in the
> > mailbox.
> > 
> > The same I observe when I view a new message, mark it as deleted and jump
> > immediately to another mailbox, without going back to the index. The new
> > flag is held on the mailbox even through no new message is there.
> 
> I can remenber a similar behaviour in the past. So could you please
> update to 0.0+20051125-1? Tell us it changes to youre needs then ;)

I build the 20051201 today (are you interested in?) and installed it. I
have the same problems.

Kind regards, Jörg.
-- 
Die zehn Gebote Gottes enthalten 172 Wörter, die amerikanische
Unabhängigkeitserklärung 300 Wörter, die Verordnung der europäischen
Gemeinschaft über den Import von Karamelbonbons exakt 25911
Wörter.


pgpLGVZWsBUeH.pgp
Description: PGP signature


Bug#345580: gnucash: "Open file" button for locked files

2006-01-01 Thread Jörg Sommer
Package: gnucash
Version: 1.8.10-12hbci0
Severity: wishlist

Hi,

I think it is very usefull to have an "open file" button in the dialog
that is shown if gnucash is started and another instance uses the last
opened file.

Sometimes I compare to files and start two instances of gnucash. The
second instances shows me a dialog that tells me the default file is used
by another process and I can "exit", "open it otherwise" or "create a new
account". But I want to open another account.

Regards, Jörg.

-- System Information:
Debian Release: unstable/experimental
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.13.1
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages gnucash depends on:
ii  bonobo   1.0.22-6The GNOME Bonobo System.
ii  gdk-imlib11  1.9.14-26   imaging library for use with gtk
ii  gnucash-common   1.8.10-12hbci0  A personal finance tracking progra
ii  guile-1.6-libs   1.6.7-1.1   Main Guile libraries
ii  guile-1.6-slib   1.6.7-1.1   Guile SLIB support
ii  libart2  1.4.2-27The GNOME canvas widget - runtime 
ii  libaudiofile00.2.6-6 Open-source version of SGI's audio
ii  libbonobo2   1.0.22-6The GNOME Bonobo library.
ii  libc62.3.5-8 GNU C Library: Shared libraries an
ii  libdate-manip-perl   5.44-2  a perl library for manipulating da
ii  libdb3   3.2.9-23Berkeley v3 Database Libraries [ru
ii  libesd0  0.2.36-1Enlightened Sound Daemon - Shared 
ii  libfinance-quote-perl1.08-1  Perl module for retrieving stock q
ii  libfreetype6 2.1.10-1FreeType 2 font engine, shared lib
ii  libgal23 0.24-6  G App Libs (run time library)
ii  libgconf11   1.0.9-7.1   GNOME configuration database syste
ii  libgdk-pixbuf-gnome2 0.22.0-11   The GNOME1 Canvas pixbuf library
ii  libgdk-pixbuf2   0.22.0-11   The GdkPixBuf image library, gtk+ 
ii  libghttp11.0.9-17original GNOME HTTP client library
ii  libglade-gnome0  1:0.17-5Library to load .glade files at ru
ii  libglade01:0.17-5Library to load .glade files at ru
ii  libglib1.2   1.2.10-10   The GLib library of C routines
ii  libgnome32   1.4.2-27The GNOME libraries
ii  libgnomeprint15  0.37-11 The GNOME Print architecture - run
ii  libgnomesupport0 1.4.2-27The GNOME libraries (Support libra
ii  libgnomeui32 1.4.2-27The GNOME libraries (User Interfac
ii  libgtk1.21.2.10-18   The GIMP Toolkit set of widgets fo
ii  libgtkhtml1.1-3  1.1.10-9HTML rendering/editing library - r
ii  libguile-ltdl-1  1.6.7-1.1   Guile's patched version of libtool
ii  libguppi16   0.40.3-15   GNOME graph and plot component
ii  libgwrapguile1   1.3.4-15g-wrap: Tool for exporting C libra
ii  libice6  6.8.2.dfsg.1-11 Inter-Client Exchange library
ii  libltdl3 1.5.22-1A system independent dlopen wrappe
ii  liboaf0  0.6.10-6The GNOME Object Activation Framew
ii  libofx2c2a   1:0.8.0-9   library to support Open Financial 
ii  liborbit00.5.17-11.1 Libraries for ORBit - a CORBA ORB
ii  libpopt0 1.7-5   lib for parsing cmdline parameters
ii  libsm6   6.8.2.dfsg.1-11 X Window System Session Management
ii  libstdc++6   4.0.2-5 The GNU Standard C++ Library v3
ii  libx11-6 6.8.2.dfsg.1-11 X Window System protocol client li
ii  libxext6 6.8.2.dfsg.1-11 X Window System miscellaneous exte
ii  libxi6   6.8.2.dfsg.1-11 X Window System Input extension li
ii  libxml1  1:1.8.17-10 GNOME XML library
ii  libzvt2  1.4.2-27The GNOME zvt (zterm) widget
ii  oaf  0.6.10-6The GNOME Object Activation Framew
ii  psfontmgr0.11.8-0.1  PostScript font manager -- part of
ii  slib 3a1-5   Portable Scheme library
ii  x-ttcidfont-conf 21  Configure TrueType and CID fonts f
ii  zlib1g   1:1.2.3-8   compression library - runtime

gnucash recommends no packages.

-- no debconf information


pgp75YpVmkkqz.pgp
Description: PGP signature


Bug#345953: rubber: --help is not an error

2006-01-04 Thread Jörg Sommer
Package: rubber
Version: 1.0-1
Severity: normal

Hi,

when I request help I do not expect to get the help message printed to
stderr.

$ rubber --help 2>&1 >/dev/null |wc -l
26

Bye, Jörg.

-- System Information:
Debian Release: unstable/experimental
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.13.1
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages rubber depends on:
ii  python2.3.5-3An interactive high-level object-o
ii  tetex-bin 3.0-10.1   The teTeX binary files

rubber recommends no packages.

-- no debconf information


pgpHxJFoHhmAG.pgp
Description: PGP signature


Bug#345954: rubber: --inplace is not respected with fig2dev

2006-01-04 Thread Jörg Sommer
Package: rubber
Version: 1.0-1
Severity: normal

Hi,

when I call rubber[1] it runs fig2dev with the full path[2] which leads
to the problem, that the whole path is used inside the generated files.

$ grep schmeißer Zylinder-Normbereich.pdf_t 
\includegraphics{/home/joerg/svn/schmeißer-ana3/Zylinder-Normbereich.pdf}%

If this path includes non-ascii characters latex fails with file not
found. I would expect that with the option --inplace rubber call the
files with the relative path.

Bye, Jörg.

[1] rubber -f -v -v -v --inplace --pdf skript.latex
[2] fig2dev -L pdftex /home/joerg/svn/schmeißer-ana3/Spiegelung-Kugel.fig 
/home/joerg/svn/schmeißer-ana3/Spiegelung-Kugel.pdf

-- System Information:
Debian Release: unstable/experimental
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.13.1
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages rubber depends on:
ii  python2.3.5-3An interactive high-level object-o
ii  tetex-bin 3.0-10.1   The teTeX binary files

rubber recommends no packages.

-- no debconf information


pgpDMgE3QYL3A.pgp
Description: PGP signature


Bug#345982: rubber: converts pdf to ps even though eps exists

2006-01-04 Thread Jörg Sommer
Package: rubber
Version: 1.0-1
Severity: normal

Hi,

I've seen a behaviour that I couldn't explain and I don't know why it
happens:

$ ls F*
Fundamental-waerme.eps  Fundamental-waerme.pdf
Fundamental-waerme.gnuplot  Fundamental-waerme.tex
$ rubber --inplace --ps skript.latex 
converting /home/joerg/svn/schmeißer-ana3/Fundamental-waerme.pdf into 
/home/joerg/svn/schmeißer-ana3/Fundamental-waerme.ps...
compiling skript.latex...
running dvips on skript.dvi...

Why is the pdf converted into a ps and not the eps is used?

Bye, Jörg.

-- System Information:
Debian Release: unstable/experimental
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.13.1
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages rubber depends on:
ii  python2.3.5-3An interactive high-level object-o
ii  tetex-bin 3.0-10.1   The teTeX binary files

rubber recommends no packages.

-- no debconf information


pgpFXhLL4cCv1.pgp
Description: PGP signature


Bug#345463: bootchart-view: java.lang.ClassNotFoundException error

2006-01-04 Thread Jörg Sommer
Hello arth,

arth schrieb am Sat 31. Dec, 19:01 (+):
> Package: bootchart-view
> Version: 0.9-1
> Severity: normal
> 
> Hi, Firstly, thank you for packaging this program-I'm keen to use it. I
> don't think the error I have is what you warned of in the README.Debian
> file as I have the unstable kaffe version, and my error says
> "ClassNotFound" rather than "UnsupportedClassVersionError" as in bug
> 336527. I'm afraid I know little of java, and don't know how to
> proceed. I've looked for the error on the net, and found the Debian
> package libcommons-cli-java which seems relevant. However I have this
> installed too, and it isn't in the required list for bootchart.

The bootchart-view package depends on it:

> Versions of packages bootchart-view depends on:
> ii  libcommons-cli-java   1.0-7  API for working with the command 
> l

> I've tried several other java runtime engines, and compiling
> bootchart-view myself and get similar errors with all attempts at
> running it. The full error is:
> 
> /usr/share/bootchart-view# java -jar bootchart.jar

You need to specify the path to the jar of libcommons-cli-java. Look at
/usr/bin/bootchart:

MAIN_CLASS="org.bootchart.Main"
CLASSPATH="/usr/share/bootchart-view/bootchart.jar:/usr/share/java/commons-cli.jar
PROPERTY="java.awt.headless=true"

exec java -D"$PROPERTY" -classpath "$CLASSPATH" $MAIN_CLASS "$@"

The java virual machine is called with the jar of commons-cli.

Why do you not use the command bootchart in /usr/bin?

Bye, Jörg.
-- 
Wer einen Traum verwirklichen will, muss erst aufwachen.


pgpXsjhDsopVM.pgp
Description: PGP signature


Bug#336184: rubber: Support for ntheorem

2005-10-28 Thread Jörg Sommer
Package: rubber
Version: 1.0-1
Severity: wishlist

Hi,

could you please add support for ntheorem (part of tetex 3)? This package
creates a file $BASE.thm. rubber should remove this file while cleaning
(--clean)

Thanks, Jörg.

-- System Information:
Debian Release: unstable/experimental
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.13.1
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages rubber depends on:
ii  python2.3.5-3An interactive high-level object-o
ii  tetex-bin 3.0-5  The teTeX binary files

rubber recommends no packages.

-- no debconf information


pgpnNxh3zx3vO.pgp
Description: PGP signature


Bug#336185: rubber: fails with Index out of range

2005-10-28 Thread Jörg Sommer
Package: rubber
Version: 1.0-1
Severity: normal

Hi,

$ /usr/bin/python /usr/bin/rubber --inplace --warn=all --pdf skript.latex
skript.ind:236-237: Overfull \hbox (44.26903pt too wide) (page 186)
skript.ind:237-238: Overfull \hbox (34.79724pt too wide) (page 186)
skript.aux: Label `satz:3.2.2/2' multiply defined.
skript.aux: Label `eq:39' multiply defined.
Traceback (most recent call last):
  File "/usr/bin/rubber", line 9, in ?
   sys.exit(Main()(sys.argv[1:]))
  File "/usr/share/rubber/rubber/cmdline.py", line 293, in __call__
   return self.main(cmdline)
  File "/usr/share/rubber/rubber/cmdline.py", line 277, in main
   log.show_references()
  File "/usr/share/rubber/rubber/rules/latex/__init__.py", line 333, in 
show_references
   self.update_file(line, pos)
  File "/usr/share/rubber/rubber/rules/latex/__init__.py", line 208, in 
update_file
   return stack[-1]
IndexErrorndexError: dexError: list index out of rangeexError: list index out 
of range

Bye, Jörg.

-- System Information:
Debian Release: unstable/experimental
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.13.1
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages rubber depends on:
ii  python2.3.5-3An interactive high-level object-o
ii  tetex-bin 3.0-5  The teTeX binary files

rubber recommends no packages.

-- no debconf information


pgpEv183ddWUq.pgp
Description: PGP signature


Bug#339393: crm114: do not print version to stderr and errors to stdout

2005-11-15 Thread Jörg Sommer
Package: crm114
Version: 20050721-2
Severity: normal

Hi,

when I request the version information from crm114 it prints this to
stderr. This is not what I would expect, when I ask for an information
and makes scripting fiddly, because I must redirect stderr to stdout.

$ crm -v > /dev/null 
 This is CRM114, version 20050721-BlameNeilArmstrong (TRE 0.7.2 (GPL))
 Copyright 2001-2005 William S. Yerazunis
 This software is licensed under the GPL with ABSOLUTELY NO WARRANTY

And the opposite are error messages. They get written to stdout and
merged with the mails or at me, I through the mails away and so I never
see error messages.

  macro index \es "crmlearn --learnspam\n ...
  macro index \eh "crmlearn --learnnonspam\n"

with crmlearn:

 grep -a -v "^X-CRM114" | \
  /usr/share/crm114/mailfilter.crm -u $HOME/.crm114/ $1 >/dev/null

Bye, Jörg.

-- System Information:
Debian Release: unstable/experimental
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.13.1
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages crm114 depends on:
ii  libc6 2.3.5-7GNU C Library: Shared libraries an
ii  libtre4   0.7.2-1regexp matching library with appro

Versions of packages crm114 recommends:
ii  metamail  2.7-49 implementation of MIME

-- no debconf information


pgpp8OtxW3jJc.pgp
Description: PGP signature


Bug#339394: dbacl: do not exit with 1 if version is requested

2005-11-15 Thread Jörg Sommer
Package: dbacl
Version: 1.11-1
Severity: normal

Hi,

dbacl returns with the exit code 1 (== EXIT_FAILURE in stdlib.h) if
version information is requested.

$ dbacl -V
dbacl version 1.11
Copyright (c) 2002,2003,2004,2005 L.A. Breyer. All rights reserved.
dbacl comes with ABSOLUTELY NO WARRANTY, and is licensed
to you under the terms of the GNU General Public License.

$ echo $?
1

Bye, Jörg.

-- System Information:
Debian Release: unstable/experimental
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.13.1
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages dbacl depends on:
ii  libc62.3.5-7 GNU C Library: Shared libraries an
ii  libncurses5  5.5-1   Shared libraries for terminal hand
ii  libreadline5 5.0-11  GNU readline and history libraries
ii  libslang1-utf8   1.4.9dbs-10 The S-Lang programming library wit

dbacl recommends no packages.

-- no debconf information
-- 
"Science is the game we play with God to find out what His rules are."


pgpAmJuNNX2nY.pgp
Description: PGP signature


Bug#339395: spambayes: do not print version to stderr

2005-11-15 Thread Jörg Sommer
Package: spambayes
Version: 1.0.3-1
Severity: normal

Hi,

when I request help information from sb_filter it prints this to stderr.
This is not what I would expect, when I ask for help and makes scripting
fiddly, because I must redirect stderr to stdout.

$ sb_filter.py --help > /dev/null
SpamBayes Command Line Filter Version 0.3 (April 2004)
with engine SpamBayes Engine Version 0.3 (January 2004)

Usage: /usr/bin/sb_filter.py [options] [filenames]

Options can one or more of:
...

Bye, Jörg.

-- System Information:
Debian Release: unstable/experimental
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.13.1
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages spambayes depends on:
ii  python2.3.5-3An interactive high-level object-o

spambayes recommends no packages.

-- no debconf information


pgp7v5ZqxVSl4.pgp
Description: PGP signature


Bug#340346: mutt-ng: sync problem when splitting threads

2005-11-22 Thread Jörg Sommer
Package: mutt-ng
Version: 0.0+20050814-1
Severity: normal

Hi,

I switched to a mailbox opened a thread and hit # on a message to split
off the subthread. Now I can't leave the mailbox, because mutt complains
about a sync problem:

sync: Mailbox verändert, aber Nachrichten unverändert! (bitte Bug melden)

How can I provide you more informations? What do you want to know?

Bye, Jörg.

-- System Information:
Debian Release: unstable/experimental
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.13.1
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages mutt-ng depends on:
ii  exim4-daemon-light [mail-tran 4.54-2 lightweight exim MTA (v4) daemon
ii  libc6 2.3.5-7GNU C Library: Shared libraries an
ii  libgnutls11   1.0.16-14  GNU TLS library - runtime library
ii  libidn11  0.5.18-1   GNU libidn library, implementation
ii  libncursesw5  5.5-1  Shared libraries for terminal hand
ii  libqdbm11 1.8.33-1.1 QDBM Database Libraries [runtime]
ii  libsasl2  2.1.19-1.7 Authentication abstraction library

mutt-ng recommends no packages.

-- no debconf information


pgpwXfAd7EKZG.pgp
Description: PGP signature


Bug#340651: gij-4.0: Dies with sigseg

2005-11-24 Thread Jörg Sommer
Package: gij-4.0
Version: 4.0.2-4
Severity: normal

Hi,

$ gij-4.0 test
Segmentation fault
$ cat test.java 
public class test
{
public test()
{
test t = new test();
}

public static void main(String argv[])
{
new test();
}
}

Bye, Jörg.

-- System Information:
Debian Release: unstable/experimental
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.13.1
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages gij-4.0 depends on:
ii  gcc-4.0-base  4.0.2-4The GNU Compiler Collection (base 
ii  libc6 2.3.5-7GNU C Library: Shared libraries an
ii  libgcj6   4.0.2-4Java runtime library for use with 
ii  zlib1g1:1.2.3-6  compression library - runtime

gij-4.0 recommends no packages.

-- no debconf information


test.class
Description: Binary data


pgpZGpFjxqTlG.pgp
Description: PGP signature


Bug#292970: fcron: provide a Provides: header

2005-01-31 Thread Jörg Sommer
Package: fcron
Version: 2.9.5.1-1
Severity: wishlist

Hi,

can you add a Provides: header to the debian control fields? This would
make it possible to remove cron.

BTW: now both run parallel. Didn't this make trouble?

Joerg.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (990, 'unstable')
Architecture: powerpc (ppc)
Kernel: Linux 2.6.9
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages fcron depends on:
ii  adduser 3.59 Add and remove users and groups
ii  debconf [debconf-2.0]   1.4.42   Debian configuration management sy
ii  dpkg1.10.26  Package maintenance system for Deb
ii  exim4-daemon-light [mail-tr 4.43-4   Lightweight version of the Exim (v
ii  libc6   2.3.2.ds1-20 GNU C Library: Shared libraries an
ii  libpam0g0.76-22  Pluggable Authentication Modules l
ii  libselinux1 1.20-1   SELinux shared libraries
ii  sysklogd [system-log-daemon 1.4.1-16 System Logging Daemon

-- debconf information excluded


signature.asc
Description: Digital signature


Bug#292978: ding: doesn't update the input field upon remote call

2005-01-31 Thread Jörg Sommer
Package: ding
Version: 1.3-5
Severity: normal

Hi,

I call ding with --selection --remote-new. The word in the X selection it
searched, but it isn't inserted into the input box.

Jörg.


-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (990, 'unstable')
Architecture: powerpc (ppc)
Kernel: Linux 2.6.9
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages ding depends on:
ii  tk8.4 [wish]  8.4.9-1Tk toolkit for Tcl and X11, v8.4 -

-- no debconf information


signature.asc
Description: Digital signature


Bug#293562: octave2.1-doc: Provide a pdf version

2005-02-04 Thread Jörg Sommer
Package: octave2.1-doc
Version: 2.1.64-3
Severity: wishlist

Hi,

could you please provide a pdf version of octave.ps.gz, because pdf is
searchable and you can mark and copy from it.

Bye, Joerg.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (990, 'unstable')
Architecture: powerpc (ppc)
Kernel: Linux 2.6.9
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

-- no debconf information


signature.asc
Description: Digital signature


Bug#299808: noflushd: don't touch nonexisting devices

2005-03-16 Thread Jörg Sommer
Package: noflushd
Version: 2.7.4-1
Severity: normal

Hi,

noflushd syncs some devices before spinning down a disc.

Spinning down /dev/discs/disc0/disc.
Syncing /dev/hda
Syncing /dev/hda1
Syncing /dev/hda2
Syncing /dev/hda3
Syncing /dev/hda4
Syncing /dev/hda5
Syncing /dev/hda6
Syncing /dev/dm-0
Syncing /dev/hda
Syncing /dev/hda1
Syncing /dev/hda2
Syncing /dev/hda3
Syncing /dev/hda4
Syncing /dev/hda5
Syncing /dev/hda6
Syncing /dev/dm-0
Sending spindown command to /dev/discs/disc0/disc.

But if devfs is used and one of these devices does not exist, a modprobe
is triggered, which access the disc and no spin down happens. It's a
vicious circle.

Jörg.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (990, 'unstable')
Architecture: powerpc (ppc)
Kernel: Linux 2.6.9
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages noflushd depends on:
ii  debconf [debconf-2.0]   1.4.46   Debian configuration management sy
ii  ed  0.2-20   The classic unix line editor
ii  libc6   2.3.2.ds1-20 GNU C Library: Shared libraries an

-- debconf information excluded


signature.asc
Description: Digital signature


Bug#300208: module-assistant: support for screen sizes different from 80x25

2005-03-18 Thread Jörg Sommer
Package: module-assistant
Version: 0.7.5
Severity: wishlist

Hi,

can you add support for different screen sizes? This can be done with the
environment variables COLUMNS and ROWS and passing adequate values to
dialog. The following is cut out from orphaner of the deborphan package:

# Adapt to terminal size
if [ -n "${LINES:-}" -a -n "${COLUMNS:-}" ]; then
# Can't use LINES, because it colides with magic variable
# COLUMNS ditto
lines=$(($LINES - 7))
columns=$((COLUMNS - 10))

# unset these magic variables to avoid unwished effects
unset LINES COLUMNS
else
size=$(stty size)
lines=$((${size% *} - 7))
columns=$((${size#* } - 10))

function sigwinch_handle
{
size=$(stty size)
lines=$((${size% *} - 7))
columns=$((${size#* } - 10))

if [ $lines -ge 12 -a $columns -ge 50 ]; then
LISTSIZE="$lines $columns $(($lines - 7))"
BOXSIZE="$lines $columns"
fi
}

trap sigwinch_handle SIGWINCH
fi

if [ $lines -lt 12 -o $columns -lt 50 ]; then
echo 'Screen to small or set $LINES and $COLUMNS' >&2
exit 1
fi

LISTSIZE="$lines $columns $(($lines - 7))"
BOXSIZE="$lines $columns"

...
  dialog \
--backtitle "Orphaner $VERSION" \
--separate-output \
--title "Orphaner $VERSION" \
--checklist "Select Packages that should never be recommended for 
removal in deborphan:" \
$LISTSIZE \
$ORPHANED \
2> $PACKAGES || true

Bye, Joerg.


-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (990, 'unstable')
Architecture: powerpc (ppc)
Kernel: Linux 2.6.9
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages module-assistant depends on:
ii  perl  5.8.4-6Larry Wall's Practical Extraction 

-- no debconf information


signature.asc
Description: Digital signature


Bug#299808: noflushd: don't touch nonexisting devices

2005-03-20 Thread Jörg Sommer
Daniel Kobras schrieb am Sun 20. Mar, 16:50 (+0100) :
> On Wed, Mar 16, 2005 at 05:41:53PM +0100, Jörg Sommer wrote:
> > Spinning down /dev/discs/disc0/disc.
> > Syncing /dev/hda
> > Syncing /dev/hda1
> > Syncing /dev/hda2
> > Syncing /dev/hda3
> > Syncing /dev/hda4
> > Syncing /dev/hda5
> > Syncing /dev/hda6
> > Syncing /dev/dm-0
> > Syncing /dev/hda
> > Syncing /dev/hda1
> > Syncing /dev/hda2
> > Syncing /dev/hda3
> > Syncing /dev/hda4
> > Syncing /dev/hda5
> > Syncing /dev/hda6
> > Syncing /dev/dm-0
> > Sending spindown command to /dev/discs/disc0/disc.
> > 
> > But if devfs is used and one of these devices does not exist, a modprobe
> > is triggered, which access the disc and no spin down happens. It's a
> > vicious circle.
> 
> Which one of those does not exist?

All. 
$ ls -l /dev/dm* /dev/hd*
ls: /dev/dm*: Datei oder Verzeichnis nicht gefunden
ls: /dev/hd*: Datei oder Verzeichnis nicht gefunden

> noflushd parses /proc/partitions and
> only tries to access devices that are listed in there. I might have to
> blacklist the device mapper node, though.

Interessting. /proc/partitions show the partitions in old-style, while I
use devfs-style. Maybe you should check if the device nodes exist, before
spinning down the disc.

$ cat /proc/partitions 
major minor  #blocks  name

   3 0   29302560 hda
   3 1 31 hda1
   3 2800 hda2
   3 34194304 hda3
   3 41048576 hda4
   3 5   18874368 hda5
   3 65184480 hda6
 254 0   18874368 dm-0

Jörg.

-- 
Es liegt in der Natur des Menschen, vernünftig zu denken und
unlogisch zu handeln! Das Gesagte ist nicht das Gemeinte und das Gehörte
nicht das Verstandene! 


signature.asc
Description: Digital signature


Bug#300756: /usr/bin/mailto: dies with sigseg if end of file while reading to:

2005-03-21 Thread Jörg Sommer
Package: metamail
Version: 2.7-47
Severity: normal

Hi,

if you hit ^D when you are prompted for the to:, mailto dies with sigseg.

$ mailto < /dev/null 
To: Segmentation fault

Jörg.


-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (990, 'unstable')
Architecture: powerpc (ppc)
Kernel: Linux 2.6.9
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages metamail depends on:
ii  libc6   2.3.2.ds1-20 GNU C Library: Shared libraries an
ii  libncurses5 5.4-4Shared libraries for terminal hand

-- no debconf information


signature.asc
Description: Digital signature


Bug#301189: /bin/cat: cat dies with SIGSEG

2005-03-24 Thread Jörg Sommer
Package: coreutils
Version: 5.2.1-2
Severity: normal
File: /bin/cat

Hi,

I know this is a misusage of cat, but cat shouldn't die with SIGSEG

$ cat audio.wav > /dev/dsp 
Segmentation fault
$ ltrace cat audio.wav > /dev/dsp 
__libc_start_main(2, 0x7a34, 0x7a40, 0x7ab4, 0x3000bee4 
setlocale(6, "") = "C"
bindtextdomain("coreutils", "/usr/share/locale") = "/usr/share/locale"
textdomain("coreutils")  = "coreutils"
__cxa_atexit(0x10001270, 0, 0, 0xffedbf0, 135048) = 0
getopt_long(2, 0x7a34, "benrstuvAET", 0x100035ac, NULL) = -1
__fxstat64(3, 1, 0x78f0) = 0
open64("audio.wav", 0, 0501110)  = 3
__fxstat64(3, 3, 0x78f0) = 0
malloc(4096) = 0x10015080
read(3, ",\003", 671089218)  = 4096
write(1, "RIFF\364\036l\002WAVEfmt \020", 4096 
+++ killed by SIGSEGV +++

Jörg.


-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (990, 'unstable')
Architecture: powerpc (ppc)
Kernel: Linux 2.6.9
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages coreutils depends on:
ii  libacl1 2.2.29-1 Access control list shared library
ii  libc6   2.3.2.ds1-20 GNU C Library: Shared libraries an

-- no debconf information


signature.asc
Description: Digital signature


Bug#301233: libpam-mount: a problem with mounts option passing

2005-03-24 Thread Jörg Sommer
Package: libpam-mount
Version: 0.9.22-2
Severity: normal

Hi,

I have a problem with mount. It passes the options in a strange way to
mount.crypt. It prepends "rw, ". So the option you see in mount.cpryt is
-o "rw, cipher=blowfish". The space makes problems in parsing the
options. This leads to the cipher isn't correct passed to cyrptsetup
which makes it fail to set up the crypt device correctly.

I've added him to the case statment.

-   cipher )
+   " cipher"|cipher )
-   keysize )
+   " keysize"|keysize )
-   hash )
+   " hash"|hash )
-   loop )
+   " loop"|loop )

Jörg.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (990, 'unstable')
Architecture: powerpc (ppc)
Kernel: Linux 2.6.9
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages libpam-mount depends on:
ii  libc6   2.3.2.ds1-20 GNU C Library: Shared libraries an
ii  libglib2.0-02.6.3-1  The GLib library of C routines
ii  libssl0.9.7 0.9.7e-3 SSL shared libraries
ii  mount   2.12p-3  Tools for mounting and manipulatin
ii  zlib1g  1:1.2.2-4compression library - runtime

-- no debconf information
--- mount.crypt 2005-03-07 17:34:09.0 +0100
+++ /tmp/mount.crypt2005-03-24 12:06:42.790952752 +0100
@@ -27,7 +27,7 @@
 
 OPTIONS=""
 
 USAGE="dev dir [-o options]
 
   -o options  set the mount options  [ $OPTIONS ]"
 
@@ -93,16 +93,16 @@
case $KEY in
# FIXME: use cipher instead of encryption to avoid conflicting
# with mount's built-in (cryptoloop) encryption argument.
-   cipher )
+   " cipher"|cipher )
CIPHER="$VAL"
;;
-   keysize )
+   " keysize"|keysize )
KEYSIZE="$VAL"
;;
-   hash )
+   " hash"|hash )
HASH="$VAL"
;;
-   loop )
+   " loop"|loop )
LOOP=true
;;
* )


signature.asc
Description: Digital signature


Bug#301232: libpam-mount: run fsck on encrypted partitions

2005-03-24 Thread Jörg Sommer
Package: libpam-mount
Version: 0.9.22-2
Severity: wishlist

Hi,

please, make it possible to run fsck before mounting a crypted partition
like it is done with cryptoloop.

Thanks, Jörg.


-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (990, 'unstable')
Architecture: powerpc (ppc)
Kernel: Linux 2.6.9
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages libpam-mount depends on:
ii  libc6   2.3.2.ds1-20 GNU C Library: Shared libraries an
ii  libglib2.0-02.6.3-1  The GLib library of C routines
ii  libssl0.9.7 0.9.7e-3 SSL shared libraries
ii  mount   2.12p-3  Tools for mounting and manipulatin
ii  zlib1g  1:1.2.2-4compression library - runtime

-- no debconf information


signature.asc
Description: Digital signature


Bug#301234: libpam-mount: improvments

2005-03-24 Thread Jörg Sommer
Package: libpam-mount
Version: 0.9.22-2
Severity: minor

Hi,

I've did some improvments:

IFS may have any influence on other command. You should set it back to
default.

+unset IFS

This is the same with one sed call:
-   DMDEVICE=`$LOSETUP $DEVICE | egrep '(.+)' | awk '{print $3}' | sed 
's/(//; s/)//'`
+   DMDEVICE=`$LOSETUP $DEVICE 2>/dev/null | sed -n '/(.+)/ { s/.*(//; 
s/).*//; p;}'`

This call all be done with shell variable substitution:
-CIPHEROPT="aes"
-if [ -n "$CIPHER" ]; then
-   CIPHEROPT="$CIPHER"
-fi
-
-HASHOPT="ripemd160"
-if [ -n "$HASH" ]; then
-   HASHOPT="$HASH"
-fi
-
-KEYSIZEOPT="256"
-if [ -n "$KEYSIZE" ]; then
-   KEYSIZEOPT="$KEYSIZE"
-fi
-
-$CRYPTSETUP -c $CIPHEROPT -h $HASHOPT -s $KEYSIZEOPT create $DMDEVICE $DEVICE

+$CRYPTSETUP -c ${CIPHER:-aes} -h ${HASH:-ripemd160} -s ${KEYSIZE:-256} \
+   create $DMDEVICE $DEVICE

With != you compare strings. This means 00 != 0 returns true. What you
want is numerical comaprison with -ne

-if [ $? != 0 ]; then
+if [ $? -ne 0 ]; then

This can also be done with variable substitution:
-if [ -z "$MOUNTOPTIONS" ]; then
-   # $MOUNT_POINT might not exist as mount can try to read it from 
/etc/fstab
-   $MOUNT /dev/mapper/$DMDEVICE $MOUNT_POINT
-   if [ $? != 0 ]; then
-   echo "${0##*/}: error mounting $DMDEVICE" >&2
-   $CRYPTSETUP remove $DMDEVICE
-   [ x"$LOOP" = xtrue ] && $LOSETUP -d $DEVICE
-   exit 1
-   fi
-else
-   $MOUNT -o $MOUNTOPTIONS /dev/mapper/$DMDEVICE $MOUNT_POINT
-   if [ $? != 0 ]; then
-   echo "${0##*/}: error mounting $DMDEVICE" >&2
-   $CRYPTSETUP remove $DMDEVICE
-   [ x"$LOOP" = xtrue ] && $LOSETUP -d $DEVICE
-   exit 1
-   fi
+# $MOUNT_POINT might not exist as mount can try to read it from /etc/fstab
+$MOUNT ${MOUNTOPTIONS:+-o $MOUNTOPTIONS} /dev/mapper/$DMDEVICE $MOUNT_POINT
+if [ $? -ne 0 ]; then
+   echo "${0##*/}: error mounting $DMDEVICE" >&2
+   $CRYPTSETUP remove $DMDEVICE
+   [ x"$LOOP" = xtrue ] && $LOSETUP -d $DEVICE
+   exit 1
 fi

Jörg.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (990, 'unstable')
Architecture: powerpc (ppc)
Kernel: Linux 2.6.9
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages libpam-mount depends on:
ii  libc6   2.3.2.ds1-20 GNU C Library: Shared libraries an
ii  libglib2.0-02.6.3-1  The GLib library of C routines
ii  libssl0.9.7 0.9.7e-3 SSL shared libraries
ii  mount   2.12p-3  Tools for mounting and manipulatin
ii  zlib1g  1:1.2.2-4compression library - runtime

-- no debconf information
--- mount.crypt 2005-03-07 17:34:09.0 +0100
+++ /tmp/mount.crypt2005-03-24 12:06:42.790952752 +0100
@@ -115,6 +115,7 @@
;;
esac
 done
+unset IFS
 
 if [ x"${LOOP}" = xtrue ]; then
DEVICE=`_losetup $DEVICE`
@@ -122,7 +123,7 @@
 # if loop device, make device mapper name based on file pointed to
 case "$DEVICE" in
   /dev/loop*)
-   DMDEVICE=`$LOSETUP $DEVICE | egrep '(.+)' | awk '{print $3}' | sed 
's/(//; s/)//'`
+   DMDEVICE=`$LOSETUP $DEVICE 2>/dev/null | sed -n '/(.+)/ { s/.*(//; 
s/).*//; p;}'`
 esac
 # if not a loop device or previous command fails use $DEVICE
 : ${DMDEVICE:=$DEVICE}
@@ -130,43 +131,19 @@
 # FIXME: blind replacement of / with _ may be a bad idea.
 DMDEVICE=`echo $DMDEVICE | sed 's/\//_/g'`
 
-CIPHEROPT="aes"
-if [ -n "$CIPHER" ]; then
-   CIPHEROPT="$CIPHER"
-fi
-
-HASHOPT="ripemd160"
-if [ -n "$HASH" ]; then
-   HASHOPT="$HASH"
-fi
-
-KEYSIZEOPT="256"
-if [ -n "$KEYSIZE" ]; then
-   KEYSIZEOPT="$KEYSIZE"
-fi
-
-$CRYPTSETUP -c $CIPHEROPT -h $HASHOPT -s $KEYSIZEOPT create $DMDEVICE $DEVICE
-if [ $? != 0 ]; then
+$CRYPTSETUP -c ${CIPHER:-aes} -h ${HASH:-ripemd160} -s ${KEYSIZE:-256} \
+   create $DMDEVICE $DEVICE
+if [ $? -ne 0 ]; then
echo "${0##*/}: error creating $DMDEVICE" >&2
[ x"$LOOP" = xtrue ] && $LOSETUP -d $DEVICE
exit 1
 fi
 
-if [ -z "$MOUNTOPTIONS" ]; then
-   # $MOUNT_POINT might not exist as mount can try to read it from 
/etc/fstab
-   $MOUNT /dev/mapper/$DMDEVICE $MOUNT_POINT
-   if [ $? != 0 ]; then
-   echo "${0##*/}: error mounting $DMDEVICE" >&2
-   $CRYPTSETUP remove $DMDEVICE
-   [ x"$LOOP" = xtrue ] && $LOSETUP -d $DEVICE
-   exit 1
-   fi
-else
-   $MOUNT -o $MOUNTOPTIONS /dev/mapper/$DMDEVICE $MOUNT_POINT
-   if [ $? != 0 ]; then
-   echo "${0##*/}: error mounting $DMDEVICE" >&2
-   $CRYPTSETUP remove $DMDEVICE
-   [ x"$LOOP" = xtrue ] && $LOSETUP -d $DEVICE
-   exit 1
-   fi
+# $MOUNT_POINT might not exist as mount can try to read it from /etc/fstab
+$MOUNT ${MOUNTOPTIONS:+-o $MOUNTOPTIONS} /dev/mapper/$DMDE

Bug#301233: libpam-mount: a problem with mounts option passing

2005-03-25 Thread Jörg Sommer
Jörg Sommer schrieb am Thu 24. Mar, 12:39 (+0100) :
> Package: libpam-mount
> Version: 0.9.22-2
> Severity: normal
> 
> Hi,
> 
> I have a problem with mount. It passes the options in a strange way to
> mount.crypt. It prepends "rw, ". So the option you see in mount.cpryt is
> -o "rw, cipher=blowfish". The space makes problems in parsing the
> options. This leads to the cipher isn't correct passed to cyrptsetup
> which makes it fail to set up the crypt device correctly.
> 
> I've added him to the case statment.

Better idea: add the space to IFS

--- mount.crypt 2005-03-07 17:34:09.0 +0100
+++ /tmp/mount.crypt2005-03-24 12:06:42.790952752 +0100
@@ -86,8 +86,8 @@
 HASH=""
 LOOP=false
 MOUNTOPTIONS=""
-IFS=","
+IFS=", "
 for opt in $OPTIONS; do
 KEY=${opt%=*}
 VAL=${opt#*=}


Jörg.

-- 
Wer A sagt, muß nicht B sagen. Er kann auch erkennen, daß A falsch war.
(Erich Kästner)


signature.asc
Description: Digital signature


Bug#302942: tricklectl manpage: mistake

2005-04-03 Thread Jörg Sommer
Package: trickle
Version: 1.07-3
Severity: minor

Hi,

in the manpage the word "shper" misses a 'a'.

Bye, Joerg.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Kernel: Linux 2.6.9
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages trickle depends on:
ii  libc6   2.3.2.ds1-20 GNU C Library: Shared libraries an
ii  libevent1   1.0b-1.1 An asynchronous event notification

-- no debconf information


signature.asc
Description: Digital signature


Bug#303290: gxine: missing whitespace in health check explanation

2005-04-05 Thread Jörg Sommer
Package: gxine
Version: 0.4.1-1
Severity: minor

Hi,

I get the message:

Either create a symbolic link /dev/cdrom pointing toyour cdrom device or
set your cdrom device in thepreferences dialog.

There is a whitespace missing between "to your" and "the preferences".

Joerg.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Kernel: Linux 2.6.9
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages gxine depends on:
ii  libatk1.0-0  1.8.0-4 The ATK accessibility toolkit
ii  libc62.3.2.ds1-20GNU C Library: Shared libraries an
ii  libglib2.0-0 2.6.3-1 The GLib library of C routines
ii  libgtk2.0-0  2.6.2-4 The GTK+ graphical user interface 
ii  libice6  4.3.0.dfsg.1-12 Inter-Client Exchange library
ii  libpango1.0-01.8.1-1 Layout and rendering of internatio
ii  libsm6   4.3.0.dfsg.1-12 X Window System Session Management
ii  libsmjs1 1.5rc6a-1   The Mozilla SpiderMonkey JavaScrip
ii  libx11-6 4.3.0.dfsg.1-12 X Window System protocol client li
ii  libxaw7  4.3.0.dfsg.1-12 X Athena widget set library
ii  libxine1 1.0-1   the xine video/media player librar
ii  libxt6   4.3.0.dfsg.1-12 X Toolkit Intrinsics
ii  libxtst6 4.3.0.dfsg.1-12 X Window System event recording an
ii  xlibs4.3.0.dfsg.1-12 X Keyboard Extension (XKB) configu
ii  zlib1g   1:1.2.2-4   compression library - runtime

-- no debconf information


signature.asc
Description: Digital signature


Bug#303463: libxine1: /u/s/doc/xine is not policy conform

2005-04-06 Thread Jörg Sommer
Package: libxine1
Version: 1.0-1
Severity: important

Hi,

according to the discussion on debian-policy [1], the directory
/usr/share/doc/xine is not conform to policy 12.3. There is no package
xine where the documentation is about.

Jörg.

[1] http://lists.debian.org/debian-policy/2005/04/msg4.html

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Kernel: Linux 2.6.9
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages libxine1 depends on:
ii  libasound2   1.0.8-3 ALSA library
ii  libc62.3.2.ds1-20GNU C Library: Shared libraries an
ii  libfreetype6 2.1.7-2.3   FreeType 2 font engine, shared lib
ii  libmodplug0  1:0.7-4 shared libraries for mod music bas
ii  libogg0  1.1.2-1 Ogg Bitstream Library
ii  libpng12-0   1.2.8rel-1  PNG library - runtime
ii  libspeex11.1.6-2 The Speex Speech Codec
ii  libstdc++5   1:3.3.5-8   The GNU Standard C++ Library v3
ii  libxext6 4.3.0.dfsg.1-12 X Window System miscellaneous exte
ii  xlibs4.3.0.dfsg.1-12 X Keyboard Extension (XKB) configu
ii  zlib1g   1:1.2.2-4   compression library - runtime

-- no debconf information


signature.asc
Description: Digital signature


Bug#330824: subversion-tools: Moves /usr/lib/subversion to /u/share/, because all files are sharable

2005-09-29 Thread Jörg Sommer
Package: subversion-tools
Version: 1.2.3a-1
Severity: serious
Justification: Policy 8.1

Hi,

all files in /usr/lib/subversion are plain text files or perl/python
scripts. The FHS forces to move such files in a directory under
/usr/share/, because they can the shared among different architectures.

$ find /usr/lib/subversion/ -type f |xargs file
hook-scripts/README:ASCII English text
hook-scripts/commit-access-control.cfg.example: ASCII English text
hook-scripts/commit-access-control.pl:  a perl script text executable
hook-scripts/commit-email.pl:   a perl script text executable
hook-scripts/commit-email.rb:   a ruby script text executable
hook-scripts/mailer/mailer.conf.example:ASCII English text
hook-scripts/mailer/mailer.py:  a /usr/bin/python2.3 script 
text executable
hook-scripts/mailer/tests/mailer-init.sh:   Bourne shell script text 
executable
hook-scripts/mailer/tests/mailer-t1.output: ASCII text
hook-scripts/mailer/tests/mailer-t1.sh: Bourne shell script text 
executable
hook-scripts/mailer/tests/mailer-tweak.py:  a /usr/bin/python2.3 script 
text executable
hook-scripts/propchange-email.pl:   a perl script text executable
hook-scripts/svnperms.conf.example: ASCII English text
hook-scripts/svnperms.py:   a /usr/bin/python2.3 script 
text executable
hook-scripts/verify-po.py:  a /usr/bin/python2.3 script 
text executable
hot-backup.py:  a /usr/bin/python2.3 script 
text executable

BTW: Maybe you can move the example files to /u/s/d/s-tools/example/

Bye, Jörg.

-- System Information:
Debian Release: unstable/experimental
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.13.1
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages subversion-tools depends on:
ii  exim4-daemon-light [mail-tran 4.52-2 lightweight exim MTA (v4) daemon
ii  libconfig-inifiles-perl   2.38-3 Read .ini-style configuration file
ii  liburi-perl   1.35-1 Manipulates and accesses URI strin
ii  perl  5.8.7-5Larry Wall's Practical Extraction 
ii  python2.3 2.3.5-8An interactive high-level object-o
ii  python2.3-subversion  1.2.3a-1   python modules for interfacing wit
ii  rcs   5.7-16 The GNU Revision Control System
ii  subversion1.2.3a-1   advanced version control system (a

subversion-tools recommends no packages.

-- no debconf information



Bug#330825: xjed: pasting with middle mouse button into an open mark fails

2005-09-29 Thread Jörg Sommer
Package: xjed
Version: 0.99.17.111-1
Severity: normal

Hi,

when I open a mark with ctrl+space and hit the middle mouse button to
insert the text from the cut buffer, the open mark is closed (poped from
the mark stack) and nothing else happens. Inserting the text with
x_insert_cutbuffer() works, but not with the middle mouse button.

Bye, Jörg.

-- System Information:
Debian Release: unstable/experimental
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.13.1
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages xjed depends on:
ii  jed-common0.99.17.111-1  S-Lang runtime files for jed and x
ii  libc6 2.3.5-6GNU C Library: Shared libraries an
ii  libfreetype6  2.1.10-1   FreeType 2 font engine, shared lib
ii  libslang2 2.0.4-7The S-Lang programming library - r
ii  libx11-6  6.8.2.dfsg.1-6 X Window System protocol client li
ii  libxext6  6.8.2.dfsg.1-6 X Window System miscellaneous exte
ii  libxft2   2.1.7-1FreeType-based font drawing librar
ii  libxrender1   1:0.9.0-2  X Rendering Extension client libra
ii  xlibs 6.8.2.dfsg.1-7 X Window System client libraries m

xjed recommends no packages.

-- no debconf information



Bug#330825: xjed: pasting with middle mouse button ...

2005-09-30 Thread Jörg Sommer
Hello G.,

G. Milde schrieb am Fri 30. Sep, 09:51 (+0200):
> On 29.09.05, Jörg Sommer wrote:
> > 
> > when I open a mark with ctrl+space
> 
> Is this push_mark() or push_visible_mark() or something like this?
> Here, F1 K ctrls+space says: Key "" is undefined.

It is smart_set_mark_cmd(), that is the same as push_visible_mark().

But your clue was good. If I push a mark with push_mark() on the mark
stack, all works as expected. If I push a mark with push_visible_mark()
on the stack, I get this misbehaviour.

> > and hit the middle mouse button to insert the text from the cut buffer,
> > the open mark is closed (poped from the mark stack) and nothing else
> > happens. Inserting the text with x_insert_cutbuffer() works, but not
> > with the middle mouse button.
> 
> With cuamouse.sl (from Jedmodes), I get a different behaviour: the mark
> is popped and the selection inserted at mouse-point position.

This is not what I want/expect.

> IMHO the best way would be to report this directly to John.

Yes. We should forward this bug to John, because it seems to be located
deeper in jed, than I thought.

Bye, Jörg.
-- 
Die am Lautesten reden, haben stets am wenigsten zu sagen.


pgpNKrLSs5q7g.pgp
Description: PGP signature


Bug#330825: xjed: pasting with middle mouse button ...

2005-10-04 Thread Jörg Sommer
Hello G.,

G. Milde schrieb am Tue 04. Oct, 09:22 (+0200):
> On 30.09.05, Jörg Sommer wrote:
> > Hello G.,
> > 
> > G. Milde schrieb am Fri 30. Sep, 09:51 (+0200):
> > > On 29.09.05, Jörg Sommer wrote:
> 
> > It is smart_set_mark_cmd(), that is the same as push_visible_mark().
> > 
> > But your clue was good. If I push a mark with push_mark() on the mark
> > stack, all works as expected. If I push a mark with push_visible_mark()
> > on the stack, I get this misbehaviour.
> 
> Ich wollte eigentlich nur sagen: wenn die Tastenbindung nicht zum Fehler
> gehört, dann ist es verwirrend sie zu benennen (da mehrere Emulationen
> vorliegen).

Your are right.

> Aber eine Sache kommt mir da noch verdächtig vor: nutzt Du evt. cuamark.sl
> (von Jedmodes)? (Dort wird die Unterscheidung mark/visible-mark verwendet um
> "flüchtige Regionen" zu kennzeichnen.)
> Wenn der Fehler ohne cuamark.sl verschwindet, brauchen wir John nicht zu
> beunruhigen. (BTW: es könnte auch an wmark.sl liegen, welches ähnliche
> Funktionalität bereitstellt.)

I use wmark, but I tried, I get the error without it too. What happens at
you, I you run xjed -n, push a mark and insert something?

> > > > and hit the middle mouse button to insert the text from the cut buffer,
> > > > the open mark is closed (poped from the mark stack) and nothing else
> > > > happens. Inserting the text with x_insert_cutbuffer() works, but not
> > > > with the middle mouse button.
> > > 
> > > With cuamouse.sl (from Jedmodes), I get a different behaviour: the mark
> > > is popped and the selection inserted at mouse-point position.
> > 
> > This is not what I want/expect.
> 
> So you either do not want cuamouse because it does not what you expect

Yes.

Bye, Jörg.
-- 
Two types have compatible type if their types are the same.
[ANSI C, 3.1.2.6.]


pgpzmKkQP9ZQC.pgp
Description: PGP signature


Bug#328598: rubber-info fails silently if source file is not X.tex

2005-09-16 Thread Jörg Sommer
Package: rubber
Version: 1.0-1
Severity: normal

Hi,

rubber-info fails, if the source file has not the extension .tex. I name
my latex file .latex, which cause rubber-info do not find the source
file. If I create a link from X.latex to X.tex it works, but without it
fails.

BTW: In such a case rubber-info should raise a message, why it fails.

Regards, Jörg.

-- System Information:
Debian Release: unstable/experimental
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.13.1
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages rubber depends on:
ii  python2.3.5-3An interactive high-level object-o
ii  tetex-bin 3.0-5  The teTeX binary files

rubber recommends no packages.

-- no debconf information



Bug#328599: rubber-info fails silently if source file is not X.tex

2005-09-16 Thread Jörg Sommer
Package: rubber
Version: 1.0-1
Severity: normal

Hi,

rubber-info fails, if the source file has not the extension .tex. I name
my latex file .latex, which cause rubber-info do not find the source
file. If I create a link from X.latex to X.tex it works, but without it
fails.

BTW: In such a case rubber-info should raise a message, why it fails.

Regards, Jörg.

-- System Information:
Debian Release: unstable/experimental
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.13.1
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages rubber depends on:
ii  python2.3.5-3An interactive high-level object-o
ii  tetex-bin 3.0-5  The teTeX binary files

rubber recommends no packages.

-- no debconf information


pgp2Zqpmnv0wS.pgp
Description: PGP signature


Bug#323825: tetex-base: latex fails

2005-08-18 Thread Jörg Sommer
Package: tetex-base
Version: 3.0-6
Severity: normal

$ cat skript.latex
\listfiles
\documentclass{scrreprt}
\usepackage{hyperref}
\begin{document}
\end{document}

$ pdflatex skript.latex
This is pdfeTeX, Version 3.141592-1.21a-2.2 (Web2C 7.5.4)
entering extended mode
(./skript.latex
LaTeX2e <2003/12/01>
Babel  and hyphenation patterns for american, french, german, ngerman, b
ahasa, basque, bulgarian, catalan, croatian, czech, danish, dutch, esperanto, e
stonian, finnish, greek, icelandic, irish, italian, latin, magyar, norsk, polis
h, portuges, romanian, russian, serbian, slovak, slovene, spanish, swedish, tur
kish, ukrainian, nohyphenation, loaded.
(/usr/share/texmf/tex/latex/koma-script/scrreprt.cls
Document Class: scrreprt 2004/09/16 v2.9t LaTeX2e KOMA document class
(/usr/share/texmf/tex/latex/koma-script/scrlfile.sty
Package scrlfile, 2004/09/16 v2.9t LaTeX2e KOMA package
  Copyright (C) Markus Kohm

) (/usr/share/texmf/tex/latex/base/size11.clo)
(/usr/share/texmf/tex/latex/koma-script/typearea.sty
Package typearea, 2004/09/16 v2.9t LaTeX2e KOMA package
  Copyright (C) Frank Neukam, 1992-1994
  Copyright (C) Markus Kohm, 1994-2002

)) (/usr/share/texmf/tex/latex/hyperref/hyperref.sty
(/usr/share/texmf/tex/latex/graphics/keyval.sty)
(/usr/share/texmf/tex/latex/hyperref/pd1enc.def)
(/usr/share/texmf/tex/latex/hyperref/hyperref.cfg)
Implicit mode ON; LaTeX internals redefined
(/usr/share/texmf/tex/latex/url/url.sty))
*hyperref using default driver hpdftex*
(/usr/share/texmf/tex/latex/hyperref/hpdftex.def
(/usr/share/texmf/tex/latex/psnfss/pifont.sty

! LaTeX Error: Encoding scheme `U' unknown.

See the LaTeX manual or LaTeX Companion for explanation.
Type  H   for immediate help.
 ...  
  
l.63 {\Pifont{pzd}
  }

LaTeX Font Warning: Font shape `OT1/pzd/m/n' undefined
(Font)  using `OT1/cmr/m/n' instead on input line 63.


! LaTeX Error: Encoding scheme `U' unknown.

See the LaTeX manual or LaTeX Companion for explanation.
Type  H   for immediate help.
 ...  
  
l.64 {\Pifont{psy}
  }

LaTeX Font Warning: Font shape `OT1/psy/m/n' undefined
(Font)  using `OT1/cmr/m/n' instead on input line 64.

)) (./skript.aux) (/usr/share/texmf/tex/latex/base/omlcmr.fd)
(/usr/share/texmf/tex/latex/base/omscmr.fd)
(/usr/share/texmf/tex/latex/hyperref/nameref.sty) (./skript.out) (./skript.out)
(./skript.aux)

 *File List*
scrreprt.cls2004/09/16 v2.9t LaTeX2e KOMA document class
scrlfile.sty2004/09/16 v2.9t LaTeX2e KOMA package
  size11.clo2004/02/16 v1.4f Standard LaTeX file (size option)
typearea.sty2004/09/16 v2.9t LaTeX2e KOMA package
hyperref.sty2003/11/30 v6.74m Hypertext links for LaTeX
  keyval.sty1999/03/16 v1.13 key=value parser (DPC)
  pd1enc.def2003/11/30 v6.74m Hyperref: PDFDocEncoding definition (HO)
hyperref.cfg2002/06/06 v1.2 hyperref configuration of TeXLive and teTeX
 url.sty2004/03/15  ver 3.1  Verb mode for urls, etc.
 hpdftex.def2003/11/30 v6.74m Hyperref driver for pdfTeX
  pifont.sty2004/09/15 PSNFSS-v9.2 Pi font support (SPQR) 
  omlcmr.fd1999/05/25 v2.5h Standard LaTeX font definitions
  omscmr.fd1999/05/25 v2.5h Standard LaTeX font definitions
 nameref.sty2003/12/03 v2.21 Cross-referencing by name of section
  skript.out
  skript.out
 ***


LaTeX Font Warning: Some font shapes were not available, defaults substituted.

 )
(see the transcript file for additional information)
No pages of output.
Transcript written on skript.log.


-- Package-specific info:
Please read and follow the instructions in the first lines below
the text: "-- Package-specific info:".
Thank you.

Press ENTER to continue
If you report an error when running one of the TeX-related binaries 
(latex, pdftex, metafont,...), or if the bug is related to bad or wrong
output, please include a MINIMAL example input file that produces the
error in your report. Don't forget to also include minimal examples of
other files that are needed, e.g. bibtex databases. Often it also helps
to include the logfile. Please, never send included pictures!

If your example file isn't short or produces more than one page of
output (except when multiple pages are needed to show the problem),
you can probably minimize it further. Instructions on how to do that
can be found at

http://www.latex-einfuehrung.de/mini-en.html (english)

or 

http://www.latex-einfuehrung.de/mini.html (german)

##
minimal input file


##
other files

##
 List of ls-R files

lrwxrwxrwx  1 root root 29 2005-08-17 19:08 /usr/share/texmf/ls-R -> 
/var/lib/texmf/ls-R-TEXMFMAIN
lrwxrwxrwx  1 root root 29 2005-08-17 19:08 /usr/share/texmf/ls

Bug#323826: tetex-bin: postinst fails

2005-08-18 Thread Jörg Sommer
Package: tetex-bin
Version: 3.0-5
Severity: normal

Richte tetex-bin ein (3.0-5) ...
Merging information from /etc/texmf/texmf.d/ into /etc/texmf/texmf.cnf ... done

An essential entry in /etc/texmf/texmf.cnf is missing. Fixing

sed: -e Ausdruck #1, Zeichen 30: unknown command: `%'


-- System Information:
Debian Release: unstable/experimental
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.11
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages tetex-bin depends on:
ii  debconf [debconf-2.0]1.4.51  Debian configuration management sy
ii  debianutils  2.14.1  Miscellaneous utilities specific t
ii  dpkg 1.13.9  Package maintenance system for Deb
ii  ed   0.2-20  The classic unix line editor
ii  libc62.3.5-3 GNU C Library: Shared libraries an
ii  libgcc1  1:4.0.1-3   GCC support library
ii  libice6  4.3.0.dfsg.1-14 Inter-Client Exchange library
ii  libkpathsea4 3.0-5   path search library for teTeX (run
ii  libpaper11.1.14-3Library for handling paper charact
ii  libpng12-0   1.2.8rel-1  PNG library - runtime
ii  libsm6   4.3.0.dfsg.1-14 X Window System Session Management
ii  libstdc++6   4.0.1-3 The GNU Standard C++ Library v3
ii  libt1-5  5.0.2-3 Type 1 font rasterizer library - r
ii  libx11-6 4.3.0.dfsg.1-14 X Window System protocol client li
ii  libxaw7  4.3.0.dfsg.1-14 X Athena widget set library
ii  libxext6 4.3.0.dfsg.1-14 X Window System miscellaneous exte
ii  libxmu6  4.3.0.dfsg.1-14 X Window System miscellaneous util
ii  libxpm4  4.3.0.dfsg.1-14 X pixmap library
ii  libxt6   4.3.0.dfsg.1-14 X Toolkit Intrinsics
ii  mime-support 3.34-1  MIME files 'mime.types' & 'mailcap
ii  perl 5.8.7-4 Larry Wall's Practical Extraction 
ii  sed  4.1.4-2 The GNU sed stream editor
ii  tetex-base   3.0-6   Basic library files of teTeX
ii  ucf  1.18Update Configuration File: preserv
ii  xlibs4.3.0.dfsg.1-14 X Keyboard Extension (XKB) configu
ii  zlib1g   1:1.2.2-4   compression library - runtime

Versions of packages tetex-bin recommends:
ii  dialog1.0-20050306-1 Displays user-friendly dialog boxe
pn  libxml-parser-perl (no description available)
ii  perl-tk   1:800.025-2Perl module providing the Tk graph
ii  psutils   1.17-17A collection of PostScript documen

-- debconf information:
  tetex-bin/updmap-failed:
* tetex-bin/hyphen: german[=austrian-alte_Rechtschreibung], 
ngerman[=naustrian-neue_Rechtschreibung], french[=patois]
  tetex-bin/oldcfg: true
* tetex-bin/upd_map: true
  tetex-bin/cnf_name:
* tetex-bin/fmtutil: true
* tetex-bin/use_debconf: true
  tetex-bin/fmtutil-failed:
* tetex-bin/groupname: users
* tetex-bin/userperm: false
* tetex-bin/groupperm: true
* tetex-bin/lsr-perms: true


signature.asc
Description: Digital signature


Bug#323827: tetex-bin: confising warning

2005-08-18 Thread Jörg Sommer
Package: tetex-bin
Version: 3.0-5
Severity: minor

Richte tetex-bin ein (3.0-5) ...
Merging information from /etc/texmf/texmf.d/ into /etc/texmf/texmf.cnf ... done
update-fmtutil's -v option is deprecated. The default mode of operation will
be verbose as soon as enough packages use the --quiet option. Please update
your scripts accordingly.

I find the update-fmutils message while installing confusing. Can't you
replace them?

-- System Information:
Debian Release: unstable/experimental
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.11
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages tetex-bin depends on:
ii  debconf [debconf-2.0]1.4.51  Debian configuration management sy
ii  debianutils  2.14.1  Miscellaneous utilities specific t
ii  dpkg 1.13.9  Package maintenance system for Deb
ii  ed   0.2-20  The classic unix line editor
ii  libc62.3.5-3 GNU C Library: Shared libraries an
ii  libgcc1  1:4.0.1-3   GCC support library
ii  libice6  4.3.0.dfsg.1-14 Inter-Client Exchange library
ii  libkpathsea4 3.0-5   path search library for teTeX (run
ii  libpaper11.1.14-3Library for handling paper charact
ii  libpng12-0   1.2.8rel-1  PNG library - runtime
ii  libsm6   4.3.0.dfsg.1-14 X Window System Session Management
ii  libstdc++6   4.0.1-3 The GNU Standard C++ Library v3
ii  libt1-5  5.0.2-3 Type 1 font rasterizer library - r
ii  libx11-6 4.3.0.dfsg.1-14 X Window System protocol client li
ii  libxaw7  4.3.0.dfsg.1-14 X Athena widget set library
ii  libxext6 4.3.0.dfsg.1-14 X Window System miscellaneous exte
ii  libxmu6  4.3.0.dfsg.1-14 X Window System miscellaneous util
ii  libxpm4  4.3.0.dfsg.1-14 X pixmap library
ii  libxt6   4.3.0.dfsg.1-14 X Toolkit Intrinsics
ii  mime-support 3.34-1  MIME files 'mime.types' & 'mailcap
ii  perl 5.8.7-4 Larry Wall's Practical Extraction 
ii  sed  4.1.4-2 The GNU sed stream editor
ii  tetex-base   3.0-6   Basic library files of teTeX
ii  ucf  1.18Update Configuration File: preserv
ii  xlibs4.3.0.dfsg.1-14 X Keyboard Extension (XKB) configu
ii  zlib1g   1:1.2.2-4   compression library - runtime

Versions of packages tetex-bin recommends:
ii  dialog1.0-20050306-1 Displays user-friendly dialog boxe
pn  libxml-parser-perl (no description available)
ii  perl-tk   1:800.025-2Perl module providing the Tk graph
ii  psutils   1.17-17A collection of PostScript documen

-- debconf information:
  tetex-bin/updmap-failed:
* tetex-bin/hyphen: german[=austrian-alte_Rechtschreibung], 
ngerman[=naustrian-neue_Rechtschreibung], french[=patois]
  tetex-bin/oldcfg: true
* tetex-bin/upd_map: true
  tetex-bin/cnf_name:
* tetex-bin/fmtutil: true
* tetex-bin/use_debconf: true
  tetex-bin/fmtutil-failed:
* tetex-bin/groupname: users
* tetex-bin/userperm: false
* tetex-bin/groupperm: true
* tetex-bin/lsr-perms: true
-- 
And 1.1.81 is officially BugFree(tm), so if you receive any bug-reports
on it, you know they are just evil lies.
 -- Linus Torvalds


signature.asc
Description: Digital signature


Bug#323828: tetex-bin: updmap fails while installation

2005-08-18 Thread Jörg Sommer
Package: tetex-bin
Version: 3.0-5
Severity: normal

Hi,

updmap fails while installing the package which causes the whole package
installation fails.

Running updmap-sys. This may take some time. ...
updmap failed. Output has been stored in
[...]
updmap: Scanning for Map entries:
updmap: using map file `/usr/share/texmf/fonts/map/dvips/antp/antp.map'

!!! ERROR! The map file `antt.map' has not been found at all.

$ grep antt.map /etc/texmf/updmap.d/*cfg
/etc/texmf/updmap.d/10tetex-base.cfg:Map cork-antt.map
/etc/texmf/updmap.d/10tetex-base.cfg:Map cs-antt.map
/etc/texmf/updmap.d/10tetex-base.cfg:Map exp-antt.map
/etc/texmf/updmap.d/10tetex-base.cfg:Map greek-antt.map
/etc/texmf/updmap.d/10tetex-base.cfg:Map qx-antt.map
/etc/texmf/updmap.d/10tetex-base.cfg:Map t2a-antt.map
/etc/texmf/updmap.d/10tetex-base.cfg:Map t2b-antt.map
/etc/texmf/updmap.d/10tetex-base.cfg:Map t2c-antt.map
/etc/texmf/updmap.d/10tetex-base.cfg:Map t5-antt.map
/etc/texmf/updmap.d/10tetex-base.cfg:Map texnansi-antt.map
/etc/texmf/updmap.d/10tetex-base.cfg:Map wncy-antt.map

-- System Information:
Debian Release: unstable/experimental
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.11
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages tetex-bin depends on:
ii  debconf [debconf-2.0]1.4.51  Debian configuration management sy
ii  debianutils  2.14.1  Miscellaneous utilities specific t
ii  dpkg 1.13.9  Package maintenance system for Deb
ii  ed   0.2-20  The classic unix line editor
ii  libc62.3.5-3 GNU C Library: Shared libraries an
ii  libgcc1  1:4.0.1-3   GCC support library
ii  libice6  4.3.0.dfsg.1-14 Inter-Client Exchange library
ii  libkpathsea4 3.0-5   path search library for teTeX (run
ii  libpaper11.1.14-3Library for handling paper charact
ii  libpng12-0   1.2.8rel-1  PNG library - runtime
ii  libsm6   4.3.0.dfsg.1-14 X Window System Session Management
ii  libstdc++6   4.0.1-3 The GNU Standard C++ Library v3
ii  libt1-5  5.0.2-3 Type 1 font rasterizer library - r
ii  libx11-6 4.3.0.dfsg.1-14 X Window System protocol client li
ii  libxaw7  4.3.0.dfsg.1-14 X Athena widget set library
ii  libxext6 4.3.0.dfsg.1-14 X Window System miscellaneous exte
ii  libxmu6  4.3.0.dfsg.1-14 X Window System miscellaneous util
ii  libxpm4  4.3.0.dfsg.1-14 X pixmap library
ii  libxt6   4.3.0.dfsg.1-14 X Toolkit Intrinsics
ii  mime-support 3.34-1  MIME files 'mime.types' & 'mailcap
ii  perl 5.8.7-4 Larry Wall's Practical Extraction 
ii  sed  4.1.4-2 The GNU sed stream editor
ii  tetex-base   3.0-6   Basic library files of teTeX
ii  ucf  1.18Update Configuration File: preserv
ii  xlibs4.3.0.dfsg.1-14 X Keyboard Extension (XKB) configu
ii  zlib1g   1:1.2.2-4   compression library - runtime

Versions of packages tetex-bin recommends:
ii  dialog1.0-20050306-1 Displays user-friendly dialog boxe
pn  libxml-parser-perl (no description available)
ii  perl-tk   1:800.025-2Perl module providing the Tk graph
ii  psutils   1.17-17A collection of PostScript documen

-- debconf information:
  tetex-bin/updmap-failed:
* tetex-bin/hyphen: german[=austrian-alte_Rechtschreibung], 
ngerman[=naustrian-neue_Rechtschreibung], french[=patois]
  tetex-bin/oldcfg: true
* tetex-bin/upd_map: true
  tetex-bin/cnf_name:
* tetex-bin/fmtutil: true
* tetex-bin/use_debconf: true
  tetex-bin/fmtutil-failed:
* tetex-bin/groupname: users
* tetex-bin/userperm: false
* tetex-bin/groupperm: true
* tetex-bin/lsr-perms: true


signature.asc
Description: Digital signature


Bug#323828: tetex-bin: updmap fails while installation

2005-08-22 Thread Jörg Sommer
Frank Küster schrieb am Mon 22. Aug, 12:35 (+0200):
> Jörg Sommer <[EMAIL PROTECTED]> wrote:
> 
> > updmap fails while installing the package which causes the whole package
> > installation fails.
> 
> Does the updmap error now still occur, or is it fixed too?  If not,

I've "purged" all tetex packages and reinstalled them and tetex-bin still
fails:

Running fmtutil-sys. This may take some time. ...
Running updmap-sys. This may take some time. ...
updmap failed. Output has been stored in
/tmp/tetex.updmap.XXUxsu5f
Please include this file if you report a bug.

> please run "updmap-sys" as root, and send us the output.

# updmap-sys 
updmap: This is updmap, version 1107552857
updmap: using transcript file `/var/lib/texmf/web2c/updmap.log'

updmap is creating new map files using the following configuration:

  config file: `/usr/share/texmf/web2c/updmap.cfg'
  dvips output directory: `/var/lib/texmf/fonts/map/dvips/updmap'
  pdftex output directory: `/var/lib/texmf/fonts/map/pdftex/updmap'
  dvipdfm output directory: `/var/lib/texmf/fonts/map/dvipdfm/updmap'

  prefer outlines: `true'
  texhash enabled: `true'
  download standard fonts (dvips): `false'
  download standard fonts (pdftex): `false'
  download standard fonts (dvipdfm): `false'

updmap: Scanning for LW35 support files
updmap: using map file `/usr/share/texmf/fonts/map/dvips/tetex/dvips35.map'
updmap: using map file `/usr/share/texmf/fonts/map/dvips/tetex/pdftex35.map'
updmap: using map file `/usr/share/texmf/fonts/map/dvips/tetex/dvipdfm35.map'
updmap: using map file `/usr/share/texmf/fonts/map/dvips/tetex/ps2pk35.map'

updmap: Scanning for MixedMap entries:

!!! ERROR! The map file `bsr-interpolated.map' has not been found at all.

Either put this file into the right place or remove the
reference from the configuration file. An automatic way
to disable unavailable map files is to call
  updmap --syncwithtrees

For manual editing, call
  updmap --edit

Jörg.

-- 
Die NASA brauchte 12 Jahre um einen Kugelschreiber zu entwickeln, der
kopfüber, in der Schwerelosigkeit und unter Wasser schreiben kann.
Die Russen benutzten einfach einen Bleistift...
updmap: This is updmap, version 1107552857
updmap: using transcript file `/var/lib/texmf/web2c/updmap.log'

updmap is creating new map files using the following configuration:

  config file: `/usr/share/texmf/web2c/updmap.cfg'
  dvips output directory: `/var/lib/texmf/fonts/map/dvips/updmap'
  pdftex output directory: `/var/lib/texmf/fonts/map/pdftex/updmap'
  dvipdfm output directory: `/var/lib/texmf/fonts/map/dvipdfm/updmap'

  prefer outlines: `true'
  texhash enabled: `true'
  download standard fonts (dvips): `false'
  download standard fonts (pdftex): `false'
  download standard fonts (dvipdfm): `false'

updmap: Scanning for LW35 support files
updmap: using map file `/usr/share/texmf/fonts/map/dvips/tetex/dvips35.map'
updmap: using map file `/usr/share/texmf/fonts/map/dvips/tetex/pdftex35.map'
updmap: using map file `/usr/share/texmf/fonts/map/dvips/tetex/dvipdfm35.map'
updmap: using map file `/usr/share/texmf/fonts/map/dvips/tetex/ps2pk35.map'

updmap: Scanning for MixedMap entries:

!!! ERROR! The map file `bsr-interpolated.map' has not been found at all.

Either put this file into the right place or remove the
reference from the configuration file. An automatic way
to disable unavailable map files is to call
  updmap --syncwithtrees

For manual editing, call
  updmap --edit

+ test -f /bin/ksh
+ test -z 
+ unset RUNNING_KSH
+ test -f /bin/bsh
+ unset RUNNING_BSH
+ test -n 
+ version=1107552857
+ main
+ progname=updmap
+ cmd=
+ log=
+ cfgparam=
+ outputdirparam=
+ cfgmaint=
+ texhashEnabled=true
+ mkmapEnabled=true
+ verbose=true
+ needsCleanup=false
+ cnfFileShort=updmap.cfg
+ cnfFile=
+ dvipsoutputdir=
+ pdftexoutputdir=
+ dvipdfmoutputdir=
+ kpsewhich -var-value=TEXMFMAIN
+ : /usr/share/texmf
+ tmpdir=/tmp/updmap.23571
+ tmp1=/tmp/updmap.23571/a
+ tmp2=/tmp/updmap.23571/b
+ tmp3=/tmp/updmap.23571/c
+ tmp4=/tmp/updmap.23571/d
+ tmp5=/tmp/updmap.23571/e
+ tmp6=/tmp/updmap.23571/f
+ tmp7=/tmp/updmap.23571/g
+ tmp8=/tmp/updmap.23571/h
+ mapWarnCalled=/tmp/updmap.23571/mapWarnCalled
+ catMapsFailed=/tmp/updmap.23571/catMapsFailed
+ processOptions
+ break
+ test -n 
+ test -n 
+ test -n 
+ test -n 
+ setupCfgFile
+ locateWeb2c updmap.cfg
+ kpsewhich --format=web2c files updmap.cfg
+ cnfFile=/usr/share/texmf/web2c/updmap.cfg
+ setupLog
+ kpsewhich -var-value=TEXMFVAR
+ vartexmf=/var/lib/texmf
+ dir=/var/lib/texmf/web2c
+ mktexdir /var/lib/texmf/web2c
+ log=/var/lib/texmf/web2c/updmap.log
+ test -d /var/lib/texmf/web2c
+ test -w /var/lib/texmf/web2c
+ rm -f /var/lib/texmf/web2c/updmap.log
+ 
+ test -w /var/lib/texmf/web2c/updmap.log
+ date
+ verbose

Bug#323828: tetex-bin: updmap fails while installation

2005-08-22 Thread Jörg Sommer
Frank Küster schrieb am Mon 22. Aug, 13:58 (+0200):
> Jörg Sommer <[EMAIL PROTECTED]> wrote:
> 
> > Frank Küster schrieb am Mon 22. Aug, 12:35 (+0200):
> >> Jörg Sommer <[EMAIL PROTECTED]> wrote:
> >> 
> >> > updmap fails while installing the package which causes the whole package
> >> > installation fails.
> >> 
> >> Does the updmap error now still occur, or is it fixed too?  If not,
> >
> > I've "purged" all tetex packages and reinstalled them and tetex-bin still
> > fails:
> >
> [...]
> > updmap: Scanning for MixedMap entries:
> >
> > !!! ERROR! The map file `bsr-interpolated.map' has not been found at all.
> 
> At this point, was tetex-extra already unpacked,

Yes, tetex-extra was unpacked.

> or only tetex-base and tetex-bin?  What's the list of files
> 
> - in /etc/texmf/updmap.d
> - in /var/lib/tex-common/fontmap-cfg

$ ls /etc/texmf/updmap.d /var/lib/tex-common/fontmap-cfg
/etc/texmf/updmap.d:
00updmap.cfg  10tetex-base.cfg  20tetex-extra.cfg

/var/lib/tex-common/fontmap-cfg:
tetex-base.list  tetex-extra.list

Jörg.
-- 
Der Mensch hat die Atombombe erfunden.
Keine Maus der Welt käme auf die Idee, eine Mausefalle zu konstruieren.


signature.asc
Description: Digital signature


Bug#323828: tetex-bin: updmap fails while installation

2005-08-22 Thread Jörg Sommer
Jörg Sommer schrieb am Mon 22. Aug, 13:30 (+0200):
> Frank Küster schrieb am Mon 22. Aug, 12:35 (+0200):
> > Jörg Sommer <[EMAIL PROTECTED]> wrote:
> > 
> > > updmap fails while installing the package which causes the whole package
> > > installation fails.
> > 
> > Does the updmap error now still occur, or is it fixed too?  If not,
> 
> I've "purged" all tetex packages and reinstalled them and tetex-bin still
> fails:
> 
> Running fmtutil-sys. This may take some time. ...
> Running updmap-sys. This may take some time. ...
> updmap failed. Output has been stored in
> /tmp/tetex.updmap.XXUxsu5f
> Please include this file if you report a bug.

I've simply run
#v+
# updmap --syncwithtrees
updmap: This is updmap, version 1107552857
updmap: using transcript file `/var/lib/texmf/web2c/updmap.log'
updmap: initial config file is `/usr/share/texmf/web2c/updmap.cfg'
updmap: configuration file updated: `/usr/share/texmf/web2c/updmap.cfg'

updmap is creating new map files using the following configuration:

  config file: `/usr/share/texmf/web2c/updmap.cfg'
  dvips output directory: `/var/lib/texmf/fonts/map/dvips/updmap'
  pdftex output directory: `/var/lib/texmf/fonts/map/pdftex/updmap'
  dvipdfm output directory: `/var/lib/texmf/fonts/map/dvipdfm/updmap'

  prefer outlines: `true'
  texhash enabled: `true'
  download standard fonts (dvips): `false'
  download standard fonts (pdftex): `false'
  download standard fonts (dvipdfm): `false'

updmap: Scanning for LW35 support files
updmap: using map file `/usr/share/texmf/fonts/map/dvips/tetex/dvips35.map'
updmap: using map file `/usr/share/texmf/fonts/map/dvips/tetex/pdftex35.map'
updmap: using map file `/usr/share/texmf/fonts/map/dvips/tetex/dvipdfm35.map'
updmap: using map file `/usr/share/texmf/fonts/map/dvips/tetex/ps2pk35.map'

updmap: Scanning for MixedMap entries:
updmap: using map file `/usr/share/texmf/fonts/map/dvips/cc-pl/ccpl.map'
updmap: using map file `/usr/share/texmf/fonts/map/dvips/misc/cs.map'
updmap: using map file `/usr/share/texmf/fonts/map/dvips/tetex/hoekwater.map'
updmap: using map file `/usr/share/texmf/fonts/map/dvips/pl/pl.map'
updmap: using map file `/usr/share/texmf/fonts/map/dvips/tetex/ttcmex.map'

updmap: Scanning for Map entries:
updmap: using map file `/usr/share/texmf/fonts/map/dvips/antp/antp.map'
updmap: using map file `/usr/share/texmf/fonts/map/dvips/psnfss/charter.map'
updmap: using map file `/usr/share/texmf/fonts/map/dvips/misc/cmcyr.map'
updmap: using map file `/usr/share/texmf/fonts/map/dvips/lucida/lucidabr.map'
updmap: using map file `/usr/share/texmf/fonts/map/dvips/tetex/lucidabr-o.map'
updmap: using map file `/usr/share/texmf/fonts/map/dvips/lucida/lumath.map'
updmap: using map file `/usr/share/texmf/fonts/map/dvips/tetex/lumath-o.map'
updmap: using map file `/usr/share/texmf/fonts/map/dvips/misc/marvosym.map'
updmap: using map file `/usr/share/texmf/fonts/map/dvips/tetex/mathpple.map'
updmap: using map file `/usr/share/texmf/fonts/map/dvips/tetex/mt-plus.map'
updmap: using map file `/usr/share/texmf/fonts/map/dvips/tetex/mt-yy.map'
updmap: using map file `/usr/share/texmf/fonts/map/dvips/psnfss/pazo.map'
updmap: using map file `/usr/share/texmf/fonts/map/dvips/tetex/pxfonts.map'
updmap: using map file `/usr/share/texmf/fonts/map/dvips/qfonts/qbk.map'
updmap: using map file `/usr/share/texmf/fonts/map/dvips/qfonts/qcr.map'
updmap: using map file `/usr/share/texmf/fonts/map/dvips/qfonts/qhv.map'
updmap: using map file `/usr/share/texmf/fonts/map/dvips/qfonts/qpl.map'
updmap: using map file `/usr/share/texmf/fonts/map/dvips/qfonts/qtm.map'
updmap: using map file `/usr/share/texmf/fonts/map/dvips/qfonts/qzc.map'
updmap: using map file `/usr/share/texmf/fonts/map/dvips/tetex/txfonts.map'

updmap: Generating output for ps2pk...
updmap: Generating output for dvips...
updmap: Generating output for pdftex...
updmap: Generating output for dvipdfm...
updmap: All output generated!

texhash: Updating /home/joerg/.texmf/ls-R...
texhash: Updating /var/lib/texmf/ls-R-TEXMFMAIN...
texhash: Updating /var/cache/fonts/ls-R...
texhash: Updating /var/lib/texmf/ls-R...
texhash: Done.

updmap: Files generated:
-rw-r--r--  1 root root  9717 2005-08-22 14:12 
/var/lib/texmf/fonts/map/dvipdfm/updmap/dvipdfm_dl14.map
-rw-r--r--  1 root root 10298 2005-08-22 14:12 
/var/lib/texmf/fonts/map/dvipdfm/updmap/dvipdfm_ndl14.map
-rw-r--r--  1 root root  8225 2005-08-22 14:12 
/var/lib/texmf/fonts/map/dvips/updmap/builtin35.map
-rw-r--r--  1 root root 12122 2005-08-22 14:12 
/var/lib/texmf/fonts/map/dvips/updmap/download35.map
-rw-r--r--  1 root root 35861 2005-08-22 14:12 
/var/lib/texmf/fonts/map/dvips/updmap/ps2pk.map
-rw-r--r--  1 root root 23999 2005-0

Bug#323828: tetex-bin: updmap fails while installation

2005-08-22 Thread Jörg Sommer
Norbert Preining schrieb am Mon 22. Aug, 15:40 (+0200):
> On Mon, 22 Aug 2005, Jörg Sommer wrote:
> > ... mf-nowin
> > This is METAFONT, Version 2.71828 (Web2C 7.5.4)
> > (Fatal base file error; I'm stymied)
> 
> > $ latex test.latex
> > This is pdfeTeX, Version 3.141592-1.21a-2.2 (Web2C 7.5.4)
> > (Fatal format file error; I'm stymied)
> 
> That this happens *after* you have purged all tetex packages indicates
> that there are some old format files lying around.
> 
> You should get a working system by calling as root
>   fmtutil-sys --all

done.

> If this still not works, then you probably have still some old formats
> lying around.

It still does not work and I found these two files in my filesystem for
which dpkg has no owner. I removed them and run dpkg-reconfigure
tetex-bin. Now latex works, but prints the same error message as pdflatex

$ latex test.latex
(/usr/share/texmf/tex/latex/base/t1enc.def)kpathsea: Running mktextfm ecrm1200
mktextfm: Running mf-nowin -progname=mf \mode:=ljfour; mag:=1; nonstopmode; 
input ecrm1200
This is METAFONT, Version 2.71828 (Web2C 7.5.4)
(Fatal base file error; I'm stymied)
grep: ecrm1200.log: Datei oder Verzeichnis nicht gefunden
mktextfm: `mf-nowin -progname=mf \mode:=ljfour; mag:=1; nonstopmode; input 
ecrm1200' failed to make ecrm1200.tfm.
kpathsea: Appending font creation commands to missfont.log.

! Font T1/cmr/m/n/12=ecrm1200 at 12.0pt not loadable: Metric (TFM) file not fou
nd.
 
   relax 
l.100 \fontencoding\encodingdefault\selectfont
  
? x
No pages of output.
Transcript written on test.log.

Jörg.

-- 
Wenn unser Hirn so einfach wäre, dass es sich selbst
begreifen könnte, dann könnte es sich selbst nicht mehr
begreifen, weil es zu einfach wäre ;) Nur mal so als
philosophischer Denkanstoss...


signature.asc
Description: Digital signature


Bug#323828: tetex-bin: updmap fails while installation

2005-08-22 Thread Jörg Sommer
Frank Küster schrieb am Mon 22. Aug, 16:54 (+0200):
> Jörg Sommer <[EMAIL PROTECTED]> wrote:
> 
> > It still does not work and I found these two files in my filesystem for
> > which dpkg has no owner. I removed them and run dpkg-reconfigure
> > tetex-bin. Now latex works, but prints the same error message as pdflatex
> 
> Which files where they, and were?

Oh sorry, I missed them in my quote:

/usr/share/texmf/web2c/mf-nowin.base
/usr/share/texmf/web2c/latex.fmt 

> > $ latex test.latex
> > (/usr/share/texmf/tex/latex/base/t1enc.def)kpathsea: Running mktextfm 
> > ecrm1200
> > mktextfm: Running mf-nowin -progname=mf \mode:=ljfour; mag:=1; nonstopmode; 
> > input ecrm1200
> > This is METAFONT, Version 2.71828 (Web2C 7.5.4)
> > (Fatal base file error; I'm stymied)
> 
> The next one...
> 
> $ kpsewhich --format=fmt mf.base

/usr/share/texmf/web2c/mf.base

Jörg.
-- 
Du kannst einem Schwein einen goldenen Ring durch die Nase ziehen,
deswegen bleibt es trozdem ein Schwein!


signature.asc
Description: Digital signature


Bug#323828: tetex-bin: updmap fails while installation

2005-08-22 Thread Jörg Sommer
Frank Küster schrieb am Mon 22. Aug, 19:57 (+0200):
> Jörg Sommer <[EMAIL PROTECTED]> wrote:
> 
> >> > This is METAFONT, Version 2.71828 (Web2C 7.5.4)
> >> > (Fatal base file error; I'm stymied)
> >> 
> >> The next one...
> >> 
> >> $ kpsewhich --format=fmt mf.base
> >
> > /usr/share/texmf/web2c/mf.base
> 
> It should be (and probably is...) in /var/lib/texmf/web2c/ (since about
> a year if you followed unstable or testing).  Please send us the output
> of the following commands:
> 
> ls -ld /usr/share/texmf/web2c
> ls -ld /var/lib/texmf/web2c
> ls -l /usr/share/texmf/web2c/

$ ls -ld /usr/share/texmf/web2c
drwxr-xr-x  2 root root 4096 2005-08-22 15:56 /usr/share/texmf/web2c
$ ls -ld /var/lib/texmf/web2c
drwxr-xr-x  2 root root 4096 2005-08-22 15:58 /var/lib/texmf/web2c
$ ls -l /usr/share/texmf/web2c/
insgesamt 7316
-rw-r--r--  1 root root   30806 2005-08-09 13:58 aleph.pool
-rw-r--r--  1 root root5320 2001-04-01 17:51 amiga-pl.tcx
-rw-r--r--  1 root root 4508045 2005-06-10 20:16 cont-en.efmt
-rw-r--r--  1 root root   31296 2005-06-10 20:16 cont-en.log
-rw-r--r--  1 root root1024 1999-02-17 00:42 cp1250cs.tcx
-rw-r--r--  1 root root5573 2001-04-01 17:51 cp1250pl.tcx
-rw-r--r--  1 root root5073 2001-04-01 17:51 cp1250t1.tcx
-rw-r--r--  1 root root2811 2004-07-31 07:30 cp227.tcx
-rw-r--r--  1 root root 985 1999-02-17 00:42 cp852-cs.tcx
-rw-r--r--  1 root root5766 2001-04-01 17:51 cp852-pl.tcx
-rw-r--r--  1 root root2738 1999-05-30 19:56 cp8bit.tcx
-rw-r--r--  1 root root  755611 2005-06-10 20:16 elatex.efmt
-rw-r--r--  1 root root   10569 2005-06-10 20:16 elatex.log
-rw-r--r--  1 root root  278596 2005-06-10 20:16 etex.efmt
-rw-r--r--  1 root root3641 2005-06-10 20:16 etex.log
-rw-r--r--  1 root root4024 2005-04-18 22:33 fmtutil.cnf
-rw-r--r--  1 root root5361 2001-04-01 17:51 il1-t1.tcx
-rw-r--r--  1 root root 986 1999-02-17 00:42 il2-cs.tcx
-rw-r--r--  1 root root5572 2001-04-01 17:51 il2-pl.tcx
-rw-r--r--  1 root root5115 2001-04-01 17:51 il2-t1.tcx
-rw-r--r--  1 root root 920 1999-05-30 19:56 kam-cs.tcx
-rw-r--r--  1 root root 895 1999-05-30 19:56 kam-t1.tcx
-rw-r--r--  1 root root  75 2005-06-10 20:16 latex.efmt
-rw-r--r--  1 root root   10564 2005-06-10 20:16 latex.log
-rw-r--r--  1 root root6906 2003-08-29 17:39 macce-cs.tcx
-rw-r--r--  1 root root5909 2002-05-26 00:06 macce-pl.tcx
-rw-r--r--  1 root root5773 2002-05-26 00:06 macce-t1.tcx
-rw-r--r--  1 root root6013 2001-04-01 17:51 maz-pl.tcx
-rw-r--r--  1 root root  150624 2005-06-10 20:15 mf.base
-rw-r--r--  1 root root 736 2005-06-10 20:15 mf.log
-rw-r--r--  1 root root   22203 2005-08-09 13:58 mf.pool
lrwxrwxrwx  1 root root   7 2005-08-22 13:18 mfw.base -> mf.base
lrwxrwxrwx  1 root root  20 2005-08-22 13:18 mktex.cnf -> 
/etc/texmf/mktex.cnf
-rwxr-xr-x  1 root root1373 2005-08-09 13:58 mktexdir
-rw-r--r--  1 root root 328 2005-08-09 13:58 mktexdir.opt
-rwxr-xr-x  1 root root7613 2005-08-09 13:58 mktexnam
-rw-r--r--  1 root root3821 2005-08-09 13:58 mktexnam.opt
-rw-r--r--  1 root root4763 2005-08-09 13:58 mktex.opt
-rwxr-xr-x  1 root root1741 2005-08-09 13:58 mktexupd
-rw-r--r--  1 root root   24696 2005-08-09 13:58 mp.pool
-rw-r--r--  1 root root  226274 2005-06-10 20:16 mptopdf.efmt
-rw-r--r--  1 root root3629 2005-06-10 20:16 mptopdf.log
-rw-r--r--  1 root root2306 2004-02-27 18:17 natural.tcx
-rw-r--r--  1 root root   30132 2005-08-09 13:58 omega.pool
-rw-r--r--  1 root root   38166 2005-08-09 13:58 pdfetex-pl.pool
-rw-r--r--  1 root root   35541 2005-08-09 13:58 pdfetex.pool
-rw-r--r--  1 root root   35757 2005-08-09 13:58 pdfxtex.pool
lrwxrwxrwx  1 root root   7 2005-06-10 20:16 plain.base -> mf.base
lrwxrwxrwx  1 root root   7 2005-06-10 20:16 plain.fmt -> tex.fmt
-rw-r--r--  1 root root3394 2002-08-25 03:45 tcvn-t5.tcx
-rw-r--r--  1 root root  245276 2005-06-10 20:15 tex.fmt
-rw-r--r--  1 root root2435 2005-06-10 20:15 tex.log
lrwxrwxrwx  1 root root  20 2005-08-22 13:18 texmf.cnf -> 
/etc/texmf/texmf.cnf
-rw-r--r--  1 root root   26786 2005-08-09 13:58 tex.pool
-rw-r--r--  1 root root4783 2005-08-22 14:12 updmap.cfg
-rw-r--r--  1 root root4722 2005-08-17 19:57 updmap.log
-rw-r--r--  1 root root3399 2002-08-25 03:49 viscii-t5.tcx

> That is, it should contain only files with extensions tcx, pool, and
> opt, plus symlinks to configuration files and the three mktex* scripts.
> The symlink from mfw.base to mf.base is actually a bug.
> 
> You can delete (or move out of the way) all other files, especially
> files with extension fmt or efmt.  After that, please try again...

#v+
$ dpkg -L $(pkgof /usr/share/texmf/web2c) | grep /usr/share/texmf/web2c/ |sort 
> /tmp/foo
$ ls /usr/share/texmf/web2c/* | diff -u0 - /tmp/foo
--- - 2005-08-22 2

Bug#323828: tetex-bin: updmap fails while installation

2005-08-22 Thread Jörg Sommer
Frank Küster schrieb am Mon 22. Aug, 20:50 (+0200):
> Jörg Sommer <[EMAIL PROTECTED]> wrote:
> 
> >   config file: `/usr/share/texmf/web2c/updmap.cfg'
> 
> This file shouldn't be there.  You are now the third person who has it,
> although to our knowledge none of the older Debian packages ever placed
> it there.
> 
> Please look whether this is a generated file starting with 

You have a stroke of luck, I saved a copy of it. Yes it was a generated
file and as you can see in the other mail it was touched today. If I see
it right, this was after the reinstall (purge) of all packages. I send
the mail <[EMAIL PROTECTED]> 13:30 and the modification
time of the file was 14:12. Seems there is something strange going on.

Bye, Jörg.
-- 
Erfahrung heißt gar nichts. Man kann seine Sache auch 35 Jahre schlecht
machen.
(Kurt Tucholsky)


signature.asc
Description: Digital signature


Bug#323828: tetex-bin: updmap fails while installation

2005-08-23 Thread Jörg Sommer
Frank Küster schrieb am Tue 23. Aug, 12:37 (+0200):
> Jörg Sommer <[EMAIL PROTECTED]> wrote:
> 
> > You have a stroke of luck, I saved a copy of it. Yes it was a generated
> > file and as you can see in the other mail it was touched today. If I see
> > it right, this was after the reinstall (purge) of all packages. I send
> > the mail <[EMAIL PROTECTED]> 13:30 and the modification
> > time of the file was 14:12. Seems there is something strange going on.
> 
> I think I can explain why it was touched: When you call updmap(-sys)
> --syncwithtrees, it takes the first updmap.cfg that it can find and
> changes it.
> 
> O, wait.  It should find the one in $TEXMFSYSVAR/web2c
> (/var/lib/texmf/web2c) first.  What is currently the output of
> 
> kpsewhich --expand-var='$TEXMF'

{!!/usr/share/texmf,!!/var/lib/texmf,/home/joerg/.texmf,!!/usr/local/share/texmf,!!/var/lib/texmf,!!/usr/share/texmf}

> grep '^[[:space:]]*TEXMF =' /etc/texmf/texmf.cnf

$ grep '^[[:space:]]*TEXMF =' /etc/texmf/texmf.cnf
TEXMF = 
{!!$TEXMFCONFIG,!!$TEXMFVAR,$TEXMFHOME,!!$TEXMFLOCAL,!!$TEXMFSYSVAR,!!$TEXMFMAIN}

Jörg.
-- 
Da würde ich auch lieber den Panzerführerschein machen als den MCSE.
Bringt mehr, dürfte das gleiche kosten und macht sicher mehr Spaß.
   Jens Dittmar in de.comp.security


signature.asc
Description: Digital signature


Bug#324754: tetex-doc: rename hyperref manual

2005-08-23 Thread Jörg Sommer
Package: tetex-doc
Version: 3.0-3
Severity: wishlist

Hi,

can you rename the hyperref manual? When you search with texdoc for
hyperref you find nothing. But with texdoc manual you get the hyperref
manual. This is not very intuitive.

$ texdoc -l manual
/usr/share/texmf/doc/latex/hyperref/manual.pdf.gz
/usr/share/texmf/doc/latex/caption/manual.dvi.gz

Bye, Jörg.

-- System Information:
Debian Release: unstable/experimental
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.11
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages tetex-doc depends on:
ii  dpkg  1.13.9 Package maintenance system for Deb

Versions of packages tetex-doc recommends:
ii  dillo [www-browser]   0.8.3-1GTK-based web browser
ii  elinks [www-browser]  0.10.4-7   advanced text-mode WWW browser
ii  gs-gpl [postscript-viewer]8.01-5 The GPL Ghostscript PostScript int
ii  gv [pdf-viewer]   1:3.6.1-12 PostScript and PDF viewer for X
ii  lynx [www-browser]2.8.5-2Text-mode WWW Browser
ii  mozilla-firefox [www-browser] 1.0.4-3lightweight web browser based on M
ii  tetex-bin 3.0-5  The teTeX binary files
ii  w3m [www-browser] 0.5.1-3WWW browsable pager with excellent
ii  xpdf-reader [pdf-viewer]  3.00-14Portable Document Format (PDF) sui
ii  xpdf-utils [pdf-viewer]   3.00-14Portable Document Format (PDF) sui

-- no debconf information


signature.asc
Description: Digital signature


Bug#323828: tetex-bin: updmap fails while installation

2005-08-23 Thread Jörg Sommer
Frank Küster schrieb am Tue 23. Aug, 16:43 (+0200):
> Jörg Sommer <[EMAIL PROTECTED]> wrote:
> 
> > Frank Küster schrieb am Tue 23. Aug, 12:37 (+0200):
> >> Jörg Sommer <[EMAIL PROTECTED]> wrote:
> >> 
> >> > You have a stroke of luck, I saved a copy of it. Yes it was a generated
> >> > file and as you can see in the other mail it was touched today. If I see
> >> > it right, this was after the reinstall (purge) of all packages. I send
> >> > the mail <[EMAIL PROTECTED]> 13:30 and the modification
> >> > time of the file was 14:12. Seems there is something strange going on.
> >> 
> >> I think I can explain why it was touched: When you call updmap(-sys)
> >> --syncwithtrees, it takes the first updmap.cfg that it can find and
> >> changes it.
> >> 
> >> O, wait.  It should find the one in $TEXMFSYSVAR/web2c
> >> (/var/lib/texmf/web2c) first.  What is currently the output of
> >> 
> >> kpsewhich --expand-var='$TEXMF'
> >
> > {!!/usr/share/texmf,!!/var/lib/texmf,/home/joerg/.texmf,!!/usr/local/share/texmf,!!/var/lib/texmf,!!/usr/share/texmf}
> >
> >> grep '^[[:space:]]*TEXMF =' /etc/texmf/texmf.cnf
> >
> > $ grep '^[[:space:]]*TEXMF =' /etc/texmf/texmf.cnf
> > TEXMF = 
> > {!!$TEXMFCONFIG,!!$TEXMFVAR,$TEXMFHOME,!!$TEXMFLOCAL,!!$TEXMFSYSVAR,!!$TEXMFMAIN}
> 
> Good, at least that makes it clear why the formats in
> /usr/share/texmf/web2c were found instead of the ones in
> /var/lib/texmf.  However, TEXMFCONFIG and TEXMFVAR should be something
> else.  What is the output of
> 
> grep '^[[:space:]]*TEXMF' /etc/texmf/texmf.cnf

TEXMFMAIN = /usr/share/texmf
TEXMFDIST = $TEXMFMAIN
TEXMFLOCAL = /usr/local/share/texmf
TEXMFSYSVAR = /var/lib/texmf
TEXMFSYSCONFIG = $TEXMFMAIN
TEXMFHOME = $HOME/.texmf
TEXMFVAR = $TEXMFSYSVAR
TEXMFCONFIG = $TEXMFSYSCONFIG
TEXMF = 
{!!$TEXMFCONFIG,!!$TEXMFVAR,$TEXMFHOME,!!$TEXMFLOCAL,!!$TEXMFSYSVAR,!!$TEXMFMAIN}
TEXMFDBS = $TEXMF;$VARTEXFONTS
TEXMFSCRIPTS = $TEXMF/scripts//
TEXMFCNF = 
{$SELFAUTOLOC,$SELFAUTODIR,$SELFAUTOPARENT}{,{/share,}/texmf{-local,}/web2c};$TETEXDIR;/usr/share/texmf/web2c;/usr/share/texmf/web2c

> grep '^[[:space:]]*TEXMF' /etc/texmf/texmf.d/05TeXMF.cnf

TEXMFMAIN = /usr/share/texmf
TEXMFDIST = $TEXMFMAIN
TEXMFLOCAL = /usr/local/share/texmf
TEXMFSYSVAR = /var/lib/texmf
TEXMFSYSCONFIG = $TEXMFMAIN
TEXMFHOME = $HOME/.texmf
TEXMFVAR = $TEXMFSYSVAR
TEXMFCONFIG = $TEXMFSYSCONFIG
TEXMF = 
{!!$TEXMFCONFIG,!!$TEXMFVAR,$TEXMFHOME,!!$TEXMFLOCAL,!!$TEXMFSYSVAR,!!$TEXMFMAIN}
TEXMFDBS = $TEXMF;$VARTEXFONTS

> grep -A 1 -B 9 '^[[:space:]]*TEXMFCONFIG' /etc/texmf/texmf.d/05TeXMF.cnf 

% TEXMFCONFIG, where texconfig stores configuration data.
% With teTeX-3.0 or later, this must be set.
% For sharing this tree with $TEXMFMAIN:
%   TEXMFCONFIG = $TEXMFMAIN
% For using a separate tree:
%   TEXMFCONFIG = $HOME/.texmf-config
% For using a separate tree:
%   TEXMFCONFIG = /usr/share/texmf-config
TEXMFCONFIG = $TEXMFSYSCONFIG

> grep -A 1 -B 9 '^[[:space:]]*TEXMFCONFIG' /etc/texmf/texmf.cnf 

% TEXMFCONFIG, where texconfig stores configuration data.
% With teTeX-3.0 or later, this must be set.
% For sharing this tree with $TEXMFMAIN:
%   TEXMFCONFIG = $TEXMFMAIN
% For using a separate tree:
%   TEXMFCONFIG = $HOME/.texmf-config
% For using a separate tree:
%   TEXMFCONFIG = /usr/share/texmf-config
TEXMFCONFIG = $TEXMFSYSCONFIG

> grep -A 1 -B 7 '^[[:space:]]*TEXMFVAR' /etc/texmf/texmf.d/05TeXMF.cnf 

% TEXMFVAR, where texconfig stores variable runtime data.
% With teTeX-3.0 or later, this must be set.
% For sharing this tree with $TEXMFMAIN:
%   TEXMFVAR = $TEXMFMAIN
% For using a separate tree:
%   TEXMFVAR = $HOME/.texmf-var
TEXMFVAR = $TEXMFSYSVAR

> grep -A 1 -B 7 '^[[:space:]]*TEXMFVAR' /etc/texmf/texmf.cnf 

% TEXMFVAR, where texconfig stores variable runtime data.
% With teTeX-3.0 or later, this must be set.
% For sharing this tree with $TEXMFMAIN:
%   TEXMFVAR = $TEXMFMAIN
% For using a separate tree:
%   TEXMFVAR = $HOME/.texmf-var
TEXMFVAR = $TEXMFSYSVAR

Regards, Jörg.
-- 
Der Klügere gibt so lange nach bis er der Dumme ist.


signature.asc
Description: Digital signature


Bug#323828: tetex-bin: updmap fails while installation

2005-08-24 Thread Jörg Sommer
Frank Küster schrieb am Wed 24. Aug, 11:57 (+0200):
> Frank Küster <[EMAIL PROTECTED]> wrote:
> 
> > Das hast du selber gemacht, oder?  Was wolltest du damit erreichen?  Es
> > ist nicht sinnvoll und bringt die Reihenfolge der TEXMF-Bäume
> > durcheinander; es ist der Grund, warum die alten Formate in
> > /usr/share/texmf/web2c überhaupt gefunden wurden.
> 
> Uups.  For the archive, I should probably translate this to english\dots
> 
> You did this yourself, didn't you?

Yes.

> What did you want to achive with this change?

I want to prevent the directories .texmf-var/ and .texmf-conf become
created in the home directory of root (he shares it with another user,
which makes it unusable for the user, e.g. no write permissons)

I reset them to $HOME/.texmf-var and -config. Is this OK?

Jörg.
-- 
Eine Blume geht über eine Wiese, sieht einen schönen Menschen und reißt
ihm den Kopf ab.


signature.asc
Description: Digital signature


Bug#332991: spambayes: Uncatched broken pipe signal

2005-10-09 Thread Jörg Sommer
Package: spambayes
Version: 1.0.3-1
Severity: normal

Hi,

I use sb_filter.py to classify mail. If the reading process closes stdin
before the whole mail is read, sb_filter.py complains about a broken
pipe. I call it this way: sb_filter.py mail | grep -q '^X-Spambayes.*spam'

Traceback (most recent call last):
  File "/usr/bin/sb_filter.py", line 257, in ?
main()
  File "/usr/bin/sb_filter.py", line 254, in main
sys.stdout.write(result)
IOError: [Errno 32] Broken pipe

Bye, Jörg.

-- System Information:
Debian Release: unstable/experimental
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.13.1
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages spambayes depends on:
ii  python2.3.5-3An interactive high-level object-o

spambayes recommends no packages.

-- no debconf information


pgpUkKnGlpixj.pgp
Description: PGP signature


Bug#329007: libslang2: get_doc_string_from_file() do not work with slangfun.txt.gz

2005-09-18 Thread Jörg Sommer
Package: libslang2
Version: 2.0.4-5
Severity: normal

Hi,

the function get_doc_string_from_file() can not handle compressed files.
Becaue of this, you can not compress the slangfun.txt file.

Bye, Jörg.

-- System Information:
Debian Release: unstable/experimental
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.13.1
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages libslang2 depends on:
ii  libc6 2.3.5-6GNU C Library: Shared libraries an

libslang2 recommends no packages.

-- no debconf information


pgpBls33hBcRx.pgp
Description: PGP signature


Bug#327776: ITA: irmp3

2005-09-22 Thread Jörg Sommer
retitle 327776 ITA: irmp3
thanks

Hi Roberto,

I am interessted in carry on your work and maintain the irmp3 package.

My plans are:
* create a package of the current version 0.5.6 until next week sunday
  (2005-10-02)
* test it
* and find a sponsor for it.

Regards, Jörg.
-- 
Was der Bauer nicht kennt, das frißt er nicht. Würde der Städter kennen,
was er frißt, er würde umgehend Bauer werden.
   Oliver Hassencamp



Bug#327776: ITA: irmp3

2005-09-22 Thread Jörg Sommer
Hello Mario,

sorry, I didn't saw your intention message for irmp3 and did retitle the
bug report again.

Are you a DD? Would like to have a Co-Maintainer? :)

Regards, Jörg.
-- 
> Definiere "Demokratie"...
... eine Mehrheit beweist einer Minderheit, dass Widerstand zwecklos ist.


pgpGcf7zKrusn.pgp
Description: PGP signature


Bug#329786: rubber: fails with --warn=all

2005-09-23 Thread Jörg Sommer
Package: rubber
Version: 1.0-1
Severity: normal

Hello,

$ rubber --warn=all skript.latex 
nothing to be done for skript.latex
skript.latex:197-203: Underfull \hbox (badness 1) (page 1)
skript.latex:205-214: Overfull \hbox (4.81133pt too wide) (page 1)
skript.latex:205-214: Overfull \hbox (13.68842pt too wide) (page 1)
bzw.:255-260: Overfull \hbox (19.19574pt too wide) (page 1)
Traceback (most recent call last):
  File "/usr/bin/rubber", line 9, in ?
sys.exit(Main()(sys.argv[1:]))
  File "/usr/share/rubber/rubber/cmdline.py", line 293, in __call__
return self.main(cmdline)
  File "/usr/share/rubber/rubber/cmdline.py", line 275, in main
log.show_boxes()
  File "/usr/share/rubber/rubber/rules/latex/__init__.py", line 312, in 
show_boxes
self.update_file(line, pos)
  File "/usr/share/rubber/rubber/rules/latex/__init__.py", line 208, in 
update_file
return stack[-1]
IndexError: list index out of range

$ rubber  skript.latex 
nothing to be done for skript.latex

Regards, Jörg.

-- System Information:
Debian Release: unstable/experimental
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.13.1
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages rubber depends on:
ii  python2.3.5-3An interactive high-level object-o
ii  tetex-bin 3.0-5  The teTeX binary files

rubber recommends no packages.

-- no debconf information


pgpFSIsVqYnmz.pgp
Description: PGP signature


Bug#330102: Cannot boot with bootchart

2005-09-26 Thread Jörg Sommer
Hello Jonathan,

Jonathan Brandmeyer schrieb am Sun 25. Sep, 19:21 (-0400):
> Starting bootchart logging
> INIT: version 2.86 booting
> Creating initial device nodes...freeinitrd.sh: Cannot find initrd device
> Setting parameters of disc: (none).
> Activating swap.
>   failed! (shown in red)
> * The device node /dev/hda2 for the root fileystem is missing,
> * incorrect, or there is no entry for the root filesystem
> * listed in /etc/fstab
> 
> * The system is also unable to create a temporary node in
> * /dev/shm to use a s a work-around.
> 
> * This means you will have to fix this manually.
> 
> * Control-D will exit from this shell and REBOOT the system.
> 
> Give root password for maintenance
> (or type Control-D to continue):

You can login as root here.

* What shows mount? If it fails, what shows cat /proc/mounts?
* What shows cat /proc/cmdline?
* What shows ls /dev |wc -l? If this is less than 20, what shows ls /dev?
* What shows ls -l /dev/root?
* Do you have a file /etc/init.d/mountvirtfs? Is a symlink in
  /etc/rcS.d/ on it? Something like 02mountvirtfs.

Regards, Jörg.
-- 
Life can only be understood backwards, but it must be lived forwards.
 (Soren Kierkegaard)


pgpwrUqFqvUmI.pgp
Description: PGP signature


Bug#326438: initng: postinst fails with /bin/sh != bash

2005-09-03 Thread Jörg Sommer
Package: initng
Version: 0.1.8-1
Severity: important


Wähle vormals abgewähltes Paket initng.
(Lese Datenbank ... 84913 Dateien und Verzeichnisse sind derzeit installiert.)
Entpacke initng (aus .../initng_0.1.8-1_powerpc.deb) ...
Richte initng ein (0.1.8-1) ...
/sbin/gen_system_runlevel: 10: [[: not found
Automatically generating system,runlevel,default.runlevel and up.runlevel
[: 196: ==: unexpected operator
[: 196: ==: unexpected operator
ls: /etc/rc2.d/S*ssh*: Datei oder Verzeichnis nicht gefunden
ls: /etc/runlevels/*/*ssh*: Datei oder Verzeichnis nicht gefunden
ls: /etc/rc2.d/S*samba*: Datei oder Verzeichnis nicht gefunden
[: 196: ==: unexpected operator
ls: /etc/runlevels/*/*samba*: Datei oder Verzeichnis nicht gefunden
[: 196: ==: unexpected operator
ls: /etc/dbus*/event.d/*hal*Adding daemon/hald to default.runlevel
/sbin/gen_system_runlevel: 196: [[: not found
/sbin/gen_system_runlevel: 196: [[: not found
Adding daemon/ifplugd to default.runlevel
Adding system/alsasound to default.runlevel
Adding system/speedfreq to default.runlevel
Done generating files.
: Datei oder Verzeichnis nicht gefunden

$ checkbashisms /sbin/gen_system_runlevel 
possible bashism in /sbin/gen_system_runlevel line 6: '[ "${DESTDIR}" == '
possible bashism in /sbin/gen_system_runlevel line 19: '[ "$?" == '
possible bashism in /sbin/gen_system_runlevel line 24: '[ "$?" == '

Jörg.

-- System Information:
Debian Release: unstable/experimental
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.11
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages initng depends on:
ii  libc6 2.3.5-3GNU C Library: Shared libraries an

initng recommends no packages.

-- no debconf information


signature.asc
Description: Digital signature


Bug#324726: jed: Move /etc/jed* under /etc//

2005-09-05 Thread Jörg Sommer
Jari Aalto schrieb am Tue 23. Aug, 19:58 (+0300):
> The /etc hierarchy is quite polluted with various configuration files.
> It would be better if packages kept configuration files under their
> own directories (easier for backups etc.).

And as a special point: Policy recommends this.

10.7.2. Location


  Any configuration files created or used by your package must reside in
  `/etc'.  If there are several, consider creating a subdirectory of
  `/etc' named after your package.

Kind regards, Jörg.
-- 
Du hast keine Chance - also nutze sie.


signature.asc
Description: Digital signature


Bug#322221: subversion: switch to expand only the long forms of keywords

2005-08-09 Thread Jörg Sommer
Package: subversion
Version: 1.2.0-1
Severity: wishlist

Hi,

in LaTeX it's not unusual to use $Rev$ or $Date$ or $id$. Subversion
would replace them, because they are keywords. It should be possible to
force the replacement of the long form keywords (LastChangedRevision and
LastChangedBy) only -- shorter keyword should left untouched.

Bye, Jörg.

-- System Information:
Debian Release: unstable/experimental
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.11
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages subversion depends on:
ii  db4.2-util 4.2.52-19 Berkeley v4.2 Database Utilities
ii  libapr02.0.54-4  the Apache Portable Runtime
ii  libc6  2.3.2.ds1-22  GNU C Library: Shared libraries an
ii  libdb4.2   4.2.52-19 Berkeley v4.2 Database Libraries [
ii  libexpat1  1.95.8-3  XML parsing C library - runtime li
ii  libldap2   2.1.30-10 OpenLDAP libraries
ii  libneon24  0.24.7.dfsg-2 An HTTP and WebDAV client library
ii  libssl0.9.70.9.7g-1  SSL shared libraries
ii  libsvn01.2.0-1   shared libraries used by Subversio
ii  libxml22.6.20-1  GNOME XML library
ii  patch  2.5.9-2   Apply a diff file to an original
ii  zlib1g 1:1.2.2-4 compression library - runtime

subversion recommends no packages.

-- no debconf information


signature.asc
Description: Digital signature


Bug#322222: alsa-base: alsactl should only restore the known cards

2005-08-09 Thread Jörg Sommer
Package: alsa-base
Version: 1.0.9b-2
Severity: minor

Servus,

alsactl tries to restore the configuration of all cards by searching for
all possible files in /dev/snd/. This cause a very long delay on a 200MHz
CPU at boottime. IMO "alsactl restore" should only restore the
configuration of the cards named in /v/l/alsa/asound.state.

Bye, Jörg.

-- Package-specific info:
--- Begin additional package status ---
Gewünscht=Unbekannt/Installieren/R=Entfernen/P=Säubern/Halten
| Status=Nicht/Installiert/Config/U=Entpackt/Fehlgeschl. Konf./Halb install.
|/ Fehler?=(keiner)/Halten/R=Neuinst. notw/X=beides (Status, Fehler: 
GROß=schlecht)
||/ Name   VersionBeschreibung
+++-==-==-
ii  libasound2 1.0.9-2ALSA library
--- End additional package status ---
--- Begin /proc/asound/version ---
Advanced Linux Sound Architecture Driver Version 1.0.8 (Thu Jan 13 09:39:32 
2005 UTC).
--- End /proc/asound/version ---
--- Begin /proc/asound/cards ---
0 [Snapper]: PMac Snapper - PowerMac Snapper
 PowerMac Snapper (Dev 38) Sub-frame 0
--- End /proc/asound/cards ---
--- Begin /dev/snd/ listing ---
insgesamt 0
crw-rw  1 root audio 116,  0 1970-01-01 01:00 controlC0
crw-rw  1 root audio 116, 32 1970-01-01 01:00 controlC1
crw-rw  1 root audio 116, 64 1970-01-01 01:00 controlC2
crw-rw  1 root audio 116, 96 1970-01-01 01:00 controlC3
crw-rw  1 root audio 116, 24 1970-01-01 01:00 pcmC0D0c
crw-rw  1 root audio 116, 16 1970-01-01 01:00 pcmC0D0p
crw-rw  1 root audio 116, 33 1970-01-01 01:00 timer
--- End /dev/snd/ listing ---

-- System Information:
Debian Release: unstable/experimental
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.11
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages alsa-base depends on:
ii  alsa-utils 1.0.9a-2  ALSA utilities
ii  debconf [debconf-2.0]  1.4.51Debian configuration management sy
ii  debianutils2.14.1Miscellaneous utilities specific t
ii  linux-sound-base   1.0.9b-2  base package for ALSA and OSS soun
ii  lsof   4.75.dfsg.1-1 List open files.
ii  module-init-tools  3.2-pre1-2tools for managing Linux kernel mo

alsa-base recommends no packages.

Versions of packages libasound2 depends on:
ii  libc6   2.3.2.ds1-22 GNU C Library: Shared libraries an

-- debconf information:
  alsa-common/card-list:
* alsa-base/alsactl_store_on_shutdown: always autosave


signature.asc
Description: Digital signature


Bug#362584: xindy debian package

2007-01-16 Thread Jörg Sommer
Hello Norbert,

Norbert Preining schrieb am Tue 16. Jan, 15:07 (+0100):
> Vladimir asked me to push the xindy project a bit forward. I wanted to
> ask you what is the current status of xindy? I have seen your files on 
>   http://www.minet.uni-jena.de/~joergs/debian/
> but the source package does not unpack because the .orig.tar.gz sizes do
> mismatch.

What fails? The dpkg-source command?

% wget -q 
http://www.minet.uni-jena.de/~joergs/debian/xindy_2.2\~beta2-1.diff.gz \
http://www.minet.uni-jena.de/~joergs/debian/xindy_2.2\~beta2-1.dsc \
http://www.minet.uni-jena.de/~joergs/debian/xindy_2.2\~beta2.orig.tar.gz
% dpkg-source -x xindy_2.2\~beta2-1.dsc
dpkg-source: extracting xindy in xindy-2.2~beta2
%

Does dget work?

> Do you plan to continue supporting/maintaining this package? If yes I
> can play the sponsor.

Hey, this would be great, really great.

> One question for this: Do you have some test cases I can see?

Ehm, what do you expect? I've a project[1] that uses Xindy, but I've never
created special test cases. But upstream ships some tests with the tar.gz
they are run at build time.

Schöne Grüße, Jörg.

[1] http://www.minet.uni-jena.de/~joergs/skripte/
-- 
Wenn du nur einen Hammer hast, sieht jedes Problem aus wie ein Nagel.


pgpPoCPD8SJRX.pgp
Description: PGP signature


Bug#407434: xserver-xorg-core: Server crash

2007-01-18 Thread Jörg Sommer
Hallo Michel,

Michel Dänzer schrieb am Thu 18. Jan, 14:24 (+0100):
> On Thu, 2007-01-18 at 12:58 +0100, Jörg Sommer wrote:
> > 
> > when I enable the glx module my server crashes while starting the window
> > manager icewm with the following backtrace
> > 
> > Backtrace:
> > 0: X(xf86SigHandler+0x94) [0x1008eb98]
> > 1: [0x100374]
> > 2: X(Xalloc+0x34) [0x1018d438]
> > 3: /usr/lib/xorg/modules/extensions/libglx.so [0xf9e7880]
> > 4: /usr/lib/xorg/modules/extensions/libglx.so(__glXInitScreens+0xcc) 
> > [0xf9bc530]
> > 5: /usr/lib/xorg/modules/extensions/libglx.so(GlxExtensionInit+0x190) 
> > [0xf9bb114]
> > 6: X(InitExtensions+0xc8) [0x100c3dbc]
> > 7: X(main+0x2b4) [0x100252f8]
> > 8: /lib/tls/libc.so.6 [0xfc7c994]
> > 9: /lib/tls/libc.so.6(__libc_start_main+0xb0) [0xfc7cad0]
> 
> Does this also happen at depth 24?

No. Thanks for the workaround.

> > I append the whole X log.
> 
> It doesn't show the problem though, probably because you disabled
> loading the glx module, so it's not very useful for this report. Please
> attach at least a log file from an X server that loads the glx and dri
> modules.

http://bugs.debian.org/cgi-bin/bugreport.cgi/Xorg.0.log?bug=407434;msg=5;att=1

Bye, Jörg.
-- 
Wer in einem gewissen Alter nicht merkt, dass er hauptsächlich von
Idioten umgeben ist, merkt es aus einem gewissen Grunde nicht.
(Curt Goetz)


pgpS6wbq7cA6b.pgp
Description: PGP signature


Bug#407434: xserver-xorg-core: Server crash

2007-01-19 Thread Jörg Sommer
Hello Michel,

Michel Dänzer schrieb am Fri 19. Jan, 08:36 (+0100):
> On Fri, 2007-01-19 at 00:09 +0100, Jörg Sommer wrote:
> > 
> > > > I append the whole X log.
> > > 
> > > It doesn't show the problem though, probably because you disabled
> > > loading the glx module, so it's not very useful for this report. Please
> > > attach at least a log file from an X server that loads the glx and dri
> > > modules.
> > 
> > http://bugs.debian.org/cgi-bin/bugreport.cgi/Xorg.0.log?bug=407434;msg=5;att=1
> 
> Oops, the Evolution message pane didn't indicate an attachment...
> 
> Do the crashes you're encountering also happen with direct rendering
> (make sure the agpgart and uninorth_agp kernel modules are loaded before
> the radeon kernel module)?

No. Neither the glxdemo problem (#407502) nor this problem.

Are you interested in a X log with dri and 16 colors?

BTW: Thanks for the hint, I forgot to compile uninorth_agp into the kernel.

Bye, Jörg.
-- 
„Wer im Usenet gelesen werden will, sollte leserorientiert schreiben. Wer nur
 für sich schreiben will, dem ist mit einem Tagebuch vielleicht besser
 geholfen. Gelesen zu werden ist kein Recht, sondern ein Privileg.“
 Thore Tams in <[EMAIL PROTECTED]>


pgpK7W24gy8Wy.pgp
Description: PGP signature


Bug#403927: coreutils: base64 -d fails with invalid input

2006-12-20 Thread Jörg Sommer
Package: coreutils
Version: 6.0-1
Severity: normal

Hi,

there must be a bug in base64, because it can not decode something it
encoded before.

% base64 /tmp/cmpl.tex | base64 -d 
\documentclass[draft]{scrartcl}

\usepackage{paralist}
\ubase64: invalid input
zsh: done   base64 /tmp/cmpl.tex | 
zsh: exit 1 base64 -d

Bye, Jörg.

-- System Information:
Debian Release: unstable/experimental
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.18
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)

Versions of packages coreutils depends on:
ii  libacl1  2.2.42-1Access control list shared library
ii  libc62.3.6.ds1-9 GNU C Library: Shared libraries

coreutils recommends no packages.

-- no debconf information


pgptBMxfN5u4U.pgp
Description: PGP signature


Bug#396957: mozilla-tabextensions: Clear "No Javascript" flag when POST reload

2006-11-03 Thread Jörg Sommer
Package: mozilla-tabextensions
Version: 2.1.2006031301-1
Severity: normal

Hi,

I've a site for which I clear the “Permission->Allow Javascript” flag.
The site uses heavily POST formulars. When I go back in history (Alt+left
arrow) I get the question if I want to repost the data. After this
happened the flag is set (the default) and I setting (not allow JS) is
discarded.

Bye, Jörg.

-- System Information:
Debian Release: unstable/experimental
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.18
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)

Versions of packages mozilla-tabextensions depends on:
ii  firefox   1.5.dfsg+1.5.0.7-2 lightweight web browser based on M

mozilla-tabextensions recommends no packages.

-- no debconf information


pgp1TkBOfum2m.pgp
Description: PGP signature


Bug#343489: bug report maintenance

2007-01-06 Thread Jörg Sommer
package jed
notfound 343489 0.99.17.135-1
found 343489 0.99.16-6
tags 395251 + pending
thanks

Bug report #343489 is really strange. The jed-script symlink was
introduced in 0.99.17.111-1 according to the changelog and it exists in
0.99.18-1 (the next release after 0.99.17.135-1; available on
). Hence, I reassign the bug to the last
unstable release before 0.99.17.111-1.

Schöne Grüße, Jörg.
-- 
Im Leben lernt der Mensch als erstes das Gehen und Sprechen.
Später lernt er still zu sitzen und den Mund zu halten.


pgpApFeC4DgFQ.pgp
Description: PGP signature


Bug#368954: Info about pbbuttons shutdown behaviour

2007-01-11 Thread Jörg Sommer
Hello Eugen,

sorry for the long delay. This problem was not in the top 10 of my urgent
problems, but between christmas and new year, it raised up again and I
found a solution. Now, I it was active awhile and I'm contented with it.

Eugen Dedu schrieb am Wed 20. Sep, 20:03 (+0200):
> If I understand correctly, you wish to have a value, for ex. 20, which gives 
> the number of minutes that the computer can still be on after the battery 
> level 
> reaches 0.

Yes. I think it's important that the time goes down to zero.

I observed the maximum charge level some weeks and I can say, it's
important that the level reaches the zero limit. The firmware of the
battery recalculates the maximum charge level upon reaching zero. Due
to this the last minute can be very long and it's a waste to shut down
the computer at 2 minutes, because than the firmware reduces the maximum
charge level continuously. It will never detect that the expected value
is too low, because the voltage does not fall below a specified level.

This is IMO what happens in the last minute. The firmware waits until a
special condition is reached and then it sets the maximum charge level.

My solution is to set EmergencyAction = command and use the following in
/etc/power/pmcs-pbbuttonsd

case "$1" in
  emergency)
( while [ "$(sed -n '/time rem/{s/.*: //;p;}' /proc/pmu/battery_0)" -gt 0 ] 
&&
[ "$(sed -n '/AC Power/{s/.*: //;p;}' /proc/pmu/info)" -eq 0 ] &&
sleep 60; do :; done
  if grep -q 'eth0=home' /etc/network/run/ifstate; then
  while [ "$(sed -n '/voltage/{s/.*: //;p;}' /proc/pmu/battery_0)" -gt 
9500 ] &&
[ "$(sed -n '/AC Power/{s/.*: //;p;}' /proc/pmu/info)" -eq 0 ] &&
sleep 60; do :; done
  fi
  if [ "$(sed -n '/AC Power/{s/.*: //;p;}' /proc/pmu/info)" -eq 0 ]; then
  pbbcmd -i sleep
  # shutdown -h now "Low battery - system will go down now!"
  fi
) &
;;
esac

Ths first if‐then is to detect if I'm at home. Then the voltage level can
go down to 9,5V, because I can everytime plug in the power connector.
Otherwise I need the whole reserve to let the iBook sleep until I can
plug in the power connector.

Bye, Jörg.
-- 
“…anytime you install something new on the Windows platform, you risk
spending the next five or six hours trying to figure out what happened”
(Robert Roblin, Adobe)


pgpR0vHEPXqpA.pgp
Description: PGP signature


Bug#395887: zsh-beta: accept-and-menu-complete kills zsh with sigseg

2006-10-29 Thread Jörg Sommer
Hi Clint,

Clint Adams schrieb am Sun 29. Oct, 04:56 (-0500):
> > Hi,
> > 
> > % HOME=/tmp zsh-beta 
> > 
> > % ls M
> > Mail/  Mnt/
> > % ls M
> > Mail/  Mnt/
> > % ls Mail/
> > execute: accept-and-menu-complete_
> > zsh: segmentation fault  zsh-beta
> 
> I can't reproduce this with zsh-beta -f.  Can you?

Yes and I tried 4.3.2-dev-1+20061023-1 and can reproduce the bug with it,
too. What can I do to narrow the problem?

Bye, Jörg.
-- 
Prof: Ist etwas an der Tafel nicht zu lesen? Sie schauen so komisch.
Studentin: Nein, es ist alles in Ordnung.
Prof: Aber ihr Gesicht sieht überhaupt nicht in Ordnung aus.


pgpW4hTxnsTvW.pgp
Description: PGP signature


Bug#391212: closed by Eduard Bloch

2006-10-29 Thread Jörg Sommer
Hallo Eduard,

Debian Bug Tracking System schrieb am Sat 28. Oct, 14:48 (-0700):
> This is an automatic notification regarding your Bug report
> #391212: icewm: support AltGr key,
> which was filed against the icewm package.
> 
> It has been closed by Eduard Bloch <[EMAIL PROTECTED]>.
> 

> Changes: 
>* altgr_binding_support.dpatch:  (based on work from Joerg Sommer)
>  - adds AltGR symbols to possible modifiers, (closes: #391212)

Thank you!

Schöne Grüße, Jörg.
-- 
Two types have compatible type if their types are the same.
[ANSI C, 6.2.7]


pgpYeYmBBQLIn.pgp
Description: PGP signature


Bug#396237: zsh-dbg: Fails to start

2006-10-30 Thread Jörg Sommer
Package: zsh-dbg
Version: 4.3.2-22
Severity: normal

Hi,

% /usr/lib/debug/bin/zsh4.dbg   
zsh: exec format error: /usr/lib/debug/bin/zsh4.dbg
zsh: exit 126   /usr/lib/debug/bin/zsh4.dbg

% file /usr/lib/debug/bin/zsh4.dbg
/usr/lib/debug/bin/zsh4.dbg: ELF 32-bit MSB executable, PowerPC or cisco 4500, 
version 1 (SYSV), dynamically linked (uses shared libs), not stripped

% ldd /usr/lib/debug/bin/zsh4.dbg
/usr/bin/ldd: line 117: /usr/lib/debug/bin/zsh4.dbg: cannot execute binary file
zsh: exit 1 ldd /usr/lib/debug/bin/zsh4.dbg

Bye, Jörg.

-- System Information:
Debian Release: unstable/experimental
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.18
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)

Versions of packages zsh-dbg depends on:
ii  zsh   4.3.2-22   A shell with lots of features

zsh-dbg recommends no packages.

-- no debconf information


pgppsXx7B9euH.pgp
Description: PGP signature


Bug#395887: zsh-beta: accept-and-menu-complete kills zsh with sigseg

2006-11-02 Thread Jörg Sommer
Hi Clint,

Clint Adams schrieb am Sun 29. Oct, 16:03 (-0500):
> > Yes and I tried 4.3.2-dev-1+20061023-1 and can reproduce the bug with it,
> > too. What can I do to narrow the problem?
> 
> Can you get a backtrace from gdb?

<0,1000>(joerg):~% ls Mail Mnt/
Program received signal SIGSEGV, Segmentation fault.
0x0fda8500 in memcpy () from /lib/tls/libc.so.6
(gdb) bt
#0  0x0fda8500 in memcpy () from /lib/tls/libc.so.6
#1  0x0fc11374 in hasbrpsfx (m=0x10144c70, pre=0x0, suf=0x0)
at ../../../Src/Zle/compresult.c:699
#2  0x0fc11c54 in calclist (showall=0) at ../../../Src/Zle/compresult.c:1509
#3  0x0fc127ac in ilistmatches (dummy=, dat=0x0)
at ../../../Src/Zle/compresult.c:2194
#4  0x10048ef8 in runhookdef ()
#5  0x0fc0e760 in list_matches (dummy=, 
dummy2=) at ../../../Src/Zle/compresult.c:2228
#6  0x10048ef8 in runhookdef ()
#7  0x0fc49d70 in zrefresh () at ../../../Src/Zle/zle_refresh.c:919
#8  0x0fc3f6d0 in zlecore () at ../../../Src/Zle/zle_main.c:907
#9  0x0fc3fc50 in zleread (lp=, rp=, 
flags=, context=)
at ../../../Src/Zle/zle_main.c:1019
#10 0x10037df4 in ingetc ()
#11 0x10032bf4 in herrflush ()
#12 0x1004068c in gettok ()
#13 0x10041114 in yylex ()
#14 0x1005f668 in parse_event ()
#15 0x10036414 in loop ()
#16 0x1003717c in zsh_main ()
#17 0x1000b200 in main ()

> Is it reproducible with the zsh package?

Yes. The backtrace above is from the zsh package.

Bye, Jörg.
-- 
Fuchs' Paradoxon (http://www.bruhaha.de/laws.html):
Wer eine allgemeine Frage beliebigen Themas nach de.alt.arnooo postet und
eine ernsthafte Antwort erwartet, ist dort eigentlich ziemlich ontopic.


pgpoJJPeccq5Q.pgp
Description: PGP signature


Bug#399209: rubber: treat --pdf for pstricks specially

2006-11-18 Thread Jörg Sommer
Package: rubber
Version: 1.1-2
Severity: wishlist

Hi,

if a package of the pstricks collection is used, it's not possible to
build a pdf with pdftex. But rubber can hide this. It can build a dvi
file and generate the pdf with dvipdf. All pstricks packages start with
pst-.

Bye, Jörg.

-- System Information:
Debian Release: unstable/experimental
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.18
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)

Versions of packages rubber depends on:
ii  python 2.4.4-1   An interactive high-level object-o
ii  texlive-latex-base 2005.dfsg.2-4 TeX Live: Basic LaTeX packages

rubber recommends no packages.

-- no debconf information


pgpy553QMD9gN.pgp
Description: PGP signature


Bug#399355: libslang2: 2.0.6-4 introduces a new bug in SLutf8_skip_chars

2006-11-19 Thread Jörg Sommer
Package: libslang2
Version: 2.0.6-4
Severity: important

Hi,

% cat test.c
#include 
#include 

int main(void)
{
SLuchar_Type string[] = "\xE4";
unsigned int dnum;

SLutf8_skip_chars(string, string+1, 1, &dnum, 1);

printf("%d\n", dnum);

return 0;
}
% dpkg -l libslang2
ii  libslang2  2.0.6-3The S-Lang programming library - runtime ver
% ./test
1
% dpkg -l libslang2
ii  libslang2  2.0.6-4The S-Lang programming library - runtime ver
% ./test   
0

your patch breakes jed again! Please read the comments from John E. Davis
to this topic
http://www.jedsoft.org/pipermail/slang-users_jedsoft.org/2006/000482.html

Bye, Jörg.

-- System Information:
Debian Release: unstable/experimental
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.18
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)

Versions of packages libslang2 depends on:
ii  libc62.3.6.ds1-8 GNU C Library: Shared libraries

libslang2 recommends no packages.

-- no debconf information


pgpHH8Q5DJzRp.pgp
Description: PGP signature


Bug#295178: /etc/power/pmcs-pbbuttonsd: doesn't work correct with sh != bash

2005-02-14 Thread Jörg Sommer
Package: pbbuttonsd
Version: 0.6.7-1
Severity: normal
File: /etc/power/pmcs-pbbuttonsd
Tags: patch

Hi,

The log shows:
pbbuttonsd: INFO: pbbuttonsd 0.6.7: iBook/G3 PB Pismo/G4 PB Titanium (PMU 
version: 12)
pbbuttonsd: INFO: Script '/etc/power/pmcs-pbbuttonsd performance ac ' 
gestartet, aber der Exitcode ist nicht Null

I found all sources the file pmcs-config, but it isn't in $PATH
$ grep '^\. ' /etc/power/event.d/*
/etc/power/event.d/apmd-compat:. pmcs-config
/etc/power/event.d/bdflush:. pmcs-config
/etc/power/event.d/hdsetup:. pmcs-config

Posix defines: Files for '.' are searched in $PATH if the filename
doesn't contain a slash. So you must add /etc/power/ to the $PATH.

--- /tmp/pmcs-pbbuttonsd2005-02-14 04:02:26.963001992 +0100
+++ pmcs-pbbuttonsd 2005-02-14 03:52:27.100195000 +0100
@@ -41,6 +41,7 @@
 ;;
   *)
 cd `dirname $0`
+PATH=$PATH:$PWD
 [ -d ${1}.d ] && run-parts --arg="$1" --arg="$2" --arg="$3" ${1}.d
 run-parts --arg="$1" --arg="$2" --arg="$3" event.d
 ;;

Jörg.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (990, 'unstable')
Architecture: powerpc (ppc)
Kernel: Linux 2.6.9
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages pbbuttonsd depends on:
ii  eject  2.0.13deb-8sarge1 ejects CDs and operates CD-Changer
ii  hdparm 5.8-1 Tune hard disk parameters for high
ii  libasound2 1.0.8-1   ALSA library
ii  libc6  2.3.2.ds1-20  GNU C Library: Shared libraries an

-- no debconf information


signature.asc
Description: Digital signature


  1   2   3   4   5   6   7   8   9   >