Bug#678239: request-tracker4: update-rt-siteconfig-4 errorious regex fails install

2012-06-20 Thread Carl Fürstenberg
Package: request-tracker4
Version: 4.0.6-2
Severity: serious
Tags: patch
Justification: 3

The regex for the "find" command in update-rt-siteconfig-4 is slightly
broken, and results in a fatal error during install:
 find: Invalid range end

Fix is simple, thus attaching patch.

-- System Information:
Debian Release: wheezy/sid
  APT prefers precise-updates
  APT policy: (500, 'precise-updates'), (500, 'precise-security'), (500, 
'precise-proposed'), (500, 'precise'), (100, 'precise-backports')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-24-generic (SMP w/4 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
>From 780c6b06156dce6d6643e8807ea8d74dc277f204 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Carl=20F=C3=BCrstenberg?= 
Date: Wed, 20 Jun 2012 09:58:25 +0200
Subject: [PATCH] Fix broken regex character range that results in failed
 installs

---
 debian/scripts/update-rt-siteconfig |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/scripts/update-rt-siteconfig b/debian/scripts/update-rt-siteconfig
index 5a7e50b..7d8898b 100644
--- a/debian/scripts/update-rt-siteconfig
+++ b/debian/scripts/update-rt-siteconfig
@@ -34,7 +34,7 @@ EOF
 
 # ignore *.ucf-old and the like
 find "$SITE_CONFIG_INCLUDE_DIR" -type f \
--iregex "^$SITE_CONFIG_INCLUDE_DIR/[a-z0-9][a-z0-9-_]+$" | sort | \
+-iregex "^$SITE_CONFIG_INCLUDE_DIR/[a-z0-9][a-z0-9_-]+$" | sort | \
 while read file 
 do
 echo "# start $file" >> $tfile
-- 
1.7.9.5



Bug#639997: dpkg fails if PATH is not set

2011-09-01 Thread Carl Fürstenberg
Package: dpkg
Version: 1.16.0.3
Severity: serious
Justification: Policy 9.9

Trying to run dpkg under a clean environment fails:

# env -i dpkg -i 3dchess_0.8.1-17_amd64.deb
dpkg: error: error: PATH is not set.

Policy 9.9 says "A program must not depend on environment variables to
get reasonable defaults.". I do not feel a double error is a
"reasonable default"

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 3.0.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages dpkg depends on:
ii  coreutils   8.5-1GNU core utilities
ii  libbz2-1.0  1.0.5-6  high-quality block-sorting file co
ii  libc6   2.13-10  Embedded GNU C Library: Shared lib
ii  libselinux1 2.0.98-1.1   SELinux runtime shared libraries
ii  xz-utils5.0.0-2  XZ-format compression utilities
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

dpkg recommends no packages.

Versions of packages dpkg suggests:
ii  apt   0.8.15.5   Advanced front-end for dpkg

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#628952: minidlna: Possible unknown copyright status of hardcoded image blobs in source code

2011-06-08 Thread Carl Fürstenberg
On Mon, Jun 6, 2011 at 19:20, Bernhard R. Link  wrote:
> * Benoīt Knecht  [110606 11:57]:
>> I had a look at these, and I'm pretty sure they're not eligible for
>> copyright protection (a white 'N' on a blue background is not nearly
>> creative enough). So I don't think there's a problem there; the license
>> header should just be corrected to state that there's no copyright on
>> this particular logo. What do you think?
>
> Removing the copyright notice is extremly dangerous. It's the only thing
> universally forbidden even before the copyright-mafia successfully lobbied
> for more in many countries.
>
> So ideally the copyright holder would have to do it (or at least the one
> having written the copyright notice), but then it is easier to just add
> some permissive license to it.
>
> Also note that the "not eligible for copyright" is a very hard question
> if looking at more than one country. Ironically the most problematic
> countries might be those that have historically high requirements on
> creativity for work to be protected (as the general "needs creativity"
> rule has to be lifted for software in order to have any commercial
> software to be eligible)
>
>        Bernhard R. Link
>

I've have had an discussion with upstream Justin Maggard (added as
cc), and following is what his legal department says:

>Here's what I got from the legal dept:
>
>"We consider the NETGEAR image to be copyrighted property of NETGEAR.
>The image's binary blob does not contain any GPL code and is not
>licensed under any software license.  Permission has been granted for
>the free distribution of these images with the MiniDLNA software
>application."
>
>Just thinking about this stuff makes my head hurt. :)  If it makes you
>more comfortable, feel free to rip out the NETGEAR images from your
>tree.  Regarding the Tux image, it's hard for me to image it being an
>issue, since the Linux kernel has been embedding it for years.
>
>-Justin

-- 
Carl Fürstenberg



--
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#628952: minidlna: Possible unknown copyright status of hardcoded image blobs in source code

2011-06-02 Thread Carl Fürstenberg
Package: minidlna
Severity: serious
Justification: Policy 2.1

the source code file icons.c includes binary blobs detailing the NetGear
logo and the Tux logo.

While the source code is licensed under GPL2, the file in question only
states following:

 * Penguin images are the creation of Larry Ewing (lew...@isc.tamu.edu) using 
The GIMP.
 * NETGEAR images Copyright (c) 2008- NETGEAR, Inc. All Rights Reserved.

It doesn't explicit state which licenses these binary blobs are under
(there are four of each, two png and two jpeg). Only the tux image is
used in the binary package.

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.38-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#587526: cdebootstrap: Fail to execute properly if rebuild

2010-06-29 Thread Carl Fürstenberg
Subject: cdebootstrap: Fail to execute properly if rebuild
Package: cdebootstrap
Version: 0.5.5
Justification: renders package unusable
Severity: grave

If source is rebuild, failure will occur when trying to retrieve release:

---
# cdebootstrap --debug --verbose squeeze dir
D: Init suite squeeze
D: Using keyring /usr/share/keyrings/debian-archive-keyring.gpg
P: Retrieving Release
D: Execute "wget -q -O
/root/tmp/dir/var/cache/bootstrap/_dists_._Release
http://ftp.debian.org/debian/dists/squeeze/Release";
---

Verified on armel and amd64 under squeeze

-- System Information:
Debian Release: squeeze/sid
Architecture: armel (armv5tel)

Kernel: Linux 2.6.32-3-kirkwood
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash

Versions of packages cdebootstrap depends on:
ii  debian-archive-keyring2009.01.31 GnuPG archive keys of the Debian a
ii  gpgv  1.4.10-4   GNU privacy guard - signature veri
ii  libc6 2.11.1-3   Embedded GNU C Library: Shared lib
ii  libdebian-installer-extra40.69   Library of some extra debian-insta
ii  libdebian-installer4  0.69   Library of common debian-installer
ii  wget  1.12-2 retrieves files from the web

cdebootstrap recommends no packages.

cdebootstrap suggests no packages.

-- no debconf information


--
/Carl Fürstenberg 



--
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#534488: lighttpd: Lighttpd fails to start

2009-06-24 Thread Carl Fürstenberg
Package: lighttpd
Version: 1.4.22-1
Severity: grave
Justification: renders package unusable

