Bug#456516: freeglut3: glutDestroyWindow() does not destroy the window

2007-12-16 Thread Sam Hocevar (Debian packages)
Package: freeglut3
Version: 2.4.0-6
Severity: normal

   glutDestroyWindow() does not really destroy the window. Instead, it
puts the window in a list of windows that will be destroyed later. This
is annoying for software that opens a GL window from time to time that
needs to be closed without the program exiting. Attached is a small
program that exposes the behaviour.

   A workaround can be to use glutHideWindow() before calling
glutDestroyWindow(), but that is not optimal since it does not free
the resources.

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.23.8 (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages freeglut3 depends on:
ii  libc6 2.7-4  GNU C Library: Shared libraries
ii  libgl1-mesa-glx [libgl1]  7.0.2-2A free implementation of the OpenG
ii  libglu1-mesa [libglu1]7.0.2-2The OpenGL utility library (GLU)
ii  libx11-6  2:1.0.3-7  X11 client-side library
ii  libxext6  1:1.0.3-2  X11 miscellaneous extension librar

freeglut3 recommends no packages.

-- no debconf information
/* gcc glutdestroywindow.c -o glutdestroywindow -lglut */

#include 
#include 

int main(int argc, char **argv)
{
int win;

glutInitWindowSize(400, 40);
glutInitDisplayMode(GLUT_RGB | GLUT_DOUBLE | GLUT_DEPTH);
glutInit(&argc, argv);

win = glutCreateWindow("Hello world");
glutMainLoopEvent();
sleep(5);

glutSetWindowTitle("I should be dead by now");
glutDestroyWindow(win);
sleep(5);

return 0;
}


Bug#456181: ITP: gtkglarea-sharp -- CLI bindings for the GTK OpenGL area widget

2007-12-13 Thread Sam Hocevar (Debian packages)
Package: wnpp
Severity: wishlist
Owner: "Sam Hocevar (Debian packages)" <[EMAIL PROTECTED]>


* Package name: gtkglarea-sharp
  Version : 0.0.17
  Upstream Author : C.J. Collier <[EMAIL PROTECTED]> and others
* URL : http://www.mono-project.com/GtkGLAreaSharp
* License : dual LGPL MIT/X
  Programming Lang: C#
  Description : CLI bindings for the GTK OpenGL area widget
 The gtkglarea-sharp bindings allow CLI (.NET) programs to use the GTK OpenGL
 area widget to display accelerated 3D graphics in GTK applications.

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.23.8 (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash



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



Bug#452639: e2fsprogs: -m flag limited in mke2fs and tune2fs

2007-11-24 Thread Sam Hocevar (Debian packages)
Package: e2fsprogs
Version: 1.40.2-1
Severity: normal

   mke2fs and tune2fs use strtod() for the -m argument, apparently
allowing for fine-tuning the -m flag. However they call e2p_percent
with this argument, which is implicitely cast to an int, therefore
losing anything after the decimal separator.

   Given that e2p_percent is used in a few other places, I am not
sure which patch to suggest: it looks to me like the whole function
could be replaced with "return (unsigned int)(percent * base / 100.0);"
because the "double" type has enough precision to care for all cases,
but that would render the function pretty useless.

   The feature is really interesting with today's disk sizes. Currently,
on a 800 GB partition, I can only reserve 0 GB or 8 GB for root, nothing
inbetween.

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.23.8 (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages e2fsprogs depends on:
ii  e2fslibs  1.40.2-1   ext2 filesystem libraries
ii  libblkid1 1.40.2-1   block device id library
ii  libc6 2.7-0exp8  GNU C Library: Shared libraries
ii  libcomerr21.40.2-1   common error description library
ii  libss21.40.2-1   command-line interface parsing lib
ii  libuuid1  1.40.2-1   universally unique id library

e2fsprogs recommends no packages.

-- no debconf information



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



Bug#448166: monodoc-base: mdassembler should exit with an error on invalid usage

2007-10-26 Thread Sam Hocevar (Debian packages)
Package: monodoc-base
Version: 1.2.5-1
Severity: minor

   Hi! When mdassembler is called with invalid arguments, it does not
exit with an error:

$ mdassembler --fgsfds
Usage is: assembler [--out] [--ecma|xhtml|hb|man|simple|error|ecmaspec] [dir1 
dir2
   --ecma   To process an tree containing ECMA XML documents
   --xhtml  To process an tree containing XHTML documents
$ echo $?
0
$

   This is not incredibly important, but would help detect and diagnose
errors in build scripts.

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.23-rc6 (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash



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



Bug#447336: screen does not support Unicode characters beyond U+FFFF

2007-10-20 Thread Sam Hocevar (Debian packages)
Package: screen
Version: 4.0.3-7
Severity: normal

   Hello, screen does not support Unicode characters beyond U+ and
replaces them with U+FFFD (replacement character).

   Simple testcase: printf '\xf0\x9d\x8d\x96\n' will output U+FFFD
instead of the expected character.

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.23-rc6 (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages screen depends on:
ii  libc6 2.6.1-5GNU C Library: Shared libraries
ii  libncursesw5  5.6+20071013-1 Shared libraries for terminal hand
ii  libpam0g  0.99.7.1-5 Pluggable Authentication Modules l

screen recommends no packages.

-- no debconf information



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



Bug#407072: ITP: zzuf -- transparent application input fuzzer

2007-01-15 Thread Sam Hocevar (Debian packages)
Package: wnpp
Severity: wishlist
Owner: "Sam Hocevar (Debian packages)" <[EMAIL PROTECTED]>


* Package name: zzuf
  Version : 0.5
  Upstream Author : Sam Hocevar <[EMAIL PROTECTED]>
* URL : http://sam.zoy.org/zzuf/
* License : WTFPL (BSD-like)
  Programming Lang: C
  Description : transparent application input fuzzer

 Zzuf is a transparent fuzzer. It works by intercepting applications' file
 and network operations and changing random bits in their input. Its behaviour
 is deterministic, making it easy to reproduce bugs.
 .
 Zzuf has support for variable fuzzing ratio, character filtering, fuzzing
 decision based on filenames and optional network fuzzing. It can also stop
 processes that run for too long or that output too much data.


 For those interested, zzuf packages are already available here:
   svn+ssh://svn.debian.org/svn/sam-hocevar/pkg-misc/unstable/zzuf

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


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



Bug#407031: vlc: multiple segmentation faults

2007-01-15 Thread Sam Hocevar (Debian packages)
Package: vlc
Version: 0.8.6.a.debian-1
Severity: important

   VLC crashes at various places with the following files:

  http://sam.zoy.org/zzuf/lol-vlc.mpg (SIGSEGV)
  http://sam.zoy.org/zzuf/lol-vlc.m2v (SIGSEGV)
  http://sam.zoy.org/zzuf/lol-vlc.avi (SIGSEGV)
  http://sam.zoy.org/zzuf/lol-vlc.wmv (SIGSEGV)
  http://sam.zoy.org/zzuf/lol-vlc.aac (heap corruption)
  http://sam.zoy.org/zzuf/lol-vlc.ac3 (SIGSEGV)

   I'm setting the severity to important, but the potential security
issues should not be overlooked. More information about the software I
used is available at http://sam.zoy.org/zzuf/.

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

Versions of packages vlc depends on:
ii  libaa1  1.4p5-30 ascii art library
ii  libatk1.0-0 1.12.4-1 The ATK accessibility toolkit
ii  libc6   2.3.6.ds1-10 GNU C Library: Shared libraries
ii  libcaca00.99.beta11.debian-2 colour ASCII art library
ii  libcairo2   1.2.4-4  The Cairo 2D vector graphics libra
ii  libcdio60.76-1   library to read and control CD-ROM
ii  libcucul0   0.99.beta11.debian-2 low-level Unicode character drawin
ii  libdbus-1-3 1.0.2-1  simple interprocess messaging syst
ii  libdbus-glib-1-20.71-3   simple interprocess messaging syst
ii  libfontconfig1  2.4.2-1  generic font configuration library
ii  libfreetype62.2.1-5  FreeType 2 font engine, shared lib
ii  libfribidi0 0.10.7-4 Free Implementation of the Unicode
ii  libgcc1 1:4.1.1-21   GCC support library
ii  libgl1-mesa-glx [li 6.5.1-0.5A free implementation of the OpenG
ii  libglib2.0-02.12.6-2 The GLib library of C routines
ii  libglu1-mesa [libgl 6.5.1-0.5The OpenGL utility library (GLU)
ii  libgtk2.0-0 2.8.20-4 The GTK+ graphical user interface 
ii  libice6 1:1.0.1-2X11 Inter-Client Exchange library
ii  libiso9660-40.76-1   library to work with ISO9660 files
ii  libjpeg62   6b-13The Independent JPEG Group's JPEG 
ii  libnotify1  0.4.3-1  sends desktop notifications to a n
ii  libpango1.0-0   1.14.8-4 Layout and rendering of internatio
ii  libpng12-0  1.2.15~beta5-1   PNG library - runtime
ii  libsdl-image1.2 1.2.5-2+b1   image loading library for Simple D
ii  libsdl1.2debian 1.2.11-7 Simple DirectMedia Layer
ii  libsm6  1:1.0.1-3X11 Session Management library
ii  libstdc++6  4.1.1-21 The GNU Standard C++ Library v3
ii  libtar  1.2.11-4 C library for manipulating tar arc
ii  libtiff43.8.2-7  Tag Image File Format (TIFF) libra
ii  libvcdinfo0 0.7.23-3 library to extract information fro
ii  libvlc0 0.8.6.a.debian-1 multimedia player and streamer lib
ii  libwxbase2.6-0  2.6.3.2.1.5  wxBase library (runtime) - non-GUI
ii  libwxgtk2.6-0   2.6.3.2.1.5  wxWidgets Cross-platform C++ GUI t
ii  libx11-62:1.0.3-4X11 client-side library
ii  libxcursor1 1.1.7-4  X cursor management library
ii  libxext61:1.0.1-2X11 miscellaneous extension librar
ii  libxfixes3  1:4.0.1-5X11 miscellaneous 'fixes' extensio
ii  libxi6  1:1.0.1-4X11 Input extension library
ii  libxinerama11:1.0.1-4.1  X11 Xinerama extension library
ii  libxosd22.2.14-1.3   X On-Screen Display library - runt
ii  libxrandr2  2:1.1.0.2-5  X11 RandR extension library
ii  libxrender1 1:0.9.1-3X Rendering Extension client libra
ii  libxv1  1:1.0.2-1X11 Video extension library
ii  libxxf86vm1 1:1.0.1-2X11 XFree86 video mode extension l
ii  ttf-dejavu  2.13-1   Vera font family derivate with add
ii  vlc-nox 0.8.6.a.debian-1 multimedia player and streamer (wi
ii  zlib1g  1:1.2.3-13   compression library - runtime

Versions of packages vlc recommends:
ii  videolan-doc  20060711-1 documentation for the VideoLAN str

-- no debconf information


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



Bug#407022: vorbis-tools: ogg123 SIGFPEs with corrupted streams

2007-01-15 Thread Sam Hocevar (Debian packages)
Package: vorbis-tools
Version: 1.1.1-6
Severity: normal

   The following corrupted file causes ogg123 to crash with SIGFPE:

  http://sam.zoy.org/zzuf/lol-ogg123.flac

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

Versions of packages vorbis-tools depends on:
ii  libao20.8.6-4Cross Platform Audio Output Librar
ii  libc6 2.3.6.ds1-10   GNU C Library: Shared libraries
ii  libcurl3-gnutls   7.15.5-1   Multi-protocol file transfer libra
ii  libflac7  1.1.2-5Free Lossless Audio Codec - runtim
ii  libogg0   1.1.3-2Ogg Bitstream Library
ii  liboggflac3   1.1.2-5Free Lossless Audio Codec - runtim
ii  libspeex1 1.1.12-3   The Speex Speech Codec
ii  libvorbis0a   1.1.2.dfsg-1.2 The Vorbis General Audio Compressi
ii  libvorbisenc2 1.1.2.dfsg-1.2 The Vorbis General Audio Compressi
ii  libvorbisfile31.1.2.dfsg-1.2 The Vorbis General Audio Compressi

vorbis-tools recommends no packages.

-- no debconf information


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



Bug#407015: antiword: segmentation fault with corrupted files

2007-01-15 Thread Sam Hocevar (Debian packages)
Package: antiword
Version: 0.37-2
Severity: important

   I noticed mutt was automatically filtering Word documents through
antiword. I also found that antiword was not very resistant to corrupted
files, for instance: http://sam.zoy.org/zzuf/lol-antiword.doc (SIGSEGV).

   I'm setting the severity to important, but the potential security
issues should not be overlooked. More information about the software I
used is available at http://sam.zoy.org/zzuf/.
-- System Information:
Debian Release: 4.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (50, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.19.1
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages antiword depends on:
ii  libc6   2.3.6.ds1-10 GNU C Library: Shared libraries

antiword recommends no packages.

-- no debconf information


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



Bug#407045: binutils: nm exhausts memory with corrupted binary file

2007-01-15 Thread Sam Hocevar (Debian packages)
Package: binutils
Version: 2.17-3
Severity: important

   Running nm on http://sam.zoy.org/zzuf/lol-debian-nm causes it to
eat all memory. This may also have security implications because it is
not uncommon (admittedly not wise, yet not uncommon) to run nm as root
when doing forensics analysis.

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

Versions of packages binutils depends on:
ii  libc6   2.3.6.ds1-10 GNU C Library: Shared libraries

binutils recommends no packages.

-- debconf information:
  binutils/oformat_warning:
* binutils/kernel_link_warning:


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



Bug#407003: ffmpeg: multiple segmentation faults

2007-01-15 Thread Sam Hocevar (Debian packages)
Package: ffmpeg
Version: 0.cvs20060823-5
Severity: important

   ffplay crashes at various places with the following files:

  http://sam.zoy.org/zzuf/lol-ffplay.ogg (SIGSEGV)
  http://sam.zoy.org/zzuf/lol-ffplay.mpg (SIGSEGV)
  http://sam.zoy.org/zzuf/lol-ffplay.m2v (SIGSEGV)
  http://sam.zoy.org/zzuf/lol-ffplay.avi (SIGSEGV)
  http://sam.zoy.org/zzuf/lol-ffplay.flac (heap corruption)
  http://sam.zoy.org/zzuf/lol-ffplay.ogm (SIGSEGV)
  http://sam.zoy.org/zzuf/lol-ffplay.wmv (SIGSEGV)
  http://sam.zoy.org/zzuf/lol-ffplay.ac3 (SIGSEGV)

   I'm setting the severity to important, but the potential security
issues should not be overlooked. More information about the software I
used is available at http://sam.zoy.org/zzuf/.

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

Versions of packages ffmpeg depends on:
ii  libavcodec0d 0.cvs20060823-5 ffmpeg codec library
ii  libavformat0d0.cvs20060823-5 ffmpeg file format library
ii  libc62.3.6.ds1-10GNU C Library: Shared libraries
ii  libsdl1.2debian  1.2.11-7Simple DirectMedia Layer

ffmpeg recommends no packages.

-- no debconf information


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



Bug#407002: xine-ui: multiple segmentation faults

2007-01-15 Thread Sam Hocevar (Debian packages)
Package: xine-ui
Version: 0.99.4+dfsg+cvs2006-1
Severity: important

   Xine crashes at various places with the following files:

  http://sam.zoy.org/zzuf/lol-xine.mpg (SIGSEGV)
  http://sam.zoy.org/zzuf/lol-xine.avi (SIGSEGV)
  http://sam.zoy.org/zzuf/lol-xine.aac (SIGSEGV)

   I'm setting the severity to important, but the potential security
issues should not be overlooked. More information about the software I
used is available at http://sam.zoy.org/zzuf/.

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

Versions of packages xine-ui depends on:
ii  libc62.3.6.ds1-10GNU C Library: Shared libraries
ii  libcaca0 0.99.beta11.debian-2colour ASCII art library
ii  libcomer 1.39+1.40-WIP-2006.11.14+dfsg-1 common error description library
ii  libcucul 0.99.beta11.debian-2low-level Unicode character drawin
ii  libcurl3 7.15.5-1Multi-protocol file transfer libra
ii  libfontc 2.4.2-1 generic font configuration library
ii  libgnutl 1.4.4-3 the GNU TLS library - runtime libr
ii  libidn11 0.6.5-1 GNU libidn library, implementation
ii  libkrb53 1.4.4-5 MIT Kerberos runtime libraries
ii  libncurs 5.5-5   Shared libraries for terminal hand
ii  libpng12 1.2.15~beta5-1  PNG library - runtime
ii  libreadl 5.2-2   GNU readline and history libraries
ii  libx11-6 2:1.0.3-4   X11 client-side library
ii  libxext6 1:1.0.1-2   X11 miscellaneous extension librar
ii  libxft2  2.1.8.2-8   FreeType-based font drawing librar
ii  libxine1 1.1.2+dfsg-2the xine video/media player librar
ii  libxiner 1:1.0.1-4.1 X11 Xinerama extension library
ii  libxtst6 1:1.0.1-5   X11 Testing -- Resource extension 
ii  libxv1   1:1.0.2-1   X11 Video extension library
ii  libxxf86 1:1.0.1-2   X11 XFree86 video mode extension l
ii  zlib1g   1:1.2.3-13  compression library - runtime

Versions of packages xine-ui recommends:
ii  libaa11.4p5-30   ascii art library

-- no debconf information


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



Bug#407004: gstreamer0.10-tools: multiple segmentation faults

2007-01-15 Thread Sam Hocevar (Debian packages)
Package: gstreamer0.10-tools
Version: 0.10.10-2
Severity: important

   gst-launch crashes at various places with the following files:

  http://sam.zoy.org/zzuf/lol-gstreamer.ogg (SIGSEGV)
  http://sam.zoy.org/zzuf/lol-gstreamer.m2v (SIGSEGV)

   Also the following file seems to cause a deadlock (gst-launch will
not quit), but I'm unsure whether it's the expected behaviour:

  http://sam.zoy.org/zzuf/lol-gstreamer.avi

   I'm setting the severity to important, but the potential security
issues should not be overlooked. More information about the software I
used is available at http://sam.zoy.org/zzuf/.

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

Versions of packages gstreamer0.10-tools depends on:
ii  libc6   2.3.6.ds1-10 GNU C Library: Shared libraries
ii  libglib2.0-02.12.6-2 The GLib library of C routines
ii  libgstreamer0.10-0  0.10.10-2Core GStreamer libraries and eleme
ii  pkg-config  0.21-1   manage compile and link flags for 

gstreamer0.10-tools recommends no packages.

-- no debconf information


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



Bug#407010: mplayer: multiple segmentation faults

2007-01-15 Thread Sam Hocevar (Debian packages)
Package: mplayer
Version: 1.0~rc1-11
Severity: important

   MPlayer crashes at various places with the following files:

  http://sam.zoy.org/zzuf/lol-mplayer.mp3 (SIGSEGV)
  http://sam.zoy.org/zzuf/lol-mplayer.ogg (SIGSEGV)
  http://sam.zoy.org/zzuf/lol-mplayer.mpg (SIGSEGV)
  http://sam.zoy.org/zzuf/lol-mplayer.m2v (SIGSEGV)
  http://sam.zoy.org/zzuf/lol-mplayer.avi (SIGSEGV)
  http://sam.zoy.org/zzuf/lol-mplayer.flac (SIGSEGV)
  http://sam.zoy.org/zzuf/lol-mplayer.ogm (SIGSEGV)
  http://sam.zoy.org/zzuf/lol-mplayer.wmv (SIGSEGV)
  http://sam.zoy.org/zzuf/lol-mplayer.aac (SIGSEGV)

   I'm setting the severity to important, but the potential security
issues should not be overlooked. More information about the software I
used is available at http://sam.zoy.org/zzuf/.

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

Versions of packages mplayer depends on:
ii  debconf [debconf-2 1.5.11Debian configuration management sy
ii  libaa1 1.4p5-30  ascii art library
ii  libartsc0  1.5.5-1   aRts sound system C support librar
ii  libasound2 1.0.13-1  ALSA library
ii  libatk1.0-01.12.4-1  The ATK accessibility toolkit
ii  libaudiofile0  0.2.6-6   Open-source version of SGI's audio
ii  libc6  2.3.6.ds1-10  GNU C Library: Shared libraries
ii  libcaca0   0.99.beta11.debian-2  colour ASCII art library
ii  libcairo2  1.2.4-4   The Cairo 2D vector graphics libra
ii  libcdparanoia0 3.10+debian~pre0-4audio extraction tool for sampling
ii  libconfhelper-perl 0.12.5Library for editing configuration 
ii  libcucul0  0.99.beta11.debian-2  low-level Unicode character drawin
ii  libdirectfb-0.9-25 0.9.25.1-5direct frame buffer graphics - sha
ii  libdv4 1.0.0-1   software library for DV format dig
ii  libdvdread30.9.7-2   library for reading DVDs
ii  libesd00.2.36-3  Enlightened Sound Daemon - Shared 
ii  libfontconfig1 2.4.2-1   generic font configuration library
ii  libfreetype6   2.2.1-5   FreeType 2 font engine, shared lib
ii  libglib2.0-0   2.12.6-2  The GLib library of C routines
ii  libgtk2.0-02.8.20-4  The GTK+ graphical user interface 
ii  libjack0.100.0-0   0.101.1-2 JACK Audio Connection Kit (librari
ii  libjpeg62  6b-13 The Independent JPEG Group's JPEG 
ii  liblircclient0 0.8.0-9   LIRC client library
ii  liblzo11.08-3data compression library (old vers
ii  libmad00.15.1b-2.1   MPEG audio decoder library
ii  libncurses55.5-5 Shared libraries for terminal hand
ii  libogg01.1.3-2   Ogg Bitstream Library
ii  libpango1.0-0  1.14.8-4  Layout and rendering of internatio
ii  libpng12-0 1.2.15~beta5-1PNG library - runtime
ii  libsdl1.2debian1.2.11-7  Simple DirectMedia Layer
ii  libsmbclient   3.0.23d-4 shared library that allows applica
ii  libspeex1  1.1.12-3  The Speex Speech Codec
ii  libsvga1   1:1.4.3-24console SVGA display libraries
ii  libtheora0 0.0.0.alpha7.dfsg-1.1 The Theora Video Compression Codec
ii  libungif4g 4.1.4-4   shared library for GIF images
ii  libx11-6   2:1.0.3-4 X11 client-side library
ii  libxcursor11.1.7-4   X cursor management library
ii  libxext6   1:1.0.1-2 X11 miscellaneous extension librar
ii  libxfixes3 1:4.0.1-5 X11 miscellaneous 'fixes' extensio
ii  libxi6 1:1.0.1-4 X11 Input extension library
ii  libxinerama1   1:1.0.1-4.1   X11 Xinerama extension library
ii  libxrandr2 2:1.1.0.2-5   X11 RandR extension library
ii  libxrender11:0.9.1-3 X Rendering Extension client libra
ii  libxv1 1:1.0.2-1 X11 Video extension library
ii  libxvmc1   1:1.0.2-2 X11 Video extension library
ii  libxxf86dga1   2:1.0.1-2 X11 Direct Graphics Access extensi
ii  libxxf86vm11:1.0.1-2 X11 XFree86 video mode extension l
ii  mplayer-skin-blue  1.6-1 blue skin for mplayer
ii  zlib1g 1:1.2.3-13compression library - runtime

mplayer recommends no packages.

-- debconf information:
  mplayer/replace-existing-files-bail:
  mplayer/replace-existing-files: false
  mplayer/no-ttfont:
* mplayer/inst

Bug#406812: xine-ui: unable to use in console, crashes

2007-01-14 Thread Sam Hocevar (Debian packages)
Package: xine-ui
Version: 0.99.4+dfsg+cvs2006-1
Severity: important

   I am trying to do the following with xine:
- run without opening an X11 window
- play an audio file that was given as argument
- don't output any sound but decode the file nonetheless (optional)
- quit when it is done

   I first tried the following flags:

  -g, --hide-gui   hide GUI (panel, etc.)
  -I, --no-gui disable GUI
  -H, --hide-video hide video window
  --no-splash  Don't display the splash screen.
  -p, --auto-play [opt]Play on start. Can be followed by:
'q': quit when play is done.

   Eg. "xine -g -I -H --no-splash file.ogg -pq"

   But xine opens a window nonetheless. Setting DISPLAY to "" or unsetting
that variable results in "Cannot open display" and xine doesn't run.

   Adding "-V null" does not change anything to the behaviour. Adding
"-V none" doesn't either.

   Adding "-A null" causes the following message:

% xine -A null -g -I -H --no-splash file.ogg -pq
This is xine (X11 gui) - a free video player v0.99.5cvs.
(c) 2000-2006 The xine Team.
xiTK received SIGSEGV signal, RIP.
aborted
%

   Adding "-A none" seems to work (though it segfaulted at least twice
during my tests) but there is still that GUI window.

   All tests were done after removing ~/.xine, just in case.

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

Versions of packages xine-ui depends on:
ii  libc62.3.6.ds1-10GNU C Library: Shared libraries
ii  libcaca0 0.99.beta11.debian-2colour ASCII art library
ii  libcomer 1.39+1.40-WIP-2006.11.14+dfsg-1 common error description library
ii  libcucul 0.99.beta11.debian-2low-level Unicode character drawin
ii  libcurl3 7.15.5-1Multi-protocol file transfer libra
ii  libfontc 2.4.2-1 generic font configuration library
ii  libgnutl 1.4.4-3 the GNU TLS library - runtime libr
ii  libidn11 0.6.5-1 GNU libidn library, implementation
ii  libkrb53 1.4.4-5 MIT Kerberos runtime libraries
ii  libncurs 5.5-5   Shared libraries for terminal hand
ii  libpng12 1.2.15~beta5-1  PNG library - runtime
ii  libreadl 5.2-2   GNU readline and history libraries
ii  libx11-6 2:1.0.3-4   X11 client-side library
ii  libxext6 1:1.0.1-2   X11 miscellaneous extension librar
ii  libxft2  2.1.8.2-8   FreeType-based font drawing librar
ii  libxine1 1.1.2+dfsg-2the xine video/media player librar
ii  libxiner 1:1.0.1-4.1 X11 Xinerama extension library
ii  libxtst6 1:1.0.1-5   X11 Testing -- Resource extension 
ii  libxv1   1:1.0.2-1   X11 Video extension library
ii  libxxf86 1:1.0.1-2   X11 XFree86 video mode extension l
ii  zlib1g   1:1.2.3-13  compression library - runtime

Versions of packages xine-ui recommends:
ii  libaa11.4p5-30   ascii art library

-- no debconf information


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



Bug#403723: python-matplotlib: please mention pylab in the package's description

2006-12-19 Thread Sam Hocevar (Debian packages)
Package: python-matplotlib
Version: 0.87.5-2.2
Severity: wishlist

   I was looking for the pylab module and it took me some time to find
it, because "aptitude search pylab" would not return anything. It would
be handy if python-matplotlib's long description would mention "pylab"
in some way. Thanks!

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

Versions of packages python-matplotlib depends on:
ii  dvipng  1.9-1convert PNG graphics from DVI file
ii  python  2.4.4-2  An interactive high-level object-o
ii  python-central  0.5.12   register and build utility for Pyt
ii  python-dateutil 1.1-1powerful extensions to the standar
ii  python-dev  2.4.4-2  Header files and a static library 
ii  python-gd   0.52debian-2 Python module wrapper for libgd
ii  python-gtk2 2.8.6-8  Python bindings for the GTK+ widge
ii  python-matplotlib-data  0.87.5-2.2   python based plotting system (data
ii  python-numeric  24.2-7   Numerical (matrix-oriented) Mathem
ii  python-numeric-ext  24.2-7   Extension modules for Numeric Pyth
ii  python-numpy1:1.0rc1-1   Numerical Python adds a fast array
ii  python-tz   2006g-1  Python version of the Olson timezo

python-matplotlib recommends no packages.

-- no debconf information


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



Bug#403601: tex-common: unable to install because of cp

2006-12-18 Thread Sam Hocevar (Debian packages)
Package: tex-common
Version: 0.42
Severity: serious
Justification: fails to install

   I get the following while trying to install tex-common:

Setting up tex-common (0.42) ...
cp: relocation error: /lib/libacl.so.1: symbol getxattr, version ATTR_1.0 not 
defined in file libattr.so.1 with link time reference
dpkg: error processing tex-common (--configure):
 subprocess post-installation script returned error exit status 127

   "cp" works otherwise, maybe it's a problem in coreutils, but then
tex-common should depend on a working version. The following information
might be relevant, too:

ii  coreutils  5.97-5.2   The GNU core utilities
ii  libacl12.2.42-1   Access control list shared library
ii  libattr1   2.4.35-1   Extended attribute shared library

-- System Information:
Debian Release: 4.0
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-1-686
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages tex-common depends on:
ii  debconf [debconf-2.0] 1.5.10 Debian configuration management sy
ii  ucf   2.0017 Update Configuration File: preserv

tex-common recommends no packages.

Versions of packages tetex-base depends on:
ii  ucf   2.0017 Update Configuration File: preserv

Versions of packages tetex-bin depends on:
ii  debconf [debconf-2.0] 1.5.10 Debian configuration management sy
ii  debianutils   2.17.4 Miscellaneous utilities specific t
ii  dialog1.0-20060221-1 Displays user-friendly dialog boxe
ii  dpkg  1.13.24package maintenance system for Deb
ii  ed0.2-20 The classic unix line editor
ii  libc6 2.3.6.ds1-9GNU C Library: Shared libraries
ii  libfontconfig12.4.2-1generic font configuration library
ii  libfreetype6  2.2.1-5FreeType 2 font engine, shared lib
ii  libgcc1   1:4.1.1-21 GCC support library
ii  libice6   1:1.0.1-2  X11 Inter-Client Exchange library
ii  libjpeg62 6b-13  The Independent JPEG Group's JPEG 
ii  libkpathsea4  3.0-27 path search library for teTeX (run
ii  libpaper1 1.1.21 Library for handling paper charact
ii  libpng12-01.2.15~beta5-0 PNG library - runtime
ii  libpoppler0c2 0.4.5-5PDF rendering library
ii  libsm61:1.0.1-3  X11 Session Management library
ii  libstdc++64.1.1-21   The GNU Standard C++ Library v3
ii  libt1-5   5.1.0-2Type 1 font rasterizer library - r
ii  libx11-6  2:1.0.3-4  X11 client-side library
ii  libxaw7   1:1.0.2-4  X11 Athena Widget library
ii  libxext6  1:1.0.1-2  X11 miscellaneous extension librar
ii  libxmu6   1:1.0.2-2  X11 miscellaneous utility library
ii  libxpm4   1:3.5.5-2  X11 pixmap library
ii  libxt61:1.0.2-2  X11 toolkit intrinsics library
ii  mime-support  3.39-1 MIME files 'mime.types' & 'mailcap
ii  perl  5.8.8-7Larry Wall's Practical Extraction 
ii  sed   4.1.5-1The GNU sed stream editor
pn  tetex-base (no description available)
ii  ucf   2.0017 Update Configuration File: preserv
ii  whiptail  0.52.2-8   Displays user-friendly dialog boxe
ii  zlib1g1:1.2.3-13 compression library - runtime

Versions of packages tetex-extra depends on:
pn  tetex-base (no description available)
ii  tetex-bin 3.0-27 The teTeX programs
ii  ucf   2.0017 Update Configuration File: preserv

-- debconf information:
  tex-common/check_texmf_wrong:
  tex-common/check_texmf_missing:


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



Bug#397951: figlet: manpage disagrees with code about -o behaviour

2006-11-10 Thread Sam Hocevar (Debian packages)
Package: figlet
Version: 2.2.2-1
Severity: minor

   The manpage states the following about the -o option:

  If there is no information in the font about how to smush, or if
  the -o option is specified,  then the FIGcharacters  are  "over‐
  lapped".  This means that after kerning,  the first subcharacter
  of each FIGcharacter  is  removed.   (This  is  not  done  if  a
  FIGcharacter contains only one subcharacter.)

   However figlet behaves as documented in figfont.txt ("Layout Modes",
Smushing), ie. the first subcharacter of each FIGcharacter /replaces/
the previous FIGcharacter's subcharacter, if any:

  Universal smushing simply overrides the sub-character from the
  earlier FIGcharacter with the sub-character from the later
  FIGcharacter.  This produces an "overlapping" effect with some
  FIGfonts, wherin the latter FIGcharacter may appear to be "in
  front".

   The manpage should be reworded.

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

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

figlet recommends no packages.

-- no debconf information



Bug#397310: apache2: silently breaks website authentication

2006-11-06 Thread Sam Hocevar (Debian packages)
Package: apache2
Version: 2.2.3-3
Severity: grave
Justification: renders package unusable

   Upgrading apache2 this morning broke all websites using the "Require
valid-user" directive because the authz_user module was not (no longer?)
activated. No startup warning was issued, and only a cryptic "require
directives present and no Authoritative handler." message could be seen
in the logs upon access attempts.
-- System Information:
Debian Release: 4.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (50, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17.11
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages apache2 depends on:
ii  apache2-mpm-worker2.2.3-3High speed threaded model for Apac

apache2 recommends no packages.

-- no debconf information


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



Bug#396579: libgengameng-dev: .la file references libraries but -dev package does not depend on them

2006-11-01 Thread Sam Hocevar (Debian packages)
Package: libgengameng-dev
Version: 4.1-7
Severity: grave

   /usr/lib/libgengameng.la references the following libraries:

 /usr/lib/libSDL.la
 /usr/lib/libasound.la
 /usr/lib/libartsc.la
 /usr/lib/libgmodule-2.0.la
 -ldl
 /usr/lib/libgthread-2.0.la
 /usr/lib/libglib-2.0.la
 /usr/lib/libesd.la
 /usr/lib/libaudiofile.la
 -laudio
 -lXt
 -lXext
 -lvga
 /usr/lib/libaa.la
 -lncurses
 -lslang
 -lX11
 -lpthread

   However the libgengameng-dev package does not depend on these
libraries' development packages except libsdl1.2-dev and libsdl-image1.2-dev. 

   Moreover, it creates useless dependencies because it links binaries
with libaa, svgalib etc. but there are versions of libSDL that do not
require these libraries.

   I suggest simply dropping the /usr/lib/libgengameng.la file. Ultimately
the SDL team would like to get rid of /usr/lib/libSDL.la but reverse
dependencies need to be removed first.

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


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



Bug#396575: guichan: diff for 0.4.0-4.1 NMU

2006-11-01 Thread Sam Hocevar (Debian packages)
Package: guichan
Version: 0.4.0-4.1
Severity: normal
Tags: patch

   Attached is the diff for the 0.4.0-4.1 NMU I uploaded.

-- System Information:
Debian Release: 4.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (50, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17.11
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
diff -puriN guichan-0.4.0.debian/debian/changelog guichan-0.4.0/debian/changelog
--- guichan-0.4.0.debian/debian/changelog	2006-11-01 11:31:20 +0100
+++ guichan-0.4.0/debian/changelog	2006-11-01 12:24:50 +0100
@@ -1,3 +1,21 @@
+guichan (0.4.0-4.1) unstable; urgency=high
+
+  * Non-maintainer upload.
+  * debian/control:
++ Fix short descriptions.
++ Depend and build-depend on liballegro4.2-dev instead of liballegro-dev
+  (Closes: #379099).
++ Depend and build-depend on xlibmesa-gl-dev | libgl-dev instead of
+  xlibmesa-gl-dev (Closes: #356133).
++ Set policy to 3.7.2.
+  * src/guichan.cpp:
++ Fix a GCC 4.2 FTBFS issue (Closes: #361405).
+  * debian/rules:
++ Run dh_installdeb otherwise debhelper's maintainer scripts don't get
+  installed.
+
+ -- Sam Hocevar (Debian packages) <[EMAIL PROTECTED]>  Wed,  1 Nov 2006 11:31:52 +0100
+
 guichan (0.4.0-4) unstable; urgency=low
 
   * Initial upload to Debian archive (closes: #334290).
diff -puriN guichan-0.4.0.debian/debian/control guichan-0.4.0/debian/control
--- guichan-0.4.0.debian/debian/control	2006-11-01 11:31:20 +0100
+++ guichan-0.4.0/debian/control	2006-11-01 12:03:52 +0100
@@ -1,50 +1,44 @@
 Source: guichan
 Priority: optional
 Maintainer: FERREIRA Yohann <[EMAIL PROTECTED]>
-Build-Depends: debhelper (>= 4.0.0), liballegro-dev (>= 4.1), libsdl1.2-dev (>= 1.2.7), libsdl-image1.2-dev (>= 1.2.4-1), xlibmesa-gl-dev (>=4.3.0.dfsg.1-10)
-Standards-Version: 3.6.2
+Build-Depends: debhelper (>= 4.0.0), liballegro4.2-dev, libsdl1.2-dev (>= 1.2.7), libsdl-image1.2-dev (>= 1.2.4-1), xlibmesa-gl-dev | libgl-dev
+Standards-Version: 3.7.2
 Section: libs
 
 Package: libguichan0
 Section: libs
 Architecture: any
 Depends: ${shlibs:Depends}
-Description: Guichan is a small, efficient C++ GUI library
- designed for games. It comes with a standard set of widgets
- and can use several different objects
+Description: small, efficient C++ GUI library
+ Guichan is a small and efficient C++ GUI library designed for games. It
+ comes with a standard set of widgets and can use several different objects
  for displaying graphics and grabbing user input.
  .
- Guichan has a very abstract design which allows users
- of Guichan to use different objects for displaying
- of graphics and grabbing of user input.
- Guichan comes with (for now) 3 implemented 
- graphics objects (SDLGraphics, OpenGLGraphics 
- and AllegroGraphics) and 2 implemented input
- objects (SDLInput and AllegroInput),
+ Guichan has a very abstract design which allows users of Guichan to use
+ different objects for displaying of graphics and grabbing of user input.
+ Guichan comes with (for now) 3 implemented graphics objects (SDLGraphics,
+ OpenGLGraphics and AllegroGraphics) and 2 implemented input objects
+ (SDLInput and AllegroInput),
  .
- Guichan is designed in a very abstract way making it
- very easy to extend Guichan for your own needs.
- It is even very easy to implement new graphics
+ Guichan is designed in a very abstract way making it very easy to extend
+ Guichan for your own needs. It is even very easy to implement new graphics
  objects making Guichan as portable as ansi C++ is.
 
 Package: libguichan0-dev
 Section: libdevel
 Architecture: any
-Depends: libguichan0 (= ${Source-Version}), liballegro-dev (>= 4.1), libsdl1.2-dev (>= 1.2.7), libsdl-image1.2-dev (>= 1.2.4-1), xlibmesa-gl-dev (>=4.3.0.dfsg.1-10)
-Description: Guichan is a small, efficient C++ GUI library
- designed for games. It comes with a standard set of widgets
- and can use several different objects
+Depends: libguichan0 (= ${Source-Version}), liballegro4.2-dev, libsdl1.2-dev (>= 1.2.7), libsdl-image1.2-dev (>= 1.2.4-1), xlibmesa-gl-dev | libgl-dev
+Description: development files for Guichan
+ Guichan is a small and efficient C++ GUI library designed for games. It
+ comes with a standard set of widgets and can use several different objects
  for displaying graphics and grabbing user input.
  .
- Guichan has a very abstract design which allows users
- of Guichan to use different objects for displaying
- of graphics and grabbing of user input.
- Guichan comes with (for now) 3 implemented 
- graphics objects (SDLGraphics, OpenGLGraphics 
- and AllegroGraphics) and 2 implemented input
- objects (SDLInput and AllegroInput),
+ Guichan has a very abstract design which allows users of Guichan to use
+ different objects for displaying of graphics and grabbing of user input.
+ Guichan comes with (for now) 3 implemented graphics objects

Bug#395248: ngrep: insecure signal handler may cause crashes

2006-10-25 Thread Sam Hocevar (Debian packages)
Package: ngrep
Version: 1.44-2
Severity: important
Tags: security

   ngrep's signal handler, clean_exit(), calls free() and other cleanup
functions in a non-idempotent way. There is an easy way to trigger the
bug by running "ngrep . | cat", then pressing Ctrl-C. ngrep will get a
SIGINT signal from the shell, and a SIGPIPE signal from the dying cat
process, resulting in clean_exit() being called twice.

   Adding some code like this at the beginning of clean_exit() probably
fixes the issue:

static volatile int cleaned = 0;
if(cleaned++) exit(sig);

   This is probably a security issue, too, because the data ngrep is
handling comes from the network, but it does not seem to be easily
exploitable (famous last words, I know). Feel free to remove the
security tag if you disagree, but a process running as root dumping
core does not seem right to me in any case.

   Also the argument for clean_exit seems wrong to me, signal(2) says
int, not int32_t.

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

Versions of packages ngrep depends on:
ii  libc62.3.6.ds1-6 GNU C Library: Shared libraries
ii  libpcap0.8   0.9.5-1 System interface for user-level pa
ii  libpcre3 6.7-1   Perl 5 Compatible Regular Expressi

ngrep recommends no packages.

-- no debconf information


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



Bug#394282: gtkterm: ctrl-a quits application

2006-10-20 Thread Sam Hocevar (Debian packages)
Package: gtkterm
Version: 0.99.5-1+b1
Severity: important

   When doing Ctrl-A (for instance to go to the beginning of a line in
a shell session), GtkTerm quits.

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

Versions of packages gtkterm depends on:
ii  libatk1.0-0  1.12.3-1The ATK accessibility toolkit
ii  libc62.3.6.ds1-6 GNU C Library: Shared libraries
ii  libglib2.0-0 2.12.4-1The GLib library of C routines
ii  libgtk2.0-0  2.8.20-2The GTK+ graphical user interface 
ii  libpango1.0-01.14.5-1Layout and rendering of internatio
ii  libvte4  1:0.12.2-4  Terminal emulator widget for GTK+ 

gtkterm recommends no packages.

-- no debconf information


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



Bug#393747: libsdl-sge: ships an unmodifiable font

2006-10-17 Thread Sam Hocevar (Debian packages)
Package: libsdl-sge
Severity: serious
Justification: Policy 2.2.1

   The file font.ttf comes with a license that has the following clause:

 | - Restrictions on Alteration. You may not rename, edit or create any
 | derivative works from the SOFTWARE PRODUCT, other than subsetting
 | when embedding them in documents unless you have permission from
 | Larabie Fonts.

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


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



Bug#393743: imlib2: ships a shareware font and three suspicious fonts

2006-10-17 Thread Sam Hocevar (Debian packages)
Package: imlib2
Severity: serious
Justification: Policy 2.1.1

   The font cinema.ttf (Cinema Regular, by Richard William Mueller) does
not have an associated license. According to a website that has this font
for download (http://moorstation.org/typoasis/designers/mueller/index.htm)
Mueller's fonts are "shareware" and he requests $5.00 for registration.

   The fonts notepad.ttf (Notepad Regular) and grunge.ttf (Grunge
Regular) have unknown authors and licensing terms.

   The font morpheus.ttf, by Kiwi Media, comes with the request "If you
like this font, send me money. I ask $5 for this one." which is not
strictly speaking a "must do", but nothing grants the right to modify or
redistribute the font.

   The first font must clearly go. It would be wise to get rid of the
three others at the same time, and either replace or symlink them with
free fonts available in the various ttf-* packages.

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


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



Bug#393752: castle-combat: ships an unmodifiable font

2006-10-17 Thread Sam Hocevar (Debian packages)
Package: castle-combat
Version: 0.8.0-2
Severity: serious
Justification: Policy 2.2.1


   The font "colorba.ttf" (Colourbars Regular) by Ray Larabie comes
with the following non-free clause: "You may modify your copy or
copies of the SOFTWARE PRODUCT or any portion of it, provided that
you also meet all of these rules: [...] Do not alter in any way
alphanumeric characters (A-Z, a-z, 1-9) contained in the font." (from
font_read_me.html).

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

Versions of packages castle-combat depends on:
ii  python2.4.3-11   An interactive high-level object-o
ii  python-pygame 1.7.1release-4 SDL bindings for games development
ii  python-twisted2.4.0-2Event-based framework for internet
ii  ttf-bitstream-vera1.10-7 The Bitstream Vera family of free 

castle-combat recommends no packages.


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



Bug#393751: caudium: ships a non-free font

2006-10-17 Thread Sam Hocevar (Debian packages)
Package: caudium
Severity: serious
Justification: Policy 2.2.1

   The font fontrstc.ttf, "Font in a Red Suit (The Christmas Font)",
comes with no license. From another website that ships the same font
(http://www.themeworld.com/cgi-bin/redir.pl/fonts/fontreds.zip) one
can read the following licensing clause:

 | this font is provided free for personal or commercial use,
 | it can be redistributed however it may not be sold.

   This does not qualify for main.

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


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



Bug#393730: pyopengl: ships a Monotype / Microsoft font

2006-10-17 Thread Sam Hocevar (Debian packages)
Package: pyopengl
Severity: serious
Justification: Policy 2.2.1

   The file PyOpenGL-2.0.1.09/OpenGL/Demo/NeHe/lesson43/Test.ttf is
"Arial Black Italic" and is copyrighted (C) 1996 The Monotype Corporation
with no apparent permission to redistribute or modify the font.

   The font should be removed from the original tarball, and I suggest
replacing/symlinking it with one of the following similar-looking fonts:

  - Bitstream Vera Sans Italic, from the ttf-bitstream-vera package
(/usr/share/fonts/truetype/ttf-bitstream-vera/VeraIt.ttf)
  - FreeSans Oblique, from the ttf-freefont package
(/usr/share/fonts/truetype/freefont/FreeSansOblique.ttf)
  - DejaVu Sans Oblique, from the ttf-dejavu package
(/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans-Oblique.ttf)

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


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



Bug#393729: wftk: ships a shareware font

2006-10-17 Thread Sam Hocevar (Debian packages)
Package: wftk
Severity: serious
Justification: Policy 2.2.1

   The font wftk-0.7.1/demos/wf_opal.ttf is "Opulent Regular" and has
the string "Copyright  Rubicon Computer Labs Inc., 1993-96.". It comes
with no license.

   Looking on the web for this font, I found "Opulent Regular" at
the URL http://www.themeworld.com/cgi-bin/redir.pl/fonts/opulent.zip . It
is not the same font file (md5sums don't match), but it has the same
name, copyright notice and creation date. They also look the same using
a font viewer tool. It has, amongst others, the following license terms:

 | 1. Only complete copies of the Software may be distributed. All
 | component files must be kept together and may not be modified in any
 | way. The Distributor may add supplemental text files, including helpful
 | tips and advertising.

   This font henceforth does not seem to qualify for main.

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


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



Bug#393719: poker-network: ships neurpoli.ttf font without permission to modify

2006-10-17 Thread Sam Hocevar (Debian packages)
Package: poker-network
Severity: serious
Justification: Policy 2.2.1

   The file pokerclient2d/data/fonts/neurpoli.ttf says "This font is
freeware. Read attached text file for details." but there is no attached
text file. I found the README.TXT file through the author's website
(www.larabiefonts.com) and the EULA in it says:

 | - You may modify your copy or copies of the SOFTWARE PRODUCT or any
 | portion of it, provided that you also meet all of these rules:
 |
 | a) Do not alter in any way alphanumeric characters (A-Z, a-z, 1-9)
 | contained in the font. An exception is converting between formats,
 | here is allowed the nominal distortion that occurs during conversion
 | from second order to third order quadratic curves (TrueType to
 | Postscript) and vice versa.

   There are plenty of TTF fonts in the Debian archive that can be used
as a replacement for this one.

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


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



Bug#393717: wprint: package claims a modified Microsoft font is "public domain"

2006-10-17 Thread Sam Hocevar (Debian packages)
Package: wprint
Severity: serious
Justification: Policy 2.2.1

   wprint ships COURR_SE.TTF and an associated file, COURR_SE.TXT, which
claims "Courier SudEuro is a public domain ISO-Latin3 encoded subset of
Courier New, version 2. Design and data (C) by Monotype Corp. & Type
Solutions Inc."

   Apparently the "repackaging" of the font was put into the public
domain, but the font design and data are still copyrighted with no
apparent permission to redistribute or modify, which makes it unsuitable
for Debian.

   I suggest simply getting rid of the font, both in the package and in
the original tarball, and use a font package that is already in Debian
and has the Latin-3 subset instead (probably one of ttf-dejavu,
ttf-freefont or ttf-bitstream-vera).

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


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



Bug#393697: xmms-singit: vixar.ttf is a non-free Microsoft font

2006-10-17 Thread Sam Hocevar (Debian packages)
Package: xmms-singit
Severity: serious
Justification: Policy 2.2.1

   xmms-singit-0.1.28.orig/src/data/vixar.ttf has the text "Copyright (c)
1995 Microsoft Corporation. All rights reserved." in it and must be removed
from the original tarball.

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


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



Bug#393694: sdlperl: ships fonts with unclear licensing

2006-10-17 Thread Sam Hocevar (Debian packages)
Package: sdlperl
Severity: serious
Justification: Policy 2.2.1

   aircut.ttf and electrohar.ttf respectively say "Freeware typeface by
Ray Larabie 1996. Distribute freely" and "Ray Larabie - freeware -
[EMAIL PROTECTED]". None of them allow for modification.

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


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



Bug#393690: einstein: infriges on font authors' copyright

2006-10-17 Thread Sam Hocevar (Debian packages)
Package: einstein
Severity: serious
Justification: Policy 2.2.1

   The files laudcn2.ttf and nova.ttf have the words "Copyright",
"trademark", "All rights reserved" all over the place with no permission
to modify, or even redistribute.

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


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



Bug#393692: libphp-phplot: ships font with no author or license

2006-10-17 Thread Sam Hocevar (Debian packages)
Package: libphp-phplot
Severity: serious
Justification: Policy 2.2.1

   The font libphp-phplot-4.4.6+5.0rc1.orig/examples/benjamingothic.ttf
(Benjamin Gothic Regular) does not mention the author's name nor its
licensing terms. All it has is the string "FREEWARE", which needs
clarification because it usually means "free for non-commercial use",
and does not allow modification.

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


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



Bug#393679: xine-ui: ships non-free font cetus.ttf

2006-10-17 Thread Sam Hocevar (Debian packages)
Package: xine-ui
Version: 0.99.4+cvs20060813-1
Severity: serious
Justification: Policy 2.2.1

   xine-ui sources contain the same cetus.ttf font as xine-lib, with no
copyright or licensing terms.

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

Versions of packages xine-ui depends on:
ii  libc62.3.6.ds1-6 GNU C Library: Shared libraries
ii  libcomer 1.39+1.40-WIP-2006.10.02+dfsg-1 common error description library
ii  libcurl3 7.15.5-1Multi-protocol file transfer libra
ii  libfontc 2.4.1-2 generic font configuration library
ii  libgnutl 1.4.4-1 the GNU TLS library - runtime libr
ii  libice6  1:1.0.1-2   X11 Inter-Client Exchange library
ii  libidn11 0.6.5-1 GNU libidn library, implementation
ii  libkrb53 1.4.4-3 MIT Kerberos runtime libraries
ii  libncurs 5.5-4   Shared libraries for terminal hand
ii  libpng12 1.2.8rel-5.2PNG library - runtime
ii  libreadl 5.1-9   GNU readline and history libraries
ii  libslang 2.0.6-3 The S-Lang programming library - r
ii  libsm6   1:1.0.1-3   X11 Session Management library
ii  libx11-6 2:1.0.0-9   X11 client-side library
ii  libxext6 1:1.0.1-2   X11 miscellaneous extension librar
ii  libxft2  2.1.8.2-8   FreeType-based font drawing librar
ii  libxine1 1.1.2-6 the xine video/media player librar
ii  libxiner 1:1.0.1-4.1 X11 Xinerama extension library
ii  libxtst6 1:1.0.1-5   X11 Testing -- Resource extension 
ii  libxv1   1:1.0.2-1   X11 Video extension library
ii  libxxf86 1:1.0.1-2   X11 XFree86 video mode extension l
ii  zlib1g   1:1.2.3-13  compression library - runtime

Versions of packages xine-ui recommends:
ii  libaa11.4p5-30   ascii art library

-- no debconf information


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



Bug#393681: jffnms: ships Adobe Lucida Typewriter font

2006-10-17 Thread Sam Hocevar (Debian packages)
Package: jffnms
Severity: serious
Justification: Policy 2.2.1

   jffnms_0.8.3.orig.tar.gz ships the Adobe LucidaTypewriterRegular.ttf
font without authorization.

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


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



Bug#393677: xine-lib: ships non-free font cetus.ttf

2006-10-17 Thread Sam Hocevar (Debian packages)
Package: xine-lib
Severity: serious
Justification: Policy 2.2.1

   About the font cetus.ttf, the file README.cetus claims:

| The original cetus font was downloaded from www.fontfreak.com
| and is marked there as "Freeware by Gregfonts!"

   It has no real copyright attribution and "Freeware" is hardly a
permission to modify or redistribute.

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


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



Bug#393676: jabref: ships undistributable font

2006-10-17 Thread Sam Hocevar (Debian packages)
Package: jabref
Severity: serious
Justification: Policy 2.2.1

   At least one font, jabref-2.1/src/images/font/ASTROLYT.TTF, is not
redistributable (http://www.abstractfonts.com/font/1343). The two other
fonts in that directory are suspicious as well.

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


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



Bug#393683: phpgedview: ships Adobe Lucida Sans font

2006-10-17 Thread Sam Hocevar (Debian packages)
Package: phpgedview
Severity: serious
Justification: Policy 2.2.1

   phpgedview_4.0.1.orig.tar.gz ships LucidaSansRegular.ttf with no
copyright or licensing terms.

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


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



Bug#393660: php-imlib: ships Windows 95 Arial font

2006-10-17 Thread Sam Hocevar (Debian packages)
Package: php-imlib
Severity: serious
Justification: Policy 2.2.1

   Shipping php-imlib-0.5/examples/ARIAL.TTF infriges on Microsoft's
copyright.

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


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



Bug#392594: typo: "must not be not world-writable"

2006-10-12 Thread Sam Hocevar (Debian packages)
Package: debian-policy
Version: 3.7.2.2
Severity: minor

   6.1 says maintainer scripts "must not be not world-writable" instead
of (I guess) "must not be world-writable".

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

-- no debconf information


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



Bug#392589: problematic permissions for /usr/share/dejagnu

2006-10-12 Thread Sam Hocevar (Debian packages)
Package: dejagnu
Version: 1.4.4.cvs20060709-2.2
Severity: serious
Justification: Policy 10.9

   /usr/share/dejagnu is shipped with permissions 655 (drw-r-xr-x) instead
of 755 (drwxr-xr-x). This is problematic for instance when /usr/share is
NFS-mounted with the root user mapped to nobody, making it impossible to
browse /usr/share/dejagnu.

   Policy 10.9 recommends directories be mode 755.

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


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



Bug#392516: scsh-0.6: installation fails if /usr/local is mounted read-only

2006-10-11 Thread Sam Hocevar (Debian packages)
Package: scsh-0.6
Version: 0.6.7-1
Severity: serious
Justification: Policy 9.1.2

   Quoting policy 9.1.2:
 Since `/usr/local' can be mounted read-only from a remote server,
 these directories must be created and removed by the `postinst' and
 `prerm' maintainer scripts and not be included in the `.deb' archive.
 These scripts must not fail if either of these operations fail.

   However scsh-0.6's postinst script tries to remove directories from
/usr/local/lib/scsh/modules without checking for errors.

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


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



Bug#392515: prc-tools-utils: creating files in /usr/local violates FHS

2006-10-11 Thread Sam Hocevar (Debian packages)
Package: prc-tools-utils
Version: 2.3-1
Severity: serious
Justification: Policy 9.1.2

   The preinst script does the following under certain circumstances:

 mv /usr/share/prc-tools /usr/local/share/palmdev

   As mandated by the FHS, packages must not place any files in
`/usr/local', either by putting them in the file system archive to be
unpacked by `dpkg' or by manipulating them in their maintainer scripts.

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


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



Bug#392518: tex-common: fails to uninstall if /usr/local is mounted read-only

2006-10-11 Thread Sam Hocevar (Debian packages)
Package: tex-common
Version: 0.33
Severity: serious
Justification: Policy 9.1.2

   Quoting policy 9.1.2:
 Since `/usr/local' can be mounted read-only from a remote server,
 these directories must be created and removed by the `postinst' and
 `prerm' maintainer scripts and not be included in the `.deb' archive.
 These scripts must not fail if either of these operations fail.

   However postinst script tries to remove /usr/local/share/texmf/ls-R
without checking for errors.


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

Versions of packages tetex-base depends on:
ii  ucf   2.0015 Update Configuration File: preserv

Versions of packages tetex-bin depends on:
ii  debconf [debconf-2.0] 1.5.6  Debian configuration management sy
ii  debianutils   2.17.3 Miscellaneous utilities specific t
ii  dialog1.0-20060221-1 Displays user-friendly dialog boxe
ii  dpkg  1.13.22package maintenance system for Deb
ii  ed0.2-20 The classic unix line editor
ii  libc6 2.3.6.ds1-6GNU C Library: Shared libraries
ii  libfontconfig12.4.1-2generic font configuration library
ii  libfreetype6  2.2.1-5FreeType 2 font engine, shared lib
ii  libgcc1   1:4.1.1-16 GCC support library
ii  libice6   1:1.0.1-2  X11 Inter-Client Exchange library
ii  libjpeg62 6b-13  The Independent JPEG Group's JPEG 
ii  libkpathsea4  3.0-19 path search library for teTeX (run
ii  libpaper1 1.1.20 Library for handling paper charact
ii  libpng12-01.2.8rel-5.2   PNG library - runtime
ii  libpoppler0c2 0.4.5-4.1  PDF rendering library
ii  libsm61:1.0.1-3  X11 Session Management library
ii  libstdc++64.1.1-16   The GNU Standard C++ Library v3
ii  libt1-5   5.1.0-2Type 1 font rasterizer library - r
ii  libx11-6  2:1.0.0-9  X11 client-side library
ii  libxaw7   1:1.0.2-4  X11 Athena Widget library
ii  libxext6  1:1.0.1-2  X11 miscellaneous extension librar
ii  libxmu6   1:1.0.2-2  X11 miscellaneous utility library
ii  libxpm4   1:3.5.5-2  X11 pixmap library
ii  libxt61:1.0.2-2  X11 toolkit intrinsics library
ii  mime-support  3.37-1 MIME files 'mime.types' & 'mailcap
ii  perl  5.8.8-6.1  Larry Wall's Practical Extraction 
ii  sed   4.1.5-1The GNU sed stream editor
ii  tetex-base3.0-23 Basic TeX input files of teTeX
ii  ucf   2.0015 Update Configuration File: preserv
ii  whiptail  0.52.2-8   Displays user-friendly dialog boxe
ii  zlib1g1:1.2.3-13 compression library - runtime

Versions of packages tetex-extra depends on:
ii  tetex-base3.0-23 Basic TeX input files of teTeX
ii  tetex-bin 3.0-19 The teTeX programs
ii  ucf   2.0015 Update Configuration File: preserv


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



Bug#392513: hibernate: fails to uninstall if /usr/local is mounted read-only

2006-10-11 Thread Sam Hocevar (Debian packages)
Package: hibernate
Version: 1.94-1
Severity: serious
Justification: Policy 9.1.2

   Quoting policy 9.1.2:
 Since `/usr/local' can be mounted read-only from a remote server,
 these directories must be created and removed by the `postinst' and
 `prerm' maintainer scripts and not be included in the `.deb' archive.
 These scripts must not fail if either of these operations fail.

   hibernate's prerm script should add a || true construct to avoid
uninstallation errors.

-- Package-specific info:

--- configuration
==> /etc/hibernate/common.conf <==
Verbosity 0
LogFile /var/log/hibernate.log
LogVerbosity 1
Distribution debian
SaveClock restore-only
UnloadBlacklistedModules yes
LoadModules auto
SwitchToTextMode yes
==> /etc/hibernate/disk.conf <==
TryMethod ususpend-disk.conf
TryMethod sysfs-disk.conf
==> /etc/hibernate/hibernate.conf <==
TryMethod suspend2.conf
TryMethod disk.conf
TryMethod ram.conf
==> /etc/hibernate/ram.conf <==
TryMethod ususpend-ram.conf
TryMethod sysfs-ram.conf
EnableVbetool yes
VbetoolPost yes
==> /etc/hibernate/suspend2.conf <==
UseSuspend2 yes
Reboot no
EnableEscape yes
DefaultConsoleLevel 1
Compressor lzf
Encryptor none
FullSpeedCPU yes
Include common.conf
==> /etc/hibernate/sysfs-disk.conf <==
UseSysfsPowerState disk
Include common.conf
==> /etc/hibernate/sysfs-ram.conf <==
UseSysfsPowerState mem
Include common.conf
==> /etc/hibernate/ususpend-both.conf <==
USuspendMethod both
Include common.conf
==> /etc/hibernate/ususpend-disk.conf <==
USuspendMethod disk
Include common.conf
==> /etc/hibernate/ususpend-ram.conf <==
USuspendMethod ram
Include common.conf

--- /sys/power
==> /sys/power/disk <==
shutdown
==> /sys/power/image_size <==
524288000
==> /sys/power/resume <==
0:0
==> /sys/power/state <==
mem disk 

--- log
no hibernate.log file found.

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


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



Bug#392511: fontconfig: installation fails if /usr/local is mounted read-only

2006-10-11 Thread Sam Hocevar (Debian packages)
Package: fontconfig
Version: 2.4.1-2
Severity: serious
Justification: Policy 9.1.2

   Quoting policy 9.1.2:
 Since `/usr/local' can be mounted read-only from a remote server,
 these directories must be created and removed by the `postinst' and
 `prerm' maintainer scripts and not be included in the `.deb' archive.
 These scripts must not fail if either of these operations fail.

   However fontconfig's postinst script tries to remove files from
/usr/local/share/fonts without checking for errors.

   I am not even sure that removing these files is allowed at all.

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


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



Bug#392510: eclipse-rcp: creating files in /usr/local violates FHS

2006-10-11 Thread Sam Hocevar (Debian packages)
Package: eclipse-rcp
Version: 3.1.2-2
Severity: serious
Justification: Policy 9.1.2

   postinst creates the file /usr/local/lib/eclipse/.eclipseextension
which is not allowed by FHS:

   As mandated by the FHS, packages must not place any files in
`/usr/local', either by putting them in the file system archive to be
unpacked by `dpkg' or by manipulating them in their maintainer scripts.

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


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



Bug#392496: kpsk: Berkeley DB file in /usr/share violates FHS

2006-10-11 Thread Sam Hocevar (Debian packages)
Package: kpsk
Version: 1.0.1-4+b1
Severity: serious
Justification: Policy 9.1.1

   /usr/share/apps/kpsk/dxcc.db is platform-dependent and should thus be
moved to /usr/lib.

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


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



Bug#392508: console-common: installation fails if /usr/local is mounted read-only

2006-10-11 Thread Sam Hocevar (Debian packages)
Package: console-common
Version: 0.7.62
Severity: serious
Justification: Policy 9.1.2

Quoting policy 9.1.2:
 Since `/usr/local' can be mounted read-only from a remote server,
 these directories must be created and removed by the `postinst' and
 `prerm' maintainer scripts and not be included in the `.deb' archive.
 These scripts must not fail if either of these operations fail.

postinst is set -e and tries to move files in /usr/local without handling
errors.

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


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



Bug#392504: kbedic: creating files in /usr/local violates FHS

2006-10-11 Thread Sam Hocevar (Debian packages)
Package: kbedic
Version: 4.0-8
Severity: serious
Justification: Policy 9.1.2

   Packages are not allowed to create files in /usr/local, even through
their maintainer scripts. I suggest using /var/cache/bedic instead.

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


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



Bug#392509: mzscheme: installation fails if /usr/local is mounted read-only

2006-10-11 Thread Sam Hocevar (Debian packages)
Package: mzscheme
Version: 1:352-5
Severity: serious
Justification: Policy 9.1.2

Quoting policy 9.1.2:
 Since `/usr/local' can be mounted read-only from a remote server,
 these directories must be created and removed by the `postinst' and
 `prerm' maintainer scripts and not be included in the `.deb' archive.
 These scripts must not fail if either of these operations fail.

postinst is set -e and tries to create /usr/local/lib/plt/collects
without handling errors.

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


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



Bug#392506: caudium: installation fails if /usr/local is mounted read-only

2006-10-11 Thread Sam Hocevar (Debian packages)
Package: caudium
Version: 1.4.7-15
Severity: serious
Justification: Policy 9.1.2

Quoting policy 9.1.2:
 Since `/usr/local' can be mounted read-only from a remote server,
 these directories must be created and removed by the `postinst' and
 `prerm' maintainer scripts and not be included in the `.deb' archive.
 These scripts must not fail if either of these operations fail.

postinst is set +e and tries to install /usr/local/share/caudium/modules/
without handling errors.

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


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



Bug#392492: adonthell: byte-compiled python file in /usr/share violates FHS

2006-10-11 Thread Sam Hocevar (Debian packages)
Package: adonthell
Version: 0.3.4.cvs.20050813-2.3
Severity: serious
Justification: Policy 9.1.1

  /usr/share/games/adonthell/modules/*.pyc should be moved to /usr/lib.

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


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



Bug#392486: lyx-common: byte-compiled python file in /usr/share violates FHS

2006-10-11 Thread Sam Hocevar (Debian packages)
Package: lyx-common
Version: 1.4.2-4
Severity: serious
Justification: Policy 9.1.1

/usr/share/lyx/lyx2lyx/profiling.py[co] should be moved out of /usr/share
and out of the Arch:all package. Also, they're still using python 2.3
and should therefore be transitioned.

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


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



Bug#378820: python-elementtree: .pyc files violate FHS

2006-10-11 Thread Sam Hocevar (Debian packages)
Package: python-elementtree
Version: 1.2.6-9
Followup-For: Bug #378820

   Shipping .pyc files in /usr/share and/or in an Arch:all package is
a policy violation.

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


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



Bug#392484: serpento: byte-compiled python file in /usr/share violates FHS

2006-10-11 Thread Sam Hocevar (Debian packages)
Package: serpento
Version: 0.4.1-0.1
Severity: serious
Justification: Policy 9.1.1

/usr/share/games/vegastrike/modules/builtin/random.pyc should be moved out
of /usr/share. Doing the Python transition will automatically solve the
problem.

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


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



Bug#392489: zope-coreblog: byte-compiled python file in /usr/share violates FHS

2006-10-11 Thread Sam Hocevar (Debian packages)
Package: zope-coreblog
Version: 1.2.4-4
Severity: serious
Justification: Policy 9.1.1

   /usr/share/zope/Products/COREBlog/*.pyc should be moved out of /usr/share
and out of the Arch:all package.

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


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



Bug#392485: vegastrike-data: byte-compiled python file in /usr/share violates FHS

2006-10-11 Thread Sam Hocevar (Debian packages)
Package: vegastrike-data
Version: 0.4.3-2
Severity: serious
Justification: Policy 9.1.1

/usr/share/games/vegastrike/modules/builtin/random.pyc should be moved out
of /usr/share. Doing the Python transition will solve the problem, but
the .pyc files should also be moved out of the Arch:all package.

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


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



Bug#392491: mathomatic: byte-compiled python file in /usr/share violates FHS

2006-10-11 Thread Sam Hocevar (Debian packages)
Package: mathomatic
Version: 12.6.3-1
Severity: serious
Justification: Policy 9.1.1

   The file /usr/share/doc/mathomatic/fact/fact.pyc is platform-dependent
and must not be in /usr/share. It is probably not needed at all.

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


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



Bug#392488: lilypond-data: byte-compiled python file in /usr/share violates FHS

2006-10-11 Thread Sam Hocevar (Debian packages)
Package: lilypond-data
Version: 2.6.5-2
Severity: serious
Justification: Policy 9.1.1

   /usr/share/lilypond/2.6.5/python/*.pyc should be moved out of /usr/share
and out of the Arch:all package.

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


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



Bug#392487: python-eyed3: byte-compiled python file in /usr/share violates FHS

2006-10-11 Thread Sam Hocevar (Debian packages)
Package: python-eyed3
Version: 0.6.10-2
Severity: serious
Justification: Policy 9.1.1

/usr/share/python-support/python-eyed3/eyeD3/*.pyc should be moved out
of /usr/share and out of the Arch:all package. Also, they're still using
python 2.3 and should therefore be transitioned.

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


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



Bug#392311: rsjog: ships file in /usr/local

2006-10-11 Thread Sam Hocevar (Debian packages)
Package: rsjog
Version: 1.1-6
Severity: serious
Justification: Policy 9.1.2

   Package ships usr/local/lib/site_ruby/1.8/i486-linux/XTest.so which is
forbidden by the FHS.

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


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



Bug#392310: roundup: ships files in /usr/man

2006-10-11 Thread Sam Hocevar (Debian packages)
Package: roundup
Version: 1.2.1-2
Severity: serious
Justification: Policy 9.1.1, release policy 5(c)

  /usr/man is deprecated; please ship man pages to /usr/share/man.

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


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



Bug#389923: efibootmgr: patch for 0.5.3-1.1 NMU

2006-10-08 Thread Sam Hocevar (Debian packages)
Package: efibootmgr
Version: 0.5.3-1
Followup-For: Bug #389923

  Attached is the patch for the 0.5.3-1.1 NMU. It also fixes a bug in gpt.h.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (50, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17.11
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
diff -puriN efibootmgr-0.5.3.orig/debian/changelog efibootmgr-0.5.3/debian/changelog
--- efibootmgr-0.5.3.orig/debian/changelog	2006-10-08 14:46:16.0 +0200
+++ efibootmgr-0.5.3/debian/changelog	2006-10-08 14:46:06.0 +0200
@@ -1,3 +1,17 @@
+efibootmgr (0.5.3-1.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * src/include/gpt.h:
++ Fix GPT_HEADER_SIGNATURE declaration on 32bit architectures.
+  * src/lib/efi.c:
++ Remove questionable "hack to allow include of ethtool.h".
++ Include asm/types.h so that proper types are defined (Closes: #389923).
+  * debian/control:
++ Set policy to 3.7.2.
++ Uncapitalised short description.
+
+ -- Sam Hocevar (Debian packages) <[EMAIL PROTECTED]>  Sun,  8 Oct 2006 14:21:38 +0200
+
 efibootmgr (0.5.3-1) unstable; urgency=low
 
   * new upstream version, closes: #357884
diff -puriN efibootmgr-0.5.3.orig/debian/control efibootmgr-0.5.3/debian/control
--- efibootmgr-0.5.3.orig/debian/control	2006-10-08 14:46:16.0 +0200
+++ efibootmgr-0.5.3/debian/control	2006-10-08 14:46:06.0 +0200
@@ -3,7 +3,7 @@ Section: admin
 Priority: optional
 Maintainer: Bdale Garbee <[EMAIL PROTECTED]>
 Build-Depends: debhelper (>> 5), docbook-to-man, pciutils-dev
-Standards-Version: 3.6.2.2
+Standards-Version: 3.7.2
 
 Package: efibootmgr
 Architecture: amd64 i386 ia64
diff -puriN efibootmgr-0.5.3.orig/src/include/gpt.h efibootmgr-0.5.3/src/include/gpt.h
--- efibootmgr-0.5.3.orig/src/include/gpt.h	2002-04-03 01:00:01.0 +0200
+++ efibootmgr-0.5.3/src/include/gpt.h	2006-10-08 14:46:06.0 +0200
@@ -35,7 +35,7 @@
 #define GPT_BLOCK_SIZE 512
 
 
-#define GPT_HEADER_SIGNATURE 0x5452415020494645
+#define GPT_HEADER_SIGNATURE ((uint64_t)(0x5452415020494645LL))
 #define GPT_HEADER_REVISION_V1_02 0x00010200
 #define GPT_HEADER_REVISION_V1_00 0x0001
 #define GPT_HEADER_REVISION_V0_99 0x9900
diff -puriN efibootmgr-0.5.3.orig/src/lib/efi.c efibootmgr-0.5.3/src/lib/efi.c
--- efibootmgr-0.5.3.orig/src/lib/efi.c	2006-10-08 14:46:16.0 +0200
+++ efibootmgr-0.5.3/src/lib/efi.c	2006-10-08 14:46:06.0 +0200
@@ -18,10 +18,6 @@
 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-#define _FILE_OFFSET_BITS 64
-
-typedef unsigned long long u64;   /* hack to allow include of ethtool.h */
-
 #include 
 #include 
 #include 
@@ -39,6 +35,7 @@ typedef unsigned long long u64;   /*
 #include 
 #include 
 #include 
+#include 
 #include 
 #include "efi.h"
 #include "efichar.h"


Bug#391609: sgml-base: please don't make update-catalog --version exit with an error

2006-10-07 Thread Sam Hocevar (Debian packages)
Package: sgml-base
Version: 1.26
Severity: wishlist

   The update-catalog options --version and --help exit with an error code,
while nothing actually went wrong. This is annoying when trying to check
for the availability of tools using the "if binary --version >/dev/null"
shell construct.

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

Versions of packages sgml-base depends on:
ii  perl  5.8.8-6.1  Larry Wall's Practical Extraction 

sgml-base recommends no packages.

-- no debconf information


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



Bug#390876: xkb-data: typo in /usr/share/X11/xkb/symbols/fr: "apostophe"

2006-10-03 Thread Sam Hocevar (Debian packages)
Package: xkb-data
Version: 0.8-15
Severity: normal

   In /usr/share/X11/xkb/symbols/fr a line says "apostophe" instead of
"apostrohe".

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

-- no debconf information


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



Bug#390549: manage /usr/bin/figlet as an alternative

2006-10-01 Thread Sam Hocevar (Debian packages)
Package: figlet
Version: 2.2.1-4
Severity: wishlist
Tags: patch

   Hi! Following our email discussion, here is a patch to manage
/usr/bin/figlet with the alternatives system, to pave the way for
a free replacement.

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

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

figlet recommends no packages.

-- no debconf information
diff -puriN figlet-2.2.1.orig/debian/postinst figlet-2.2.1/debian/postinst
--- figlet-2.2.1.orig/debian/postinst   2006-10-01 17:43:52 +0200
+++ figlet-2.2.1/debian/postinst2006-10-01 20:37:46 +0200
@@ -1,6 +1,10 @@
 #!/bin/sh
 
-#DEBHELPER#
+if [ "$1" = configure ]; then
+  # Add an alternative for figlet
+  update-alternatives --install /usr/bin/figlet figlet \
+/usr/bin/figlet-figlet 30
+fi
 
 #DEBHELPER#
 
diff -puriN figlet-2.2.1.orig/debian/prerm figlet-2.2.1/debian/prerm
--- figlet-2.2.1.orig/debian/prerm  2006-10-01 17:43:52 +0200
+++ figlet-2.2.1/debian/prerm   2006-10-01 20:40:15 +0200
@@ -1,6 +1,9 @@
 #!/bin/sh
 
-#DEBHELPER#
+if [ "$1" = remove ]; then
+  # Remove alternative for figlet
+  update-alternatives --remove figlet /usr/bin/figlet-figlet
+fi
 
 #DEBHELPER#
 
diff -puriN figlet-2.2.1.orig/debian/rules figlet-2.2.1/debian/rules
--- figlet-2.2.1.orig/debian/rules  2006-10-01 17:43:52 +0200
+++ figlet-2.2.1/debian/rules   2006-10-01 20:37:02 +0200
@@ -45,6 +45,7 @@ install: build
$(MAKE) install DESTDIR=debian/figlet/usr/bin \
DEFAULTFONTDIR=debian/figlet/usr/share/figlet \
MANDIR=debian/trash
+   mv debian/figlet/usr/bin/figlet debian/figlet/usr/bin/figlet-figlet
$(installbin) -d debian/figlet/usr/share/emacs/site-lisp
$(installdoc) debian/figlet.el \
  debian/figlet/usr/share/emacs/site-lisp/figlet.el


Bug#390542: aterm: possibly buggy postinst

2006-10-01 Thread Sam Hocevar (Debian packages)
Package: aterm
Version: 1.0.0-3
Severity: minor

aterm's postinst scripts have the following code before the #DEBHELPER#
tag:

if [ "$1" != configure ]; then
exit 0
fi

   Of course debhelper currently doesn't add any code that would be
executed with "$1" != configure, but I suggest either moving #DEBHELPER#
to the top, or rewriting that "if" clause so that it does not exit,
just in case.

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

Versions of packages aterm depends on:
ii  libafterimage0  2.2.2-2  imaging library designed for After
ii  libc6   2.3.6.ds1-4  GNU C Library: Shared libraries
ii  libfreetype62.2.1-5  FreeType 2 font engine, shared lib
ii  libice6 1:1.0.1-2X11 Inter-Client Exchange library
ii  libjpeg62   6b-13The Independent JPEG Group's JPEG 
ii  libpng12-0  1.2.8rel-5.2 PNG library - runtime
ii  libsm6  1:1.0.1-3X11 Session Management library
ii  libtiff43.8.2-6  Tag Image File Format (TIFF) libra
ii  libungif4g  4.1.4-4  shared library for GIF images
ii  libx11-62:1.0.0-9X11 client-side library
ii  libxext61:1.0.1-2X11 miscellaneous extension librar
ii  zlib1g  1:1.2.3-13   compression library - runtime

aterm recommends no packages.

-- no debconf information


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



Bug#390037: ITP: toilet -- create ASCII and ANSI art from text

2006-09-28 Thread Sam Hocevar (Debian packages)
Package: wnpp
Severity: wishlist
Owner: "Sam Hocevar (Debian packages)" <[EMAIL PROTECTED]>


* Package name: toilet
  Version : SVN snapshot
  Upstream Author : Sam Hocevar <[EMAIL PROTECTED]>
* URL : http://libcaca.zoy.org/toilet.html
* License : WTFPL (BSD-like)
  Programming Lang: C
  Description : create ASCII and ANSI art from text

 TOIlet is a free FIGlet clone. It creates large characters out of ordinary
 screen characters in a way reminiscent of Usenet and ANSI signatures.
 .
 TOIlet has support for FIGlet ASCII fonts, but can use the full Unicode
 character set, colourize its output, and output in various formats such
 as IRC colour codes.

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


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



Bug#388030: missing svn_buildbot.py

2006-09-18 Thread Sam Hocevar (Debian packages)
Package: buildbot
Version: 0.7.4-1
Severity: wishlist

   Please ship the svn_buildbot.py script with buildbot.

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


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



Bug#388028: buildbot: init script silently fails

2006-09-18 Thread Sam Hocevar (Debian packages)
Package: buildbot
Version: 0.7.4-1
Severity: important

  The init script uses "su -c" to launch buildbot but the buildbot user
has "/bin/false" as a shell, which makes su silently die. Please either
use something like "su -s /bin/sh -c" instead, or at least have the init
script explain why it fails.

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


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



Bug#386744: xine-lib: broken libcaca check leads to unusable plugin

2006-09-09 Thread Sam Hocevar (Debian packages)
Package: xine-lib
Version: 1.1.2
Severity: normal

   xine-lib's m4/caca.m4 looks for caca-config in
$caca_config_prefix/bin/caca-config but $caca_config_prefix defaults
to "", which results in caca-config not being used, and the caca plugin
being incorrectly linked.

   debian/rules can call ./configure with --with-caca-prefix=/usr
to fix this.

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


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



Bug#386745: xine-lib: libcaca 1.x transition

2006-09-09 Thread Sam Hocevar (Debian packages)
Package: xine-lib
Version: 1.1.2
Severity: serious
Justification: no longer builds from source

   Due to updated libcaca packages in unstable, xine-lib no longer builds.

   This can be easily fixed in two steps:

  * build-depend on libcaca-dev (>= 0.99.beta4)

  * add the following three lines after "#include " in the
file ./src/video_out/video_out_caca.c :

#ifdef CACA_API_VERSION_1
#   include 
#endif

   Thanks in advance! (also, look at my other bug against xine-lib for
another fix that should be applied for the plugin to really work)

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


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



Bug#384322: libtool: wrong test semantics make relinking fail on empty $libdir

2006-08-23 Thread Sam Hocevar (Debian packages)
Package: libtool
Version: 1.6-0+1.5a-4
Severity: normal

   Relinking fails when $libdir is detected as being empty. This is due
to the following code:

# Determine the prefix the user has applied to our future dir.
inst_prefix_dir=`$echo "$destdir" | $SED "s%$libdir\$%%"`
# [...]
if test "$inst_prefix_dir" = "$destdir"; then
$echo "$modename: error: cannot install \`$file' to a directory not 
ending in $libdir" 1>&2

   The correct way to check that "$destdir" ends with "$libdir" is
the following:

if test "$inst_prefix_dir$libdir" != "$destdir"; then

   Simple patch attached.

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

Versions of packages libtool depends on:
ii  autotools-dev20060702.1  Update infrastructure for config.{
ii  cpp  4:4.1.1-6   The GNU C preprocessor (cpp)
ii  file 4.17-3  Determines file type using "magic"
ii  gcc [c-compiler] 4:4.1.1-6   The GNU C compiler
ii  gcc-3.3 [c-compiler] 1:3.3.6-13  The GNU C compiler
ii  gcc-3.4 [c-compiler] 3.4.6-4 The GNU C compiler
ii  gcc-4.0 [c-compiler] 4.0.3-6 The GNU C compiler
ii  gcc-4.1 [c-compiler] 4.1.1-11The GNU C compiler
ii  libc6-dev [libc-dev] 2.3.6.ds1-2 GNU C Library: Development Librari

Versions of packages libtool recommends:
pn  libltdl3-dev   (no description available)

-- no debconf information
--- /usr/share/libtool/ltmain.sh2006-03-11 19:49:04.0 +0100
+++ ltmain-fixed.sh 2006-08-23 15:37:19.0 +0200
@@ -5927,7 +5927,7 @@
  # At present, this check doesn't affect windows .dll's that
  # are installed into $libdir/../bin (currently, that works fine)
  # but it's something to keep an eye on.
- if test "$inst_prefix_dir" = "$destdir"; then
+ if test "$inst_prefix_dir$libdir" != "$destdir"; then
$echo "$modename: error: cannot install \`$file' to a directory not 
ending in $libdir" 1>&2
exit $EXIT_FAILURE
  fi


Bug#379099: libguichan0-dev: please update to Allegro 4.2

2006-07-21 Thread Sam Hocevar (Debian packages)
Package: libguichan0-dev
Version: 0.4.0-4
Severity: normal

   Hi! guichan should be updated so that it build-depends on
liballegro4.2-dev and its -dev package depends on liballegro4.2-dev
(instead of 4.1). A simple rebuild is then enough.

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


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



Bug#369413: typo: package remains in and "Installed' state

2006-05-29 Thread Sam Hocevar (Debian packages)
Package: debian-policy
Version: 3.7.2.0
Severity: minor

   In 6.8, policy says "If this fails, the package remains in and
"Installed' state".

  - "and" should be "an"
  - the quotes around "Installed" should be made consistent.

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

-- no debconf information


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



Bug#368758: ITP: sdl.net -- .NET bindings for the SDL gaming library

2006-05-24 Thread Sam Hocevar (Debian packages)
Package: wnpp
Severity: wishlist
Owner: "Sam Hocevar (Debian packages)" <[EMAIL PROTECTED]>


* Package name: sdl.net
  Version : 4.0.4
  Upstream Author : David "jendave" Hudson <[EMAIL PROTECTED]> and others
* URL : http://cs-sdl.sourceforge.net/index.php/Main_Page
* License : LGPL
  Programming Lang: C
  Description : .NET bindings for the SDL gaming library

SDL.NET is a set of object-oriented CLS-compliant .NET bindings for the SDL
gaming library and provides high-level access to audio, keyboard, mouse,
joystick, TrueType fonts, various image formats, sound mixing, MPEG-1 movies,
2D video framebuffer and 3D hardware via OpenGL.

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


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



Bug#368625: ITP: alleggl -- OpenGL extension for the Allegro gaming library

2006-05-23 Thread Sam Hocevar (Debian packages)
Package: wnpp
Severity: wishlist
Owner: "Sam Hocevar (Debian packages)" <[EMAIL PROTECTED]>


* Package name: alleggl
  Version : 0.4-RC4
  Upstream Author : Bertrand Coconnier, Elias Pschernig, George Foot,
Robert J Ohannessian
* URL : http://allegrogl.sourceforge.net/
* License : Unclear (no license in source code, SF page says "GPL,
zlib/libpng License"). Authors contacted for
clarification.
  Programming Lang: C
  Description : OpenGL extension for the Allegro gaming library

 This library adds accelerated 3D support to the Allegro library using
 OpenGL.
 .
 Allegro is a cross-platform library intended for use in computer
 games and other types of multimedia programming. It is used by many
 DOS games and can be used to port them easily to Linux.

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


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



Bug#368275: ITP: overgod -- bi-directional scrolling arcade game

2006-05-20 Thread Sam Hocevar (Debian packages)
Package: wnpp
Severity: wishlist
Owner: "Sam Hocevar (Debian packages)" <[EMAIL PROTECTED]>


* Package name: overgod
  Version : 1.0
  Upstream Author : Linley Henzell <[EMAIL PROTECTED]>
* URL : https://sourceforge.net/projects/overgod/
* License : GPL
  Programming Lang: C
  Description : bi-directional scrolling arcade game

 Overgod is an arcade game with bi-directional scrolling where you need to
 destroy all enemies in an area in a given time. The game is a mix of the
 classic arcade games Asteroids and Thrust with a lot of additional features.
 .
 Overgod can also be played in two-player duel or cooperative modes, or in
 a special "Time Attack" version where enemies endlessly appear.

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


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



Bug#365473: wpasupplicant: configuration file format could be less strict

2006-04-30 Thread Sam Hocevar (Debian packages)
Package: wpasupplicant
Version: 0.4.8-3
Severity: wishlist

   Maybe the configuration parser could be less strict. The following
for instance is invalid, just because of the spaces around "=":

network = {
ssid = "mynetwork"
psk = "wootwoot"
}

   Having spaces around "=" improves readability and I do not think it
would be hard supporting that.

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

Versions of packages wpasupplicant depends on:
ii  libc6 2.3.6-7GNU C Library: Shared libraries
ii  libncurses5   5.5-1.1Shared libraries for terminal hand
ii  libreadline5  5.1-7  GNU readline and history libraries
ii  libssl0.9.8   0.9.8a-8   SSL shared libraries

wpasupplicant recommends no packages.

-- no debconf information


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



Bug#363569: libvformat1: depends on debhelper

2006-04-19 Thread Sam Hocevar (Debian packages)
Package: libvformat1
Version: 1.13-3
Severity: normal

   I see no reason for libvformat1 to depend on debhelper, and as
debhelper pulls a lot of dependencies with it, the dependency should
probably go.

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


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



Bug#362639: RM: allegro4 -- obsoleted by allegro4.1 and allegro4.2

2006-04-14 Thread Sam Hocevar (Debian packages)
Package: ftp.debian.org
Severity: normal

   Nothing depends on allegro4 any longer, and this package is obsoleted
by allegro4.1 (which I am trying to get rid of, too) and allegro4.2. It
can safely go away.

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


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



Bug#354547: quilt: spurious ccache suggests

2006-02-27 Thread Sam Hocevar (Debian packages)
Package: quilt
Version: 0.42-2
Severity: normal

   quilt suggests ccache, yet does not seem to be related to it in any
way. It should probably go.

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


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



Bug#340971: zonecheck: /usr/bin/ruby is not installed

2005-11-27 Thread Sam Hocevar (Debian packages)
Package: zonecheck
Version: 2.0.4-4
Severity: grave
Justification: renders package unusable


% zonecheck
zsh: command not found: zonecheck
%

   /usr/bin/zonecheck uses /usr/bin/ruby but I have /usr/bin/ruby2, so
it either misses a dependency or needs to update its #! line.

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

Versions of packages zonecheck depends on:
ii  iputils-ping3:20020927-3 Tools to test the reachability of 
ii  ruby1.8.2-1  An interpreter of object-oriented 

zonecheck recommends no packages.

-- no debconf information


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



Bug#337083: ITP: bse-alsa -- ALSA plugin for BEAST

2005-11-02 Thread Sam Hocevar (Debian packages)
Package: wnpp
Severity: wishlist
Owner: "Sam Hocevar (Debian packages)" <[EMAIL PROTECTED]>


* Package name: bse-alsa
  Version : 0.6.6
  Upstream Author : Tim Janik <[EMAIL PROTECTED]>
* URL : http://beast.gtk.org/beast-ftp/v0.6/
* License : LGPL
  Description : ALSA plugin for BEAST

 BEAST/BSE is a plugin-based graphical system where you can link objects
 to each other and generate sound.
 .
 This package contains a plugin for BEAST that uses ALSA (the Advanced
 Linux Sound Architecture) to output sound.
-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.14
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)


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



Bug#334066: apachetop: support for more than 50 files

2005-10-15 Thread Sam Hocevar (Debian packages)
Package: apachetop
Severity: normal
Tags: patch

   Hello. The attached patch adds support for more than 50 files.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (50, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13-mm1
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
diff -puriN apachetop-0.12.5/src/apachetop.cc apachetop-0.12.5-new/src/apachetop.cc
--- apachetop-0.12.5/src/apachetop.cc	2005-10-12 17:03:04 +0200
+++ apachetop-0.12.5-new/src/apachetop.cc	2005-10-12 17:08:35 +0200
@@ -40,6 +40,7 @@ struct input *in;
 WINDOW *win;
 
 #if (POLLING_METHOD == USING_KQUEUE)
+struct kevent *ev;
 int kq;
 #elif (POLLING_METHOD == USING_FAM)
 /* master fd for talking to FAM */
@@ -58,7 +59,7 @@ int main(int argc, char *argv[])
 #if (POLLING_METHOD == USING_KQUEUE)
 	/* we have and are using kqueue */
 	struct timespec stv;
-	struct kevent *ev, *evptr;
+	struct kevent *evptr;
 #elif (POLLING_METHOD == USING_FAM)
 	/* we have and are using FAM */
 	int fam_fd;
@@ -107,8 +108,7 @@ int main(int argc, char *argv[])
 	cf.hostfilter = new Filter();
 	/* }}} */
 
-	/* support MAX_INPUT_FILES input files */
-	in = (struct input *)calloc(MAX_INPUT_FILES, sizeof(struct input));
+	in = NULL;
 
 #if (POLLING_METHOD == USING_KQUEUE) /* then create kqueue {{{ */
 	if ((kq = kqueue()) < 0)
@@ -118,7 +118,7 @@ int main(int argc, char *argv[])
 	}
 
 	/* space in ev for all inputs */
-	ev = (struct kevent *)calloc(MAX_INPUT_FILES, sizeof(struct kevent));
+	ev = NULL;
 /* }}} */
 #elif (POLLING_METHOD == USING_FAM) /* open FAM connection */
 	if (FAMOpen(&fc))
@@ -312,7 +312,7 @@ int main(int argc, char *argv[])
 		}
 
 		/* if we have any input files waiting to be opened, try to */
-		for (x = 0 ; x < MAX_INPUT_FILES ; ++x)
+		for (x = 0 ; x < cf.input_count ; ++x)
 		{
 			/* for each entry in input .. */
 			curfile = &in[x];
@@ -347,7 +347,7 @@ int main(int argc, char *argv[])
 #if (POLLING_METHOD == USING_KQUEUE) /* {{{ */
 		/* every 1/10th of a second */
 		stv.tv_sec = 0; stv.tv_nsec = 1000;
-		x = kevent(kq, NULL, 0, ev, MAX_INPUT_FILES, &stv);
+		x = kevent(kq, NULL, 0, ev, cf.input_count, &stv);
 //		if (x == 0) continue; /* timeout, nothing happened */
 		if (x < 0) break; /* error */
 
@@ -407,7 +407,7 @@ int main(int argc, char *argv[])
 		select(NULL, NULL, NULL, NULL, &tv);
 
 		/* check every file */
-		for (x = 0 ; x < MAX_INPUT_FILES ; ++x)
+		for (x = 0 ; x < cf.input_count ; ++x)
 		{
 			curfile = &in[x];
 			fd = curfile->fd;
@@ -504,7 +504,7 @@ int main(int argc, char *argv[])
 			} /* while ((nl - buf) < buflen && nl) */
 		} /* for(evptr = ev ; evptr->filter ; evptr++) */
 		  /* while (FAMPending(&fc) == 1 && FAMNextEvent(&fc, &fe)) */
-		  /* for (i = 0 ; i < MAX_INPUT_FILES ; ++i) */
+		  /* for (i = 0 ; i < cf.input_count ; ++i) */
 
 		/* check for keypresses */
 		if ((ch = wgetch(win)) != ERR)
@@ -996,10 +996,16 @@ int new_file(char *filename, bool do_see
 
 	if (input_element == -1)
 	{
-		/* new open, make sure we have room in our arrays */
-		if (cf.input_count == MAX_INPUT_FILES)
+		/* Realloc structure */
+		in = (struct input *)realloc(in, (cf.input_count + 1) * sizeof(struct input));
+#if (POLLING_METHOD == USING_KQUEUE)
+		ev = (struct kevent *)realloc(ev, (cf.input_count + 1) * sizeof(struct kevent));
+		if (!ev || !in)
+#else
+		if (!in)
+#endif
 		{
-			DIE_N("Only 50 files are supported at the moment");
+			DIE_N("Could not allocate memory");
 		}
 
 		/* add it on at the end */
diff -puriN apachetop-0.12.5/src/apachetop.h apachetop-0.12.5-new/src/apachetop.h
--- apachetop-0.12.5/src/apachetop.h	2005-10-12 17:03:04 +0200
+++ apachetop-0.12.5-new/src/apachetop.h	2005-10-12 17:03:49 +0200
@@ -261,8 +261,6 @@ struct gstat {
 #define COLS_RESERVED 25
 #define LINES_RESERVED 7
 
-#define MAX_INPUT_FILES 50
-
 int recordstats(struct logbits l);
 
 int read_key(int ch);


Bug#331549: please rebuild stax

2005-10-03 Thread Sam Hocevar (Debian packages)
Package: stax
Version: 1.0-11
Severity: normal

   Hello. Stax is one of the two packages still to depend on the old
liballegro4a package. Can you please rebuild it so that it links with
the newer liballegro4.1 library? I briefly tested the game and could
see no problem with the new library version.

   Also, c++-compiler is listed in the build dependencies, but it does
not seem to be needed at all.

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

Versions of packages stax depends on:
ii  liballegro4a  2:4.0.3-14 portable library for cross-platfor
ii  libc6 2.3.5-6GNU C Library: Shared libraries an

stax recommends no packages.

-- no debconf information


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



Bug#331314: mpeg2dec: incomplete copyright file

2005-10-02 Thread Sam Hocevar (Debian packages)
Package: mpeg2dec
Severity: normal
Tags: patch

   The copyright file does not list all copyright holders. Attached
patch should improve it quite a bit.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (50, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13-mm1
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
diff -puriN mpeg2dec-0.4.0/debian/copyright mpeg2dec-0.4.0-new/debian/copyright
--- mpeg2dec-0.4.0/debian/copyright 2005-10-01 11:26:53.0 +0200
+++ mpeg2dec-0.4.0-new/debian/copyright 2005-10-02 23:51:06.0 +0200
@@ -4,19 +4,59 @@ Thu, 28 Jun 2001 20:08:29 -0500.
 It was downloaded from http://www.linuxvideo.org/mpeg2dec/
 Current home is now http://libmpeg2.sourceforge.net/
 
+Mailing list information:
+
+http://libmpeg2.sourceforge.net/lists.html
+
 Upstream Authors:
+
 Aaron Holtzman <[EMAIL PROTECTED]>
 Michel Lespinasse <[EMAIL PROTECTED]>
-other contributors listed in
-http://libmpeg2.sourceforge.net/authors.html
 
-Mailing list information:
+Bruno Barreyra <[EMAIL PROTECTED]> - build fixes
+Gildas Bazin <[EMAIL PROTECTED]> - mingw32 port
+Alexander W. Chin <[EMAIL PROTECTED]> - progressive_seq fix
+Stephen Crowley <[EMAIL PROTECTED]> - build fixes
+Didier Gautheron <[EMAIL PROTECTED]> - bug fixes
+Ryan C. Gordon <[EMAIL PROTECTED]> - SDL support
+Peter Gubanov <[EMAIL PROTECTED]> - MMX IDCT scheduling
+Håkan Hjort <[EMAIL PROTECTED]> - Solaris fixes, mlib code
+Nicolas Joly <[EMAIL PROTECTED]> - assorted bug fixes
+Gerd Knorr <[EMAIL PROTECTED]> - Xv support
+David I. Lehn <[EMAIL PROTECTED]> - motion_comp mmx code
+Olie Lho <[EMAIL PROTECTED]> - MMX yuv2rgb routine
+David S. Miller  - sparc VIS optimizations
+Rick Niles <[EMAIL PROTECTED]> - build fixes
+Real Ouellet <[EMAIL PROTECTED]> - g200 fixes
+Bajusz Peter <[EMAIL PROTECTED]> - motion comp fixes
+Franck Sicard <[EMAIL PROTECTED]> - x11 fixes
+Brion Vibber <[EMAIL PROTECTED]> - x11 fixes
+Martin Vogt <[EMAIL PROTECTED]> - reentrancy fixes
+Fredrik Vraalsen <[EMAIL PROTECTED]> - general hackage and stuff
 
-http://libmpeg2.sourceforge.net/lists.html
+mpeg2dec is Copyright (C) 1999-2000 Aaron Holtzman <[EMAIL PROTECTED]>
+Copyright (C) 2000-2003 Michel Lespinasse <[EMAIL PROTECTED]>
+Copyright (C) 2000-2003 Silicon Integrated System Corp.
+Copyright (C) 2000-2003 Ryan C. Gordon <[EMAIL PROTECTED]>
+Copyright (C) 2000-2003 Dominik Schnitzer <[EMAIL PROTECTED]>
+Copyright (C) 2003  Regis Duchesne <[EMAIL PROTECTED]>
+Copyright (C) 2003  David S. Miller 
+Copyright (C) 2003  Peter Gubanov <[EMAIL PROTECTED]>
+
+This program is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2, or (at your option)
+any later version.
+
+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 GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program; if not, write to the Free Software
+Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 
-Copyright:
+On Debian systems, the complete text of the GNU General Public License can
+be found in `/usr/share/common-licenses/GPL'.
 
-You are free to distribute this software under the terms of
-the GNU General Public License.
-On Debian systems, the complete text of the GNU General
-Public License can be found in /usr/share/common-licenses/GPL file.


Bug#330219: makeinfo: segfaults with --xml and -D

2005-09-26 Thread Sam Hocevar (Debian packages)
Package: texinfo
Version: 4.7-2.2
Severity: important

   The following commandline causes makeinfo to crash:

% makeinfo --xml -Dblahblah /dev/null
zsh: 3378 segmentation fault  makeinfo --xml -Dblahblah /dev/null
%

   Here is the gdb backtrace in debug mode:

Program received signal SIGSEGV, Segmentation fault.
0x0806ace8 in xstrdup (string=0x0) at xstrdup.c:32
32return strcpy (xmalloc (strlen (string) + 1), string);

#0  0x0806ace8 in xstrdup (string=0x0) at xstrdup.c:32
#1  0x0805f3d1 in execute_string (format=0x807061e "%s") at makeinfo.c:3927
#2  0x0805e9b0 in set (name=0xbfe377ff "/dev/null", value=0x806e94b "")
at makeinfo.c:3458
#3  0x0805ee89 in handle_variable_internal (action=1, name=0xbfe377ff 
"/dev/null")
at makeinfo.c:3710
#4  0x08059abe in main (argc=4, argv=0xbfe35f14) at makeinfo.c:605

   Line 3927 seems very strange to me, since input_filename is also
left in an invalid state after the function returns.

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

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

texinfo recommends no packages.

-- no debconf information


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



Bug#330189: ITP: texitheque -- small documentation utility based on texinfo

2005-09-26 Thread Sam Hocevar (Debian packages)
Package: wnpp
Severity: wishlist
Owner: "Sam Hocevar (Debian packages)" <[EMAIL PROTECTED]>


* Package name : texitheque
  Version  : CVS HEAD
  Upstream Authors : Alper Ersoy <[EMAIL PROTECTED]>
 Tim Janik <[EMAIL PROTECTED]>
* URL  : http://cvs.freedesktop.org/texitheque/texitheque/
* License  : GPL
  Description  : small documentation utility based on texinfo

 Texitheque is a small documentation utility package based on texinfo. It
 contains utilities to extract/construct texinfo source from files such as
 ChangeLogs or C source function comments and utilities to produce various
 target formats.

 Texitheque supports inlined function documentation (C comments starting
 with /**), real documents (texinfo), website news input (texinfo),
 ChangeLogs, website navigation input (XML) and generic cross references.
 It can generate manpages, full websites with HTML pages, tag-span marked
 up XML, PostScript and PDF.

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


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