Lighttpd fails to start for me, sadly it doesn't give me any useful
output, but following is what lighttpd spits out (havn't modified any
confif since half year ago, so I don't think that would be the problem):

[0:255][r...@azabox azatoth]# lighttpd -f  /etc/lighttpd/lighttpd.conf -p
config {
var.PID= 16551
var.CWD= "/home/azatoth"
server.modules = (
"mod_indexfile",
"mod_access",
"mod_alias",
"mod_accesslog",
"mod_compress",
"mod_rewrite",
"mod_cgi",
"mod_fastcgi",
"mod_userdir",
"mod_dirlisting",
"mod_staticfile",
# 11
)
server.document-root   = "/var/www/"
server.upload-dirs = ("/var/cache/lighttpd/uploads")
server.errorlog= "/var/log/lighttpd/error.log"
index-file.names   = ("index.php", "index.html", "index.htm", 
"default.htm", "index.lighttpd.html")
accesslog.filename = "/var/log/lighttpd/access.log"
url.access-deny= ("~", ".inc")
static-file.exclude-extensions = (".php", ".pl", ".fcgi")
server.use-ipv6= "enable"
server.pid-file= "/var/run/lighttpd.pid"
dir-listing.encoding   = "utf-8"
server.dir-listing = "enable"
server.username= "www-data"
server.groupname   = "www-data"
compress.cache-dir = "/var/cache/lighttpd/compress/"
compress.filetype  = ("text/plain", "text/html", 
"application/x-javascript", "text/css")
mimetype.assign= (
".ez"   => "application/andrew-inset",
".anx"  => "application/annodex",
".atom" => "application/atom+xml",
".atomcat"  => "application/atomcat+xml",
".atomsrv"  => "application/atomserv+xml",
# 5
".lin"  => "application/bbolin",
".cap"  => "application/cap",
".pcap" => "application/cap",
".cu"   => "application/cu-seeme",
".davmount" => "application/davmount+xml",
# 10
".tsp"  => "application/dsptype",
".es"   => "application/ecmascript",
".spl"  => "application/futuresplash",
".hta"  => "application/hta",
".jar"  => "application/java-archive",
# 15
".ser"  => "application/java-serialized-object",
".class"=> "application/java-vm",
".js"   => "application/javascript",
".m3g"  => "application/m3g",
".hqx"  => "application/mac-binhex40",
# 20
".cpt"  => "application/mac-compactpro",
".nb"   => "application/mathematica",
".nbp"  => "application/mathematica",
".mdb"  => "application/msaccess",
".doc"  => "application/msword",
# 25
".dot"  => "application/msword",
".bin"  => "application/octet-stream",
".oda"  => "application/oda",
".ogx"  => "application/ogg",
".pdf"  => "application/pdf",
# 30
".key"  => "application/pgp-keys",
".pgp"  => "application/pgp-signature",
".prf"  => "application/pics-rules",
".ps"   => "application/postscript",
".ai"   => "application/postscript",
# 35
".eps"  => "application/postscript",
".espi" => "application/postscript",
".epsf" => "application/postscript",
".eps2" => "application/postscript",
".eps3" => "application/postscript",
# 40
".rar"  => "application/rar",
".rdf"  => "application/rdf+xml",
".rss"  => "application/rss+xml",
".rtf"  => "application/rtf",
".smi"  => "application/smil",
# 45
".smil" => "application/smil",
".xhtml"=> "application/xhtml+xml",
".xht"  => "application/xhtml+xml",
".xml"  => "application/xml",
".xsl"  => "application/xml",
# 50
".xsd"  => "application/xml",
".xspf" => "application/xspf+xml",
".zip"  => "application/zip",
".cdy"  => "application/vnd.cinderella",
".kml"  => "application/vnd.google-earth.kml+xml",
# 55
".kmz"  => "application/vnd.google-earth.kmz",
".xul"  => "application/vnd.mozilla.xul+xml",
".xls"  => "application/vnd.ms-excel",
".xlb"  => "application/vnd.ms-excel",
".xlt"  => "application/vnd.ms-excel",
# 60
".cat"  => "application/vnd.ms-pki.seccat",
".stl"  => "application/vnd.ms-pki.stl",
".ppt"  => "application/vnd.ms-powerpoint",
".pp

Bug#532229: bind9-host: Failure to run host as normal user

2009-06-07 Thread Carl Fürstenberg
Package: bind9-host
Version: 1:9.6.0.dfsg.P1-2
Severity: grave
Justification: renders package unusable

When running host as an ordinare user, following error is produced:
[0:0][azat...@azabox prog]$ host dn.se
Auto configuration failed
3077928672:error:0200100D:system library:fopen:Permission 
denied:bss_file.c:126:fopen('/usr/lib/ssl/openssl.cnf','rb')
3077928672:error:2006D002:BIO routines:BIO_new_file:system lib:bss_file.c:131:
3077928672:error:0E078002:configuration file routines:DEF_LOAD:system 
lib:conf_def.c:199:

looking at that file, which is an symlink, it is shown that it is
chodded 0400:
[0:1][azat...@azabox ~]$ ll /usr/lib/ssl/openssl.cnf
lrwxrwxrwx 1 root root 20  3 jun 19.50 /usr/lib/ssl/openssl.cnf -> 
/etc/ssl/openssl.cnf
[0:0][azat...@azabox ~]$ ll /etc/ssl/openssl.cnf
-r 1 root root 9374 18 okt  2005 /etc/ssl/openssl.cnf

Either this is an bug in openssl, or an bug in this package, and if it
is such that this package is faulty, then either should host be suid
root, or moved to sbin.

/Carl

-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.29-2-686 (SMP w/1 CPU core)
Locale: LANG=sv_SE.UTF-8, LC_CTYPE=sv_SE.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to sv_SE.UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages bind9-host depends on:
ii  libbind9-501:9.6.0.dfsg.P1-2 BIND9 Shared Library used by BIND
ii  libc6  2.9-13GNU C Library: Shared libraries
ii  libcap22.16-2support for getting/setting POSIX.
ii  libdns50   1:9.6.0.dfsg.P1-2 DNS Shared Library used by BIND
ii  libgssapi-krb5-2   1.7dfsg~beta3-1   MIT Kerberos runtime libraries - k
ii  libisc50   1:9.6.0.dfsg.P1-2 ISC Shared Library used by BIND
ii  libisccfg501:9.6.0.dfsg.P1-2 Config File Handling Library used 
ii  liblwres50 1:9.6.0.dfsg.P1-2 Lightweight Resolver Library used 
ii  libssl0.9.80.9.8k-1  SSL shared libraries
ii  libxml22.7.3.dfsg-1  GNOME XML library

bind9-host recommends no packages.

bind9-host suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#524714: hal: Fails to upgrade; wrongfull return value from init scrupt

2009-04-19 Thread Carl Fürstenberg
On Sun, Apr 19, 2009 at 13:43, Michael Biebl  wrote:
> reassign 524714 splashy
> thanks
>
> that's a splashy bug, reassigning.
>
> You can purge the splashy package or wait for a fixed splashy package.
>
> Michael
>
> --
> Why is it that all of the instruments seeking intelligent life in the
> universe are pointed away from Earth?
>
>

That might be the underlying cause for the init script to malfunction,
but it is still an bug here in that the init script says [OK], and
return 1.


-- 
/Carl Fürstenberg 



--
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#524714: hal: Fails to upgrade; wrongfull return value from init scrupt

2009-04-19 Thread Carl Fürstenberg
Package: hal
Version: 0.5.11-8
Severity: grave
Justification: renders package unusable

Upon upgrade from 0.5.11-8 to /hal_0.5.12~git20090406.46dc48-2,
following problem occurs:

[0:0][azat...@azabox ~]$ LC_ALL=C sudo apt-get -f install
Reading package lists... Done
Building dependency tree   
Reading state information... Done
Correcting dependencies... Done
The following packages were automatically installed and are no longer required:
  libdirectfb-1.0-0
Use 'apt-get autoremove' to remove them.
The following extra packages will be installed:
  hal
Suggested packages:
  gnome-device-manager
The following packages will be upgraded:
  hal
1 upgraded, 0 newly installed, 0 to remove and 175 not upgraded.
50 not fully installed or removed.
Need to get 0B/451kB of archives.
After this operation, 176kB disk space will be freed.
Do you want to continue [Y/n]? 
Reading package fields... Done
Reading package status... Done
Retrieving bug reports... Done
Parsing Found/Fixed information... Done
(Reading database ... 306530 files and directories currently installed.)
Preparing to replace hal 0.5.11-8 (using 
.../hal_0.5.12~git20090406.46dc48-2_i386.deb) ...
 * Stopping Hardware abstraction layer hald 
 [ OK ] 
invoke-rc.d: initscript hal, action "stop" failed.
dpkg: warning - old pre-removal script returned error exit status 1
dpkg - trying script from the new package instead ...
 * Stopping Hardware abstraction layer hald 
 [ OK ] 
invoke-rc.d: initscript hal, action "stop" failed.
dpkg: error processing 
/var/cache/apt/archives/hal_0.5.12~git20090406.46dc48-2_i386.deb (--unpack):
 subprocess new pre-removal script returned error exit status 1
 * Starting Hardware abstraction layer hald 
 [ OK ] 
invoke-rc.d: initscript hal, action "start" failed.
dpkg: error while cleaning up:
 subprocess post-installation script returned error exit status 1
Errors were encountered while processing:
 /var/cache/apt/archives/hal_0.5.12~git20090406.46dc48-2_i386.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)
[0:100][azat...@azabox ~]$ sudo /etc/init.d/hal stop
 * Stopping Hardware abstraction layer hald 
 [ OK ] 
[0:1][azat...@azabox ~]$ echo $?
1
[0:0][azat...@azabox ~]$ sudo /etc/init.d/hal start
 * Starting Hardware abstraction layer hald 
 [ OK ] 
[0:1][azat...@azabox ~]$ echo $?
1
[0:0][azat...@azabox ~]$ 



-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-2-686 (SMP w/1 CPU core)
Locale: LANG=sv_SE.UTF-8, LC_CTYPE=sv_SE.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to sv_SE.UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages hal depends on:
ii  adduser  3.110   add and remove users and groups
ii  dbus 1.2.12-1simple interprocess messaging syst
ii  hal-info 20090309-1  Hardware Abstraction Layer - fdi f
ii  libc62.9-7   GNU C Library: Shared libraries
ii  libdbus-1-3  1.2.12-1simple interprocess messaging syst
ii  libdbus-glib 0.80-3  simple interprocess messaging syst
ii  libexpat12.0.1-4 XML parsing C library - runtime li
ii  libgcc1  1:4.3.3-8   GCC support library
ii  libglib2.0-0 2.20.1-1The GLib library of C routines
ii  libhal-stora 0.5.12~git20090406.46dc48-2 Hardware Abstraction Layer - share
ii  libhal1  0.5.12~git20090406.46dc48-2 Hardware Abstraction Layer - share
ii  libsmbios2   2.0.3.dfsg-1Provide access to (SM)BIOS informa
ii  libstdc++6   4.3.3-8 The GNU Standard C++ Library v3
ii  libusb-0.1-4 2:0.1.12-13 userspace USB programming library
ii  libvolume-id 0.125-7 libvolume_id shared library
ii  lsb-base 3.2-22  Linux Standard Base 3.2 init scrip
ii  mount2.13.1.1-1  Tools for mounting and manipulatin
ii  pciutils 1:3.1.2-3   Linux PCI Utilities
ii  pm-utils 1.2.5-2 utilities and scripts for power ma
ii  udev 0.140-2 /dev/ and hotplug management daemo
ii  usbutils 0.73-10 Linux USB utilities

Versions of packages hal recommends:
ii  eject   2.1.5+deb1+cvs20081104-5 ejects CDs and operates CD-Changer
ii  libsmbios-bin   2.0.3.dfsg-1 Provide access to (SM)BIOS informa

Versions of packages hal suggests:
pn  gnome-device

Bug#519750: python-nevow: Failure on upgrade

2009-03-14 Thread Carl Fürstenberg
Package: python-nevow
Version: 0.9.32-1
Severity: grave
Justification: renders package unusable

Trying to upgrade, it fails during byte-compiling; Perhaps it should
have a strict python depends over 2.3.

Setting up python-nevow (0.9.32-1) ...
Compiling /usr/lib/python2.3/site-packages/nevow/_flat.py ...
  File "/usr/lib/python2.3/site-packages/nevow/_flat.py", line 280
return (result, (str(s) for s in results))
  ^
SyntaxError: invalid syntax

Compiling /usr/lib/python2.3/site-packages/nevow/compression.py ...
  File "/usr/lib/python2.3/site-packages/nevow/compression.py", line 36
params = dict(param.split('=') for param in params[1:])
 ^
SyntaxError: invalid syntax

pycentral: pycentral pkginstall: error byte-compiling files (157)
pycentral pkginstall: error byte-compiling files (157)
dpkg: error processing python-nevow (--configure):
 subprocess post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of python-epsilon:
 python-epsilon depends on python-nevow; however:
  Package python-nevow is not configured yet.
dpkg: error processing python-epsilon (--configure):
 dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of python-axiom:
 python-axiom depends on python-epsilon (>= 0.5.11); however:
  Package python-epsilon is not configured yet.
dpkg: error processing python-axiom (--configure):
 dependency problems - leaving unconfigured
Errors were encountered while processing:
 python-nevow
 python-epsilon
 python-axiom
E: Sub-process /usr/bin/dpkg returned an error code (1)



-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: LANG=sv_SE.UTF-8, LC_CTYPE=sv_SE.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to sv_SE.UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages python-nevow depends on:
ii  python2.5.4-2An interactive high-level object-o
ii  python-central0.6.11 register and build utility for Pyt
ii  python-twisted-core   8.2.0-1Event-based framework for internet
ii  python-twisted-web8.2.0-1An HTTP protocol implementation to

python-nevow recommends no packages.

python-nevow suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#516997: python-imaging: License not compatible with DFSG

2009-02-24 Thread Carl Fürstenberg
Package: python-imaging
Version: 1.1.6-3
Severity: serious
Justification: Policy 2.2.1

Per requesting input on the license for python-imaging onto
debial-legal
(http://lists.debian.org/debian-legal/2009/02/msg00057.html), 
in which an resonse was made that the license is not DFSG compilant.
Thus I notify you here about the issue and ask you, if possible, to
resolve the issue.

The suggestion made is to try getting the software relicensed under an
compatible license, e.g. for example /usr/share/doc/x11-apps/copyright.

/Carl Fürstenberg


-- System Information:
Debian Release: 5.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: LANG=sv_SE.UTF-8, LC_CTYPE=sv_SE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages python-imaging depends on:
ii  libc6  2.7-18GNU C Library: Shared libraries
ii  libfreetype6   2.3.7-2   FreeType 2 font engine, shared lib
ii  libjpeg62  6b-14 The Independent JPEG Group's JPEG 
ii  mime-support   3.44-1MIME files 'mime.types' & 'mailcap
ii  python 2.5.2-3   An interactive high-level object-o
ii  python-central 0.6.8 register and build utility for Pyt
ii  python-imaging-tk  1.1.6-3   Python Imaging Library - ImageTk M
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

python-imaging recommends no packages.

Versions of packages python-imaging suggests:
pn  python-imaging-dbg (no description available)
pn  python-imaging-doc (no description available)

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#514760: new init script

2009-02-10 Thread Carl Fürstenberg
On Tue, Feb 10, 2009 at 19:48, Julien BLACHE  wrote:
> Carl Fürstenberg  wrote:
>
> Hi,
>
>> As I was working for out local package distribution, I've modified the
>> init script based on the skeleton, attached herein.
>
> I'd rather have you investigate why mt-daapd doesn't stop properly on
> your machine, that'd be way more helpful.
>
> JB.
>
> --
>  Julien BLACHE - Debian & GNU/Linux Developer - 
>
>  Public key available on <http://www.jblache.org> - KeyID: F5D6 5169
>  GPG Fingerprint : 935A 79F1 C8B3 3521 FD62 7CC7 CD61 4FD7 F5D6 5169
>

The issue was responded to us from some customers, which at upgrade
from 0.9~r1696-1.3 to
0.9~r1696.dfsg-4 resulted in following error:
...
Installing new version of config file /etc/mt-daapd.conf ...
Starting mt-daapd: invoke-rc.d: initscript mt-daapd, action "start" failed.
dpkg: error processing mt-daapd (--configure):
 subprocess post-installation script returned error exit status 1
...
-- 
/Carl Fürstenberg 



--
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#514760: new init script

2009-02-10 Thread Carl Fürstenberg
As I was working for out local package distribution, I've modified the
init script based on the skeleton, attached herein.

-- 
/Carl Fürstenberg 


mt-daapd.init
Description: Binary data


Bug#514760: mt-daapd: init script should not have set -e

2009-02-10 Thread Carl Fürstenberg
Package: mt-daapd
Version: 0.9~r1696.dfsg-5
Severity: serious
Justification: Policy 9.3.2

The policy states "The init.d scripts must ensure that they will behave
sensibly if invoked with start when the service is already running", and
that to exit with a 1 isn't sensible, as it might bork upgrades.


-- System Information:
Debian Release: 5.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: LANG=sv_SE.UTF-8, LC_CTYPE=sv_SE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#507944: xwhois: segfaults on start in get_servers()

2008-12-05 Thread Carl Fürstenberg
Package: xwhois
Version: 0.4.2-8.2
Severity: grave
Justification: renders package unusable

the package containing file will generate segfault directly on start.
gdb doesn't give anty usefull data.


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

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: LANG=sv_SE.UTF-8, LC_CTYPE=sv_SE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages xwhois depends on:
ii  libc62.7-15  GNU C Library: Shared libraries
ii  libglib1.2ldbl   1.2.10-19   The GLib library of C routines
ii  libgtk1.21.2.10-18.1 The GIMP Toolkit set of widgets fo
ii  libx11-6 2:1.1.5-2   X11 client-side library
ii  libxext6 2:1.0.4-1   X11 miscellaneous extension librar
ii  libxi6   2:1.1.3-1   X11 Input extension library

xwhois recommends no packages.

xwhois suggests no packages.

-- no debconf information



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



Bug#506258: dpkg doesn't handle symlinks to directories as directory

2008-11-19 Thread Carl Fürstenberg
Package: dpkg
Version: 1.13.25
Severity: serious
Justification: Policy 6.6

After mailing the dpkg mailing list, I was instructed that I should file
a bug, so here it is:

In the php5 package, the current situation is that /etc/php5/cgi/conf.d
is a symlink to /etc/php5/conf.d; By failing to know that, we in a local
package installed a file under /etc/php5/cgi/conf.d/admin.ini, which
went on without any problem. But due that the php5 package had been
updated, a problem arised, which resulted in following error:

  (Reading database ... 28064 files and directories currently installed.)
  Preparing to replace php5-cgi 5.2.0-8+etch11 (using
/php5-cgi_5.2.0-8+etch13_powerpc.deb) ...
  Unpacking replacement php5-cgi ...
  dpkg: error processing
/var/cache/apt/archives/php5-cgi_5.2.0-8+etch13_powerpc.deb
(--unpack):
  trying to overwrite `/etc/php5/cgi/conf.d', which is also in
package bubba-frontend
  Errors were encountered while processing:
  /var/cache/apt/archives/php5-cgi_5.2.0-8+etch13_powerpc.deb
  E: Sub-process /usr/bin/dpkg returned an error code (1)

After some discussion at #debian-devel, a pinter to section 6.6 point 4
in the policy where given, and that the point in particular was in
effect for etch as well, which states:

A directory will never be replaced by a symbolic link to a directory
or vice versa;
instead, the existing state (symlink or not) will be left alone and
dpkg will follow
the symlink if there is one.

My interpreation of the policy is that the above error shouln't arise,
even though we should have installed the config file under
/etc/php5/conf.d anyway, as it wouldn't make any runtime difference
(somewhat a bug in the php5 packages). So I ask you if this is an bug,
or that out interpreation of the poliy is lousy at best.

Above is all related to Etch, and I don't know if this "error" is
present in lenny/sid.

/Carl



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

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: LANG=sv_SE.UTF-8, LC_CTYPE=sv_SE.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#501605: sympa: the password in question

2008-10-10 Thread Carl Fürstenberg
Package: sympa
Followup-For: Bug #501605

As it seems that it's the password that made is break, I thought I
should give you the password in question I was using. I generated it
using pwsafe and was "%$sne_7&mCxEaOk&SL\rzg%lyG

Bug#501605: sympa: broken post-inst script

2008-10-08 Thread Carl Fürstenberg
Package: sympa
Version: 5.3.4-6
Severity: grave
Justification: renders package unusable

Installation fails with following output:

Setting up sympa (5.3.4-6) ...
sed: -e expression #1, char 51: unknown option to `s'
dpkg: error processing sympa (--configure):
 subprocess post-installation script returned error exit status 1
Errors were encountered while processing:
 sympa
E: Sub-process /usr/bin/dpkg returned an error code (1)


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

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: LANG=sv_SE.UTF-8, LC_CTYPE=sv_SE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages sympa depends on:
ii  adduser  3.110   add and remove users and groups
ii  cdebconf [debconf-2.0]   0.135   Debian Configuration Management Sy
ii  debconf [debconf-2.0]1.5.23  Debian configuration management sy
ii  exim4-daemon-light [mail-tra 4.69-7  lightweight Exim MTA (v4) daemon
ii  libarchive-zip-perl  1.18-1  Module for manipulation of ZIP arc
ii  libc62.7-13  GNU C Library: Shared libraries
ii  libcgi-fast-perl 5.10.0-15   CGI::Fast Perl module
ii  libcrypt-ciphersaber-perl0.61-4  Perl module implementing CipherSab
ii  libdbd-mysql-perl4.008-1 A Perl5 database interface to the 
ii  libdbi-perl  1.607-1 Perl5 database interface by Tim Bu
ii  libintl-perl 1.16-4  Uniforum message translations syst
ii  libio-stringy-perl   2.110-4 Perl modules for IO from scalars a
ii  libmailtools-perl2.04-1  Manipulate email in perl programs
ii  libmd5-perl  2.03-1  backwards-compatible wrapper for D
ii  libmime-charset-perl 1.006.2-2   Charset Informations for MIME
ii  libmime-encwords-perl1.010.101-1 deal with RFC-1522 encoded words
ii  libmime-perl 5.427-1 transitional dummy package
ii  libmime-tools-perl [libmime- 5.427-1 Perl5 modules for MIME-compliant m
ii  libmsgcat-perl   1.03-4+b1   Locale::Msgcat perl module
ii  libnet-ldap-perl 1:0.38-1client interface to LDAP servers
ii  libtemplate-perl 2.20-1  template processing system written
ii  libxml-libxml-perl   1.66-1+b1   Perl module for using the GNOME li
ii  lsb-base 3.2-20  Linux Standard Base 3.2 init scrip
ii  mhonarc  2.6.16-1Mail to HTML converter
ii  perl [libmime-base64-perl]   5.10.0-15   Larry Wall's Practical Extraction 
ii  perl-suid5.10.0-15   Runs setuid Perl scripts
ii  sysklogd [system-log-daemon] 1.5-5   System Logging Daemon

Versions of packages sympa recommends:
ii  doc-base  0.8.16 utilities to manage online documen
ii  logrotate 3.7.1-3Log rotation utility

Versions of packages sympa suggests:
pn  libapache2-mod-fcgid   (no description available)
ii  libsoap-lite-perl 0.710.08-1 Client and server side SOAP implem
ii  lighttpd [httpd-cgi]  1.4.19-4   A fast webserver with minimal memo
ii  mysql-server-5.0 [mysql-serve 5.0.51a-15 MySQL database server binaries
ii  openssl   0.9.8g-13  Secure Socket Layer (SSL) binary a

-- debconf information:
* sympa/listmaster: [EMAIL PROTECTED]
* wwsympa/wwsympa_url: http://aza.nehle.net/wws
* wwsympa/webserver_restart: true
* sympa/db_options:
* sympa/db_configured: false
* sympa/db_user: sympa
* wwsympa/webserver_type: Other
  sympa/wwsympa_configured: false
* sympa/language: en_US
  sympa/db_removeonpurge: false
  sympa/remove_spool: false
* sympa/hostname: aza.nehle.net
* sympa/db_hostname: localhost
* sympa/use_db: true
* sympa/use_soap: false
* wwsympa/fastcgi: true
  sympa/db_authtype: Ident-baserad
  sympa/db_port:
* sympa/db_name: sympa
* sympa/db_type: MySQL
* wwsympa/remove_spool: false
* sympa/use_wwsympa: true
* sympa/smime_support: true



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



Bug#496556: gstreamer0.10-plugins-ugly: Description notes that the package might cause problem for distribution, but it's in main section

2008-08-25 Thread Carl Fürstenberg
Package: gstreamer0.10-plugins-ugly
Version: 0.10.8-1
Severity: serious
Justification: Policy 2.2

The description states at the end: "This packages contains plugins from
the "ugly" set, a set of good-quality plug-ins that might pose
distribution problems.". If this is correct, then the package is in the
wrong section, i.e. should be in non-free if I'm correct;

Tf this is wrong, plese downgrade this bug to minor and retitle it so it
points to that the description is wrong.

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

Kernel: Linux 2.6.25-2-686 (SMP w/1 CPU core)
Locale: LANG=sv_SE.UTF-8, LC_CTYPE=sv_SE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages gstreamer0.10-plugins-ugly depends on:
ii  liba52-0.7.4  0.7.4-11   library for decoding ATSC A/52 str
ii  libc6 2.7-13 GNU C Library: Shared libraries
ii  libdvdread3   0.9.7-11   library for reading DVDs
ii  libgcc1   1:4.3.1-9  GCC support library
ii  libglib2.0-0  2.16.5-1   The GLib library of C routines
ii  libgstreamer-plugins-base0.10 0.10.20-2  GStreamer libraries from the "base
ii  libgstreamer0.10-00.10.20-2  Core GStreamer libraries and eleme
ii  libid3tag00.15.1b-10 ID3 tag reading library from the M
ii  libmad0   0.15.1b-3  MPEG audio decoder library
ii  libmpeg2-40.4.1-3MPEG1 and MPEG2 video decoder libr
ii  liboil0.3 0.3.15-1   Library of Optimized Inner Loops
ii  libsidplay1   1.36.59-5  SID (MOS 6581) emulation library
ii  libstdc++64.3.1-9The GNU Standard C++ Library v3

gstreamer0.10-plugins-ugly recommends no packages.

gstreamer0.10-plugins-ugly suggests no packages.

-- no debconf information



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



Bug#491130: munin: Munin fails to install

2008-07-16 Thread Carl Fürstenberg
Package: munin
Version: 1.2.6-3
Severity: grave
Justification: renders package unusable

Trying to install munin results in following error:

$ LANG=C sudo apt-get install munin munin-node
Reading package lists... Done
Building dependency tree   
Reading state information... Done
Suggested packages:
  munin-plugins-extra liblwp-useragent-determined-perl ethtool
The following NEW packages will be installed:
  munin munin-node
0 upgraded, 2 newly installed, 0 to remove and 728 not upgraded.
Need to get 0B/1257kB of archives.
After this operation, 2404kB of additional disk space will be used.
Reading package fields... Done
Reading package status... Done
Retrieving bug reports... Done
Parsing Found/Fixed information... Done
Selecting previously deselected package munin.
(Reading database ... 273919 files and directories currently installed.)
Unpacking munin (from .../archives/munin_1.2.6-3_all.deb) ...
Selecting previously deselected package munin-node.
Unpacking munin-node (from .../munin-node_1.2.6-3_all.deb) ...
Processing triggers for man-db ...
Setting up munin (1.2.6-3) ...
Setting up munin-node (1.2.6-3) ...
Initializing plugins..# There were some errors:
# ERROR: empty suggest from ip_
# ERROR: empty suggest from ps_
# ERROR: empty suggest from if_
# ERROR: empty suggest from smart_
# ERROR: empty suggest from if_err_
dpkg: error processing munin-node (--configure):
 subprocess post-installation script returned error exit status 1
Errors were encountered while processing:
 munin-node
E: Sub-process /usr/bin/dpkg returned an error code (1)



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

Kernel: Linux 2.6.24-1-686 (SMP w/1 CPU core)
Locale: LANG=sv_SE.UTF-8, LC_CTYPE=sv_SE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages munin depends on:
ii  adduser3.108 add and remove users and groups
pn  libdigest-md5-perl (no description available)
ii  libhtml-template-perl  2.9-1 HTML::Template : A module for usin
ii  libparse-recdescent-perl   1.95.1+dfsg-2 generates recursive-descent parser
ii  librrds-perl   1.2.27-2+b1   Time-series data storage and displ
pn  libstorable-perl   (no description available)
ii  perl [libtime-hires-perl]  5.10.0-11 Larry Wall's Practical Extraction 
ii  perl-modules   5.10.0-11 Core Perl modules
ii  rrdtool1.2.27-2+b1   Time-series data storage and displ

Versions of packages munin recommends:
ii  libdate-manip-perl5.54-1 a perl library for manipulating da
pn  munin-node (no description available)



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



Bug#490201: Still not resolved

2008-07-15 Thread Carl Fürstenberg
The issue isn't resolved I'm afraid.

dh_clean
dpatch  deapply-all
reverting patch autocreate from ./ ... failed.
make: *** [unpatch] Fel 1
dpkg-buildpackage: misslyckades: fakeroot debian/rules clean
returnerade felkod 2
debuild: fatal error at line 1319:
dpkg-buildpackage -rfakeroot -D -us -uc -i -ICVS -I.svn -I{arch}
-I.arch-ids -tc failed


-- 
/Carl Fürstenberg <[EMAIL PROTECTED]>


Bug#490201: dovecot: FTBFS: clean target fails postbuild

2008-07-10 Thread Carl Fürstenberg
Package: dovecot
Version: 1.0.14-1
Severity: serious
Justification: Policy 4.9

The package is unable to cleanup after itself, the problem is that an
unpatch fails:


 fakeroot debian/rules clean
dpatch  deapply-all  
reverting patch autocreate from ./ ... failed.
make: *** [unpatch] Error 1
dpkg-buildpackage: failure: fakeroot debian/rules clean gave error exit status 2
debuild: fatal error at line 1319:
dpkg-buildpackage -rfakeroot -D -us -uc -i -ICVS -I.svn -I{arch} -I.arch-ids 
-tc failed




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

Kernel: Linux 2.6.24-1-686 (SMP w/1 CPU core)
Locale: LANG=sv_SE.UTF-8, LC_CTYPE=sv_SE.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#489739: FTBFS: clean target doesn't clean

2008-07-07 Thread Carl Fürstenberg
Package: php5-xcache
Version: 1.2.2
Severity: serious
Justification: Policy 4.9

The clean target fails to clean fully (all make-generated files remains
etc...)

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

Kernel: Linux 2.6.24-1-686 (SMP w/1 CPU core)
Locale: LANG=sv_SE.UTF-8, LC_CTYPE=sv_SE.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#486679: kronolith2: Kronolith2 breaks unconfigured horde3

2008-06-17 Thread Carl Fürstenberg
Package: kronolith2
Severity: grave

This is perhaps difficult to define, as horde3 isn't fully configured,
even though it's "configured" in the debian sense. The issue is that, if
you are installing kronolith2 BEFORE you have fully set up horde3 via
the steps found in horde3 README.Debian, then the horde3 web interface
breaks, as kronolith2 have configuration-dependent include_once
statements.

Question is if is up to kronolith2 to fix the issue, or that horde3 is
breaking policy by shipping an not fully configured install.

Though of marking the severity of the bug as serious with the
justification to 3.5, but Pre-Depends doesn't solve anything (should
have an Pre-Depends-Post-Admin-Did-Something-And-Jumped-Twice field
then).



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

Kernel: Linux 2.6.24-1-686 (SMP w/1 CPU core)
Locale: LANG=sv_SE.UTF-8, LC_CTYPE=sv_SE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages kronolith2 depends on:
ii  horde33.1.7-1horde web application framework
ii  php-date  1.4.7-1PHP PEAR module for date and time 
ii  php-http-request  1.4.2-1provides an easy way to perform HT
ii  php5-cli  5.2.6-1command-line interpreter for the p
ii  php5-mysql5.2.6-1MySQL module for php5
ii  php5.0-cli [php5-cli] 5.0.5-0.8  command-line interpreter for the P

kronolith2 recommends no packages.



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



Bug#475007: fglrx-glx: clashing diversions

2008-04-08 Thread Carl Fürstenberg
Package: fglrx-glx
Severity: grave
Justification: renders package unusable

When trying to install fglrx-glx, it borks on clashing diversion with
fglrx-driver. Following output is shown:

$ LANG=C apt-get install fglrx-glx 
Reading package lists... Done
Building dependency tree   
Reading state information... Done
The following NEW packages will be installed:
  fglrx-glx
0 upgraded, 1 newly installed, 0 to remove and 127 not upgraded.
Need to get 0B/151kB of archives.
After this operation, 569kB of additional disk space will be used.
Reading package fields... Done
Reading package status... Done
Retrieving bug reports... Done
Parsing Found/Fixed information... Done
(Reading database ... 297711 files and directories currently
installed.)
Unpacking fglrx-glx (from .../fglrx-glx_8.47.3-3_i386.deb) ...
Removing `diversion of /usr/lib/libGL.so.1.2 to
/usr/lib/fglrx/diversions/libGL.so.1.2 by fglrx-driver'
dpkg-divert: `diversion of /usr/lib/libGL.so.1.2 to
/usr/lib/fglrx/diversions/libGL.so.1.2 by fglrx-glx' clashes with
`diversion of /usr/lib/libGL.so.1.2 to
/usr/lib/fglrx/diversions/libGL.so.1.2 by fglrx-driver'
dpkg: error processing
/var/cache/apt/archives/fglrx-glx_8.47.3-3_i386.deb (--unpack):
 subprocess pre-installation script returned error exit status 2
Errors were encountered while processing:
 /var/cache/apt/archives/fglrx-glx_8.47.3-3_i386.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)



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

Kernel: Linux 2.6.24-1-686 (SMP w/1 CPU core)
Locale: LANG=sv_SE.UTF-8, LC_CTYPE=sv_SE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages fglrx-glx depends on:
ii  fglrx-driver  8.47.3-3   non-free AMD/ATI r5xx, r6xx displa
ii  libc6 2.7-10 GNU C Library: Shared libraries
ii  libgcc1   1:4.3.0-3  GCC support library
ii  libxext6  2:1.0.4-1  X11 miscellaneous extension librar

fglrx-glx recommends no packages.



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



Bug#474771: pbuilder: No unmount on failed mount

2008-04-07 Thread Carl Fürstenberg
Package: pbuilder
Version: 0.179
Severity: grave
Justification: causes data loss

If a BINDMOUNTS variable in pbuilderrc contains a non-existing source to
mount, the previous mounted points are not unmounted, and the try to
delete the content of the chroot is thus trying to delete the content in
the mounted points.

As it's a chroot we are talking about, there is no security left to talk
about, though the problem could be that someone accidentally adds an
wrong point to mount, and thus "accidentally" deletes $HOME or similar
:).

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

Kernel: Linux 2.6.22-1-686 (SMP w/1 CPU core)
Locale: LANG=sv_SE.UTF-8, LC_CTYPE=sv_SE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages pbuilder depends on:
ii  cdebootstrap  0.5.1  Bootstrap a Debian system
ii  coreutils 6.10-6 The GNU core utilities
ii  debconf [debconf-2.0] 1.5.20 Debian configuration management sy
ii  debianutils   2.28.4 Miscellaneous utilities specific t
ii  debootstrap   1.0.8  Bootstrap a basic Debian system
ii  gcc   4:4.2.3-7  The GNU C compiler
ii  wget  1.11.1-1   retrieves files from the web

Versions of packages pbuilder recommends:
ii  cowdancer 0.44   Copy-on-write directory tree utili
ii  devscripts2.10.23scripts to make the life of a Debi
ii  fakeroot  1.9.4  Gives a fake root environment
ii  sudo  1.6.9p15-1 Provide limited super user privile

-- debconf information:
  pbuilder/nomirror:
* pbuilder/mirrorsite: http://ftp.se.debian.org/debian/
  pbuilder/rewrite: false



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



Bug#444741: openoffice.org-gtk: Crashed on start when using gtk 2.12

2007-09-30 Thread Carl Fürstenberg
 1.1.22-1 XSLT processing library - runtime
ii  libxt6  1:1.0.5-3X11 toolkit intrinsics library
ii  openoffice.org-common   2.2.1-9  OpenOffice.org office suite archit
ii  ttf-opensymbol  2.2.1-9  The OpenSymbol TrueType font
ii  zlib1g  1:1.2.3.3.dfsg-5 compression library - runtime

Versions of packages openoffice.org-core recommends:
pn  nfs-common (no description available)


Versions of packages openoffice.org-writer depends on:
ii  libc6   2.6.1-5  GNU C Library: Shared libraries
ii  libgcc1 1:4.2.1-5GCC support library
ii  libicu363.6-6International Components for Unico
ii  libstdc++6  4.2.1-5  The GNU Standard C++ Library v3
ii  libstlport4.6c2 4.6.2-3  STLport C++ class library
ii  libwpd8c2a  0.8.11-2 Library for handling WordPerfect d
ii  libwps-0.1-10.1.0-7  Works text file format import filt
ii  libxml2 2.6.30.dfsg-2GNOME XML library
ii  openoffice.org-core 2.2.1-9  OpenOffice.org office suite archit
ii  python-uno  2.2.1-9  Python interface for OpenOffice.or
ii  zlib1g  1:1.2.3.3.dfsg-5 compression library - runtime

Versions of packages openoffice.org-writer recommends:
ii  gij-4.1 [java2-runtime]4.1.2-16  The GNU Java bytecode interpreter
ii  gij-4.2 [java2-runtime]4.2.1-5   The GNU Java bytecode interpreter
ii  java-gcj-compat1.0.76-5  Java runtime environment using GIJ
pn  openoffice.org-filter-binf (no description available)
pn  openoffice.org-java-common (no description available)
ii  sun-j2sdk1.6 [java2-runtim 1.6.0+update2 Java(TM) JDK, Standard Edition, Su


Versions of packages libgtk2.0-0 depends on:
ii  libatk1.0-0 1.20.0-1 The ATK accessibility toolkit
ii  libc6   2.6.1-5  GNU C Library: Shared libraries
ii  libcairo2   1.4.10-1 The Cairo 2D vector graphics libra
ii  libcomerr2  1.40.2-1 common error description library
ii  libcupsys2  1.3.2-1  Common UNIX Printing System(tm) -
ii  libfontconfig1  2.4.2-1.2generic font configuration library
ii  libglib2.0-02.14.1-3 The GLib library of C routines
ii  libgnutls13 1.7.19-1 the GNU TLS library - runtime libr
ii  libgtk2.0-common2.12.0-2 Common files for the GTK+ graphica
ii  libjpeg62   6b-14The Independent JPEG Group's JPEG
ii  libkrb531.6.dfsg.1-7 MIT Kerberos runtime libraries
ii  libpango1.0-0   1.18.2-1 Layout and rendering of internatio
ii  libpng12-0  1.2.15~beta5-2   PNG library - runtime
ii  libtiff43.8.2-7  Tag Image File Format (TIFF) libra
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxcomposite1  1:0.3.2-1+b1 X11 Composite extension library
ii  libxcursor1 1:1.1.9-1X cursor management library
ii  libxdamage1 1:1.1.1-3X11 damaged region extension libra
ii  libxext61:1.0.3-2X11 miscellaneous extension librar
ii  libxfixes3  1:4.0.3-2X11 miscellaneous 'fixes' extensio
ii  libxi6  2:1.1.3-1X11 Input extension library
ii  libxinerama11:1.0.2-1X11 Xinerama extension library
ii  libxrandr2  2:1.2.2-1X11 RandR extension library
ii  libxrender1 1:0.9.4-1X Rendering Extension client libra
ii  zlib1g  1:1.2.3.3.dfsg-5 compression library - runtime

Versions of packages libgtk2.0-0 recommends:
ii  hicolor-icon-theme0.10-1 default fallback theme for FreeDes
ii  libgtk2.0-bin 2.12.0-2   The programs for the GTK+ graphica

-- 
/Carl Fürstenberg <[EMAIL PROTECTED]>


Bug#444741: openoffice.org-gtk: Crashed on start when using gtk 2.12

2007-09-30 Thread Carl Fürstenberg
On 9/30/07, Rene Engelhard <[EMAIL PROTECTED]> wrote:
> tag 444741 + moreinfo
> tag 444741 + unreproducible
> thanks
>
>
> Carl Fürstenberg wrote:
> > Package: openoffice.org-gtk
> > Severity: grave
>
> Aha. And which version?
>
> > File: openoffice.org-gtk
>
> That of course is a useless info since there's no File
> openoffice.org-gtk in the package. But you should have mentioned the
> important info like the version.
>
>
> $ locale -a | grep sv_SE
> sv_SE
> sv_SE.iso88591
> sv_SE.iso885915
> sv_SE.utf8
>
> (Doesn't affect the crash, thozgh, both sv_SE.UTF-8 and sv_SE.utf8 work
> for me)
>
> > Shell: /bin/sh linked to /bin/bash
>
> [...]
>
> And you of course missed anothe rimportant thing: the packages'
> dependencies.
>
> Tagging and downgrading appropriately. Need more info. And if you use
> 2.2.1-9, try 2.3.0.
>
> Grüße/Regards,
>
> René
> --
>  .''`.  René Engelhard -- Debian GNU/Linux Developer
>  : :' : http://www.debian.org | http://people.debian.org/~rene/
>  `. `'  [EMAIL PROTECTED] | GnuPG-Key ID: 248AEB73
>`-   Fingerprint: 41FA F208 28D4 7CA5 19BB  7AD9 F859 90B0 248A EB73
>
>
> -BEGIN PGP SIGNATURE-
> Version: GnuPG v1.4.6 (GNU/Linux)
>
> iD8DBQFHAAiU+FmQsCSK63MRAgpYAJ93E5wsJBQyqb8TfxoeqG9pkn9YlwCcDlmo
> xwX5V52PiYah/eZFRok7Wbs=
> =uajY
> -END PGP SIGNATURE-
>
>

Oh, the auto-dep listing didn't work, probably because I reported
without having oo.org-gtk installed (installed and reinstalled a
couple of times to verify that it was that package that made the
crash).

I was before using 2.3, but I got this problem with 2.3 (the package
in experimental), so I though, perhaps because it's in expermental,
it's a fault in the 2.3 packaging, so I downgraded to 2.2 (apt-get
remove --purge) and then installed 2.2, bug suddenly got the same
problem. After a wnhile I located it to the gtk package.

The installed relevant packages are:
openoffice.org-writer:
  Installed: 2.2.1-9
  Candidate: 2.2.1-9
  Version table:
 1:2.3.0-1 0
  1 http://ftp.dk.debian.org ../project/experimental/main Packages
 *** 2.2.1-9 0
500 http://ftp.dk.debian.org unstable/main Packages
100 /var/lib/dpkg/status
libgtk2.0-0:
  Installed: 2.12.0-2
  Candidate: 2.12.0-2
  Version table:
 *** 2.12.0-2 0
500 http://ftp.dk.debian.org unstable/main Packages
100 /var/lib/dpkg/status
openoffice.org-gtk:
  Installed: 2.2.1-9
  Candidate: 2.2.1-9
  Version table:
 1:2.3.0-1 0
  1 http://ftp.dk.debian.org ../project/experimental/main Packages
 *** 2.2.1-9 0
500 http://ftp.dk.debian.org unstable/main Packages
100 /var/lib/dpkg/status

Dependices:
openoffice.org-writer
  Depends: openoffice.org-core
  Depends: libc6
  Depends: libgcc1
  Depends: libicu38
  Depends: libstdc++6
  Depends: libstlport4.6c2
  Depends: libwpd8c2a
  Depends: libwps-0.1-1
  Depends: libxml2
  Depends: zlib1g
  Depends: python-uno
  Suggests: openoffice.org-gcj
  Suggests: openoffice.org-base
  Recommends: openoffice.org-filter-binfilter
 |Recommends: gij
 |Recommends: java-gcj-compat
 |Recommends: 
  Recommends: 
gij
gij-4.1
gij-4.2
gij-4.3
sun-j2sdk1.6
sun-java5-jre
sun-java6-jre
  Recommends: openoffice.org-java-common
  Conflicts: 
  Conflicts: openoffice.org2-writer
  Conflicts: openoffice.org-java-common
  Replaces: openoffice.org
  Replaces: 
  Replaces: openoffice.org2-writer
  Replaces: openoffice.org-common
openoffice.org-gtk
  Depends: openoffice.org-core
  Depends: openoffice.org-style-tango
  Depends: libatk1.0-0
  Depends: libc6
  Depends: libcairo2
  Depends: libfontconfig1
  Depends: libgcc1
  Depends: libglib2.0-0
  Depends: libgtk2.0-0
  Depends: libpango1.0-0
  Depends: libstdc++6
  Depends: libstlport4.6c2
  Depends: libx11-6
  Depends: libxcursor1
  Depends: libxext6
  Depends: libxfixes3
  Depends: libxi6
  Depends: libxinerama1
  Depends: libxrandr2
  Depends: libxrender1
  Conflicts: 
  Conflicts: 
  Replaces: openoffice.org-gnome
  Replaces: openoffice.org-common
libgtk2.0-0
  Depends: libgtk2.0-common
  Depends: libatk1.0-0
  Depends: libc6
  Depends: libcairo2
  Depends: libcomerr2
  Depends: libcupsys2
  Depends: libfontconfig1
  Depends: libglib2.0-0
  Depends: libgnutls13
  Depends: libjpeg62
  Depends: libkrb53
  Depends: libpango1.0-0
  Depends: libpng12-0
  Depends: libtiff4
  Depends: libx11-6
  Depends: libxcomposite1
  Depends: libxcursor1
  Depends: libxdamage1
  Depends: libxext6
  Depends: libxfixes3
  Depends: libxi6
  Depends: libxinerama1
  Depends: libxrandr2
  Depends: libxrender1
  Depends: zlib1g
  Recommends: hicolor-icon-theme
  Recommends: libgtk2.0-bin
  Conflicts: 
  Conflicts: 
  Conflicts: 
  Conflicts: celestia
  Conflicts: 
  Conflicts: 
  Conflicts: libgnomeui-0
  

Bug#444741: openoffice.org-gtk: Crashed on start when using gtk 2.12

2007-09-30 Thread Carl Fürstenberg
Package: openoffice.org-gtk
Severity: grave
File: openoffice.org-gtk
Justification: renders package unusable

When having openoffice.org-gtk installed, it will crash dumping
following data:

*** glibc detected *** /usr/lib/openoffice/program/soffice.bin: free(): invalid 
pointer: 0x087a2610 ***
=== Backtrace: =
/lib/i686/cmov/libc.so.6[0xb6c87ce5]
/lib/i686/cmov/libc.so.6(cfree+0x90)[0xb6c8b780]
/usr/lib/libglib-2.0.so.0(g_free+0x31)[0xb5c0e961]
/usr/lib/openoffice/program/libvclplug_gtk680li.so[0xb57123f2]
/usr/lib/openoffice/program/libvcl680li.so(_ZN11SalGraphics22GetNativeControlRegionEmmRK6RegionmRK16ImplControlValueR16SalControlHandleRKN3rtl8OUStringERS0_SC_PK12OutputDevice+0x144)[0xb7d8c5d4]
/usr/lib/openoffice/program/libvcl680li.so(_ZN6Window22GetNativeControlRegionEmmRK6RegionmRK16ImplControlValueN3rtl8OUStringERS0_S8_+0x103)[0xb7e4ada3]
/usr/lib/openoffice/program/libvcl680li.so(_ZN7ListBox6ResizeEv+0x40f)[0xb7e91e3f]
/usr/lib/openoffice/program/libvcl680li.so[0xb7e323b2]
/usr/lib/openoffice/program/libvcl680li.so(_ZN6Window4ShowEht+0xc3)[0xb7e33ea3]
/usr/lib/openoffice/program/libsfx680li.so[0xb35388f4]
/usr/lib/openoffice/program/libsfx680li.so[0xb353b006]
/usr/lib/openoffice/program/libsfx680li.so[0xb353b1b2]
/usr/lib/openoffice/program/libsfx680li.so(_ZN24SfxTemplateDialogWrapperC1EP6WindowtP11SfxBindingsP15SfxChildWinInfo+0x6a)[0xb353b25a]
/usr/lib/openoffice/program/libsfx680li.so(_ZN24SfxTemplateDialogWrapper10CreateImplEP6WindowtP11SfxBindingsP15SfxChildWinInfo+0x4d)[0xb353b31d]
/usr/lib/openoffice/program/libsfx680li.so(_ZN14SfxChildWindow17CreateChildWindowEtP6WindowP11SfxBindingsR15SfxChildWinInfo+0x15f)[0xb3316b9f]
/usr/lib/openoffice/program/libsfx680li.so[0xb3361805]
/usr/lib/openoffice/program/libsfx680li.so[0xb3362319]
/usr/lib/openoffice/program/libsfx680li.so[0xb33627c4]
/usr/lib/openoffice/program/libsfx680li.so[0xb3362a07]
/usr/lib/openoffice/program/libsfx680li.so[0xb34a41c6]
/usr/lib/openoffice/program/libsfx680li.so(_ZN11SfxTopFrame14InsertDocumentEP14SfxObjectShell+0x521)[0xb348fb91]
/usr/lib/openoffice/program/libsfx680li.so[0xb32edcad]
/usr/lib/openoffice/program/libsfx680li.so[0xb3464902]
/usr/lib/openoffice/program/libfwk680li.so[0xb2e63b0b]
/usr/lib/openoffice/program/libfwk680li.so[0xb2e655a8]
/usr/lib/openoffice/program/libfwk680li.so[0xb2e65d81]
/usr/lib/openoffice/program/libfwk680li.so[0xb2d00388]
/usr/lib/openoffice/program/soffice.bin(_ZN7desktop15DispatchWatcher23executeDispatchRequestsERKN4_STL6vectorINS0_15DispatchRequestENS1_9allocatorIS3_+0x2ce6)[0x8081b16]
/usr/lib/openoffice/program/soffice.bin(_ZN7desktop15OfficeIPCThread22ExecuteCmdLineRequestsERNS_23ProcessDocumentsRequestE+0x135)[0x8074235]
/usr/lib/openoffice/program/soffice.bin(_ZN7desktop7Desktop11OpenDefaultEv+0x184)[0x805f3f4]
/usr/lib/openoffice/program/soffice.bin(_ZN7desktop7Desktop11OpenClientsEv+0x1ff7)[0x806ffe7]
/usr/lib/openoffice/program/soffice.bin(_ZN7desktop7Desktop16OpenClients_ImplEPv+0x3f)[0x807093f]
/usr/lib/openoffice/program/libvcl680li.so[0xb7e45c49]
/usr/lib/openoffice/program/libvclplug_gen680li.so(_ZN10SalDisplay21DispatchInternalEventEv+0xbb)[0xb52b829b]
/usr/lib/openoffice/program/libvclplug_gtk680li.so[0xb56f185d]
/usr/lib/libglib-2.0.so.0[0xb5c055d1]
/usr/lib/libglib-2.0.so.0(g_main_context_dispatch+0x176)[0xb5c07186]
/usr/lib/libglib-2.0.so.0[0xb5c0a512]
/usr/lib/libglib-2.0.so.0(g_main_context_iteration+0x6e)[0xb5c0aace]
/usr/lib/openoffice/program/libvclplug_gtk680li.so[0xb56f38dc]
/usr/lib/openoffice/program/libvclplug_gen680li.so(_ZN14X11SalInstance5YieldEbb+0x37)[0xb52c0417]
/usr/lib/openoffice/program/libvcl680li.so(_ZN11Application5YieldEb+0x59)[0xb7c4df99]
/usr/lib/openoffice/program/libvcl680li.so(_ZN11Application7ExecuteEv+0x3c)[0xb7c4e0ac]
/usr/lib/openoffice/program/soffice.bin(_ZN7desktop7Desktop4MainEv+0x15d9)[0x80691f9]
/usr/lib/openoffice/program/libvcl680li.so[0xb7c536d5]
/usr/lib/openoffice/program/libvcl680li.so(_Z6SVMainv+0x35)[0xb7c537d5]
/usr/lib/openoffice/program/soffice.bin(main+0x66)[0x805c396]
/lib/i686/cmov/libc.so.6(__libc_start_main+0xe0)[0xb6c34050]
/usr/lib/openoffice/program/soffice.bin(_ZN6Window15SetPosSizePixelEt+0x369)[0x805c2c1]
=== Memory map: 
08048000-08098000 r-xp  08:08 334811 
/usr/lib/openoffice/program/soffice.bin
08098000-0809a000 rw-p 0004f000 08:08 334811 
/usr/lib/openoffice/program/soffice.bin
0809a000-087cc000 rw-p 0809a000 00:00 0  [heap]
af20-af221000 rw-p af20 00:00 0 
af221000-af30 ---p af221000 00:00 0 
af381000-af3fb000 r-xp  08:08 334789 
/usr/lib/openoffice/program/libxstor.so
af3fb000-af3fe000 rw-p 0007a000 08:08 334789 
/usr/lib/openoffice/program/libxstor.so
af3fe000-af41d000 r-xp  08:08 334777 
/usr/lib/openoffice/program/fsstorage.uno.so
af41d000-af41f000 rw-p 0001e000 08:08 334777 
/usr/lib/openoffice/program/fsstorage.uno.so
af41f000-af42f000 rw-p af41f000 00:00 0 
af42f000-af44e000 r-xp  08:08 3

Bug#437297: bmpx: Images licensed under CreativeCommons included in the package

2007-08-11 Thread Carl Fürstenberg
Package: bmpx
Severity: serious
Justification: Policy 2.2.1

The bmpx package are including Silk icons: Mark James, http://www.famfamfam.com
which is released under CC 2.5, they cant be removed, as the program
depends upon them.


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

Kernel: Linux 2.6.21-1-686 (SMP w/1 CPU core)
Locale: LANG=sv_SE.UTF-8, LC_CTYPE=sv_SE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages bmpx depends on:
ii  libasound2  1.0.14a-2ALSA library
ii  libatk1.0-0 1.18.0-2 The ATK accessibility toolkit
ii  libboost-regex1.33.11.33.1-7+b1  regular expression library for C++
ii  libc6   2.6.1-1  GNU C Library: Shared libraries
ii  libcairo2   1.4.10-1 The Cairo 2D vector graphics libra
ii  libcairomm-1.0-00.6.0-4  C++ wrappers for Cairo (shared lib
ii  libcomerr2  1.40.2-1 common error description library
ii  libdbus-1-3 1.1.1-3  simple interprocess messaging syst
ii  libdbus-glib-1-20.74-1   simple interprocess messaging syst
ii  libexpat1   1.95.8-4 XML parsing C library - runtime li
ii  libfontconfig1  2.4.2-1.2generic font configuration library
ii  libfreetype62.3.5-1+b1   FreeType 2 font engine, shared lib
ii  libgamin0   0.1.8-2  Client library for the gamin file 
ii  libgcc1 1:4.2.1-2GCC support library
ii  libglade2-0 1:2.6.2-1library to load .glade files at ru
ii  libglademm-2.4-1c2a 2.6.2-2  C++ wrappers for libglade2 (shared
ii  libglib2.0-02.12.13-1The GLib library of C routines
ii  libglibmm-2.4-1c2a  2.12.10-0.1  C++ wrapper for the GLib toolkit (
ii  libgstreamer0.10-0  0.10.14-1Core GStreamer libraries and eleme
ii  libgtk2.0-0 2.10.13-1The GTK+ graphical user interface 
ii  libgtkmm-2.4-1c2a   1:2.10.10-0.2C++ wrappers for GTK+ 2.4 (shared 
ii  libice6 2:1.0.3-3X11 Inter-Client Exchange library
ii  libkrb531.6.dfsg.1-6 MIT Kerberos runtime libraries
ii  libmusicbrainz4c2a  2.1.5-1  Second generation incarnation of t
ii  libneon25   0.25.5.dfsg-6An HTTP and WebDAV client library
ii  libpango1.0-0   1.16.5-1 Layout and rendering of internatio
ii  libpng12-0  1.2.15~beta5-2   PNG library - runtime
ii  libsidplay1 1.36.59-4SID (MOS 6581) emulation library
ii  libsigc++-2.0-0c2a  2.0.17-2 type-safe Signal Framework for C++
ii  libsm6  2:1.0.3-1+b1 X11 Session Management library
ii  libssl0.9.8 0.9.8e-5 SSL shared libraries
ii  libstartup-notification 0.9-1library for program launch feedbac
ii  libstdc++6  4.2.1-2  The GNU Standard C++ Library v3
ii  libtag1c2a  1.4-8+b1 TagLib Audio Meta-Data Library
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxcursor1 1:1.1.8-2X cursor management library
ii  libxext61:1.0.3-2X11 miscellaneous extension librar
ii  libxfixes3  1:4.0.3-2X11 miscellaneous 'fixes' extensio
ii  libxi6  2:1.1.2-1X11 Input extension library
ii  libxinerama11:1.0.2-1X11 Xinerama extension library
ii  libxml2 2.6.29.dfsg-1GNOME XML library
ii  libxrandr2  2:1.2.1-1X11 RandR extension library
ii  libxrender1 1:0.9.2-1X Rendering Extension client libra
ii  zlib1g  1:1.2.3.3.dfsg-5 compression library - runtime

bmpx recommends no packages.


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



Bug#436277: pcregrep: unknown option bit(s) set

2007-08-06 Thread Carl Fürstenberg
On 8/6/07, Mark Baker <[EMAIL PROTECTED]> wrote:
> Carl Fürstenberg wrote:
> > Everytime I tries to use pcregrep, it just fails telling:
> > pcregrep: Error in command-line regex at offset 0: unknown option 
> > bit(s) set
> >
> >
>
> It works fine for me:
>
> p4-7088:~>grep power.*wait /etc/inittab
> pf::powerwait:/etc/init.d/powerfail start
> po::powerokwait:/etc/init.d/powerfail stop
> p4-7088:~>dpkg -l pcregrep
> Desired=Unknown/Install/Remove/Purge/Hold
> | Status=Not/Installed/Config-files/Unpacked/Failed-config/Half-installed
> |/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err:
> uppercase=bad)
> ||/ Name   VersionDescription
> +++-==-==-
> ii  pcregrep   7.2-1  grep utility that uses perl 5
> compatible reg
> p4-7088:~>
>
> Please send me the input you used to get the error message and I will
> investigate. Until then there's not a lot I can do.
>
>

Here is an example:
[0:[EMAIL PROTECTED] twinkle]$ grep background *
morebits.js:styles.insertRule(".quickformtooltip { z-index: 200;
position: absolute; padding: .1em; border: 1px dotted red;
background-color: Linen; font: caption; font-size: 10pt; max-width:
800px}", 0);
morebits.js:"background-color: AliceBlue; "+
morebits.js:"background-color: MediumPurple; "+
morebits.js:"background-color: MediumPurple; "+
morebits.js:"background-color: LightSteelBlue; "+
twinklewarn.old.js: data_table.style.background = 'transparent';
[0:[EMAIL PROTECTED] twinkle]$ pcregrep background *
pcregrep: Error in command-line regex at offset 0: unknown option bit(s) set
[0:[EMAIL PROTECTED] twinkle]$ apt-cache policy pcregrep
pcregrep:
  Installerad: 7.2-1
  Kandidat: 7.2-1
  Versionstabell:
 *** 7.2-1 0
500 http://ftp.dk.debian.org unstable/main Packages
100 /var/lib/dpkg/status



-- 
/Carl Fürstenberg <[EMAIL PROTECTED]>


Bug#436277: pcregrep: unknown option bit(s) set

2007-08-06 Thread Carl Fürstenberg
Package: pcregrep
Version: 7.2-1
Severity: grave
Justification: renders package unusable


Everytime I tries to use pcregrep, it just fails telling:
pcregrep: Error in command-line regex at offset 0: unknown option bit(s) set


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

Kernel: Linux 2.6.21-1-686 (SMP w/1 CPU core)
Locale: LANG=sv_SE.UTF-8, LC_CTYPE=sv_SE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages pcregrep depends on:
ii  libc6 2.6-5  GNU C Library: Shared libraries
ii  libpcre3  7.2-1  Perl 5 Compatible Regular Expressi

pcregrep recommends no packages.

-- no debconf information


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



Bug#435034: python2.4-dbus: Stated source package doesn't build this package

2007-07-28 Thread Carl Fürstenberg
Package: python2.4-dbus
Version: 0.62-4
Severity: serious
Justification: Policy 5.6.1


The package states that the source package is "dbus", but the source
package "dbus" doesn't build this package.

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

Kernel: Linux 2.6.21-1-686 (SMP w/1 CPU core)
Locale: LANG=sv_SE.UTF-8, LC_CTYPE=sv_SE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages python2.4-dbus depends on:
ii  libc6  2.5-11GNU C Library: Shared libraries
ii  libdbus-1-20.62-4simple interprocess messaging syst
ii  libdbus-glib-1-2   0.74-1simple interprocess messaging syst
ii  python2.4-libxml2  2.6.26.dfsg-1 Python 2.4 bindings for the GNOME 

python2.4-dbus recommends no packages.

-- no debconf information


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



Bug#434951: python2.4-doc: File created by latex2html included

2007-07-27 Thread Carl Fürstenberg
Package: python2.4-doc
Severity: serious
Justification: Policy 2.2.2

the file 'Doc/html/style.css' in python2.4-doc is partially created by 
LATEX2HTML, and as
I have learned, that is a violation of the DFSG. Correct me if I'm
wrong.

/Carl Fürstenberg

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

Kernel: Linux 2.6.21-1-686 (SMP w/1 CPU core)
Locale: LANG=sv_SE.UTF-8, LC_CTYPE=sv_SE.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#416518: Possible bug in reportbug

2007-03-28 Thread Carl Fürstenberg

Package: reportbug
Version: 3.34
Severity: serious

Have to report this manually as reportbug doesn't work for me at the
moment. When trying to execute reportbug, I get this error:

[0:[EMAIL PROTECTED] ~]$ reportbug
Traceback (most recent call last):
 File "/usr/bin/reportbug", line 1750, in ?
   main()
 File "/usr/bin/reportbug", line 575, in main
   args = reportbug.parse_config_files()
 File "/usr/share/reportbug/reportbug.py", line 835, in parse_config_files
   args[token] = bit.encode('utf-8', 'replace')
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position
6: ordinal not in range(128)
[0:[EMAIL PROTECTED] ~]$ reportbug --version
Traceback (most recent call last):
 File "/usr/bin/reportbug", line 1750, in ?
   main()
 File "/usr/bin/reportbug", line 575, in main
   args = reportbug.parse_config_files()
 File "/usr/share/reportbug/reportbug.py", line 835, in parse_config_files
   args[token] = bit.encode('utf-8', 'replace')
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position
6: ordinal not in range(128)

/Carl


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



Bug#393595: Not fixed

2006-11-03 Thread Carl Fürstenberg

This bug is as per today, not fixed:

The following packages have unmet dependencies:
 libapache2-mod-php5.1: Depends: apache2-common (>= 2.0.55-4) but it
is not installable
E: Broken packages


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