Bug#609404: python-stdeb: Python-stdeb requires python-all to build packages

2011-01-09 Thread LUK ShunTim
Package: python-stdeb
Version: 0.6.0+20100620-1
Severity: normal

Hi,

I tried to build a deb package of matplotlib 1.0.1 using the 2-step py2dsc 
and dpkg-buildpackage approach. In the py2dsc stage, there's a message 
This version of stdeb requires python-all = 2.6.6-3, but you do not have this 
package installed. Could not check compatibility. though the source package 
was sucessfully generated. During dpkg-buildpackage it aborted at the message
dpkg-checkbuilddeps: Unmet build dependencies: python-all-dev (= 2.6.6-3)
dpkg-buildpackage: warning: Build dependencies/conflicts unsatisfied; aborting.

Passing the option --workaround-548392=True results in 
error: error in command line: command 'sdist_dsc' has no such option 
'workaround_548392'

I did not install python-all as I am using python 2.6 only and don't need 
python 2.5. Python-stdeb does not depend on, but only recommends, python-all. 

Please make python-stdeb able to build only for a specific python  version.

Regards,
ST 
-- System Information:
Debian Release: 6.0
  APT prefers unstable
  APT policy: (900, 'unstable')
Architecture: i386 (i686)

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

Versions of packages python-stdeb depends on:
ii  debhelper   8.0.0helper programs for debian/rules
ii  python  2.6.6-3+squeeze4 interactive high-level object-orie
ii  python-setuptools   0.6.14-4 Python Distutils Enhancements (set
ii  python2.6   2.6.6-8+b1   An interactive high-level object-o

Versions of packages python-stdeb recommends:
ii  apt-file  2.4.0  search for files within Debian pac
ii  dpkg-dev  1.15.8.8   Debian package development tools
pn  python-allnone (no description available)

Versions of packages python-stdeb suggests:
pn  python-all-devnone (no description available)

-- no debconf information


-- System Information:
Debian Release: 6.0
  APT prefers unstable
  APT policy: (900, 'unstable')
Architecture: i386 (i686)

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

Versions of packages python-stdeb depends on:
ii  debhelper   8.0.0helper programs for debian/rules
ii  python  2.6.6-3+squeeze4 interactive high-level object-orie
ii  python-setuptools   0.6.14-4 Python Distutils Enhancements (set
ii  python2.6   2.6.6-8+b1   An interactive high-level object-o

Versions of packages python-stdeb recommends:
ii  apt-file  2.4.0  search for files within Debian pac
ii  dpkg-dev  1.15.8.8   Debian package development tools
pn  python-allnone (no description available)

Versions of packages python-stdeb suggests:
pn  python-all-devnone (no description available)

-- no debconf information



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



Bug#609284: Comment

2011-01-09 Thread Jordi Mas
Hello Jason,

Thanks a lot for your comment

I fixed this in head and it will be part of gbrainy 1.6.1.

Thanks,

Jordi,


Bug#602601: ghostscript-cups: Printing a pdf-file inverts color of images

2011-01-09 Thread Markus Steinborn

Ho Jonas,

for a reproducer and a patch see the upstream bug report:

http://bugs.ghostscript.com/show_bug.cgi?id=691759


Greetimgs

Markus Steinborn
GNU gv maintainer




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



Bug#332653: [bug #14747] major (10X) memory savings possible in some situations

2011-01-09 Thread Earl Hood

Update of bug #14747 (project mhonarc):

  Status:  Ready For Test = Fixed  
   Fixed Release: = 2.6.17 


___

Reply to this item at:

  http://savannah.nongnu.org/bugs/?14747

___
  Message sent via/by Savannah
  http://savannah.nongnu.org/




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



Bug#609405: git-daemon-run: sometimes binds to fewer addresses on restart (does not use SO_REUSEADDR)

2011-01-09 Thread Jonathan Nieder
Package: git-daemon-run
Version: 1:1.7.2.3-2.2
Severity: important
Justification: bad behavior, especially re ipv6 support

Hi,

Was playing around with git-daemon-run to compare it with the proposed
sysvinit support.  See [1] for the war story.

Okay, finished?  The upshot is, as ip(7) explains,

A TCP local socket address that has been bound is unavailable
for some time  after  closing,  unless  the SO_REUSEADDR flag
has been set.  Care should be taken when using this flag as it
makes TCP less reliable.

More precisely:

1. server closes connection, for example by exiting.
2. kernel places connection in TIME-WAIT state.  The address is in use.
3. git-daemon gets EADDRINUSE when it tries to use that address, since
   the SO_REUSEADDR flag is not set.  If all (usually meaning both)
   addresses to be bound to are in use, the daemon dies with

fatal: unable to allocate any listen sockets on port 9418

   and gets launched again by runit when an address is free.

   If only _some_ of the addresses to be bound to are in use in this
   way, the daemon does not get launched again, and it is bound only
   to the remaining ones.

Analysis:

 - The ideal would be to disallow connections _from the same client
   address and port_ until the TIME-WAIT state ends.  Is that easy to
   achieve?

 - A workaround, even though it violates the spirit of TCP, is to just
   forget about TIME-WAIT in the case of restarting the daemon.  I
   _suspect_ that this is what the git daemon --reuseaddr flag does
   but of course it is hard to check.

 - The fourth best behavior would be to convince git daemon that
   EADDRINUSE is fatal so runit keeps on trying to relaunch the daemon
   until all its addresses are available.

 - Of course better is to run separate daemons for ipv4 and ipv6.

Thoughts?
Jonathan

[1] In one terminal I start the daemon and clear its log:

# sv stop git-daemon
ok: down: git-daemon: 1s, normally up
# sh -c '/var/log/git-daemon/current'
# sv start git-daemon
ok: run: git-daemon: (pid 6070) 0s

Great.  Now in another terminal I start a connection:

$ git clone git://localhost/git/git.git
Cloning into git...
remote: Counting objects: 113028, done.

Back in the first terminal, I brutally interrupt the daemon, to see
how the supervision copes.

# killall -9 git-daemon

Great, it seems!  The clone continues unhindered (I think the process
actually transmitting data is git upload-pack).  The log informs me
that all is well.

# cat /var/log/git-daemon/run
2011-01-09_06:29:43.06660 git-daemon starting.
2011-01-09_06:30:01.26329 [6074] Connection from [::1]:33407
2011-01-09_06:30:01.26340 [6074] Extended attributes (16 bytes) exist 
host=localhost
2011-01-09_06:30:01.26429 [6074] Request upload-pack for '/git/git.git'
2011-01-09_06:30:05.41074 git-daemon starting.

Now again.

$ rm -fr git; git clone git://localhost/git/git.git
Cloning into git...
localhost[0: ::1]: errno=Connection refused
remote: Counting objects: 19469   

Interrupting the daemon:

# killall -9 git-daemon

The clone continues unhindered.  Log:

# sudo cat /var/log/git-daemon/current
2011-01-09_06:29:43.06660 git-daemon starting.
2011-01-09_06:30:01.26329 [6074] Connection from [::1]:33407
2011-01-09_06:30:01.26340 [6074] Extended attributes (16 bytes) exist 
host=localhost
2011-01-09_06:30:01.26429 [6074] Request upload-pack for '/git/git.git'
2011-01-09_06:30:05.41074 git-daemon starting.
2011-01-09_06:31:19.83078 [6091] Connection from 127.0.0.1:39196
2011-01-09_06:31:19.83095 [6091] Extended attributes (16 bytes) exist 
host=localhost
2011-01-09_06:31:19.83206 [6091] Request upload-pack for '/git/git.git'
2011-01-09_06:31:29.42557 git-daemon starting.
2011-01-09_06:31:29.43869 fatal: unable to allocate any listen sockets 
on port 9418
2011-01-09_06:31:30.44277 git-daemon starting.
2011-01-09_06:31:30.44796 fatal: unable to allocate any listen sockets 
on port 9418
[3 more failures before it succeeds]



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



Bug#536441: kcm_kdm: It's a different upstream bug

2011-01-09 Thread Modestas Vainius
Hello,

On sekmadienis 09 Sausis 2011 02:12:19 Shai Berger wrote:
 Hi devs,
 
 The bug that is referenced here as the upstream bug
 was about a general deficiency in systemsettings; the
 part that is specific to KDM is
 http://bugs.kde.org/show_bug.cgi?id=236415
 
 This bug has also been solved upstream (in KDE 4.5),
 but apparently the fix was not backported to 4.4.
 
 Is there any chance of applying it to Debian's KDE?

No because the patch is a complete rewrite.


-- 
Modestas Vainius mo...@debian.org


signature.asc
Description: This is a digitally signed message part.


Bug#332653: [bug #14747] major (10X) memory savings possible in some situations

2011-01-09 Thread Earl Hood

Update of bug #14747 (project mhonarc):

 Open/Closed:Open = Closed 


___

Reply to this item at:

  http://savannah.nongnu.org/bugs/?14747

___
  Message sent via/by Savannah
  http://savannah.nongnu.org/




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



Bug#609406: [INTL:da] Danish translation of the debconf templates tgif

2011-01-09 Thread Joe Dalton
Package: tgif
Severity: wishlist
Tags: l10n patch

Please include the attached Danish debconf translations.

j...@joe-desktop:~/over/debian/tgif$ msgfmt --statistics -c -v -o /dev/null 
da.po
da.po: 8 oversatte tekster.

bye
Joe

# Danish translation for tgif.
# Copyright (C) 2011 tgif og nedenstående oversættere.
# This file is distributed under the same license as the tgif package.
# Claus Hindsgaul claus.hindsg...@gmail.com, 2004.
# Joe Hansen (joedalt...@yahoo.dk), 2011.
#
msgid 
msgstr 
Project-Id-Version: tgif\n
Report-Msgid-Bugs-To: \n
POT-Creation-Date: 2010-12-30 10:31+0100\n
PO-Revision-Date: 2011-01-09 20:07+0100\n
Last-Translator: Joe Hansen joedalt...@yahoo.dk\n
Language-Team: Danish debian-l10n-dan...@lists.debian.org\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n
X-Generator: KBabel 1.0.2\n

#. Type: select
#. Choices
#: ../tgif.templates:1001
msgid A4
msgstr A4

#. Type: select
#. Choices
#: ../tgif.templates:1001
msgid Letter
msgstr Letter

#. Type: select
#. Description
#: ../tgif.templates:1002
msgid What size of paper should Tgif use?
msgstr Hvilken papirstørrelse skal Tgif bruge?

#. Type: select
#. Description
#: ../tgif.templates:1002
msgid 
Select the size of paper to be used by your installation of Tgif.  This 
selection will be appended to the global Tgif initialization file.
msgstr 
Vælg papirets størrelse der skal bruges af din installation af Tgif. 
Denne markering vil blive tilføjet til den globale Tgif-initialiseringsfil.

#. Type: select
#. Choices
#: ../tgif.templates:2001
msgid Metric
msgstr Metisk

#. Type: select
#. Choices
#: ../tgif.templates:2001
msgid Imperial
msgstr Engelsk

#. Type: select
#. Description
#: ../tgif.templates:2002
msgid What units are to be used for the grid?
msgstr Hvilke enheder skal bruges til gitteret?

#. Type: select
#. Description
#: ../tgif.templates:2002
msgid 
Select the units to be used by Tgif when rendering the grid.  This will also 
the determine the scaling when the snap-to-grid option is turned on.
msgstr 
Vælg enhederne, der skal bruges af Tgif, når gitteret optegnes. Dette vil også 
bestemme skaleringen, når indstillingen tilpas-til-gitter er aktiveret.



Bug#609407: firmware-iwlwifi: Can't resume from hibernate due to iwlagn

2011-01-09 Thread harven
Package: firmware-iwlwifi
Version: 0.27
Severity: normal

I recently upgraded debian squeeze a week ago and now I have a problem with
hibernate, which is related to iwlagn. Everything was working fine before the
upgrade.

This is on a Dell Latitude E6400. That computer has a switch on its right side,
that enable/disable wifi and bluetooth. Starting the computer with that switch
off (I don't use wifi often), everything works fine. Then I put the computer
into hibernate mode (either through the menu or with pm-hibernate).
The computer goes to sleep. At wake up, the following message is printed
on screen.

[2282-124196] iwlagn 000:0c:00.0: MAC is in deep sleep! CSR_GP_CNTRL = 0xOOO
 repeated several times
[2282-124196] iwlagn 000:0c:00.0: Hardware error detected. Restarting
[2282-62340] hub 3.0: 1.0: unable to enumerate USB device on port 1

Then, nothing else and a hard reboot is needed.

The problem does not appear if the wifi switch is on. So my guess is, it tries
to
find the wifi after waking up even if it is not enabled, and fails in that
case.
The problem also appears sometimes when suspending the computer,
but not always.

Sidenote: the only wifi related packages on the computer are
firmware-iwlwifi and wireless-tools.



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

Kernel: Linux 2.6.32-5-686 (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

firmware-iwlwifi depends on no packages.

firmware-iwlwifi recommends no packages.

Versions of packages firmware-iwlwifi suggests:
ii  initramfs-tools 0.98.6   tools for generating an initramfs
ii  linux-image-2.6.30-2-68 2.6.30-8squeeze1 Linux 2.6.30 image on PPro/Celeron
ii  linux-image-2.6.32-5-68 2.6.32-29Linux 2.6.32 for modern PCs

-- no debconf information



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



Bug#609409: dh-make-perl: Please could we have a map of canonical emails for copyright refreshes

2011-01-09 Thread Nicholas Bamber
Package: dh-make-perl
Version: 0.71-1
Severity: wishlist
Tags: upstream


Problem

The Debian package group seems to spend a lot of time handling
the update of email addresses, especially for those who have become
Debian developers. This happens in two phases:
1.) On ascension to Debian developer status a mass update of packages
previously done is often executed
2.) Everytime  a package has its copyright refreshed the dh-make-perl refresh
--only copyright invocation rereads the email addresses. The packager really 
needs to go through the generated copyright notice and check the emails.
This is error prone.

Proposal

My real beef is 2.) though I suggest my idea might remove the need for 1.)
dh-make-perl should have a mapping of old email addresses to canonical
email addresses (usually @debian.org but not always).
On becoming a debian developer, someone would merely update this mapping
rather than doing the mass update.
On refreshing copyright, dh-make-perl would use the canonical email address
where available and would merge any duplicates.

-- System Information:
Debian Release: 6.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-686 (SMP w/1 CPU core)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages dh-make-perl depends on:
ii  debhelper 8.0.0  helper programs for debian/rules
ii  dpkg-dev  1.15.8.7   Debian package development tools
ii  fakeroot  1.14.5-1   Gives a fake root environment
ii  libapt-pkg-perl   0.1.24+b1  Perl interface to libapt-pkg
ii  libarray-unique-perl  0.08-1 Tie-able array that allows only un
ii  libclass-accessor-perl0.34-1 Perl module that automatically gen
ii  libdpkg-perl  1.15.8.7   Dpkg perl modules
ii  libemail-date-format-perl 1.002-1Module to generate RFC-2822-valid 
ii  liblist-moreutils-perl0.25~02-1  Perl module with additional list f
ii  libmodule-corelist-perl   2.42-1 module to determine modules shippe
ii  libmodule-depends-perl0.15-1 Perl module to identify the depend
ii  libparse-debcontrol-perl  2.005-2Easy OO parsing of Debian control-
ii  libparse-debianchangelog-perl 1.1.1-2.1  parse Debian changelogs and output
ii  libsoftware-license-perl  0.102340-1 module providing templated softwar
ii  libtie-ixhash-perl1.21-2 ordered associative arrays for Per
ii  libwww-mechanize-perl 1.66-1 module to automate interaction wit
ii  libyaml-perl  0.71-1 YAML Ain't Markup Language
ii  make  3.81-8 An utility for Directing compilati
ii  perl  5.10.1-16  Larry Wall's Practical Extraction 
ii  perl-modules [libmodule-corel 5.10.1-16  Core Perl modules

Versions of packages dh-make-perl recommends:
ii  apt-file  2.4.0  search for files within Debian pac

dh-make-perl suggests no packages.

-- no debconf information



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



Bug#609410: unblock: pyxpcom/1:0.0~hg20100212-5

2011-01-09 Thread Mike Hommey
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package pyxpcom

This release finally fixes all known install/upgrade issues. The changelog
boils down to this:

  * debian/control: Conflicts with xulrunner-1.9.1 = 1.9.1.11-1.
Closes: #596459.
  * debian/prerm.in, debian/postinst.in, debian/install.in: Install
libpyloader.so in /usr/lib/python-xpcom and create a symbolic link
in xulrunner components directory so that component registration
(which we need to trigger by hand) always work. Closes: #582071.

This is the -4 changelog, but the -5 release only fixes the changes from -4
so its changelog is largely irrelevant.

debdiff attached.

unblock pyxpcom/1:0.0~hg20100212-5

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

Kernel: Linux 2.6.32-5-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -u pyxpcom-0.0~hg20100212/debian/install.in pyxpcom-0.0~hg20100212/debian/install.in
--- pyxpcom-0.0~hg20100212/debian/install.in
+++ pyxpcom-0.0~hg20100212/debian/install.in
@@ -1,5 +1,5 @@
 builddir/dist/bin/libpyxpcom.so ##XREDIR##
-builddir/dist/bin/components/libpyloader.so ##XREDIR##/components
+builddir/dist/bin/components/libpyloader.so usr/lib/python-xpcom
 builddir/dist/bin/components/pyabout.py ##XREDIR##/components
 builddir/dist/bin/python/* usr/lib/##PYVER##/site-packages
 builddir/dist/include/PyXPCOM.h ##INCDIR##
diff -u pyxpcom-0.0~hg20100212/debian/changelog pyxpcom-0.0~hg20100212/debian/changelog
--- pyxpcom-0.0~hg20100212/debian/changelog
+++ pyxpcom-0.0~hg20100212/debian/changelog
@@ -1,3 +1,21 @@
+pyxpcom (1:0.0~hg20100212-5) unstable; urgency=low
+
+  * debian/postinst.in: Fix symbolic link destination, and fix the way
+it is created.
+
+ -- Mike Hommey gland...@debian.org  Sat, 08 Jan 2011 11:04:50 +0100
+
+pyxpcom (1:0.0~hg20100212-4) unstable; urgency=low
+
+  * debian/control: Conflicts with xulrunner-1.9.1 = 1.9.1.11-1.
+Closes: #596459.
+  * debian/prerm.in, debian/postinst.in, debian/install.in: Install
+libpyloader.so in /usr/lib/python-xpcom and create a symbolic link
+in xulrunner components directory so that component registration
+(which we need to trigger by hand) always work. Closes: #582071.
+
+ -- Mike Hommey gland...@debian.org  Fri, 07 Jan 2011 14:40:06 +0100
+
 pyxpcom (1:0.0~hg20100212-3) unstable; urgency=low
 
   * debian/control: Replace Pre-Depends with plain dependency for xulrunner.
reverted:
--- pyxpcom-0.0~hg20100212/debian/postinst
+++ pyxpcom-0.0~hg20100212.orig/debian/postinst
@@ -1,10 +0,0 @@
-#!/bin/sh
-
-set -e
-
-# xulrunner trigger needs that to happen before running
-if [ $1 = configure ]; then
-	update-python-modules -p
-fi
-
-#DEBHELPER#
diff -u pyxpcom-0.0~hg20100212/debian/control pyxpcom-0.0~hg20100212/debian/control
--- pyxpcom-0.0~hg20100212/debian/control
+++ pyxpcom-0.0~hg20100212/debian/control
@@ -21,6 +21,7 @@
  ${python:Depends},
  ${xulrunner:Depends}
 Breaks: epiphany-gecko ( 2.28)
+Conflicts: xulrunner-1.9.1 (= 1.9.1.11-1)
 XB-Python-Version: ${python:Versions}
 Description: XPCOM bindings for Python
  PyXPCOM allows for communication between Python and XPCOM, such that a
diff -u pyxpcom-0.0~hg20100212/debian/prerm.in pyxpcom-0.0~hg20100212/debian/prerm.in
--- pyxpcom-0.0~hg20100212/debian/prerm.in
+++ pyxpcom-0.0~hg20100212/debian/prerm.in
@@ -3,7 +3,8 @@
 set -e
 
 if [ $1 = remove ]; then
-rm -f ##XREDIR##/components/pyabout.pyo
+rm -f ##XREDIR##/components/pyabout.pyo \
+  ##XREDIR##/components/libpyloader.so
 fi
 
 #DEBHELPER#
only in patch2:
unchanged:
--- pyxpcom-0.0~hg20100212.orig/debian/postinst.in
+++ pyxpcom-0.0~hg20100212/debian/postinst.in
@@ -0,0 +1,10 @@
+#!/bin/sh
+
+set -e
+
+if [ $1 = configure ]; then
+ln -snf ../../python-xpcom/libpyloader.so ##XREDIR##/components/libpyloader.so
+dpkg-trigger ##XREDIR##/components
+fi
+
+#DEBHELPER#


Bug#609218: ITP: qsapecng -- a Qt-based Symbolic Analysis Program for Electric Circuits

2011-01-09 Thread Simone Rossetto
Hi Georges, great!

I'm very happy you are interested in QSapecNG and I think Michele (the upstream 
author) is
happy too. We hope you will appreciate this program.

The package for Debian is almost ready, I have to adjust some things (like bug 
number) and
I'll provide you all the files, source and binaries.


Best regards, thanks
Simone





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



Bug#609388: Unsuccessful installation with squeeze beta2 installer and Realtek RTL8111DL

2011-01-09 Thread Herbert Kaminski

Stephen Conrad schrieb:


Networking: Realtek RTL8111DL (integrated, wired)

...
 ...installer...requesting that rtl8168d-1.fw and rtl8168d-2.fw
 be provided

I have successfully run several installation tests on a similar
board with the RTL8111 chip onboard:

output of lspci -nn:
02:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. 
RTL8111/8168B PCI Express Gigabit Ethernet controller [10ec:8168] (rev 02)

without the installer requesting any firmware files. Looks like
there are different versions of that chip. Maybe...

Output of lspci -knn (or lspci -nn):

...shows the difference?

cu
  Herbert

--



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



Bug#609384: [Pkg-citadel-devel] Bug#609384: Incorrect use of memset count/value

2011-01-09 Thread w.goesgens
Hy Silvio,  

fixed in git master.  

since the next line terminates the string it puts in anyways, I don't see any
urge to backport this to any stable version.  

Thanks for reporting.  

   

Wilfried Goesgens  
  So Jan 09 2011 03:40:56 CET von  Silvio Cesare
silvio.ces...@gmail.com  Betreff: [Pkg-citadel-devel] Bug#609384: Incorrect
use of memset count/value

Package: citadel-common

  Version: 7.37-8
Severity: minor

./citadel_7.37/modules/pop3/serv_pop3.c:   memset(userdigest,
MD5_HEXSTRING_SIZE, 0);

The 0 should be in the second argument, not the third.



  

  

 

Bug#609411: please enable the module ngx_http_addition_module

2011-01-09 Thread Dmitry E. Oboukhov
Package: nginx-full
Version: 0.8.54-2
Severity: wishlist


nginx has the module:

http://wiki.nginx.org/HttpAdditionModule
http://sysoev.ru/nginx/docs/http/ngx_http_addition_module.html

now this module is disabled in nginx-full:

Restarting nginx: [emerg]: unknown directive add_before_body in
/etc/nginx/sites-enabled/debian.uvw.ru:31
configuration file /etc/nginx/nginx.conf test failed
invoke-rc.d: initscript nginx, action restart failed.

-- 
... mpd is off

. ''`.   Dmitry E. Oboukhov
: :’  :   email: un...@debian.org jabber://un...@uvw.ru
`. `~’  GPGKey: 1024D / F8E26537 2006-11-21
  `- 1B23 D4F8 8EC0 D902 0555  E438 AB8C 00CF F8E2 6537


signature.asc
Description: Digital signature


Bug#609412: icmptx: should configure tun0 device

2011-01-09 Thread Russell Coker
Package: icmptx
Version: 0.2-1
Severity: normal

When icmptx is run it should configure the tun0 (or whatever - something else
could have got tun0 first) device itself instead of requiring the user to
manually do it.


-- System Information:
Debian Release: 6.0
  APT prefers testing
  APT policy: (350, 'testing')
Architecture: amd64 (x86_64)

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

Versions of packages icmptx depends on:
ii  libc6 2.11.2-7   Embedded GNU C Library: Shared lib

icmptx recommends no packages.

icmptx suggests no packages.

-- no debconf information



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



Bug#609413: icmptx -s should set icmp_echo_ignore_all and also emulate regular ping

2011-01-09 Thread Russell Coker
Package: icmptx
Version: 0.2-1
Severity: normal

Instead of having to use a shell script to set things up the icmptx program
should set /proc/sys/net/ipv4/icmp_echo_ignore_all to 1.  It should set it
back to it's original value on program exit and ideally it should emulate
the regular ping function.  For any ICMP echo request which doesn't have an
icmptx magic number it should emulate the kernel functionality so that the
host can still be pinged.

-- System Information:
Debian Release: 6.0
  APT prefers testing
  APT policy: (350, 'testing')
Architecture: amd64 (x86_64)

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

Versions of packages icmptx depends on:
ii  libc6 2.11.2-7   Embedded GNU C Library: Shared lib

icmptx recommends no packages.

icmptx suggests no packages.

-- no debconf information



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



Bug#609414: icmptx: should call daemon(0,0) when run with -s

2011-01-09 Thread Russell Coker
Package: icmptx
Version: 0.2-1
Severity: normal

When run as a server it should call daemon(0,0) to put itself into the
background.

-- System Information:
Debian Release: 6.0
  APT prefers testing
  APT policy: (350, 'testing')
Architecture: amd64 (x86_64)

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

Versions of packages icmptx depends on:
ii  libc6 2.11.2-7   Embedded GNU C Library: Shared lib

icmptx recommends no packages.

icmptx suggests no packages.

-- no debconf information



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



Bug#606437: (no subject)

2011-01-09 Thread Steve R. Petruzzello
Bcc: 
Subject: Re: Bug#606437: foxtrotgps: French po translation
Reply-To: 
In-Reply-To: 4d28ebfa.9080...@debian.org
X-Operating-System: Linux 2.6.32-5-amd64

Hi Daniel.

Le 08-01-2011, à 23:58:02 +0100, Daniel Baumann (dan...@debian.org) a écrit :

 Steve, could you please follow up to what Joshua asked?

Hasn't he received my email I sent him on Decembre 17th? With the 5 new
strings translated? Well I guess not, so here it is.

Happy New Year

Best regards

Steve
# foxtrotgps french translation 
# Copyright (C) 2008
# This file is distributed under the same license as the foxtrotgps package.
# Steve Petruzzello dl...@bluewin.ch, 2010.
#
msgid 
msgstr 
Project-Id-Version: 0.99-4\n
Report-Msgid-Bugs-To: \n
POT-Creation-Date: 2010-12-10 22:28-0500\n
PO-Revision-Date: 2010-12-11 15:10-0500\n
Last-Translator: Steve Petruzzello dl...@bluewin.ch\n
Language-Team: french debian-l10n-fre...@lists.debian.org\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n

#: ../src/support.c:97 ../src/support.c:121
#, c-format
msgid Couldn't find pixmap file: %s
msgstr Fichier %s des images introuvable

#. Developers may run into this if they're naively
#. trying to run from the build-tree without having
#. specifically configured the build to allow that or
#. having passed a --gui=... option to the program,
#. so we need to actually catch this error and output
#. an informative message.
#.
#. This is, however, not an error that end users should face;
#. if they do, then someone upstream from them messed up--
#. either `make install' worked only half-way, or a packager
#. left something critical out of the package. In either case,
#. we want to fail in a way that indicates to the user
#. that something is really wrong and they should report
#. a bug.
#.
#: ../src/main.c:103
#, c-format
msgid 
%s could not load its user interface; %s does not not appear to be properly 
installed.
msgstr %s n'a pu charger son interface utilisateur ; %s n'a pas été installé 
correctement.

#: ../src/friends.c:599
msgid Msg
msgstr Msg

#: ../src/friends.c:607 ../src/friends.c:974 ../data/foxtrotgps.glade.h:171
msgid Go To
msgstr Aller à

#: ../src/friends.c:966
msgid Reply
msgstr Répondre

#: ../src/geo_photos.c:702 ../data/foxtrotgps.glade.h:224
msgid Working
msgstr En cours...

#: ../data/foxtrotgps.desktop.in.h:1
msgid Display map and GPS position
msgstr Afficher la carte et la position GPS

#: ../data/foxtrotgps.desktop.in.h:2
msgid FoxtrotGPS
msgstr FoxtrotGPS

#: ../data/foxtrotgps.desktop.in.h:3
msgid GPS and Map
msgstr GPS et carte

#: ../data/foxtrotgps.glade.h:1
msgid 
\n
\n
msgstr 
\n
\n

#: ../data/foxtrotgps.glade.h:4
msgid 
\n
Set GPSD Host IP\n
msgstr 
\n
Régler l'IP de l'hôte GPSD\n

#: ../data/foxtrotgps.glade.h:7
msgid   +00:00h
msgstr   +00:00h

#: ../data/foxtrotgps.glade.h:8
msgid   0 seconds
msgstr   0 seconde

#: ../data/foxtrotgps.glade.h:9
msgid  GPSD 
msgstr GPSD

#: ../data/foxtrotgps.glade.h:10
msgid  Lon: 
msgstr Lon : 

#: ../data/foxtrotgps.glade.h:11
msgid  Port:
msgstr  Ports :

#: ../data/foxtrotgps.glade.h:12
msgid + 1 zoom level
msgstr + 1 niveau de zoom

#: ../data/foxtrotgps.glade.h:13
msgid + 2 zoom levels
msgstr + 2 niveaux de zoom

#: ../data/foxtrotgps.glade.h:14
msgid + 3 zoom levels
msgstr + 3 niveaux de zoom

#: ../data/foxtrotgps.glade.h:15
msgid + 4 zoom levels (~25MB)
msgstr + 4 niveaux de zoom (~25Mb)

#: ../data/foxtrotgps.glade.h:16
msgid + 5 zoom levels (~100MB)
msgstr + 5 niveaux de zoom (~100Mb)

#: ../data/foxtrotgps.glade.h:17
msgid + 6 zoom levels (~400MB)
msgstr + 6 niveaux de zoom (~400Mb)

#: ../data/foxtrotgps.glade.h:18
msgid -
msgstr -

#: ../data/foxtrotgps.glade.h:19
msgid 
- please choose -\n
Accomodation\n
Businesses\n
Car\n
Cultural\n
Medical\n
Cafe / Pub / Nightlife\n
Place of Worship\n
Public Transportation\n
Restaurant  Food\n
Services\n
Sights  Leisure\n
Shopping\n
Sport\n
My Personal Places
msgstr 
- Veuillez choisir -\n
Hébergement\n
Boutiques\n
Voiture\n
Culturel\n
Médical\n
Café / Pub / Club\n
Lieu de culte\n
Transports publics\n
Restaurant et nourriture\n
Services\n
Visites et loisirs\n
Shopping\n
Sport\n
Mes endroits personnels

#: ../data/foxtrotgps.glade.h:34
msgid --
msgstr --

#: ../data/foxtrotgps.glade.h:35
msgid 
-- Show All --\n
Accomodation\n
Businesses\n
Car\n
Cultural\n
Medical\n
Cafe / Pub / Nightlife\n
Place of Worship\n
Public Transportation\n
Restaurant  Food\n
Services\n
Sights  Leisure\n
Shopping\n
Sport\n
My Personal Places
msgstr 
-- Tout montrer --\n
Hébergement\n
Boutiques\n
Voiture\n
Culturel\n
Médical\n
Café / Pub / Club\n
Lieu de culte\n
Transports publics\n
Restaurant et nourriture\n
Services\n
Visites et loisirs\n
Shopping\n
Sport\n
Mes endroits personnels

#: ../data/foxtrotgps.glade.h:50
msgid 
-12:00\n
-11:00\n
-10:00\n
-09:00\n
-08:00\n
-07:00\n
-06:00\n
-05:00\n
-04:00\n
-03:00\n
-02:00\n
-01:00\n
+00:00\n
+01:00\n
+02:00\n
+03:00\n
+04:00\n
+05:00\n
+06:00\n
+07:00\n
+08:00\n
+09:00\n

Bug#609415: Critical issue with mount not working at boot (with last new mount version!)

2011-01-09 Thread yellow
Package: mount
Version: 2.17.2-5
Severity: important

Hello,

Please find the report for the new  version of mount.
Upgrading the system to newer last version of mount was done on both side of 
the network.

It results that the server is well exporting the NFS (it seems for now, not yet 
buggy)

then the client NFS has into /etc/fstab
mount the NFS 
IP:/home /home nfs   with here regullar parameters


So I boot the client PC and no /home mounted
however tehre is the new mount version !

the users /home folder is not mounted !

so I go to root
and do simply:

# mount /home

and here it is !

So critical bug.

Please  a fix as soon as possible; it is not possible to use NFS and the linux 
machines at all

Kind regards



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

Kernel: Linux 2.6.32-5-686 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages mount depends on:
ii  libblkid1 2.17.2-5   block device id library
ii  libc6 2.11.2-7   Embedded GNU C Library: Shared lib
ii  libselinux1   2.0.96-1   SELinux runtime shared libraries
ii  libsepol1 2.0.41-1   SELinux library for manipulating b
ii  libuuid1  2.17.2-5   Universally Unique ID library

mount recommends no packages.

Versions of packages mount suggests:
ii  nfs-common1:1.2.2-4  NFS support files common to client

-- no debconf information



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



Bug#609416: [psimedia] depends on psi-plus-webkit

2011-01-09 Thread andre . gilde
Package: psimedia
Version: 1.0.3-4
Severity: wishlist

--- Please enter the report below this line. ---
Since there is a new psi-plus-webkit package in the repo, please make psimedia 
package depends on psi or psi-plus or also psi-plus-webkit package.

--- System information. ---
Architecture: amd64
Kernel:   Linux 2.6.37-0.slh.1-aptosid-amd64

Debian Release: 6.0
  500 unstablewww.debian-multimedia.org 
  500 unstableftp.de.debian.org 
  500 unstabledebian.tu-bs.de 
1 experimentalftp.de.debian.org 

--- Package information. ---
Depends  (Version) | Installed
==-+-===
psi-plus   | 
 OR psi  (= 0.13) | 
libc6 (= 2.7) | 2.11.2-7
libgcc1   (= 1:4.1.1) | 1:4.4.5-10
libglib2.0-0   (= 2.16.0) | 2.24.2-1
libgstreamer-plugins-base0.10-0   (= 0.10.23) | 0.10.30-1
libgstreamer0.10-0(= 0.10.16) | 0.10.30-1
liboil0.3   (= 0.3.1) | 0.3.17-2
libqtcore4(= 4:4.6.1) | 4:4.7.1-2
libqtgui4 (= 4:4.5.3) | 4:4.7.1-2
libspeexdsp1(= 1.2~beta3.2-1) | 
libstdc++6  (= 4.1.1) | 4.4.5-10
libxml2(= 2.6.27) | 2.7.8.dfsg-2
gstreamer0.10-plugins-good | 0.10.24-1
gstreamer0.10-alsa | 0.10.30-1


Package's Recommends field is empty.

Package's Suggests field is empty.






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



Bug#599329: call for testing: libva 1.0.7

2011-01-09 Thread Andrey Rahmatullin
On Sat, Jan 08, 2011 at 04:31:34PM +0100, Reinhard Tartler wrote:
 Since I don't own i965 hardware, I cannot really test the libva package
 that I prepared in git. I'd be really curious if bugs #589367 and
 #599329 can be closed now. So if you can, please give these packages a
 shot!
 
 
 Git is here:
 http://git.debian.org/?p=pkg-multimedia/libva.git
 
 I've uploaded test packages here:
 http://people.debian.org/~siretart/libva/
I've found that even 1.0.4 doesn't segfault here anymore (maybe because of
newer nVidia drivers). I've tested 1.0.7 just in case and it works too.

-- 
WBR, wRAR


signature.asc
Description: Digital signature


Bug#609417: users-admin: user option Don't ask for password on login is grayed

2011-01-09 Thread Giovanni Toraldo (gionn)
Package: gnome-system-tools
Version: 2.30.2-2
Severity: normal

Hi,

I am looking around how to easily configure a passwordless user for desktop 
usage (a Guest), I see the option in the Change User Password dialog, but the 
option is grayed. Is there a package to be installed? If yes, it should be 
inserted as a recommended package for gnome-system-tools?

Thanks.

-- System Information:
Debian Release: 6.0
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

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

Versions of packages gnome-system-tools depends on:
ii  gconf22.28.1-6   GNOME configuration database syste
ii  libatk1.0-0   1.30.0-1   The ATK accessibility toolkit
ii  libc6 2.11.2-7   Embedded GNU C Library: Shared lib
ii  libcairo2 1.8.10-6   The Cairo 2D vector graphics libra
ii  libdbus-1-3   1.2.24-4   simple interprocess messaging syst
ii  libfontconfig12.8.0-2.1  generic font configuration library
ii  libfreetype6  2.4.2-2.1  FreeType 2 font engine, shared lib
ii  libgconf2-4   2.28.1-6   GNOME configuration database syste
ii  libglib2.0-0  2.24.2-1   The GLib library of C routines
ii  libgtk2.0-0   2.20.1-2   The GTK+ graphical user interface 
ii  liboobs-1-4   2.30.1-1   GObject based interface to system-
ii  libpango1.0-0 1.28.3-1   Layout and rendering of internatio
ii  libpolkit-gobject-1-0 0.96-4 PolicyKit Authorization API
ii  libpolkit-gtk-1-0 0.96-3 PolicyKit GTK+ API
ii  perl  5.10.1-16  Larry Wall's Practical Extraction 
ii  policykit-1-gnome 0.96-3 GNOME authentication agent for Pol
ii  system-tools-backends 2.10.1-2   System Tools to manage computer co

Versions of packages gnome-system-tools recommends:
ii  gnome-control-center  1:2.30.1-2 utilities to configure the GNOME d

Versions of packages gnome-system-tools suggests:
pn  ntp   none (no description available)

-- no debconf information



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



Bug#609418: uswsusp: spelling fixes

2011-01-09 Thread Flavio Stanchina
Package: uswsusp
Version: 0.8-1.2+b1
Severity: minor
Tags: patch

Here are a few spelling fixes and other minor fixes for the README.Debian
file and for the uswsusp.conf man page (fixes bugs #518636 and #520705).
Also removed end-of-line spaces from README.Debian.

I'm also attaching a word-by-word diff (git-diff --word-diff=color) to show
exactly where the important changes are.
diff --git a/debian/README.Debian b/debian/README.Debian
index f883348..7080466 100644
--- a/debian/README.Debian
+++ b/debian/README.Debian
@@ -1,42 +1,42 @@
 uswsusp for Debian
 --
 
-For suspend/resume to work at all you need a kernel version 2.6.17-rc1 or 
-above. Proper support for s2both on powerpc appeared in version 2.6.22. You 
-will also need a swap partition or file. For swap file support you need kernel 
+For suspend/resume to work at all you need a kernel version 2.6.17-rc1 or
+above. Proper support for s2both on powerpc appeared in version 2.6.22. You
+will also need a swap partition or file. For swap file support you need kernel
 version 2.6.20 or above, swapfile in a LVM partition has a bug and is currently
-not working. Finally, you need and an initramfs to start the resume process. If
-you are using initramfs-tools to generate your initramfs you're in luck; this 
-package provides the necessary hooks and scripts to make it happen. 
+not working. Finally, you need an initramfs to start the resume process. If you
+are using initramfs-tools to generate your initramfs you're in luck; this
+package provides the necessary hooks and scripts to make it happen.
 
-During install a suitable configuration will be written to /etc/uswsusp.conf
-If your not happy with it you can choose to alter it by hand or by running
+During install a suitable configuration will be written to /etc/uswsusp.conf;
+if you're not happy with it you can choose to alter it by hand or by running
 dpkg-reconfigure uswsusp
 If you change it by hand you should run
-update-initramfs -u 
+update-initramfs -u
 (and maybe run lilo) to update your ramdisk.
 
-NOTE, by default update-initramfs -u only updates the ramdisk of the `latest' 
+NOTE, by default update-initramfs -u only updates the ramdisk of the `latest'
 kernel. This can lead to incompatibilities between s2disk and resume if
-you boot an older kernel. You can set update_initramfs=all in 
+you boot an older kernel. You can set update_initramfs=all in
 /etc/initramfs-tools/update-initramfs.conf to let it update all initramfses.
 
-NOTE2, if you have both update-initramfs and yaird installed there is a 
+NOTE 2, if you have both update-initramfs and yaird installed there is a
 possibility that running dpkg-reconfigure won't create an initrd for you.
 You should run update-initramfs by hand (possibly with -t).
 
-This package installs the following binaries in root's path: s2disk, s2ram, 
+This package installs the following binaries in root's path: s2disk, s2ram,
 s2both, suspend-keygen and swap-offset.
 
 s2disk will always poweroff after making a snapshot of the system, if
 your initramfs and uswsusp.conf are correct, this should just work.
 
-s2both will try to suspend to ram (S3) after making the snapshot. 
+s2both will try to suspend to ram (S3) after making the snapshot.
 This is a bit more tricky. Usually there are some issues with the graphics
 card, which most of the time can be worked around.
-It will only try suspend to ram if a work around for your system is known 
+It will only try suspend to ram if a workaround for your system is known
 (or known not to be necessary). You can check if your system is known by
-running 
+running
 s2ram -n
 If it is, you can use s2both. If not you can try and experiment with
 s2ram to find a workaround for your system. Read README.s2ram-whitelist
@@ -44,23 +44,23 @@ for instructions. If you find a work around, please send a report to either
 the debian BTS or directly to the upstream authors.
 
 The uswsusp system supports encrypting the image written to disk. The
-easiest way to enable this is by answering the questions you get by 
-running 'dpkg-reconfigure -pmedium uswsusp'. Alternatively you can read 
-the HOWTO. 
-When using a non-us keyboard layout and encryption one should be aware 
+easiest way to enable this is by answering the questions you get by
+running 'dpkg-reconfigure -pmedium uswsusp'. Alternatively you can read
+the HOWTO.
+When using a non-us keyboard layout and encryption one should be aware
 of the fact that due to a bug in initramfs-tools the passphrase on resume
 should be typed as if one has a non-us keymap. This will hopefully be
 fixed soon.
 
-It also supports two splash systems. The one from bootsplash.org and
+It also supports two splash systems, the one from bootsplash.org and
 splashy. The latter is an userspace implementation. For it to work
 you need to install splashy and a splashy theme. Be carefull not to use
 splashy-from-initramfs (not the default) and uswsusp's splash support
 at the 

Bug#54765: sfte displaying wrong characters

2011-01-09 Thread ashok
Hi
If no one is working is this ..I will take this
Pls let me know
Thanks
Ashok




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



Bug#609419: RM: strutilsxx -- ROM; Library no longer maintained upstream.

2011-01-09 Thread Klaus Reimer
Package: ftp.debian.org
Severity: normal

Please remove strutilsxx from sid. The library is no longer maintained
upstream and was very unpopular anyway. No one will miss it. The only
package depending on it is sqlxx and that is already removed from sid.



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



Bug#608422: procmeter3: Seg fault in CreateMenus with invalid menuLabel widget

2011-01-09 Thread Neil Williams
On Sat, 8 Jan 2011 22:22:46 -0600
Wences René Arana Fuentes arana...@gmail.com wrote:

 Hello, Neil, thanks for all your help with this bug.
 
 Please install xfonts-base package, and try to reproduce the bug
 again.

With and without xfonts-base, I get the same seg fault.
 
 I am able to reproduce it, only after:
 
 # apt-get purge xfonts-base
 
 Again, thanks for your help.

I've got some extra X dbg packages installed:

libxaw7-dbg 2:1.0.8-2
libxt6-dbg1:1.0.7-1

So I get a bit more detail in the trace:

un  xfonts-basenone (no description available)

sudo apt-get install xfonts-base

Setting up xfonts-base (1:1.0.3) ...

Program received signal SIGSEGV, Segmentation fault.
0x779a3f56 in CreateGCs (w=0x62eeb0) at ../../src/SmeBSB.c:714
714 ../../src/SmeBSB.c: No such file or directory.
in ../../src/SmeBSB.c
(gdb) bt
#0  0x779a3f56 in CreateGCs (w=0x62eeb0)
#at ../../src/SmeBSB.c:714 1  0x779a41fe in XawSmeBSBSetValues
#(current=0x7fffd9a0, 
request=value optimized out, cnew=0x62eeb0, args=value optimized
out, num_args=value optimized out) at ../../src/SmeBSB.c:462
#2  0x775277a2 in CallSetValues (class=0x77bd6e20, 
current=0x7fffd9a0, request=0x7fffd680, new=0x62eeb0, 
args=0x7fffdfc0, num_args=3) at ../../src/SetValues.c:125
#3  0x77527b76 in XtSetValues (w=0x62eeb0, args=0x7fffdfc0, 
num_args=3) at ../../src/SetValues.c:261
#4  0x00404e75 in CreateMenus (parent=0x626650) at menus.c:151
#5  0x004077f6 in Start (argc=0x7fffe0cc,
#argv=0x7fffe288)
at window.c:113
#6  0x0040b676 in main (argc=1, argv=0x7fffe288) at
#procmeter.c:89

The seg fault is still in the same place of procmeter3 - menus.c:151

$ sudo dpkg -P xfonts-base

un  xfonts-basenone (no description available)

Reading symbols from /usr/bin/procmeter3...(no debugging symbols found)...done.
(gdb) run

Program received signal SIGSEGV, Segmentation fault.
0x779a3f56 in CreateGCs (w=0x62ee80) at ../../src/SmeBSB.c:714
714 ../../src/SmeBSB.c: No such file or directory.
in ../../src/SmeBSB.c
(gdb) bt
#0  0x779a3f56 in CreateGCs (w=0x62ee80) at ../../src/SmeBSB.c:714
#1  0x779a41fe in XawSmeBSBSetValues (current=0x7fffd9f0, 
request=value optimized out, cnew=0x62ee80, args=value optimized out, 
num_args=value optimized out) at ../../src/SmeBSB.c:462
#2  0x775277a2 in CallSetValues (class=0x77bd6e20, 
current=0x7fffd9f0, request=0x7fffd6d0, new=0x62ee80, 
args=0x7fffe010, num_args=3) at ../../src/SetValues.c:125
#3  0x77527b76 in XtSetValues (w=0x62ee80, args=0x7fffe010, 
num_args=3) at ../../src/SetValues.c:261
#4  0x00404e75 in CreateMenus ()
#5  0x004077f6 in Start ()
#6  0x0040b676 in main ()

What other font packages do you have installed?

-- 


Neil Williams
=
http://www.linux.codehelp.co.uk/



pgpcmndqIsTdL.pgp
Description: PGP signature


Bug#609420: O: qmailanalog-installer -- Installer package for building qmailanalog binary package

2011-01-09 Thread Klaus Reimer
Package: wnpp
Severity: normal

I'm no longer using qmail and qmailanalog so I can't maintain this package
good enough. I'm orphaning it hereby and I recommend deletion of it because it
is very unpopular according to popcon and installer-packages are always a
pain in the ass.



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



Bug#598720: Happens on both amd64 and i386 platforms

2011-01-09 Thread John Winters
I've tried this on a number of machines, both amd64 and i386, and it 
happens every time on all of them.


John



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



Bug#609417: Acknowledgement (users-admin: user option Don't ask for password on login is grayed)

2011-01-09 Thread Giovanni Toraldo
Hi,

after another googlin' session, I've found this:

https://bbs.archlinux.org/viewtopic.php?pid=773159#p773159

I've created the group:
# addgroup nopasswdlogin

and added the required line in gdm3 pam before @common-auth:
$ cat /etc/pam.d/gdm3
#%PAM-1.0
authrequisite   pam_nologin.so
authrequiredpam_env.so readenv=1
authrequiredpam_env.so readenv=1 envfile=/etc/default/locale
authrequiredpam_succeed_if.so user != root quiet_success
authsufficient  pam_succeed_if.so  user ingroup nopasswdlogin
@include common-auth
authoptionalpam_gnome_keyring.so
@include common-account
session requiredpam_limits.so
@include common-session
session optionalpam_gnome_keyring.so auto_start
@include common-password

Now that function is working correctly.
Can those steps be addressed by gdm install script?

Thanks.

-- 
Giovanni Toraldo
http://gionn.net/



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



Bug#525483: clamav-daemon: clamd still crahes (sporadically) on my installation (0.96.5+dfsg-1)

2011-01-09 Thread Jakob Praher
Package: clamav-daemon
Version: 0.96.5+dfsg-1~volatile1
Followup-For: Bug #525483


I got the following segfault in /var/log/messages:
Jan  8 23:18:41 mail2 kernel: [549287.869220] clamd[513]: segfault at 6a88f245 
ip b6e871c1 sp 
bfd9e594 error 4 in libclamav.so.6.1.7[b6dc6000+90f000]

The freshclam update was at (so actually later - but I am UTC+1, so if 
/var/log/messages is 
in UTC then below could be first)

Sat Jan  8 23:44:01 2011 - Connecting via X
Sat Jan  8 23:44:01 2011 - Downloading daily-12495.cdiff [100%]Sat Jan  8 
23:44:02 2011 - 
daily.cld updated (version: 12495, sigs: 14206, f-level: 58, builder: gui
tar)
Sat Jan  8 23:44:02 2011 - Connecting via X
Sat Jan  8 23:44:02 2011 - bytecode.cvd is up to date (version: 114, sigs: 27, 
f-level: 58, 
builder:
 edwin)
Sat Jan  8 23:44:02 2011 - Database updated (860447 signatures) from 
db.local.clamav.netSat 
Jan  8 23:44:02 2011 - --

-- Package-specific info:
--- configuration ---
Checking configuration files in /etc/clamav

Config file: clamd.conf
---
LogFile = /var/log/clamav/clamd.log
LogFileUnlock disabled
LogFileMaxSize = 1048576
LogTime = yes
LogClean disabled
LogSyslog disabled
LogFacility = LOG_LOCAL6
LogVerbose disabled
ExtendedDetectionInfo = yes
PidFile = /var/run/clamav/clamd.pid
TemporaryDirectory disabled
DatabaseDirectory = /var/lib/clamav
OfficialDatabaseOnly disabled
LocalSocket = /tmp/clamd.socket
LocalSocketGroup disabled
LocalSocketMode disabled
FixStaleSocket = yes
TCPSocket disabled
TCPAddr disabled
MaxConnectionQueueLength = 15
StreamMaxLength = 26214400
StreamMinPort = 1024
StreamMaxPort = 2048
MaxThreads = 12
ReadTimeout = 180
CommandReadTimeout = 5
SendBufTimeout = 200
MaxQueue = 100
IdleTimeout = 30
ExcludePath disabled
MaxDirectoryRecursion = 15
FollowDirectorySymlinks disabled
FollowFileSymlinks disabled
CrossFilesystems = yes
SelfCheck = 3600
VirusEvent disabled
ExitOnOOM disabled
Foreground disabled
Debug disabled
LeaveTemporaryFiles disabled
User = clamav
AllowSupplementaryGroups = yes
Bytecode = yes
BytecodeSecurity = TrustSigned
BytecodeTimeout = 6
BytecodeMode = Auto
DetectPUA disabled
ExcludePUA disabled
IncludePUA disabled
AlgorithmicDetection = yes
ScanPE = yes
ScanELF = yes
DetectBrokenExecutables disabled
ScanMail = yes
ScanPartialMessages disabled
PhishingSignatures = yes
PhishingScanURLs = yes
PhishingAlwaysBlockCloak disabled
PhishingAlwaysBlockSSLMismatch disabled
HeuristicScanPrecedence disabled
StructuredDataDetection disabled
StructuredMinCreditCardCount = 3
StructuredMinSSNCount = 3
StructuredSSNFormatNormal = yes
StructuredSSNFormatStripped disabled
ScanHTML = yes
ScanOLE2 = yes
OLE2BlockMacros disabled
ScanPDF = yes
ScanArchive = yes
ArchiveBlockEncrypted disabled
MaxScanSize = 104857600
MaxFileSize = 26214400
MaxRecursion = 16
MaxFiles = 1
ClamukoScanOnAccess disabled
ClamukoScannerCount = 3
ClamukoScanOnOpen disabled
ClamukoScanOnClose disabled
ClamukoScanOnExec disabled
ClamukoIncludePath disabled
ClamukoExcludePath disabled
ClamukoMaxFileSize = 5242880
DevACOnly disabled
DevACDepth disabled
DevLiblog disabled

Config file: freshclam.conf
---
LogFileMaxSize disabled
LogTime = yes
LogSyslog disabled
LogFacility = LOG_LOCAL6
LogVerbose disabled
PidFile = /var/run/clamav/freshclam.pid
DatabaseDirectory = /var/lib/clamav
Foreground disabled
Debug disabled
AllowSupplementaryGroups disabled
UpdateLogFile = /var/log/clamav/freshclam.log
DatabaseOwner = clamav
Checks = 24
DNSDatabaseInfo = current.cvd.clamav.net
DatabaseMirror = db.local.clamav.net, database.clamav.net
MaxAttempts = 5
ScriptedUpdates = yes
TestDatabases = yes
CompressLocalDatabase disabled
ExtraDatabase disabled
DatabaseCustomURL disabled
HTTPProxyServer = x.y.z
HTTPProxyPort = 
HTTPProxyUsername disabled
HTTPProxyPassword disabled
HTTPUserAgent disabled
NotifyClamd = /etc/clamav/clamd.conf
OnUpdateExecute disabled
OnErrorExecute disabled
OnOutdatedExecute disabled
LocalIPAddress disabled
ConnectTimeout = 30
ReceiveTimeout = 30
SubmitDetectionStats disabled
DetectionStatsCountry disabled
DetectionStatsHostID disabled
SafeBrowsing disabled
Bytecode = yes

clamav-milter.conf not found

Software settings
-
Version: 0.96.5
Optional features supported: MEMPOOL IPv6 FRESHCLAM_DNS_FIX AUTOIT_EA06 BZIP2 
JIT

Database information

Database directory: /var/lib/clamav
daily.cld: version 12496, sigs: 14211, built on Sun Jan  9 03:51:31 2011
main.cvd: version 53, sigs: 846214, built on Sun Nov 14 15:58:22 2010
bytecode.cvd: version 114, sigs: 27, built on Fri Dec 17 11:37:38 2010
Total number of signatures: 860452

Platform information

uname: Linux 2.6.26-2-xen-686 #1 SMP Thu Nov 25 02:32:31 UTC 2010 i686
OS: linux-gnu, ARCH: i386, CPU: i486
zlib version: 1.2.3.3 (1.2.3.3), compile flags: 55
Triple: i386-pc-linux-gnu
CPU: k8-sse3, Little-endian
platform id: 0x0a113a3a0404030201040302

Build 

Bug#609420: O: qmailanalog-installer -- Installer package for building qmailanalog binary package

2011-01-09 Thread Mehdi Dogguy
reassign 609420 ftp.debian.org
retitle 609420 RM: qmailanalog-installer -- RoQA: orphaned, low popcon
thanks

On 01/09/2011 12:44 PM, Klaus Reimer wrote:
 
 I'm no longer using qmail and qmailanalog so I can't maintain this
 package good enough. I'm orphaning it hereby and I recommend deletion
 of it because it is very unpopular according to popcon and
 installer-packages are always a pain in the ass.
 

Let's ask for its removal then.

Regards,

-- 
Mehdi Dogguy مهدي الدڤي
http://dogguy.org/



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



Bug#609422: X11 forwarding for KDE applications crashes with 'Session bus not found'

2011-01-09 Thread Debian

Package: konsole
Version: 4:4.4.5-1
Severity: normal

*** Please type your report below this line ***

Please also refer to this bug-report at Ubuntu:
https://bugs.launchpad.net/ubuntu/+source/kdebase/+bug/684084

I can open a connection to a remote PC without any problems with ssh -X
It also work to run normal X-apllications like xclock.
But when I try to open a KDE-application it crashes:

$ konqueror
konqueror(4164): Session bus not found

KCrash: Application 'konqueror' crashing...
sock_file=/home/karsten/.kde/socket-PC12/kdeinit4_localhost_10
Warning: connect() failed: : Datei oder Verzeichnis nicht gefunden
KCrash cannot reach kdeinit, launching directly.
drkonqi(4168): Session bus not found


Regards
Karsten

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

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

Versions of packages konsole depends on:
ii  kdebase-runtime   4:4.4.5-1  runtime components from the offici
ii  libc6 2.11.2-7   Embedded GNU C Library: Shared lib
ii  libkdecore5   4:4.4.5-2  the KDE Platform Core Library
ii  libkdeui5 4:4.4.5-2  the KDE Platform User Interface Li
ii  libkio5   4:4.4.5-2  the Network-enabled File Managemen
ii  libknotifyconfig4 4:4.4.5-2  library for configuring KDE Notifi
ii  libkparts44:4.4.5-2  the Framework for the KDE Platform
ii  libkpty4  4:4.4.5-2  the Pseudo Terminal Library for th
ii  libqt4-dbus   4:4.6.3-4  Qt 4 D-Bus module
ii  libqtcore44:4.6.3-4  Qt 4 core module
ii  libqtgui4 4:4.6.3-4  Qt 4 GUI module
ii  libstdc++64.4.5-8The GNU Standard C++ Library v3
ii  libx11-6  2:1.3.3-4  X11 client-side library

konsole recommends no packages.




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



Bug#609421: [INTL:sv] Swedish (sv) debconf messages for tgif package

2011-01-09 Thread Martin Bagge / brother

package: tgif
severity: wishlist
tags: patch, l10n

Please find the attached Swedish (sv) translation of the debconf messages.

--
/brother
http://martin.bagge.nu
Bruce Schneier makes abstract algebra look like elementary algebra.# Translation of tgif debconf template to Swedish
# Copyright (C) 2011 Martin Bagge brot...@bsnet.se
# This file is distributed under the same license as the tgif package.
#
# Daniel Nylander p...@danielnylander.se, 2005
# Martin Bagge brot...@bsnet.se, 2011
msgid 
msgstr 
Project-Id-Version: tgif 1:4.1.44-4\n
Report-Msgid-Bugs-To: t...@packages.debian.org\n
POT-Creation-Date: 2011-01-09 01:37+\n
PO-Revision-Date: 2011-01-09 13:14+0100\n
Last-Translator: Martin Bagge / brother brot...@bsnet.se\n
Language-Team: Swedish debian-l10n-swed...@lists.debian.org\n
Language: sv\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=utf-8\n
Content-Transfer-Encoding: 8bit\n
X-Poedit-Language: Swedish\n
X-Poedit-Country: Sweden\n

#. Type: select
#. Choices
#: ../tgif.templates:2001
msgid A4
msgstr A4

#. Type: select
#. Choices
#: ../tgif.templates:2001
msgid Letter
msgstr Letter

#. Type: select
#. Description
#: ../tgif.templates:2002
msgid Paper size to be used:
msgstr Pappersstorlek att använda:

#. Type: select
#. Description
#: ../tgif.templates:2002
msgid 
Please select the size of paper to be used by Tgif. This selection will be 
appended to the global Tgif initialization file.
msgstr 
Ange vilken pappersstorlek som ska användas av Tgif. Denna inställning 
kommer att läggas till sist i Tgifs globala inställningsfil.

#. Type: select
#. Choices
#: ../tgif.templates:3001
msgid Centimeters
msgstr Centimeter

#. Type: select
#. Choices
#: ../tgif.templates:3001
msgid Inches
msgstr Tum

#. Type: select
#. Description
#: ../tgif.templates:3002
#| msgid What units to use for the grid.
msgid Units to use for the grid:
msgstr Enhet för rutnätet:

#. Type: select
#. Description
#: ../tgif.templates:3002
msgid 
Please select the units to be used by Tgif when rendering the grid. This 
will also determine the scaling when the snap-to-grid option is enabled.
msgstr 
Ange vilken enhet som ska användas av Tgif när rutnätet ritas upp. Detta 
bestämmer också skalningen när inställningen anpassa-till-rutnät är 
aktiverad.

#~ msgid What size of paper to use.
#~ msgstr Vilken papperstorlek som ska användas.

#~ msgid What size of paper should Tgif use?
#~ msgstr Vilken pappersstorlek ska Tgif använda?

#~ msgid Metric
#~ msgstr Metrisk

#~ msgid Imperial
#~ msgstr Brittisk standard

#~ msgid 
#~ If you turn on the snap-to grid in Tgif, what units do you want it scaled 
#~ in?
#~ msgstr 
#~ Om du aktiverar dras-till-rutnät i Tgif, vilka enheter vill du att det 
#~ ska graderas i?

#~ msgid A4, Letter
#~ msgstr A4, Letter

#~ msgid Metric, Imperial
#~ msgstr Metrisk, Brittisk standard


Bug#590089: wajig: Now please put autoremove command back!

2011-01-09 Thread Reuben Thomas
On 9 January 2011 02:33, Tshepang Lekhonkhobe tshep...@gmail.com wrote:

 Sorry for that. Not sure when the next release will be in, but try the
 VCS version for now (where your requested change lives) if this
 matters that much to you: https://wajig.googlecode.com/hg. README file
 instructions on how to build you own deb are very straightforward.

Thanks very much!

-- 
http://rrt.sc3d.org



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



Bug#602862: I don't think I can really solve this without a web server

2011-01-09 Thread Esteban Manchado Velázquez

close 602862
tag 602862 +wontfix
thanks

Hi Yaroslav,

   I've been thinking about it, and I can't find any good way to do it  
that doesn't require a web server. Any solution I could think of would  
require either some kind of local server (it seems much easier to just  
install Apache or similar than writing and maintaining a specific server  
just for this functionality), or writing potentially very complicated  
Javascript. The second case is probably much worse, as the solution would  
probably depend on the browser, so they seem like pretty bad ideas.


   I'm closing this for now. If you can think of alternative solutions,  
feel free to propose them and I'll give them a thought.


--
Esteban



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



Bug#578593: closed by Miguel Figueiredo el...@debianpt.org ()

2011-01-09 Thread jidanni
Well next time I install Debian (every four years or so), I'll be sure
to report back any other problems...



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



Bug#559953: bash-completion: Bug also in 4.1.5(1)-release (x86_64-pc-linux-gnu)

2011-01-09 Thread xiscu
Package: bash-completion
Severity: normal

I'm getting this error in also in the version mentioned above.

To reproduce:
$/usr/bin/python TAB here

Expected:
- List of files

Result:
$/usr/bin/python bash: COMP_WORDS: bad array subscript

Extra info:
- /usr/bin/python is a link:
  - $ls -l /usr/bin/python
  - lrwxrwxrwx 1 root root 9 Dec 31 01:36 /usr/bin/python - python2.6

Thanks

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

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

Versions of packages bash-completion depends on:
ii  bash  4.1-3  The GNU Bourne Again SHell

bash-completion recommends no packages.

bash-completion suggests no packages.

-- no debconf information



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



Bug#609424: ITP: libapp-perlbrew-perl -- script to manage perl installations in your $HOME

2011-01-09 Thread Alessandro Ghedini
Package: wnpp
Severity: wishlist
Owner: Alessandro Ghedini al3x...@gmail.com

* Package name: libapp-perlbrew-perl
  Version : 0.15
  Upstream Author : Kang-min Liu  gu...@gugod.org
* URL : http://search.cpan.org/dist/App-perlbrew/
* License : MIT
  Programming Lang: Perl
  Description : script to manage perl installations in your $HOME

perlbrew is a program to automate the building and installation of perl
in the users HOME. At the moment, it installs everything to ~/perl5/perlbrew,
and requires you to tweak your PATH by including a bashrc/cshrc file it
provides. You then can benefit from not having to run 'sudo' commands
to install cpan modules because those are installed inside your HOME
too. It's a completely separate perl environment.



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



Bug#609423: reportbug: crashes with `AttributeError: invalid report type`

2011-01-09 Thread Paul Menzel
Subject: reportbug: crashes with `AttributeError: invalid report type`
Package: reportbug
Version: 4.12.6
Severity: important

*** Please type your report below this line ***

Dear Debian folks,


I got `AttributeError: invalid report type` doing the following.

$ reportbug media-player-info
*** Welcome to reportbug.  Use ? for help at prompts. ***
Detected character set: UTF-8
Please change your locale if this is incorrect.

Using 'Paul Menzel pm.deb...@googlemail.com' as your from address.
Getting status for media-player-info...
Checking for newer versions at packages.debian.org...
Will use https protocol talking to 
bugs.freedesktop.org/buglist.cgi?product=media-player-info.
Maintainer for media-player-info is 'Martin Pitt mp...@debian.org'.
Looking up dependencies of media-player-info...

Please briefly describe your problem (max. 100 characters allowed; you 
can
elaborate in a moment). This will be the bug email subject, so write a 
concise
summary of what is wrong with the package, for example, fails to send 
email
or does not start with -q option specified (type Ctrl+c to exit).
 `NEWS` not packaged/distributed
Rewriting subject to 'media-player-info: `NEWS` not 
packaged/distributed'
How would you rate the severity of this problem or report?

1 criticalmakes unrelated software on the system (or the whole 
system)
break, or causes serious data loss, or 
introduces a security
hole on systems where you install the package.
2 grave   makes the package in question unusable by most or all 
users,
or causes data loss, or introduces a security 
hole allowing
access to the accounts of users who use the 
package.
3 serious is a severe violation of Debian policy (that is, the 
problem
is a violation of a 'must' or 'required' 
directive); may or
may not affect the usability of the package. 
Note that non-
severe policy violations may be 'normal,' 
'minor,' or
'wishlist' bugs. (Package maintainers may also 
designate
other bugs as 'serious' and thus 
release-critical; however,
end users should not do so.)
4 important   a bug which has a major effect on the usability of a 
package,
without rendering it completely unusable to 
everyone.
5 does-not-build  a bug that stops the package from being built from 
source.
(This is a 'virtual severity'.)
6 normal  a bug that does not undermine the usability of the 
whole
package; for example, a problem with a 
particular option or
menu item.
7 minor   things like spelling mistakes and other minor 
cosmetic errors
that do not affect the core functionality of 
the package.
8 wishlistsuggestions and requests for new features.

Please select a severity level: [normal] 
Traceback (most recent call last):
File /usr/bin/reportbug, line 2098, in module
  main()
File /usr/bin/reportbug, line 1045, in main
  return iface.user_interface()
File /usr/bin/reportbug, line 1990, in user_interface
  issource=self.options.source)
File /usr/lib/pymodules/python2.6/reportbug/utils.py, line 
745, in generate_blank_report
  debsumsoutput=debsumsoutput, issource=issource)
File /usr/lib/pymodules/python2.6/reportbug/bugreport.py, 
line 43, in __init__
  self.type = type
File /usr/lib/pymodules/python2.6/reportbug/bugreport.py, 
line 59, in tset
  raise AttributeError, 'invalid report type'
AttributeError: invalid report type

Maybe it has something to do with the slash or the encoding?


Thanks,

Paul

-- Package-specific info:
** Environment settings:
INTERFACE=text

** /home/paul/.reportbugrc:
reportbug_version 3.9
mode standard
ui text
realname Paul Menzel
email pm.deb...@wgooglemail.com
smtphost smtp.googlemail.com

-- System Information:
Debian Release: 6.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (1, 'experimental')
Architecture: i386 (x86_64)

Kernel: Linux 2.6.32-5-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages reportbug depends on:
ii  apt 0.8.10   Advanced front-end for dpkg
ii  python   

Bug#609425: tgif: [INTL:ru] Russian debconf templates translation update

2011-01-09 Thread Yuri Kozlov
Package: tgif
Version: 1:4.2.2-4
Severity: wishlist
Tags: l10n patch


Russian debconf templates translation update is attached.

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

Kernel: Linux 2.6.37-trunk-amd64 (SMP w/4 CPU cores)
Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
# translation of tgif_1_4.1.44-4_ru.po to Russian
#
#Translators, if you are not familiar with the PO format, gettext
#documentation is worth reading, especially sections dedicated to
#this format, e.g. by running:
# info -n '(gettext)PO Files'
# info -n '(gettext)Header Entry'
#Some information specific to po-debconf are available at
#/usr/share/doc/po-debconf/README-trans
# or http://www.debian.org/intl/l10n/po-debconf/README-trans#
#Developers do not need to manually edit POT or PO files.
#
# Yuri Kozlov kozlo...@gmail.com, 2006.
# Yuri Kozlov yu...@komyakino.ru, 2011.
msgid 
msgstr 
Project-Id-Version: tgif 1:4.2.2-4\n
Report-Msgid-Bugs-To: t...@packages.debian.org\n
POT-Creation-Date: 2011-01-09 01:37+\n
PO-Revision-Date: 2011-01-09 15:39+0300\n
Last-Translator: Yuri Kozlov yu...@komyakino.ru\n
Language-Team: Russian g...@mx.ru\n
Language: ru\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n
X-Generator: Lokalize 1.0\n
Plural-Forms: nplurals=3; plural=(n%10==1  n%100!=11 ? 0 : n%10=2  
n%10=4  (n%10010 || n%100=20) ? 1 : 2);\n

#. Type: select
#. Choices
#: ../tgif.templates:2001
msgid A4
msgstr A4

#. Type: select
#. Choices
#: ../tgif.templates:2001
msgid Letter
msgstr Letter

#. Type: select
#. Description
#: ../tgif.templates:2002
msgid Paper size to be used:
msgstr Используемый размер бумаги:

#. Type: select
#. Description
#: ../tgif.templates:2002
msgid 
Please select the size of paper to be used by Tgif. This selection will be 
appended to the global Tgif initialization file.
msgstr 
Выберите размер бумаги, который будет использован в Tgif. Указанное 
значение 
будет добавлено в глобальный файл инициализации Tgif.

#. Type: select
#. Choices
#: ../tgif.templates:3001
msgid Centimeters
msgstr Сантиметры

#. Type: select
#. Choices
#: ../tgif.templates:3001
msgid Inches
msgstr Дюймы

#. Type: select
#. Description
#: ../tgif.templates:3002
#| msgid What units to use for the grid.
msgid Units to use for the grid:
msgstr Единицы измерения для сетки:

#. Type: select
#. Description
#: ../tgif.templates:3002
msgid 
Please select the units to be used by Tgif when rendering the grid. This 
will also determine the scaling when the snap-to-grid option is enabled.
msgstr 
Выберите единицу измерения, которая будет использована в Tgif при 
отрисовке сетки. 
Также указанное значение будет задавать масштаб при включении параметра 
привязка-к-сетке.

#~ msgid What size of paper to use.
#~ msgstr Используемый размер бумаги.

#~ msgid What size of paper should Tgif use?
#~ msgstr Какой размер бумаги должен использовать Tgif?

#~ msgid Metric
#~ msgstr Метрическая

#~ msgid Imperial
#~ msgstr Имперская

#~ msgid 
#~ If you turn on the snap-to grid in Tgif, what units do you want it scaled 
#~ in?
#~ msgstr 
#~ Если вы включили в Tgif привязку к сетке, то какую систему измерений вы 
#~ хотите использовать для масштабирования сетки?

#~ msgid A4, Letter
#~ msgstr A4, Letter

#~ msgid Metric, Imperial
#~ msgstr Метрическая, Имперская


Bug#430603: Preserve comments for debiandoc2dbk

2011-01-09 Thread Osamu Aoki
Hi,

New 1.2.17 uploaded to expeerimental have updated DocBook XML conversion
routines with bug fix and easier syntax.  Since it changes syntax, I
decided to use new name debiandoc2dbk using new default extension .dbk.

I also included helper scripts to preserve comments.

Since comments can happen everywhere, it is quite difficult to make them
preserved.  But for all practical cases, this should do good job.

I have tried this with maint-guide and debian-policy.  It can deal with
PO file converion.  It require a bit more testing.  For all practical
use, debiandoc2sgml is useless.  I may remove it.  Preserving comments
for debiandoc2html, I see no reason to do so.

That will be post-1.2.17 upload to unstable after squeeze release.  Then
I will close this.  This is almost addressed.

Osamu




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



Bug#554301: FTBFS with binutils-gold

2011-01-09 Thread Ilya Barygin
tags 554301 patch
thanks

Hello,

Attached is the patch that was used to fix this in Ubuntu.
https://launchpad.net/ubuntu/+source/dbus-c++/0~20090907-1ubuntu1Description: add missing library to fix FTBFS with --no-add-needed.
Author: Ilya Barygin bary...@gmail.com
Bug-Debian: http://bugs.debian.org/554301

diff -Nur -x '*.orig' -x '*~' dbus-c++-0~20090907/build-tree/dbus-c++/examples/glib/Makefile.am dbus-c++-0~20090907.new/build-tree/dbus-c++/examples/glib/Makefile.am
--- dbus-c++/examples/glib/Makefile.am	2009-09-07 22:44:36.0 +0400
+++ dbus-c++/examples/glib/Makefile.am	2011-01-09 15:26:08.0 +0300
@@ -7,7 +7,7 @@
 endif
 
 dbus_browser_SOURCES = dbus-glue.h dbus-browser.h dbus-browser.cpp $(top_srcdir)/tools/xml.cpp
-dbus_browser_LDADD = $(top_builddir)/src/libdbus-c++-1.la $(gtkmm_LIBS)
+dbus_browser_LDADD = $(top_builddir)/src/libdbus-c++-1.la $(gtkmm_LIBS) -lexpat
 
 dbus-glue.h: $(top_srcdir)/data/org.freedesktop.DBus.xml
 	$(top_builddir)/tools/dbusxx-xml2cpp $^ --proxy=$@


Bug#552608: Bug #552623: more: Limited line buffer length results in corrupted UTF-8 text

2011-01-09 Thread Roger Leigh
On Tue, Nov 17, 2009 at 12:52:57PM +, Roger Leigh wrote:
 merge 552623 552608
 tags 552608 + fixed-upstream
 thanks
 
 Hi,
 
 Now fixed upstream:
   http://thread.gmane.org/gmane.linux.utilities.util-linux-ng/2750
 
 Please could you apply this patch:
   
 http://git.kernel.org/?p=utils/util-linux-ng/util-linux-ng.git;a=commitdiff;h=1ac300932deab8dea2c43050921bbbdb36d62ff1
 
 Since this is a bug which results in data corruption, I'd like
 to see it fixed for Squeeze (if not sooner, if possible).

This bug was filed, *with a patch*, 15 months ago.  The patch was
*included upstream*, 14 months ago.

And yet, it's *still unfixed* in Debian.  Why?

There's been no response from the maintainer, and it will in all
probability *remain unfixed* in squeeze.  Why?

This is a simple bug, with a simple patch to rectify it.  I find it
hard to believe that no action has been taken to apply the patch and
close it given that the patch was provided at the time it was filed.


Regards,
Roger

-- 
  .''`.  Roger Leigh
 : :' :  Debian GNU/Linux http://people.debian.org/~rleigh/
 `. `'   Printing on GNU/Linux?   http://gutenprint.sourceforge.net/
   `-GPG Public Key: 0x25BFB848   Please GPG sign your mail.


signature.asc
Description: Digital signature


Bug#589967: ASCII art to image converter

2011-01-09 Thread ashok
Hi
I am interested in taking this package forward
Thanks
Ashok




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



Bug#609426: runit-services: memory limit too low to send email

2011-01-09 Thread Lorenzo Beretta
Package: runit-services
Version: 0.4.0
Severity: minor

It fails with
2011-01-09_12:49:07.17058 /usr/lib/sendmail: error while loading shared 
libraries: libcrypt.so.1: failed to map segment from shared object: Cannot 
allocate memory



-- System Information:
Debian Release: 6.0
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-5-amd64 (SMP w/1 CPU core)
Locale: LANG=it_IT.UTF-8, LC_CTYPE=it_IT.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages runit-services depends on:
ii  runit 2.1.1-6.1  system-wide service supervision
ii  socklog   2.1.0-8system and kernel logging services

runit-services recommends no packages.

Versions of packages runit-services suggests:
ii  dash 0.5.5.1-7.4 POSIX-compliant shell
ii  runit-run1.1.2   a UNIX init scheme with service su
ii  socklog-run  2.1.0-8 system and kernel logging services

-- Configuration Files:
/etc/sv/chrony/run changed [not included]

-- no debconf information



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



Bug#609427: pbuilder: Can't build several packages in parallel

2011-01-09 Thread Mike Hommey
Package: pbuilder
Version: 0.199+nmu1
Severity: normal

When running 2 builds with pbuilder in parallel, the ccache setup fails,
making the second pbuilder fail while the first is still running.
This happens because the first pbuilder is using ccache, which means
temporary files are disappearing during the chown -R done in the
ccache setup, leading to messages such as:

I: Setting up ccache
chown: changing ownership of 
`/var/cache/pbuilder/build//4734//var/cache/pbuilder/ccache/PTestSyncW.tmp.build.5320.ii':
 No such file or directory
chown: changing ownership of 
`/var/cache/pbuilder/build//4734//var/cache/pbuilder/ccache/tmp.cpp_stderr.build.5320':
 No such file or directory
chown: changing ownership of 
`/var/cache/pbuilder/build//4734//var/cache/pbuilder/ccache/tmp.stdout.build.5320':
 No such file or directory
chown: changing ownership of 
`/var/cache/pbuilder/build//4734//var/cache/pbuilder/ccache/tmp.stderr.build.5320':
 No such file or directory
chown: changing ownership of 
`/var/cache/pbuilder/build//4734//var/cache/pbuilder/ccache/tmp.hash.build.5320.o':
 No such file or directory

pbuilder then just aborts and cleans up.

Mike


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

Kernel: Linux 2.6.32-5-amd64 (SMP w/2 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 pbuilder depends on:
ii  cdebootstrap  0.5.7  Bootstrap a Debian system
ii  coreutils 8.5-1  GNU core utilities
ii  debconf [debconf-2.0] 1.5.37 Debian configuration management sy
ii  debianutils   3.4.2  Miscellaneous utilities specific t
ii  debootstrap   1.0.26 Bootstrap a basic Debian system
ii  wget  1.12-2.1   retrieves files from the web

Versions of packages pbuilder recommends:
ii  devscripts2.10.69scripts to make the life of a Debi
ii  fakeroot  1.14.5-1   Gives a fake root environment
ii  sudo  1.7.4p4-5  Provide limited super user privile

Versions of packages pbuilder suggests:
pn  cowdancer none (no description available)
pn  gdebi-corenone (no description available)
pn  pbuilder-uml  none (no description available)

-- debconf information excluded



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



Bug#606704: If someone fixes this bug, please fix #605355 as well

2011-01-09 Thread Emmanuel Bouthenot
On Sat, Jan 08, 2011 at 11:51:23PM +0100, Emmanuel Bouthenot wrote:
[...]

 I'll give you some news about the upload in a few hours.
The debian/squeeze branch[1] of the Git repository has been updated with the
needed fixes.

The package is ready to be uploaded to t-p-u if the release team agrees.
It will close #606704 and #605355.


M.

[1] 
http://git.debian.org/?p=collab-maint/sympa.git;a=shortlog;h=refs/heads/debian/squeeze

-- 
Emmanuel Bouthenot
  mail: kol...@{openics,debian}.orggpg: 4096R/0x929D42C3
  xmpp: kol...@im.openics.org  irc: kol...@{freenode,oftc}




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



Bug#609428: boinc: FTBFS: dpkg-genchanges: error: cannot read files list file: No such file or directory

2011-01-09 Thread Cyril Brulebois
Source: boinc
Version: 6.12.8+dfsg-5
Severity: serious
Justification: FTBFS

Hi,

your package FTBFS on the buildds:
|  /usr/bin/fakeroot debian/rules binary-arch
| make: Nothing to be done for `binary-arch'.
| dpkg-genchanges -B
| dpkg-genchanges: arch-specific upload - not including arch-independent 
packages
| dpkg-genchanges: error: cannot read files list file: No such file or directory
| dpkg-buildpackage: error: dpkg-genchanges gave error exit status 2

Full build logs:
  https://buildd.debian.org/status/package.php?p=boincsuite=experimental

You probably can reproduce this at home using dpkg-buildpackage's -B
switch.

KiBi.



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



Bug#609429: media-player-info: `NEWS` not distributed/packaged

2011-01-09 Thread Paul Menzel
Package: media-player-info
Version: 12-1
Severity: normal

*** Please type your report below this line ***

Dear Debian folks,


reading the entry in `changelog.Debian.gz` for 12-1 [1] it reads

media-player-info (12-1) unstable; urgency=low

  * New upstream release

[…]

- And more, see NEWS for details.

 -- Martin Pitt mp...@debian.org  Sat, 08 Jan 2011 17:42:12
-0600

But there is no file `NEWS`.

$ LANG=C ls /usr/share/doc/media-player-info/NEWS*
ls: cannot access /usr/share/doc/media-player-info/NEWS*: No such file 
or directory


Thanks,

Paul


[1] 
http://packages.debian.org/changelogs/pool/main/m/media-player-info/media-player-info_12-1/changelog#versionversion12-1


signature.asc
Description: This is a digitally signed message part


Bug#604926: libm17n-0: circular dependencies with m17n-contrib and m17n-db

2011-01-09 Thread Harshula
On Sun, 2010-12-05 at 17:28 +0100, Bill Allombert wrote:

 I would suggest to move /usr/share/man/man1/m17n-db.1.gz from m17n-docs to
 m17n-db if possible. It is often better for program manpage to be in the same
 package as the program. This would require m17n-db to Replace m17n-docs 
 though.

m17n-docs 1.5.5 changed its license to GFDL with no Invariant Sections.
It's waiting in the NEW queue. So once that is uploaded to Main I could
make m17n-db Depends or Recommends on m17n-docs. I'd prefer not to pull
out the man pages of executables from m17n-docs.

cya,
#




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



Bug#609380: liblinear: please package new release (1.7)

2011-01-09 Thread Christian Kastner
On 01/09/2011 03:32 AM, Yaroslav Halchenko wrote:
 Howdy ;-)
 Version 1.7 released on September 13, 2010. 


An updated package is already available:
http://www.kvr.at/debian/pool/main/libl/liblinear/liblinear_1.7+dfsg-1.dsc

Sponsorship welcome, though :-) Squeeze RC bugs are low nowadays, might
be best to wait for the release now and upload directly to unstable
instead of going the experimental root now...

 BTW, monitor
 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=395439
 which might come handy to get finally a watch file ;)

That looks great indeed, thanks for the hint. I have a number of
projects with this issue :-/



signature.asc
Description: OpenPGP digital signature


Bug#609430: snmpd.postinst needlessly deletes re-adds snmp account

2011-01-09 Thread Peter Marschall
Package: snmpd
Version: 5.4.3~dfsg-2
Severity: normal
Tags: patch

Hi,

the check in snmpd.postinst whether a group named snmp exists
is broken:
  [ ! `getent group snmp /dev/null` ]
is always true.

Please either use output redirection to /dev/null or backticks,
but don't combine them if you want the check to make sense.

The attached patch fixes the issue.

Best
Peter


-- System Information:
Debian Release: 6.0
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable'), (1, 
'experimental')
Architecture: amd64 (x86_64)

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

Versions of packages snmpd depends on:
ii  adduser 3.112+nmu2   add and remove users and groups
ii  debconf [debconf-2.0]   1.5.36   Debian configuration management sy
ii  libc6   2.11.2-7 Embedded GNU C Library: Shared lib
ii  libsnmp15   5.4.3~dfsg-2 SNMP (Simple Network Management Pr
ii  libwrap07.6.q-19 Wietse Venema's TCP wrappers libra
ii  lsb-base3.2-23.1 Linux Standard Base 3.2 init scrip

snmpd recommends no packages.

snmpd suggests no packages.

-- Configuration Files:
/etc/snmp/snmpd.conf [Errno 13] Permission denied: u'/etc/snmp/snmpd.conf'

-- debconf information:
  snmpd/upgradefrom521:
--- snmpd.postinst  2011-01-05 16:14:54.0 +0100
+++ snmpd.postinst  2011-01-09 14:41:22.504118902 +0100
@@ -3,7 +3,7 @@
 set -e
 
 if [ x$1 = xconfigure ]; then
-   if [ ! `getent group snmp /dev/null` ]; then
+   if ! getent group snmp /dev/null ; then
 deluser --quiet --system snmp
fi
adduser --quiet --system --group --no-create-home --home /var/lib/snmp 
snmp


Bug#609285: Subject: RFP: trafficserver -- Apache Traffic Server

2011-01-09 Thread Michelle Konzack
Hello Arno Töll,

Am 2011-01-08 12:34:11, hacktest Du folgendes herunter:
 Hi,
 Do you intend to package it yourself? Otherwise I would file an ITP and
 give it a try as I am looking forward to see trafficserver in Debian as
 well.

I was ongoingto do it, but currently I have no time for it.  Please take
over, it is a realy great server and I use it self-compiled from /opt.

It works like a charm.

Thanks, Greetings and nice Day/Evening
Michelle Konzack

-- 
# Debian GNU/Linux Consultant ##
   Development of Intranet and Embedded Systems with Debian GNU/Linux

itsyst...@tdnet France EURL   itsyst...@tdnet UG (limited liability)
Owner Michelle KonzackOwner Michelle Konzack

Apt. 917 (homeoffice)
50, rue de Soultz Kinzigstraße 17
67100 Strasbourg/France   77694 Kehl/Germany
Tel: +33-6-61925193 mobil Tel: +49-177-9351947 mobil
Tel: +33-9-52705884 fix

http://www.itsystems.tamay-dogan.net/  http://www.flexray4linux.org/
http://www.debian.tamay-dogan.net/ http://www.can4linux.org/

Jabber linux4miche...@jabber.ccc.de
ICQ#328449886

Linux-User #280138 with the Linux Counter, http://counter.li.org/


signature.pgp
Description: Digital signature


Bug#609431: pd-maxlib: FTBFS on kfreebsd-*: undefined references

2011-01-09 Thread Cyril Brulebois
Source: pd-maxlib
Version: 1.5.3-1
Severity: important

Hi,

your package FTBFS on kfreebsd-*:
| make[1]: Entering directory 
`/build/buildd-pd-maxlib_1.5.3-1-kfreebsd-amd64-BZsdZd/pd-maxlib-1.5.3'
| cc -DPD -I/include -Wall -W -g -DVERSION='1.5.3'  -o allow.o -c 
allow.c
| allow.c: In function 'allow_new':
| allow.c:75: warning: unused parameter 's'
| cc  -o allow. allow.o  
| /usr/lib/gcc/x86_64-kfreebsd-gnu/4.4.5/../../../../lib/crt1.o: In function 
`_start':
| (.text+0x23): undefined reference to `main'
| allow.o: In function `allow_symbol':
| 
/build/buildd-pd-maxlib_1.5.3-1-kfreebsd-amd64-BZsdZd/pd-maxlib-1.5.3/allow.c:45:
 undefined reference to `atom_getsymbolarg'
| 
/build/buildd-pd-maxlib_1.5.3-1-kfreebsd-amd64-BZsdZd/pd-maxlib-1.5.3/allow.c:47:
 undefined reference to `outlet_symbol'
| allow.o: In function `allow_float':
| 
/build/buildd-pd-maxlib_1.5.3-1-kfreebsd-amd64-BZsdZd/pd-maxlib-1.5.3/allow.c:60:
 undefined reference to `atom_getfloatarg'
| 
/build/buildd-pd-maxlib_1.5.3-1-kfreebsd-amd64-BZsdZd/pd-maxlib-1.5.3/allow.c:62:
 undefined reference to `outlet_float'
| allow.o: In function `allow_free':
| 
/build/buildd-pd-maxlib_1.5.3-1-kfreebsd-amd64-BZsdZd/pd-maxlib-1.5.3/allow.c:72:
 undefined reference to `freebytes'
| allow.o: In function `allow_new':
| 
/build/buildd-pd-maxlib_1.5.3-1-kfreebsd-amd64-BZsdZd/pd-maxlib-1.5.3/allow.c:77:
 undefined reference to `pd_new'
| 
/build/buildd-pd-maxlib_1.5.3-1-kfreebsd-amd64-BZsdZd/pd-maxlib-1.5.3/allow.c:80:
 undefined reference to `getbytes'
| 
/build/buildd-pd-maxlib_1.5.3-1-kfreebsd-amd64-BZsdZd/pd-maxlib-1.5.3/allow.c:83:
 undefined reference to `gensym'
| 
/build/buildd-pd-maxlib_1.5.3-1-kfreebsd-amd64-BZsdZd/pd-maxlib-1.5.3/allow.c:83:
 undefined reference to `outlet_new'
| allow.o: In function `allow_setup':
| 
/build/buildd-pd-maxlib_1.5.3-1-kfreebsd-amd64-BZsdZd/pd-maxlib-1.5.3/allow.c:94:
 undefined reference to `gensym'
| 
/build/buildd-pd-maxlib_1.5.3-1-kfreebsd-amd64-BZsdZd/pd-maxlib-1.5.3/allow.c:94:
 undefined reference to `class_new'
| 
/build/buildd-pd-maxlib_1.5.3-1-kfreebsd-amd64-BZsdZd/pd-maxlib-1.5.3/allow.c:104:
 undefined reference to `class_addsymbol'
| 
/build/buildd-pd-maxlib_1.5.3-1-kfreebsd-amd64-BZsdZd/pd-maxlib-1.5.3/allow.c:105:
 undefined reference to `class_doaddfloat'
| 
/build/buildd-pd-maxlib_1.5.3-1-kfreebsd-amd64-BZsdZd/pd-maxlib-1.5.3/allow.c:108:
 undefined reference to `post'
| collect2: ld returned 1 exit status
| make[1]: *** [allow.] Error 1

Full build logs:
  https://buildd.debian.org/status/package.php?p=pd-maxlib

KiBi.



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



Bug#609432: pd-mjlib: FTBFS on kfreebsd-*: undefined references

2011-01-09 Thread Cyril Brulebois
Source: pd-mjlib
Version: 0.1.1-1
Severity: important

Hi,

your package FTBFS on kfreebsd-*:
| make[1]: Entering directory 
`/build/buildd-pd-mjlib_0.1.1-1-kfreebsd-amd64-fmm6ku/pd-mjlib-0.1.1'
| cc -DPD -I/include -Wall -W -g -DVERSION='0.1.1'  -o about.o -c 
about.c
| about.c: In function 'about_free':
| about.c:51: warning: unused parameter 'x'
| cc  -o about. about.o  
| /usr/lib/gcc/x86_64-kfreebsd-gnu/4.4.5/../../../../lib/crt1.o: In function 
`_start':
| (.text+0x23): undefined reference to `main'
| about.o: In function `about_float':
| 
/build/buildd-pd-mjlib_0.1.1-1-kfreebsd-amd64-fmm6ku/pd-mjlib-0.1.1/about.c:32: 
undefined reference to `outlet_float'
| about.o: In function `about_new':
| 
/build/buildd-pd-mjlib_0.1.1-1-kfreebsd-amd64-fmm6ku/pd-mjlib-0.1.1/about.c:42: 
undefined reference to `pd_new'
| 
/build/buildd-pd-mjlib_0.1.1-1-kfreebsd-amd64-fmm6ku/pd-mjlib-0.1.1/about.c:45: 
undefined reference to `gensym'
| 
/build/buildd-pd-mjlib_0.1.1-1-kfreebsd-amd64-fmm6ku/pd-mjlib-0.1.1/about.c:45: 
undefined reference to `outlet_new'
| 
/build/buildd-pd-mjlib_0.1.1-1-kfreebsd-amd64-fmm6ku/pd-mjlib-0.1.1/about.c:46: 
undefined reference to `gensym'
| 
/build/buildd-pd-mjlib_0.1.1-1-kfreebsd-amd64-fmm6ku/pd-mjlib-0.1.1/about.c:46: 
undefined reference to `gensym'
| 
/build/buildd-pd-mjlib_0.1.1-1-kfreebsd-amd64-fmm6ku/pd-mjlib-0.1.1/about.c:46: 
undefined reference to `inlet_new'
| about.o: In function `about_setup':
| 
/build/buildd-pd-mjlib_0.1.1-1-kfreebsd-amd64-fmm6ku/pd-mjlib-0.1.1/about.c:72: 
undefined reference to `gensym'
| 
/build/buildd-pd-mjlib_0.1.1-1-kfreebsd-amd64-fmm6ku/pd-mjlib-0.1.1/about.c:72: 
undefined reference to `class_new'
| 
/build/buildd-pd-mjlib_0.1.1-1-kfreebsd-amd64-fmm6ku/pd-mjlib-0.1.1/about.c:74: 
undefined reference to `class_doaddfloat'
| 
/build/buildd-pd-mjlib_0.1.1-1-kfreebsd-amd64-fmm6ku/pd-mjlib-0.1.1/about.c:75: 
undefined reference to `gensym'
| 
/build/buildd-pd-mjlib_0.1.1-1-kfreebsd-amd64-fmm6ku/pd-mjlib-0.1.1/about.c:75: 
undefined reference to `class_addmethod'
| collect2: ld returned 1 exit status
| make[1]: *** [about.] Error 1

Full build logs:
  https://buildd.debian.org/status/package.php?p=pd-mjlib

KiBi.



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



Bug#609433: pd-pdogg: FTBFS on kfreebsd-*: undefined references

2011-01-09 Thread Cyril Brulebois
Source: pd-pdogg
Version: 0.25-1
Severity: important

Hi,

your package FTBFS on kfreebsd-*:
|dh_auto_build -O--buildsystem=makefile
| make[1]: Entering directory 
`/build/buildd-pd-pdogg_0.25-1-kfreebsd-amd64-LkJVzc/pd-pdogg-0.25'
| cc -DPD -I/include/pd -Wall -W -g -DVERSION='0.25'  -o oggamp~.o -c 
oggamp~.c
| oggamp~.c: In function 'oggamp_child_receive':
| oggamp~.c:203: warning: unused variable 'i'
| oggamp~.c: In function 'oggamp_child_connect':
| oggamp~.c:609: warning: suggest parentheses around assignment used as truth 
value
| oggamp~.c:613: warning: suggest parentheses around assignment used as truth 
value
| oggamp~.c:505: warning: unused variable 'cpoint'
| oggamp~.c:504: warning: unused variable 'nanswers'
| oggamp~.c:504: warning: unused variable 'rest'
| oggamp~.c:503: warning: unused variable 'numrelocs'
| oggamp~.c:503: warning: unused variable 'relocate'
| oggamp~.c:499: warning: unused variable 'url'
| oggamp~.c: In function 'oggamp_child_main':
| oggamp~.c:827: warning: format '%d' expects type 'int', but argument 3 has 
type 't_int'
| oggamp~.c:843: warning: format '%d' expects type 'int', but argument 3 has 
type 't_int'
| oggamp~.c:843: warning: format '%d' expects type 'int', but argument 4 has 
type 't_int'
| oggamp~.c:884: warning: format '%d' expects type 'int', but argument 3 has 
type 't_int'
| oggamp~.c:884: warning: format '%d' expects type 'int', but argument 4 has 
type 't_int'
| oggamp~.c:744: warning: unused variable 'wantbytes'
| oggamp~.c:730: warning: unused variable 'buffer'
| oggamp~.c: In function 'oggamp_perform':
| oggamp~.c:1076: warning: unused variable 'streamchannels'
| oggamp~.c:1076: warning: unused variable 'nchannels'
| oggamp~.c:1076: warning: unused variable 'getbytes'
| oggamp~.c:1070: warning: unused variable 'r'
| oggamp~.c: In function 'oggamp_connect':
| oggamp~.c:1178: warning: unused parameter 's'
| oggamp~.c: In function 'oggamp_connect_url':
| oggamp~.c:1285: warning: pointer targets in assignment differ in signedness
| cc  -o oggamp~. oggamp~.o  
| /usr/lib/gcc/x86_64-kfreebsd-gnu/4.4.5/../../../../lib/crt1.o: In function 
`_start':
| (.text+0x23): undefined reference to `main'
| oggamp~.o: In function `oggamp_child_receive':
| 
/build/buildd-pd-pdogg_0.25-1-kfreebsd-amd64-LkJVzc/pd-pdogg-0.25/oggamp~.c:208:
 undefined reference to `post'
| oggamp~.o: In function `oggamp_vorbis_sync_init':
| 
/build/buildd-pd-pdogg_0.25-1-kfreebsd-amd64-LkJVzc/pd-pdogg-0.25/oggamp~.c:216:
 undefined reference to `ogg_sync_init'
| oggamp~.o: In function `oggamp_vorbis_init':
| 
/build/buildd-pd-pdogg_0.25-1-kfreebsd-amd64-LkJVzc/pd-pdogg-0.25/oggamp~.c:233:
 undefined reference to `ogg_sync_buffer'
| 
/build/buildd-pd-pdogg_0.25-1-kfreebsd-amd64-LkJVzc/pd-pdogg-0.25/oggamp~.c:234:
 undefined reference to `post'
| 
/build/buildd-pd-pdogg_0.25-1-kfreebsd-amd64-LkJVzc/pd-pdogg-0.25/oggamp~.c:236:
 undefined reference to `ogg_sync_wrote'
| 
/build/buildd-pd-pdogg_0.25-1-kfreebsd-amd64-LkJVzc/pd-pdogg-0.25/oggamp~.c:237:
 undefined reference to `ogg_sync_pageout'
| 
/build/buildd-pd-pdogg_0.25-1-kfreebsd-amd64-LkJVzc/pd-pdogg-0.25/oggamp~.c:242:
 undefined reference to `post'
| 
/build/buildd-pd-pdogg_0.25-1-kfreebsd-amd64-LkJVzc/pd-pdogg-0.25/oggamp~.c:243:
 undefined reference to `ogg_sync_buffer'
| 
/build/buildd-pd-pdogg_0.25-1-kfreebsd-amd64-LkJVzc/pd-pdogg-0.25/oggamp~.c:245:
 undefined reference to `ogg_sync_wrote'
| 
/build/buildd-pd-pdogg_0.25-1-kfreebsd-amd64-LkJVzc/pd-pdogg-0.25/oggamp~.c:246:
 undefined reference to `ogg_sync_pageout'
| 
/build/buildd-pd-pdogg_0.25-1-kfreebsd-amd64-LkJVzc/pd-pdogg-0.25/oggamp~.c:256:
 undefined reference to `ogg_page_serialno'
| 
/build/buildd-pd-pdogg_0.25-1-kfreebsd-amd64-LkJVzc/pd-pdogg-0.25/oggamp~.c:256:
 undefined reference to `ogg_stream_init'
| 
/build/buildd-pd-pdogg_0.25-1-kfreebsd-amd64-LkJVzc/pd-pdogg-0.25/oggamp~.c:258:
 undefined reference to `vorbis_info_init'
| 
/build/buildd-pd-pdogg_0.25-1-kfreebsd-amd64-LkJVzc/pd-pdogg-0.25/oggamp~.c:259:
 undefined reference to `vorbis_comment_init'
| 
/build/buildd-pd-pdogg_0.25-1-kfreebsd-amd64-LkJVzc/pd-pdogg-0.25/oggamp~.c:260:
 undefined reference to `ogg_stream_pagein'
| 
/build/buildd-pd-pdogg_0.25-1-kfreebsd-amd64-LkJVzc/pd-pdogg-0.25/oggamp~.c:266:
 undefined reference to `ogg_stream_packetout'
| 
/build/buildd-pd-pdogg_0.25-1-kfreebsd-amd64-LkJVzc/pd-pdogg-0.25/oggamp~.c:272:
 undefined reference to `vorbis_synthesis_headerin'
| 
/build/buildd-pd-pdogg_0.25-1-kfreebsd-amd64-LkJVzc/pd-pdogg-0.25/oggamp~.c:281:
 undefined reference to `ogg_sync_pageout'
| 
/build/buildd-pd-pdogg_0.25-1-kfreebsd-amd64-LkJVzc/pd-pdogg-0.25/oggamp~.c:287:
 undefined reference to `ogg_stream_pagein'
| 
/build/buildd-pd-pdogg_0.25-1-kfreebsd-amd64-LkJVzc/pd-pdogg-0.25/oggamp~.c:291:
 undefined reference to `ogg_stream_packetout'
| 
/build/buildd-pd-pdogg_0.25-1-kfreebsd-amd64-LkJVzc/pd-pdogg-0.25/oggamp~.c:299:
 undefined reference to `vorbis_synthesis_headerin'
| 

Bug#609434: pd-sigpack: FTBFS on kfreebsd-*: undefined references

2011-01-09 Thread Cyril Brulebois
Source: pd-sigpack
Version: 0.0.4.2-1
Severity: important

Hi,

your package FTBFS on kfreebsd-*:
| make[1]: Entering directory 
`/build/buildd-pd-sigpack_0.0.4.2-1-kfreebsd-amd64-XMcy3A/pd-sigpack-0.0.4.2'
| cc -DPD -I/include -Wall -W -g -DVERSION='0.0.4.2'  -o chop~.o -c 
chop~.c
| cc  -o chop~. chop~.o  
| /usr/lib/gcc/x86_64-kfreebsd-gnu/4.4.5/../../../../lib/crt1.o: In function 
`_start':
| (.text+0x23): undefined reference to `main'
| chop~.o: In function `chop_tilde_new':
| 
/build/buildd-pd-sigpack_0.0.4.2-1-kfreebsd-amd64-XMcy3A/pd-sigpack-0.0.4.2/chop~.c:26:
 undefined reference to `pd_new'
| 
/build/buildd-pd-sigpack_0.0.4.2-1-kfreebsd-amd64-XMcy3A/pd-sigpack-0.0.4.2/chop~.c:28:
 undefined reference to `gensym'
| 
/build/buildd-pd-sigpack_0.0.4.2-1-kfreebsd-amd64-XMcy3A/pd-sigpack-0.0.4.2/chop~.c:28:
 undefined reference to `outlet_new'
| 
/build/buildd-pd-sigpack_0.0.4.2-1-kfreebsd-amd64-XMcy3A/pd-sigpack-0.0.4.2/chop~.c:29:
 undefined reference to `s_signal'
| 
/build/buildd-pd-sigpack_0.0.4.2-1-kfreebsd-amd64-XMcy3A/pd-sigpack-0.0.4.2/chop~.c:29:
 undefined reference to `s_signal'
| 
/build/buildd-pd-sigpack_0.0.4.2-1-kfreebsd-amd64-XMcy3A/pd-sigpack-0.0.4.2/chop~.c:29:
 undefined reference to `inlet_new'
| 
/build/buildd-pd-sigpack_0.0.4.2-1-kfreebsd-amd64-XMcy3A/pd-sigpack-0.0.4.2/chop~.c:30:
 undefined reference to `floatinlet_new'
| chop~.o: In function `chop_tilde_dsp':
| 
/build/buildd-pd-sigpack_0.0.4.2-1-kfreebsd-amd64-XMcy3A/pd-sigpack-0.0.4.2/chop~.c:58:
 undefined reference to `dsp_add'
| chop~.o: In function `chop_tilde_setup':
| 
/build/buildd-pd-sigpack_0.0.4.2-1-kfreebsd-amd64-XMcy3A/pd-sigpack-0.0.4.2/chop~.c:63:
 undefined reference to `gensym'
| 
/build/buildd-pd-sigpack_0.0.4.2-1-kfreebsd-amd64-XMcy3A/pd-sigpack-0.0.4.2/chop~.c:63:
 undefined reference to `class_new'
| 
/build/buildd-pd-sigpack_0.0.4.2-1-kfreebsd-amd64-XMcy3A/pd-sigpack-0.0.4.2/chop~.c:65:
 undefined reference to `class_domainsignalin'
| 
/build/buildd-pd-sigpack_0.0.4.2-1-kfreebsd-amd64-XMcy3A/pd-sigpack-0.0.4.2/chop~.c:66:
 undefined reference to `gensym'
| 
/build/buildd-pd-sigpack_0.0.4.2-1-kfreebsd-amd64-XMcy3A/pd-sigpack-0.0.4.2/chop~.c:66:
 undefined reference to `class_addmethod'
| collect2: ld returned 1 exit status
| make[1]: *** [chop~.] Error 1
| make[1]: Leaving directory 
`/build/buildd-pd-sigpack_0.0.4.2-1-kfreebsd-amd64-XMcy3A/pd-sigpack-0.0.4.2'
| dh_auto_build: make -j1 returned exit code 2
| make: *** [build] Error 2

Full build logs:
  https://buildd.debian.org/status/package.php?p=pd-sigpack

KiBi.



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



Bug#609285: Subject: RFP: trafficserver -- Apache Traffic Server

2011-01-09 Thread Arno Töll
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 09.01.2011 14:54, Michelle Konzack wrote:
 I was ongoingto do it, but currently I have no time for it.  Please take
 over, it is a realy great server and I use it self-compiled from /opt.

I will. Indeed I already changed the subject to ITP and I have a basic
version already working.

- -- 
with kind regards,
Arno Töll
GnuPG Key-ID: 0x8408D4C4
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQIcBAEBAgAGBQJNKb+yAAoJELBdpXvEXpo9DDkQAJm+vtYMmcBrMsCuPRnCDxJ2
/TfzWtIgOPMz5lKkotx5+9UMs71z/QvUUVHYJk0+7gCWx+GjaKj9JRQa2pOS4NcN
ABYmxnBn7sOd2CsXpbXeOyYOxF1V+3t8zNGnS0m6QtffK+b8ur/YfQqkSIv1Ddlg
emN6mUyC8EvaJFmvn9qrS5GsIjY/aszw3QmnYZs0dvX4vk+5MCu64/J4f6IzQh+a
cSNF5gm+mJKlazPHeOIopM2usKAimTuRx/jbani9Fxo2OMjzL3p9jDdHO7bV0XND
hkNPXT610jVWebmuj8lYJ2jYKRcTLRKNvr6qMk3EKxoTIwwp4SjsbtiF2BYgynHE
AJqD+Rb6Ehnh6UyuI11DtkS9fzhkWD0yB3mw4yyWRXj3FBQdNOF9j8JKdddkPuMZ
Zmd5UazcK0a2WvV+3tuByRD+Fo9VkE37V+xChmWQDAq7oaEd8a7Em/qCW2QJQmrk
Bq+hojVKsFzZVILiqd0SZqiIytv8vkcyg6LAdMzeZ+KZQEC3v/klaM4ViR1pGDd4
AM9J2v/dUSfUe0T/ynUQpscEF+zcAU9pVvNnM38ahNNcpk5xyz24IYVeKRfd2AMy
lYZ7OEPQAtedbcIAnqtU/AF73ktpb7OFjXim0J2UAVlJ9OrKJJka0zfxssekCoq0
kIePV4g5Ov9qADIHYjwx
=IQhy
-END PGP SIGNATURE-



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



Bug#609435: pd-smlib: FTBFS on kfreebsd-*: undefined references

2011-01-09 Thread Cyril Brulebois
Source: pd-smlib
Version: 0.12.1-1
Severity: important

Hi,

your package FTBFS on kfreebsd-*:
| make[1]: Entering directory 
`/build/buildd-pd-smlib_0.12.1-1-kfreebsd-amd64-gU7BOT/pd-smlib-0.12.1'
| cc -DPD -I/include -Wall -W -g -DVERSION='0.12.1'  -o bp.o -c bp.c
| bp.c: In function 'bp_clear':
| bp.c:81: warning: unused parameter 'q'
| cc  -o bp. bp.o  
| /usr/lib/gcc/x86_64-kfreebsd-gnu/4.4.5/../../../../lib/crt1.o: In function 
`_start':
| (.text+0x23): undefined reference to `main'
| bp.o: In function `bp_new':
| 
/build/buildd-pd-smlib_0.12.1-1-kfreebsd-amd64-gU7BOT/pd-smlib-0.12.1/bp.c:30: 
undefined reference to `pd_new'
| 
/build/buildd-pd-smlib_0.12.1-1-kfreebsd-amd64-gU7BOT/pd-smlib-0.12.1/bp.c:31: 
undefined reference to `gensym'
| 
/build/buildd-pd-smlib_0.12.1-1-kfreebsd-amd64-gU7BOT/pd-smlib-0.12.1/bp.c:31: 
undefined reference to `gensym'
| 
/build/buildd-pd-smlib_0.12.1-1-kfreebsd-amd64-gU7BOT/pd-smlib-0.12.1/bp.c:31: 
undefined reference to `inlet_new'
| 
/build/buildd-pd-smlib_0.12.1-1-kfreebsd-amd64-gU7BOT/pd-smlib-0.12.1/bp.c:32: 
undefined reference to `gensym'
| 
/build/buildd-pd-smlib_0.12.1-1-kfreebsd-amd64-gU7BOT/pd-smlib-0.12.1/bp.c:32: 
undefined reference to `gensym'
| 
/build/buildd-pd-smlib_0.12.1-1-kfreebsd-amd64-gU7BOT/pd-smlib-0.12.1/bp.c:32: 
undefined reference to `inlet_new'
| 
/build/buildd-pd-smlib_0.12.1-1-kfreebsd-amd64-gU7BOT/pd-smlib-0.12.1/bp.c:33: 
undefined reference to `gensym'
| 
/build/buildd-pd-smlib_0.12.1-1-kfreebsd-amd64-gU7BOT/pd-smlib-0.12.1/bp.c:33: 
undefined reference to `outlet_new'
| bp.o: In function `bp_perform':
| 
/build/buildd-pd-smlib_0.12.1-1-kfreebsd-amd64-gU7BOT/pd-smlib-0.12.1/bp.c:110: 
undefined reference to `outlet_float'
| bp.o: In function `bp_setup':
| 
/build/buildd-pd-smlib_0.12.1-1-kfreebsd-amd64-gU7BOT/pd-smlib-0.12.1/bp.c:115: 
undefined reference to `gensym'
| 
/build/buildd-pd-smlib_0.12.1-1-kfreebsd-amd64-gU7BOT/pd-smlib-0.12.1/bp.c:115: 
undefined reference to `class_new'
| 
/build/buildd-pd-smlib_0.12.1-1-kfreebsd-amd64-gU7BOT/pd-smlib-0.12.1/bp.c:117: 
undefined reference to `class_doaddfloat'
| 
/build/buildd-pd-smlib_0.12.1-1-kfreebsd-amd64-gU7BOT/pd-smlib-0.12.1/bp.c:118: 
undefined reference to `gensym'
| 
/build/buildd-pd-smlib_0.12.1-1-kfreebsd-amd64-gU7BOT/pd-smlib-0.12.1/bp.c:118: 
undefined reference to `class_addmethod'
| 
/build/buildd-pd-smlib_0.12.1-1-kfreebsd-amd64-gU7BOT/pd-smlib-0.12.1/bp.c:120: 
undefined reference to `gensym'
| 
/build/buildd-pd-smlib_0.12.1-1-kfreebsd-amd64-gU7BOT/pd-smlib-0.12.1/bp.c:120: 
undefined reference to `class_addmethod'
| 
/build/buildd-pd-smlib_0.12.1-1-kfreebsd-amd64-gU7BOT/pd-smlib-0.12.1/bp.c:122: 
undefined reference to `gensym'
| 
/build/buildd-pd-smlib_0.12.1-1-kfreebsd-amd64-gU7BOT/pd-smlib-0.12.1/bp.c:122: 
undefined reference to `class_addmethod'
| collect2: ld returned 1 exit status
| make[1]: *** [bp.] Error 1

Full build logs:
  https://buildd.debian.org/status/package.php?p=pd-smlib

KiBi.



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



Bug#609436: pd-cxc: FTBFS on kfreebsd-*: undefined references

2011-01-09 Thread Cyril Brulebois
Source: pd-cxc
Version: 0.5.1-1
Severity: important

Hi,

your package FTBFS on kfreebsd-*:
| make[1]: Entering directory 
`/build/buildd-pd-cxc_0.5.1-1-kfreebsd-amd64-PFNBq2/pd-cxc-0.5.1'
| cc -DPD -I/include -Wall -W -g -DVERSION='0.5.1'  -o ENV.o -c ENV.c
| ENV.c: In function 'ENV_float':
| ENV.c:25: warning: unused parameter 'x'
| ENV.c: In function 'ENV_setenv':
| ENV.c:53: warning: unused parameter 'x'
| cc  -o ENV. ENV.o  
| /usr/lib/gcc/x86_64-kfreebsd-gnu/4.4.5/../../../../lib/crt1.o: In function 
`_start':
| (.text+0x23): undefined reference to `main'
| ENV.o: In function `ENV_float':
| /build/buildd-pd-cxc_0.5.1-1-kfreebsd-amd64-PFNBq2/pd-cxc-0.5.1/ENV.c:27: 
undefined reference to `post'
| ENV.o: In function `ENV_RAND_MAX':
| /build/buildd-pd-cxc_0.5.1-1-kfreebsd-amd64-PFNBq2/pd-cxc-0.5.1/ENV.c:36: 
undefined reference to `s_list'
| /build/buildd-pd-cxc_0.5.1-1-kfreebsd-amd64-PFNBq2/pd-cxc-0.5.1/ENV.c:36: 
undefined reference to `outlet_list'
| ENV.o: In function `ENV_getenv':
| /build/buildd-pd-cxc_0.5.1-1-kfreebsd-amd64-PFNBq2/pd-cxc-0.5.1/ENV.c:47: 
undefined reference to `gensym'
| /build/buildd-pd-cxc_0.5.1-1-kfreebsd-amd64-PFNBq2/pd-cxc-0.5.1/ENV.c:50: 
undefined reference to `s_list'
| /build/buildd-pd-cxc_0.5.1-1-kfreebsd-amd64-PFNBq2/pd-cxc-0.5.1/ENV.c:50: 
undefined reference to `outlet_list'
| ENV.o: In function `ENV_setenv':
| /build/buildd-pd-cxc_0.5.1-1-kfreebsd-amd64-PFNBq2/pd-cxc-0.5.1/ENV.c:58: 
undefined reference to `post'
| /build/buildd-pd-cxc_0.5.1-1-kfreebsd-amd64-PFNBq2/pd-cxc-0.5.1/ENV.c:60: 
undefined reference to `post'
| ENV.o: In function `ENV_new':
| /build/buildd-pd-cxc_0.5.1-1-kfreebsd-amd64-PFNBq2/pd-cxc-0.5.1/ENV.c:65: 
undefined reference to `pd_new'
| /build/buildd-pd-cxc_0.5.1-1-kfreebsd-amd64-PFNBq2/pd-cxc-0.5.1/ENV.c:68: 
undefined reference to `s_float'
| /build/buildd-pd-cxc_0.5.1-1-kfreebsd-amd64-PFNBq2/pd-cxc-0.5.1/ENV.c:68: 
undefined reference to `outlet_new'
| ENV.o: In function `ENV_help':
| /build/buildd-pd-cxc_0.5.1-1-kfreebsd-amd64-PFNBq2/pd-cxc-0.5.1/ENV.c:75: 
undefined reference to `post'
| ENV.o: In function `ENV_setup':
| /build/buildd-pd-cxc_0.5.1-1-kfreebsd-amd64-PFNBq2/pd-cxc-0.5.1/ENV.c:81: 
undefined reference to `gensym'
| /build/buildd-pd-cxc_0.5.1-1-kfreebsd-amd64-PFNBq2/pd-cxc-0.5.1/ENV.c:81: 
undefined reference to `class_new'
| /build/buildd-pd-cxc_0.5.1-1-kfreebsd-amd64-PFNBq2/pd-cxc-0.5.1/ENV.c:83: 
undefined reference to `gensym'
| /build/buildd-pd-cxc_0.5.1-1-kfreebsd-amd64-PFNBq2/pd-cxc-0.5.1/ENV.c:83: 
undefined reference to `class_addmethod'
| /build/buildd-pd-cxc_0.5.1-1-kfreebsd-amd64-PFNBq2/pd-cxc-0.5.1/ENV.c:84: 
undefined reference to `gensym'
| /build/buildd-pd-cxc_0.5.1-1-kfreebsd-amd64-PFNBq2/pd-cxc-0.5.1/ENV.c:84: 
undefined reference to `class_addmethod'
| /build/buildd-pd-cxc_0.5.1-1-kfreebsd-amd64-PFNBq2/pd-cxc-0.5.1/ENV.c:85: 
undefined reference to `gensym'
| /build/buildd-pd-cxc_0.5.1-1-kfreebsd-amd64-PFNBq2/pd-cxc-0.5.1/ENV.c:85: 
undefined reference to `class_addmethod'
| /build/buildd-pd-cxc_0.5.1-1-kfreebsd-amd64-PFNBq2/pd-cxc-0.5.1/ENV.c:86: 
undefined reference to `class_doaddfloat'
| collect2: ld returned 1 exit status
| make[1]: *** [ENV.] Error 1
| make[1]: Leaving directory 
`/build/buildd-pd-cxc_0.5.1-1-kfreebsd-amd64-PFNBq2/pd-cxc-0.5.1'
| dh_auto_build: make -j1 returned exit code 2
| make: *** [build] Error 2

Full build logs:
  https://buildd.debian.org/status/package.php?p=pd-cxc

KiBi.



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



Bug#609437: pd-windowing: FTBFS on kfreebsd-*: undefined references

2011-01-09 Thread Cyril Brulebois
Source: pd-windowing
Version: 0.1-1
Severity: important

Hi,

your package FTBFS on kfreebsd-*:
| make[1]: Entering directory 
`/build/buildd-pd-windowing_0.1-1-kfreebsd-amd64-IcQa49/pd-windowing-0.1'
| cc -DPD -I../../pd/src -Wall -W -g  -o bartlett~.o -c bartlett~.c
| cc  -o bartlett~. bartlett~.o  
| /usr/lib/gcc/x86_64-kfreebsd-gnu/4.4.5/../../../../lib/crt1.o: In function 
`_start':
| (.text+0x23): undefined reference to `main'
| bartlett~.o: In function `bartlett_dsp':
| 
/build/buildd-pd-windowing_0.1-1-kfreebsd-amd64-IcQa49/pd-windowing-0.1/bartlett~.c:71:
 undefined reference to `dsp_add'
| bartlett~.o: In function `bartlett_new':
| 
/build/buildd-pd-windowing_0.1-1-kfreebsd-amd64-IcQa49/pd-windowing-0.1/bartlett~.c:75:
 undefined reference to `pd_new'
| 
/build/buildd-pd-windowing_0.1-1-kfreebsd-amd64-IcQa49/pd-windowing-0.1/bartlett~.c:79:
 undefined reference to `gensym'
| 
/build/buildd-pd-windowing_0.1-1-kfreebsd-amd64-IcQa49/pd-windowing-0.1/bartlett~.c:79:
 undefined reference to `outlet_new'
| bartlett~.o: In function `bartlett_tilde_setup':
| 
/build/buildd-pd-windowing_0.1-1-kfreebsd-amd64-IcQa49/pd-windowing-0.1/bartlett~.c:88:
 undefined reference to `gensym'
| 
/build/buildd-pd-windowing_0.1-1-kfreebsd-amd64-IcQa49/pd-windowing-0.1/bartlett~.c:88:
 undefined reference to `class_new'
| 
/build/buildd-pd-windowing_0.1-1-kfreebsd-amd64-IcQa49/pd-windowing-0.1/bartlett~.c:95:
 undefined reference to `gensym'
| 
/build/buildd-pd-windowing_0.1-1-kfreebsd-amd64-IcQa49/pd-windowing-0.1/bartlett~.c:95:
 undefined reference to `nullfn'
| 
/build/buildd-pd-windowing_0.1-1-kfreebsd-amd64-IcQa49/pd-windowing-0.1/bartlett~.c:95:
 undefined reference to `class_addmethod'
| 
/build/buildd-pd-windowing_0.1-1-kfreebsd-amd64-IcQa49/pd-windowing-0.1/bartlett~.c:96:
 undefined reference to `gensym'
| 
/build/buildd-pd-windowing_0.1-1-kfreebsd-amd64-IcQa49/pd-windowing-0.1/bartlett~.c:96:
 undefined reference to `class_addmethod'
| collect2: ld returned 1 exit status

Full build logs:
  https://buildd.debian.org/status/package.php?p=pd-windowing

KiBi.



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



Bug#609438: pychecker: incompatible with Python 2.7: IndexError: tuple index out of range

2011-01-09 Thread Jakub Wilk

Package: pychecker
Version: 0.8.18-7
Tags: fixed-upstream
User: debian-pyt...@lists.debian.org
Usertags: python2.7

I'm getting tracebacks when I try tu use pychecker with python2.7:

$ PYTHONVER=2.7 pychecker /usr/lib/python2.7/antigravity.py
Processing module antigravity (/usr/lib/python2.7/antigravity.py)...
  Caught exception importing module webbrowser:
File pychecker/checker.py, line 680, in _initModule()
  self.addClass(tokenName)
File pychecker/checker.py, line 592, in addClass()
  self.__addAttributes(c, c.classObject)
File pychecker/checker.py, line 577, in __addAttributes()
  self.__addAttributes(c, base)
File pychecker/checker.py, line 579, in __addAttributes()
  c.addMembers(classObject)
File pychecker/checker.py, line 391, in addMembers()
  self.addMembersFromMethod(method.im_func)
File pychecker/checker.py, line 407, in addMembersFromMethod()
  operand = OP.getOperand(op, func_code, oparg)
File pychecker/OP.py, line 72, in getOperand()
  return _CMP_OP[oparg]
  IndexError: tuple index out of range


According to upstream, pychecker 0.8.19 is compatible with Python 2.7 
and indeed I cannot see this traceback with this version anymore.


--
Jakub Wilk



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



Bug#609439: flightgear: FTBFS: libsgmaterial.so.2.0.0: undefined reference to `simgear::getPropertyRoot()'

2011-01-09 Thread Cyril Brulebois
Source: flightgear
Version: 2.0.0-1
Severity: serious
Justification: FTBFS

Hi,

your package no longer builds:
| mv -f .deps/metar_main.Tpo .deps/metar_main.Po
| g++ -DPKGLIBDIR=\/usr/share/games/FlightGear\   -L/usr/local/lib -o metar 
metar_main.o -lsgenvironment -lsgio -lsgbucket -lsgmisc -lsgstructure -lsgdebug 
-lplibnet -lplibul   -lz -lrt -ldl -lm  -losgParticle -losgSim -losgViewer 
-losgGA -losgText -losgDB -losgUtil -losg -lOpenThreads -ljpeg  -losgFX -lglut 
-lGLU -lGL -lXmu -lXt -lSM -lICE -lXi -lXext -lX11 -lrt -ldl -lm 
| /usr/lib64/libsgmaterial.so.2.0.0: undefined reference to 
`simgear::getPropertyRoot()'
| collect2: ld returned 1 exit status
| make[3]: *** [metar] Error 1

Full build logs:
  https://buildd.debian.org/status/package.php?p=flightgear

KiBi.



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



Bug#609431: pd-maxlib: FTBFS on kfreebsd-*: undefined references

2011-01-09 Thread Felipe Sateler
On Sun, Jan 9, 2011 at 10:59, Cyril Brulebois k...@debian.org wrote:
 Source: pd-maxlib
 Version: 1.5.3-1
 Severity: important

 Hi,

 your package FTBFS on kfreebsd-*:
 | make[1]: Entering directory 
 `/build/buildd-pd-maxlib_1.5.3-1-kfreebsd-amd64-BZsdZd/pd-maxlib-1.5.3'
 | cc -DPD -I/include -Wall -W -g -DVERSION='1.5.3'  -o allow.o -c 
 allow.c
 | allow.c: In function 'allow_new':
 | allow.c:75: warning: unused parameter 's'
 | cc  -o allow. allow.o
 | /usr/lib/gcc/x86_64-kfreebsd-gnu/4.4.5/../../../../lib/crt1.o: In function 
 `_start':
 | (.text+0x23): undefined reference to `main'
 | allow.o: In function `allow_symbol':
 | 
 /build/buildd-pd-maxlib_1.5.3-1-kfreebsd-amd64-BZsdZd/pd-maxlib-1.5.3/allow.c:45:
  undefined reference to `atom_getsymbolarg'
 | 
 /build/buildd-pd-maxlib_1.5.3-1-kfreebsd-amd64-BZsdZd/pd-maxlib-1.5.3/allow.c:47:
  undefined reference to `outlet_symbol'
 | allow.o: In function `allow_float':
 | 
 /build/buildd-pd-maxlib_1.5.3-1-kfreebsd-amd64-BZsdZd/pd-maxlib-1.5.3/allow.c:60:
  undefined reference to `atom_getfloatarg'
 | 
 /build/buildd-pd-maxlib_1.5.3-1-kfreebsd-amd64-BZsdZd/pd-maxlib-1.5.3/allow.c:62:
  undefined reference to `outlet_float'
 | allow.o: In function `allow_free':
 | 
 /build/buildd-pd-maxlib_1.5.3-1-kfreebsd-amd64-BZsdZd/pd-maxlib-1.5.3/allow.c:72:
  undefined reference to `freebytes'
 | allow.o: In function `allow_new':
 | 
 /build/buildd-pd-maxlib_1.5.3-1-kfreebsd-amd64-BZsdZd/pd-maxlib-1.5.3/allow.c:77:
  undefined reference to `pd_new'
 | 
 /build/buildd-pd-maxlib_1.5.3-1-kfreebsd-amd64-BZsdZd/pd-maxlib-1.5.3/allow.c:80:
  undefined reference to `getbytes'
 | 
 /build/buildd-pd-maxlib_1.5.3-1-kfreebsd-amd64-BZsdZd/pd-maxlib-1.5.3/allow.c:83:
  undefined reference to `gensym'
 | 
 /build/buildd-pd-maxlib_1.5.3-1-kfreebsd-amd64-BZsdZd/pd-maxlib-1.5.3/allow.c:83:
  undefined reference to `outlet_new'
 | allow.o: In function `allow_setup':
 | 
 /build/buildd-pd-maxlib_1.5.3-1-kfreebsd-amd64-BZsdZd/pd-maxlib-1.5.3/allow.c:94:
  undefined reference to `gensym'
 | 
 /build/buildd-pd-maxlib_1.5.3-1-kfreebsd-amd64-BZsdZd/pd-maxlib-1.5.3/allow.c:94:
  undefined reference to `class_new'
 | 
 /build/buildd-pd-maxlib_1.5.3-1-kfreebsd-amd64-BZsdZd/pd-maxlib-1.5.3/allow.c:104:
  undefined reference to `class_addsymbol'
 | 
 /build/buildd-pd-maxlib_1.5.3-1-kfreebsd-amd64-BZsdZd/pd-maxlib-1.5.3/allow.c:105:
  undefined reference to `class_doaddfloat'
 | 
 /build/buildd-pd-maxlib_1.5.3-1-kfreebsd-amd64-BZsdZd/pd-maxlib-1.5.3/allow.c:108:
  undefined reference to `post'
 | collect2: ld returned 1 exit status
 | make[1]: *** [allow.] Error 1

 Full build logs:
  https://buildd.debian.org/status/package.php?p=pd-maxlib


Looks like the makefile does not instruct the compiler to build a
shared library when on kfreebsd.


-- 

Saludos,
Felipe Sateler



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



Bug#609440: madwifi-source: Debian Lenny Madwifi and Hostapd stability issues

2011-01-09 Thread DimAnt10

Package: madwifi-source
Version: 1:0.9.4+r3772.20080716-1
Severity: important

Hopefully this saves somebody some time. I upgraded my router (a 
mini-itx Intel Atom box running Debian) to the new Lenny release, which 
was surprisingly painless. I updated madwifi from the old 0.9.2 version 
to the 0.9.4 current release included with Lenny.


After this upgrade, I found that the wireless would stop working after 
30-90 minutes. This often (but not always) coincided with a couple of 
error messages often repeated every couple of seconds:


kernel: wifi0: ath_rxorn_tasklet: Receive FIFO overrun; resetting.
kernel: wifi0: ath_bstuck_tasklet: Stuck beacon; resetting (beacon miss 
count: 11)


These would be matched by a load of messages from hostapd repeated, 
during which no wireless client would stay connected:


hostapd: ath0: STA 00:13:ce:76:d2:2e IEEE 802.11: associated
hostapd: ath0: STA 00:13:ce:76:d2:2e IEEE 802.11: deauthenticated due to 
local deauth request

hostapd: ath0: STA 00:13:ce:76:d2:2e IEEE 802.11: disassociated

Reloading hostapd or the madwifi modules would make it work again for 
another short period.


I tried one of the newest madwifi snapshots which made the problem worse 
- many more of the beacon miss count errors, extremely poor throughput 
and high latency and after a few minutes the router locked up.


I also tried a number of fixes recommended to clear up the problem, none 
of which really made any difference:


echo 0  /sys/devices/system/cpu/cpu1/online
iwpriv ath0 bgscan 0
iwpriv ath0 protmode 0
iwpriv ath0 rssi11a 11
iwpriv ath0 rssi11b 11
iwpriv ath0 rssi11g 11
iwpriv ath0 bintval 500
iwpriv ath0 mode 3
iwpriv ath0 turbo 0 
sysctl -w dev.wifi0.diversity=0

sysctl -w dev.wifi0.txantenna=1
sysctl -w dev.wifi0.rxantenna=1

In the end I found a couple of independent suggestions that madwifi 
0.9.4rc2 worked ok but no longer compiled against recent kernel 
versions, and that madwifi patch 3696 would fix that. I applied the 
patch against that 0.9.4rc2, and it built just fine.


Wireless has now been stable for over 24 hours, and I've not seen any 
more of the missed beacon messages at all, so it looks promising.


I didn't bother attempting to package it 'the debian way' as I was 
getting a bit fed up at this point, and madwifi has now been officially 
removed from debian as the ath5k driver is going to be used in future. 
Unfortunately ath5k doesn't yet work in accesspoint mode, but that is 
apparently coming soon.


http://spod.cx/blog/debian_lenny_madwifi_hostapd_stability_issues.shtml

P.S. I don't completely understood this message, but I think it can be helpful. 
And yes, I also met this problem. As I think.

-- System Information:
Debian Release: 5.0.7
 APT prefers stable
 APT policy: (989, 'stable'), (500, 'proposed-updates'), (200, 'testing')
Architecture: amd64 (x86_64)

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

Versions of packages madwifi-source depends on:
ii  bzip2 1.0.5-1+lenny1 high-quality block-sorting file co
ii  debhelper 7.0.15 helper programs for debian/rules
ii  module-assistant  0.10.11.0  tool to make module package creati

madwifi-source recommends no packages.

Versions of packages madwifi-source suggests:
ii  kernel-pac 11.015A utility for building Linux kerne
ii  madwifi-to 1:0.9.4+r3685.20080531+dfsg-1 tools for the Multiband Atheros Dr

-- no debconf information




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



Bug#609442: [l10n] Updated Czech translation of tgif debconf messages

2011-01-09 Thread Miroslav Kure
Package: tgif
Severity: wishlist
Tags: l10n, patch

Hi,

in attachement there is updated Czech (cs.po) translation of
tgif debconf messages. Please include it with the package.

Thanks
-- 
Miroslav Kure
# Czech translation of tgif debconf messages.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the tgif package.
# Miroslav Kure ku...@debian.cz, 2008, 2011
#
msgid 
msgstr 
Project-Id-Version: tgif\n
Report-Msgid-Bugs-To: t...@packages.debian.org\n
POT-Creation-Date: 2011-01-09 01:37+\n
PO-Revision-Date: 2011-01-09 15:21+0100\n
Last-Translator: Miroslav Kure ku...@debian.cz\n
Language-Team: Czech debian-l10n-cz...@lists.debian.org\n
Language: cs\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n

#. Type: select
#. Choices
#: ../tgif.templates:2001
msgid A4
msgstr A4

#. Type: select
#. Choices
#: ../tgif.templates:2001
msgid Letter
msgstr Letter

#. Type: select
#. Description
#: ../tgif.templates:2002
msgid Paper size to be used:
msgstr Formát papíru, který se má použít:

#. Type: select
#. Description
#: ../tgif.templates:2002
msgid 
Please select the size of paper to be used by Tgif. This selection will be 
appended to the global Tgif initialization file.
msgstr 
Zvolte formát papíru, který má Tgif používat. Tato volba bude přidána do 
globálního inicializačního souboru Tgifu.

#. Type: select
#. Choices
#: ../tgif.templates:3001
msgid Centimeters
msgstr Centimetry

#. Type: select
#. Choices
#: ../tgif.templates:3001
msgid Inches
msgstr Palce

#. Type: select
#. Description
#: ../tgif.templates:3002
#| msgid What units to use for the grid.
msgid Units to use for the grid:
msgstr Jednotky, které se mají použít pro mřížku:

#. Type: select
#. Description
#: ../tgif.templates:3002
msgid 
Please select the units to be used by Tgif when rendering the grid. This 
will also determine the scaling when the snap-to-grid option is enabled.
msgstr 
Zvolte jednotky, které má Tgif používat pro vykreslení mřížky. Tímto také 
ovlivníte zvětšování/zmenšování při zapnuté volbě „přichytávat k mřížce“ 
(snap-to-grid).

#~ msgid What size of paper to use.
#~ msgstr Jaká velikost papíru se má použít.

#~ msgid What size of paper should Tgif use?
#~ msgstr Jakou velikost papíru má Tgif použít?

#~ msgid Metric
#~ msgstr Metrické

#~ msgid Imperial
#~ msgstr Imperiální

#~ msgid 
#~ If you turn on the snap-to grid in Tgif, what units do you want it scaled 
#~ in?
#~ msgstr 
#~ Zapnete-li v Tgifu pomocnou mřížku pro umísťování objektů, v jakých 
#~ jednotkách má být zobrazena?

#~ msgid A4, Letter
#~ msgstr A4, Letter

#~ msgid Metric, Imperial
#~ msgstr Metrické, Imperiální


Bug#609278: ITP: Unity -- Interface for Ubuntu Desktop Edition

2011-01-09 Thread Adnan Hodzic
Raphael, thank you, I have just registered for ayatana team.

Also regarding this ITP I would like to change couple of fields which are:

Upstream Author: Unity Team ayatana-...@lists.launchpad.net

Description: A desktop experience designed for efficiency of space and
interaction

Unity is a desktop experience which is designed for efficiency of
space and interaction, in perfect combination of familiarity and the
future. It embraces the values of GNOME: simplicity, style, usability
and accessibility, as well as on professional level, considereding
design thinking. It is designed by Canonical and Ayatana community and
it consists of a Compiz based plugin, which is heavily dependent on
OpenGL.


Adnan


On Sat, Jan 8, 2011 at 9:56 AM, Raphael Hertzog hert...@debian.org wrote:
 Hi,

 On Sat, 08 Jan 2011, Adnan Hodzic wrote:
 Package: wnpp
 Severity: wishlist
 Owner: Adnan Hodzic ad...@foolcontrol.org

 * Package name    : Unity
   Version         : 3.2.8
   Upstream Author : Ubuntu Core Developers 
 ubuntu-devel-disc...@lists.ubuntu.com
 * URL             : https://launchpad.net/unity
 * License         : (GPL3)
   Programming Lang: (C, C++, vala)
   Description     : Interface for Ubuntu Desktop Edition

 Unity is a graphical interface designed for Ubuntu Desktop Edition

 I suggest you join the pkg-ayatana team and maintain unity there:
 http://wiki.debian.org/Teams/pkg-ayatana

 Cheers,
 --
 Raphaël Hertzog ◈ Debian Developer

 Follow my Debian News ▶ http://RaphaelHertzog.com (English)
                      ▶ http://RaphaelHertzog.fr (Français)




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



Bug#608731: libreoffice: migration problem: the .../user/Scripts contents not migrated to new dir

2011-01-09 Thread Rene Engelhard
Hi,

On Mon, Jan 03, 2011 at 04:09:58AM +0200, alex bodnaru wrote:
 i'm currently trying libreoffice in order to ensure a best possible release.

Good :)
 
 as i said, the .../user/Scripts contents not migrated to new dir. 
 my scripts are under .../Scripts/python.

Had a chat about that on Friday with upstream:

22:21 @_rene_ mmeeks: wasn't it you who fixed/reenabled the user config 
migration?
22:21 -!- spaetz [~spa...@195.190.181.247] has quit [Quit: Lost terminal]
22:22 @_rene_ mmeeks: maybe bugs.debian.org/608731 then is something for you? 
;)
22:27 @mmeeks _rene_: yes, everything is my fault :-)
22:28 @mmeeks oh; the non-migration of scripts,
22:28 @mmeeks wasn't this a feature-not-bug
22:28  * mmeeks forgets the details, but 
22:28 -!- czd (purple) [~christ...@148-81.78-83.cust.bluewin.ch] has joined 
#libreoffice
22:28 @mmeeks at least we didn't destroy his machine - right ;-)
22:28  czd hi
22:28  czd is a extension website in plan?
22:29 -!- Daniel_Neel (Daniel Neel) 
[~dan...@67-215-210-2.dynamic.bardstowncable.net] has joined #libreoffice
22:29  czd in planning
22:31 @_rene_ mmeeks: right ;)
22:31 @_rene_ mmeeks: but if you can come up with argumentation (or a fdo 
bugnr) why this isn't migrated, also fine :-)
22:33  * mmeeks sadly forgets it, I guess Mechtilde would be a good person to 
ask.

Mechtilde doesn't know either, except that might have happened
that LibO tried to migrate from your .openoffice.org2 which might or
might not still exist? What happens if you remove that? (And maybe
.libreoffice itself, too)?

Grüße/Regards,

René
-- 
 .''`.  René Engelhard -- Debian GNU/Linux Developer
 : :' : http://www.debian.org | http://people.debian.org/~rene/
 `. `'  r...@debian.org | GnuPG-Key ID: D03E3E70
   `-   Fingerprint: E12D EA46 7506 70CF A960 801D 0AA0 4571 D03E 3E70



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



Bug#607859: installation-reports: beta2 success, SR1750NX amd64 netinst, transients and glitches

2011-01-09 Thread Miguel Figueiredo
Hi,

Qua, 2010-12-22 às 18:13 -0800, Jim Hill escreveu:
 Package: installation-reports
 Severity: minor
 
 
 First two install attempts gave me the No common CD-ROM message.
 Returning to get debug logs, it found it just fine, of course.

Can you try if this happens in the daily builds?
If not can you provide more info on this?

 
 reportbug from the menu popped Please install the python-vte
 package to use the GTK+ (known as 'gtk2' in reportbug) interface.
 Falling back to 'text' interface.  It entered the text interface 
 just fine but I couldn't get back to nano after reflexively ^Z'ing
 out to get the partition table.

There is already a bug filled for this issue on package reportbug,
#558454.

-- 
Melhores cumprimentos/Best regards,

Miguel Figueiredo
http://www.DebianPT.org




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



Bug#609290: found the problem

2011-01-09 Thread Rene Engelhard
[ you really shouuldn't remove Ccs unless needed, in this case the
Cc to 609...@bugs.debian.org *is* needed as the discussion otherwise
doesn't get recorded ]. Doing now.

Hi,

On Sat, Jan 08, 2011 at 06:48:08PM +0200, alex bodnaru wrote:
 On 01/08/2011 03:12 PM, Rene Engelhard wrote:
  On Sat, Jan 08, 2011 at 01:43:08PM +0200, alex bodnaru wrote:
  i found the problem.
 
  it's not in the last version, but in the way it has been installed.
  
  verbose please? what happened?
  
 older soffice remained in memory of the user, and running say oowriter gives 
 no
 sign of life, even from the terminal.
 
 my example was with the same user running oowriter.
 
 interesting what would happen with different people.


Hmm, OK.

 btw: any news about the  608732 bug i've reported previously? that one is a 
 show
 breaker.

And you by now should know that mixing discussions about different bugs
in one mail/bug is bad. See my reply on 608732.

Grüße/Regards,

René



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



Bug#607350: installation-reports: HP G4 DL380 installation takes a very long time; fd0 error

2011-01-09 Thread Miguel Figueiredo
Sex, 2010-12-17 às 08:41 +, shado...@gmx.net escreveu:
 Package: installation-reports
 Severity: minor
 
 
 
 -- Package-specific info:
 
 Boot method: CD
 Image version: debian weekly week50
 Date: Date and time of the install
 
 Machine: HP G4 DL380
 Partitions: df -Tl will do; the raw partition table is preferred
 
 
 Base System Installation Checklist:
 [O] = OK, [E] = Error (please elaborate below), [ ] = didn't try it
 
 Initial boot:   [o]
 Detect network card:[o]
 Configure network:  [o]
 Detect CD:  [o]
 Load installer modules: [o]
 Detect hard drives: [o]
 Partition hard drives:  [o]
 Install base system:[o]
 Clock/timezone setup:   [o]
 User/password setup:[o]
 Install tasks:  [o]
 Install boot loader:[o]
 Overall install:[o]
 
 Comments/Problems:
 
 (sorry for my bad english, but i hope you understand me)
 
 The installation takes a very long time, and gives many errors sometimes
 its need 10minutes from screen to screen.
 
 look at this screenshots:
 http://ompldr.org/vNXVtZQ
 http://ompldr.org/vNXVtZw
 http://ompldr.org/vNXVtaA
 and i dont habe an floppydisk in this system, only CDROM and HDD
 
 here in german:
 http://debianforum.de/forum/viewtopic.php?f=12t=124204
 

Can you send the syslog from the installation (gzipped)?

-- 
Melhores cumprimentos/Best regards,

Miguel Figueiredo
http://www.DebianPT.org




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



Bug#608732: a macro in an extension i'm working at crashes libreoffice

2011-01-09 Thread Rene Engelhard
forwarded 608732 https://bugs.freedesktop.org/show_bug.cgi?id=32939
thanks

Hi,

On Mon, Jan 03, 2011 at 05:21:32AM +0200, alex bodnaru wrote:
 as i said, a macro in an extension i'm working at crashes libreoffice.
  ^

Can you please stop that? You didn't say *anything* before filing this bug,
so this as i said is nonsense.

 i will attach the extension and instructions to reproduce problem.

Forwarded to https://bugs.freedesktop.org/show_bug.cgi?id=32939

Grüße/Regards,

René
-- 
 .''`.  René Engelhard -- Debian GNU/Linux Developer
 : :' : http://www.debian.org | http://people.debian.org/~rene/
 `. `'  r...@debian.org | GnuPG-Key ID: D03E3E70
   `-   Fingerprint: E12D EA46 7506 70CF A960 801D 0AA0 4571 D03E 3E70



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



Bug#604926: libm17n-0: circular dependencies with m17n-contrib and m17n-db

2011-01-09 Thread Harshula
Hi Luca,

Do you use m17n lib or have you used it before?

On Wed, 2011-01-05 at 20:42 +0100, Luca Capello wrote:
 On Sun, 05 Dec 2010 17:28:37 +0100, Bill Allombert wrote:

 I consider it a bug that a library depends on a database to be used.
 First, because the database could be provided *directly* by the sysadmin
 (thus without the need for the exact copy provided by the dependent
 packages) and, second, because it means that a program linked to that
 library will require the dependent packages.

The programs that link to the m17n library do so to use the rules
contained in m17n-db.

 Recommends: are there exactly for that, especially given that Emacs +
 libm17n-0 + m17n-contrib + m17n-db *does not work*, as explained by the
 Debian maintainer in reply to the post above:

No, that's not what I said. If you are typing in a particular script,
you need the relevant font to see the correct results. This is
applicable to other text layout libraries.

 According to the reasoning used to solve #599643, why does libm17n-0 not
 depend also on ttf-sinhala-lklug?  It does not even Recommends: it...

Pango or ICU do not depend on particular fonts either.

cya,
#




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



Bug#609291: ITP: mangler -- A Ventrilo compatible client for Linux

2011-01-09 Thread Ana Guerrero


 On Sat, Jan 8, 2011 at 6:12 AM, Ana Guerrero a...@debian.org wrote:
 
 
   On Sat, Jan 8, 2011 at 1:35 AM, Salvo Tomaselli tipos...@tiscali.it
  wrote:
  
   Description : A Ventrilo compatible client for Linux
Perhaps a little bit of effort on the description?
 
  On Sat, Jan 08, 2011 at 01:44:49AM -0800, Vincent Cheng wrote:
   Well, I thought it was supposed to be a simple, concise description. I'm
   putting in more detail in debian/control and in the manual page that'll
  come
   along with the package.
  
 
  For the short description yes, it is supposed to be a short and consice
  one.
  But you are missing the long description wherre you should explain what
  ventrilo is.


On Sat, Jan 08, 2011 at 11:54:10PM -0800, Vincent Cheng wrote:
 Here's a follow-up description then:
 
 Mangler is an open source VoIP client capable of connecting to Ventrilo 3.x
 servers. It is capable of performing almost all standard user functionality
 found in a Windows Ventrilo client. Ventrilo is a proprietary VoIP
 communication software, letting users communicate through voice or text.
 
 (As a side question, how long are descriptions supposed to be?)

This one is pretty OK.
BTW, maybe it will be good idea maintaining this package inside the VoIP team,
http://wiki.debian.org/Teams/VoIP/ You can check with them, I do not know
if they will be interested.

Ana



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



Bug#609443: rsnapshot: backup fails with space in path destination

2011-01-09 Thread P'tit g
Package: rsnapshot
Version: 1.3.1-1
Severity: normal

config: backup  /tmp/test/  dest\ backup/test/

# rsnapshot -t hourly
echo 5365  /var/run/rsnapshot.pid 
mkdir -m 0755 -p /var/cache/rsnapshot/hourly.0/dest\ backup/ 
/usr/bin/rsync -a --delete --numeric-ids --relative --delete-excluded \
/tmp/test /var/cache/rsnapshot/hourly.0/dest\ backup/test/ 
touch /var/cache/rsnapshot/hourly.0/

# rsnapshot hourly
rsync: mkdir /var/cache/rsnapshot/hourly.0/dest backup/test failed: No such 
file or directory (2)
rsync error: error in file IO (code 11) at main.c(595) [Receiver=3.0.7]
rsync: connection unexpectedly closed (9 bytes received so far) [sender]
rsync error: error in rsync protocol data stream (code 12) at io.c(601) 
[sender=3.0.7]

rsnapshot encountered an error! The program was invoked with these options:
/usr/bin/rsnapshot hourly 

ERROR: /usr/bin/rsync returned 12 while processing /tmp/test/


rsync uses the destination folder 'dest backup', but rsnapshot creates a folder 
named 'dest\ backup'.



-- System Information:
Debian Release: 6.0
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'stable'), (100, 'unstable'), (10, 
'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-5-amd64 (SMP w/1 CPU core)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages rsnapshot depends on:
ii  liblchown-perl1.01-1 Perl interface to the lchown() sys
ii  logrotate 3.7.8-6Log rotation utility
ii  perl  5.10.1-16  Larry Wall's Practical Extraction 
ii  rsync 3.0.7-2fast remote file copy program (lik

Versions of packages rsnapshot recommends:
ii  openssh-client1:5.5p1-6  secure shell (SSH) client, for sec

rsnapshot suggests no packages.

-- Configuration Files:
/etc/rsnapshot.conf changed:
config_version  1.2
snapshot_root   /var/cache/rsnapshot/
cmd_rm  /bin/rm
cmd_rsync   /usr/bin/rsync
cmd_logger  /usr/bin/logger
intervalhourly  6
intervaldaily   7
intervalweekly  4
verbose 2
loglevel3
lockfile/var/run/rsnapshot.pid
backup  /tmp/test/  dest\ backup/test/


-- no debconf information



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



Bug#588276: fixed 588276 in 0.7.0-2

2011-01-09 Thread Marc Dequènes (Duck)

Quoting Simon McVittie s...@debian.org:


I do notice that 0.7.0 builds libnotify4, not libnotify1, so I assume you had
to upgrade something else to use it; are you sure the fix couldn't have been
in another package you upgraded?


I remember upgrading libnotify-bin only, so as to test using  
notify-send and no other intermediate tool; and yes it drags  
libnotify4, but as it uses DBus to talk to the notification-daemon,  
and awesome (in my case) acts as notification-daemon without using  
this lib, it should not be that important. Awesome has not been  
updated since a while, and i don't know which dependency could have  
intefered.


As you said you could not reproduce, i tested again with 0.5.0-2, and  
could not reproduce either (but with a machine in unstable and  
experimental xorg). So i'll try with a cleaner configuration (which is  
don't have access to at the moment) soon.


Thanks for your investigation.

--
Marc Dequènes (Duck)


pgpROwH4oXHWP.pgp
Description: PGP Digital Signature


Bug#609444: tmux hangs when closing the session on hurd

2011-01-09 Thread Justus Winter
Package: tmux
Version: 1.4-2
Severity: normal

When the session is ended by closing the last shell within tmux, tmux hangs.
It also hangs when a new session is started (this time with an existing
socket):

teyth...@ganymede:~$ id
uid=1000(teythoon) gid=1000(teythoon) groups=1000(teythoon),4(adm)
teyth...@ganymede:~$ ls /var/run/tmux/tmux-1000
teyth...@ganymede:~$ tmux
[... session starts, enter exit ...]
[... tmux hangs, so you need to kill it ...]
[server exited]
teyth...@ganymede:~$ stat /var/run/tmux/tmux-1000/default 
  File: `/var/run/tmux/tmux-1000/default'
  Size: 0   Blocks: 0  IO Block: 8192   socket
Device: 3h/3d   Inode: 542761  Links: 1
Access: (0660/srw-rw)  Uid: ( 1000/teythoon)   Gid: ( 1000/teythoon)
Access: 2011-01-09 14:54:31.0 +
Modify: 2011-01-09 14:54:31.0 +
Change: 2011-01-09 14:55:16.0 +
teyth...@ganymede:~$ tmux
[... tmux hangs immediately ...]

Removing that socket leads to the first behaviour.

(OTOH joining a running session with 'tmux attach' works as expected.)

I optained one stack trace using gdb, but I am not sure whether this is tmux
hanging at the first or second point described above. Unfortunately all the
traces I'm getting now are looking weird and wrong... well, here it is:

(gdb) bt
#0  0x010a5f4c in mach_msg_trap ()
at 
/build/buildd-eglibc_2.11.2-7-hurd-i386-6JVoJz/eglibc-2.11.2/build-tree/hurd-i386-libc/mach/mach_msg_trap.S:2
#1  0x010a6749 in __mach_msg (msg=0x15ff278, option=2, send_size=0, 
rcv_size=40, rcv_name=129, timeout=0, notify=0) at msg.c:110
#2  0x010ad221 in _hurd_select (nfds=2, pollfds=0x80b5d60, readfds=0x0, 
writefds=0x0, exceptfds=0x0, timeout=0x0, sigmask=0x0) at hurdselect.c:324
#3  0x0118fcdb in __poll (fds=0x80b5d60, nfds=2, timeout=-1)
at ../sysdeps/mach/hurd/poll.c:48
#4  0x01080ee5 in ?? () from /usr/lib/libevent-1.4.so.2
#5  0x010744da in event_base_loop () from /usr/lib/libevent-1.4.so.2
#6  0x010748b9 in event_loop () from /usr/lib/libevent-1.4.so.2
#7  0x010748de in event_dispatch () from /usr/lib/libevent-1.4.so.2
#8  0x0804c781 in client_main (argc=0, argv=0x15ffd9c, flags=1) at client.c:197
#9  0x0807cf75 in main (argc=0, argv=0x15ffd9c) at tmux.c:518

One more weird thing I just found out by accident: When I start an tmux session
and then attach to it using gdb and kill it using gdbs kill command, tmux
would exit leaving an socket behind:

teyth...@ganymede:~$ stat /var/run/tmux/tmux-1000/default 
  File: `/var/run/tmux/tmux-1000/default'
  Size: 0   Blocks: 0  IO Block: 8192   socket
Device: 3h/3d   Inode: 542768  Links: 1
Access: (0660/srw-rw)  Uid: ( 1000/teythoon)   Gid: ( 1000/teythoon)
Access: 2011-01-09 15:10:05.0 +
Modify: 2011-01-09 15:10:05.0 +
Change: 2011-01-09 15:10:45.0 +

But now tmux works as expected, I can create and exit as many sessions as I
want. I tried to reproduce this with kill but both SIGINT and SIGKILL lead
to tmux hanging when restarting it. Not sure why it is different when using
gdb.

This might not even be a tmux bug but one in libevent or the hurd itself, but
it surfaces when using tmux and is quite annoying.

-- System Information:
Debian Release: 6.0
  APT prefers unstable
  APT policy: (900, 'unstable'), (300, 'experimental')
Architecture: hurd-i386 (i686-AT386)

Kernel: GNU-Mach 1.3.99/Hurd-0.3
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to en_US.UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages tmux depends on:
ii  libc0.3   2.11.2-7   Embedded GNU C Library: Shared lib
ii  libevent2 2.0.3-alpha-1  An asynchronous event notification
ii  libncurses5   5.7+20100313-5 shared libraries for terminal hand

tmux recommends no packages.

tmux suggests no packages.

-- no debconf information



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



Bug#609445: ghc6: Haddock documentation missing instance documentation

2011-01-09 Thread Omari Norman
Package: ghc6
Version: 6.12.1-13
Severity: normal


My Haddock documentation on squeeze doesn't have documentation for any
class instances. This is true both for the docs that come with Debian
and for the docs I build for my own packages. Other docs on the Internet
have instance documentation, even for relatively old GHC releases like
6.6.1:

http://www.haskell.org/ghc/docs/6.6.1/html/libraries/base/Prelude.html



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

Kernel: Linux 2.6.32-5-686 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to en_US.UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages ghc6 depends on:
ii  gcc   4:4.4.5-1  The GNU C compiler
ii  libbsd-dev0.2.0-1utility functions from BSD systems
ii  libc6 2.11.2-7   Embedded GNU C Library: Shared lib
ii  libc6-dev 2.11.2-7   Embedded GNU C Library: Developmen
ii  libffi-dev3.0.9-3Foreign Function Interface library
ii  libffi5   3.0.9-3Foreign Function Interface library
ii  libgmp3-dev   2:4.3.2+dfsg-1 Multiprecision arithmetic library 
ii  libgmp3c2 2:4.3.2+dfsg-1 Multiprecision arithmetic library
ii  libncurses5   5.7+20100313-4 shared libraries for terminal hand
ii  perl [perl5]  5.10.1-16  Larry Wall's Practical Extraction 

ghc6 recommends no packages.

Versions of packages ghc6 suggests:
pn  ghc6-doc  none (no description available)
pn  ghc6-prof none (no description available)
ii  haskell-doc   20061127   Assorted Haskell language document



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



Bug#601558: Still not working with kernel in squeeze

2011-01-09 Thread Oliver Sander

I tried this again after an update to today's squeeze, with kernel 2.6.32-29
and xserver-xorg-video-intel 2:2.13.0-5.  Unfortunately, the problem remains
unchanged: the screen turns black when the frame buffer is switched on,
and there is no way to get a text console let alone X.

I also tried with the current kernel from experimental: 2.6.37-rc7.
That seems to work nicely.  I didn't encounter any serious problems after
about an hour of playing around with it.  In particular, the X server
freezes I reported above with the 2.6.36 kernel appear to have gone.

As this bug is not ranked important enough to be fixed in squeeze,
and it already is fixed in post-squeeze, feel free to close this bug report.
Thank you guys for your help!

Oliver


Bug#592943: Confirmed in linux-image-2.6.37-rc7

2011-01-09 Thread Oliver Sander

I just tried linux-image-2.6.37-rc7 from experimental.  The problem is still 
there.




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



Bug#599648: groff: Please document reasons for recommends

2011-01-09 Thread Colin Watson
On Mon, Oct 11, 2010 at 11:57:38AM -0700, Josh Triplett wrote:
 On Mon, Oct 11, 2010 at 09:56:57AM +0100, Colin Watson wrote:
  @@ -67,3 +67,10 @@ Description: GNU troff text-formatting s
 - eqn2graph, which converts EQN equations into cropped image files.
.
All the standard macro packages are supported.
  + .
  + Some facilities only work if certain recommended packages are installed:
  + .
  +  - ghostscript, netpbm, psutils: required for HTML output;
  +  - imagemagick: required for the pic2graph and eqn2graph programs;
  +  - libpaper1: paper size detection in dvi, lbp, lj4, and ps devices (falls
  +back to a4 if not installed).
 
 Huh.  I don't have psutils installed, yet HTML output seems to work just
 fine.  Do these only apply if processing troff input files that include
 pictures in postscript format (for psutils) or image formats (for
 netpbm)?  That would explain why I've never seen problems, since I never
 work with any troff documents other than manpages. ;)

I think that's currently the case, yes.

Cheers,

-- 
Colin Watson   [cjwat...@debian.org]



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



Bug#609446: Grub 2 squeeze won't install in hdc9

2011-01-09 Thread Kostenzer

Package: grub2
Version: 1.98+20100804-11
Severity: important


Because Squeeze won't boot now, I hope things above are right

I think I've found a bug.

I'm a new-bee
I read problems about grub, but didn't find similar problem
I use linux so now an then.
My (wanted) system:
/dev/sda1 xp -1- primary
/dev/sda2 xp -2- primay
/dev/sda3 extended
there is no /dev/sda4
/dev/sda5 ntsf data
/dev/sda6 ntsf data
/dev/sda7 fat 32 data
/dev/sda8 swap
/dev/sda9 ext3 ment for squeze

Under squeeze sda is called hdc

For years I use osl2000 bootmanager. Just perfect for me.
OSL2000 hides the not active primary partitions. So xp -1- can't see or 
access xp -2- and the other way round. Just what I want.

On /dev/sda9 or /dev/hdc9   I installed lenny and grub. Worked great.
Osl2000 boots from MBR and started grub in hdc9

Now I wanted to install squeeze on it. Problems began.
It is a pity that the bootmanager is installed in the last steps. Just 
after that you find out that the installation can't be accessed from 
OLS2000.


Missing operating system

is the message.

My trials:

A not clean install or clean install, grub legacy or grub2, no 
difference: Missing operating system (4 times installing, costs a lot of 
time)
Then installing lenny again. /dev/hdc9. Grub2 same problems: Missing 
operating system. Grub legacy works immediately fine.

Over a rescue cd, I tried:
sudo grub-install --force /dev/sda9 and
sudo grub-install --force --root-directory=/ /dev/sda9
just warnings but no result. I have to use blocklists.
I couldn't find information on the internet about how to use blocklists 
in this case.

Does someone have a link or better a solution?

After upgrading (http://www.go2linux.org/how-to-upgrade- ... to-squeeze 
http://www.go2linux.org/how-to-upgrade-from-debian-lenny-to-squeeze)
grub was changed in grub2. Grub2 and squeeze now worked both. But now 
there is no network access anymore.

Work to do.
Now 2011-01-09, 2 month later I tried again to install squeeze (not 
update) Same problems and no linux to boot.


So I think the installing of grub2 is not bug free. Installing Grub 
under squeeze is also not bug free.
There are warnings if grub is not installed in mbr. I have not enough 
knowledge, but if it works after upgrading, why it is not recommended?
If I remember good,there was also somewhere a warning it would make the 
system slower.
When? During booting or overall? In the first case, no problem. In the 
second case. I didn't notice.

(After the upgrading)

My Question:
Is here a bugfix needed  to install squeeze and grub or grub2 correctly 
on sda9 or hdc9 without upgrading from lenny?


thanks

Kos


Bug#482592:

2011-01-09 Thread Thomas
Package: numlockx
Version: 1.1-10
Severity: normal

I still have this issue. When my num lock is off and I call numlockx, I can
type the numbers but the led's ligth still turned off. The inverse is true.



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

Kernel: Linux 2.6.32-5-686 (SMP w/1 CPU core)
Locale: LANG=pt_BR.UTF-8, LC_CTYPE=pt_BR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages numlockx depends on:
ii  libc6 2.11.2-7   Embedded GNU C Library: Shared lib
ii  libx11-6  2:1.3.3-4  X11 client-side library
ii  libxtst6  2:1.1.0-3  X11 Testing -- Record extension li

numlockx recommends no packages.

Versions of packages numlockx suggests:
ii  gdm [x-display-manager]   2.20.11-4  GNOME Display Manager

-- no debconf information



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



Bug#583526: emacs -Q still loads local libraries

2011-01-09 Thread Sven Joachim
forwarded 583526 http://debbugs.gnu.org/cgi/bugreport.cgi?bug=5707
thanks

On 2010-05-28 07:45 +0200, Trent W. Buck wrote:

 Package: emacs
 Version: 23.1+1-5
 Severity: normal

 I set up a chroot containing GNU Emacs 23 and (almost) every elisp
 package, with the intention of looking for libraries that shadow
 emacs23's libraries with obsolete older versions.

 Imagine my surprise when *even with -Q*, a number of libraries are
 shadowed (see attached transcript).  Why are third-party libraries
 being added to the load path when -Q is specified?

It seems that upstream agrees this is not a good idea, and in Emacs 24
site-lisp directories are not added to load-path anymore when Emacs is
invoked with the -Q option.

Cheers,
   Sven



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



Bug#596349: No improvements in xserver-xorg-video-intel 2:2.13.0-5

2011-01-09 Thread Oliver Sander

I tried this again with kernel 2.6.37-rc7 from experimental and 
xserver-xorg-video intel
2:2.13.0-5, from current squeeze.  The bug is still there.  With rare 
exceptions,
pressing Fn-arrow up|down makes the mouse pointer disappear.




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



Bug#609447: Undeclared dependency on python-pkg-resources

2011-01-09 Thread Modestas Vainius
Package: python-xattr
Version: 0.4-5
Severity: serious
Tags: squeeze sid

$ xattr -l file
Traceback (most recent call last):
  File /usr/bin/xattr, line 5, in module
from pkg_resources import load_entry_point
ImportError: No module named pkg_resources

The issue affects unstable version (0.6-1) as well. 

P.S. What is more, the lack of #592860 [1] fix in testing also drives me nuts. 
It's hard to use xattr as command line utility with the latter bug unfixed.

[1] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=592860

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (1001, 'testing')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-686 (SMP w/1 CPU core)
Locale: LANG=lt_LT.UTF-8, LC_CTYPE=lt_LT.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages python-xattr depends on:
ii  libc6   2.11.2-7 Embedded GNU C Library: Shared 
lib
ii  python  2.6.6-3+squeeze4 interactive high-level object-
orie
ii  python-support  1.0.10   automated rebuilding support for 
P

python-xattr recommends no packages.

python-xattr suggests no packages.

-- no debconf information


signature.asc
Description: This is a digitally signed message part.


Bug#609448: linux-source-2.6.37: source code not included for drivers/staging/ft1000/ft1000-pcmcia/boot.h?

2011-01-09 Thread Timo Juhani Lindfors
Package: linux-source-2.6.37
Version: 2.6.37-1~experimental.1
Severity: serious

drivers/staging/ft1000/ft1000-pcmcia/boot.h seems to contain firmware
in binary form. Is the source code available somewhere?

(This is the only blob I could find with
http://www.linux-libre.fsfla.org/pub/linux-libre/releases/2.6.37-libre/deblob-2.6.37)

$ head -n50 linux-source-2.6.37/drivers/staging/ft1000/ft1000-pcmcia/boot.h
//---
// FT1000 driver for Flarion Flash OFDM NIC Device
//
// Copyright (C) 2002 Flarion Technologies, All rights reserved.
//
// 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 of the License, 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., 59 Temple Place -
// Suite 330, Boston, MA 02111-1307, USA.
//---
//
// File: boot.h
//
// Description:boatloader
//
// History:
// 1/11/05WhcPorted to Linux.
//
//---
#ifndef _BOOTH_
#define _BOOTH_

// Official bootloader
unsigned char bootimage [] = {
0x00,0x00,0x01,0x5E,0x00,0x00
,0x00,0x00,0x00,0x00,0x02,0xD7
,0x00,0x00,0x01,0x5E,0x46,0xB3
,0xE6,0x02,0x00,0x98,0xE6,0x8C
,0x00,0x98,0xFB,0x92,0xFF,0xFF
,0x98,0xFB,0x94,0xFF,0xFF,0x98
,0xFB,0x06,0x08,0x00,0x98,0xFB
,0x96,0x84,0x00,0x98,0xFB,0x08
,0x1C,0x00,0x98,0xFB,0x51,0x25
,0x10,0x1C,0x00,0xE6,0x51,0x01
,0x07,0xFD,0x4C,0xFF,0x20,0xF5
,0x51,0x02,0x20,0x08,0x00,0x4C
,0xFF,0x20,0x3C,0x00,0xC0,0x64
,0x98,0xC0,0x66,0x98,0xC0,0x68
,0x98,0xC0,0x6A,0x98,0xC0,0x6C
,0x98,0x90,0x08,0x90,0x09,0x90
,0x0A,0x90,0x0B,0x90,0x0C,0x90
,0x0D,0x90,0x0E,0x90,0x0F,0x90
,0x04,0x90,0x06,0xFB,0x51,0x22
,0x16,0x08,0x03,0xFB,0x51,0x52
...



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

Kernel: Linux 2.6.32-5-amd64 (SMP w/4 CPU cores)
Locale: LANG=C, LC_CTYPE=fi_FI (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash



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



Bug#609440: madwifi-source: Debian Lenny Madwifi and Hostapd stability issues

2011-01-09 Thread Marco Gaiarin

 used in future. Unfortunately ath5k doesn't yet work in accesspoint
 mode, but that is apparently coming soon.

I can confirm this bug.

But i've switched, roughly one year ago, to the kernel in backport
(linux-image-2.6.32-bpo.5-686) and i've recompiled hostapd from testing
(1:0.6.10-2), switching to ath5k and all works flawlessy, no more
stability troubles.

I suggest to do that, or switch directly to squeeze.



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



Bug#601506: Bug#601882: boxbackup-server's bbstored-certs creates certs that expire in the past

2011-01-09 Thread Reinhard Tartler
Hi all,

On Sat, Jan 08, 2011 at 21:53:07 (CET), Chris Wilson wrote:

 Reinhard, I'm going to add this fix to 0.11 to make 0.11.1, would you
 like to update the Debian packages when it becomes available shortly?

Thanks for the offer, but I don't think a new upstream release will be
necessary. Btw, AFAIUI 0.11 still isn't released, I see 'just' a 0.11rc8
package on http://boxbackup.org? So what would a potential 0.11.1
package contain then? Anyway, Debian 'lenny' (stable) ships with an
0.11rc2 package. Debian 'squeeze' will ship 0.11rc2 as well (rc8 missed
the freeze), but has the proposed change already included.

I'm going to include the fix in the package directly. The whole issue is
tracked at http://bugs.debian.org/601506, and the Stable Release Manager
(SRM, i.e., Adam) asked me to present a debdiff showing the changes for
the update I'm proposing for debian *stable*. I'm doing this with this
email, see below.

 On Sat, 2011-01-08 at 13:55 +0100, Reinhard Tartler wrote:
 The fix for #601506 has been done with the -7 upload, but the change -6
 would qualify for lenny IMO as well. SRM, would you be happy to include
 the changes from -6 and -7 in the next lenny point release? If yes,
 please advice what changes to include and what version number to use for
 an upload to stable-proposed-updates.

On Sat, Jan 08, 2011 at 18:43:20 (CET), Adam D. Barratt wrote:
 fwiw, most of the changes in -6 don't actually appear to be needed; the
 problem only arises when the tests of the form [ -z $VAR1 -o -z
 $VAR2 ] are used (and specifically only when $VAR1 is empty, as -z ends
 up being applied to -o).

 Other than that, applying -6 and -7 to lenny would be okay. Please use
 0.11~rc2-5+lenny1 as the version number and send a debdiff to -release
 for final pre-upload confirmation.

I've taken these changes in anyways because I do know that they work in
that way in squeeze. Here we go:

--- boxbackup-0.11~rc2/debian/boxbackup-server.postinst
+++ boxbackup-0.11~rc2/debian/boxbackup-server.postinst
@@ -71,7 +71,7 @@
DIR3=`echo $RET | awk '{ print $3 }'`
 
if [ -n $DIR1 ]; then
-   if [ -z $DIR2 -o -z $DIR3 ]; then
+   if [ -z $DIR2 -o -z $DIR3 ]; then
DIR2=$DIR1
DIR3=$DIR1
fi
diff -u boxbackup-0.11~rc2/debian/boxbackup-client.postinst 
boxbackup-0.11~rc2/debian/boxbackup-client.postinst
--- boxbackup-0.11~rc2/debian/boxbackup-client.postinst
+++ boxbackup-0.11~rc2/debian/boxbackup-client.postinst
@@ -74,15 +74,15 @@
if [ $RET = lazy ]; then
db_get boxbackup-client/UpdateStoreInterval
UPDATE=$RET
-   [ -z $UPDATE ]  UPDATE=3600
+   [ -z $UPDATE ]  UPDATE=3600
 
db_get boxbackup-client/MinimumFileAge
FILEAGE=$RET
-   [ -z $FILEAGE ]  FILEAGE=21600
+   [ -z $FILEAGE ]  FILEAGE=21600
 
db_get boxbackup-client/MaxUploadWait
UPWAIT=$RET
-   [ -z $UPWAIT ]  UPWAIT=86400
+   [ -z $UPWAIT ]  UPWAIT=86400
 
AUTO=yes
else
@@ -219,7 +219,7 @@
chmod 600 $BBKEY || true
 
# SSL stuff
-   if [ ! -z $ACCOUNT ]; then
+   if [ ! -z $ACCOUNT ]; then
if [ ! -e $BBPRIVKEY -a ! -e $BBCERT ]; then
db_get boxbackup-client/generateCertificate
 
diff -u boxbackup-0.11~rc2/debian/boxbackup-server.config 
boxbackup-0.11~rc2/debian/boxbackup-server.config
--- boxbackup-0.11~rc2/debian/boxbackup-server.config
+++ boxbackup-0.11~rc2/debian/boxbackup-server.config
@@ -33,7 +33,7 @@
 DIR3=`echo $RET | awk '{ print $3 }'`
 
 if [ -n $DIR1 ]; then
-   if [ -z $DIR2 -o -z $DIR3 ]; then
+   if [ -z $DIR2 -o -z $DIR3 ]; then
DIR2=$DIR1
DIR3=$DIR1
fi
diff -u boxbackup-0.11~rc2/debian/changelog boxbackup-0.11~rc2/debian/changelog
--- boxbackup-0.11~rc2/debian/changelog
+++ boxbackup-0.11~rc2/debian/changelog
@@ -1,3 +1,13 @@
+boxbackup (0.11~rc2-5+lenny1) stable-proposed-updates; urgency=low
+
+  * bin/bbstored/bbstored-certs: reduce root CA expiration date to avoid
+Y2k38 overflow. Thanks to Clint Adams sch...@debian.org for
+reporting it. Closes: #601506
+  * Fix shell scripting in the debconf interaction code of the package's
+postinst script. This should prevent problems like LP: #222999
+  
+ -- Reinhard Tartler siret...@tauware.de  Sun, 09 Jan 2011 16:07:46 +0100
+
 boxbackup (0.11~rc2-5) unstable; urgency=low
 
   * Bugfix: Please build-depend on docbook-xml. Thanks to Luca Falavigna
only in patch2:
unchanged:
--- boxbackup-0.11~rc2.orig/bin/bbstored/bbstored-certs.in
+++ boxbackup-0.11~rc2/bin/bbstored/bbstored-certs.in
@@ -2,10 +2,10 @@
 use strict;
 
 # validity period for root certificates -- default is a very long time
-my $root_sign_period = '1';
+my $root_sign_period = '5000';
 
 # but less so for 

Bug#586780: same error in hunspell-fr (French) and hunspell-ne (Nepali)

2011-01-09 Thread Rene Engelhard
reassign 586780 hunspell-da,hunspell-fr,hunspell-ne
reassign 505809 hunspell-da,hunspell-fr,hunspell-ne
close 586780 3.3.0-3
forcemerge 505809 505809
thanks

Hi,


On Wed, Jul 14, 2010 at 07:33:09AM +0200, Gijs Hillenius wrote:
 The exact same spelling mistake is prominent in the package description
 of hunspell-fr (French) and hunspell-ne (Nepali)

But only in lenny...

I think I fixed (the reported) hunspelll-fr and the other two (ne, da) in
#505809...

Grüße/Regards,

René



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



Bug#607986: software-properties-gtk: the md5 module is deprecated - Confirm AMD64

2011-01-09 Thread Domenico Cufalo
Package: software-properties-gtk
Version: 0.60.debian-3
Severity: normal

I can confirm this bug in my machine (AMD64).
Hi and thanks.



-- System Information:
Debian Release: 6.0
  APT prefers testing
  APT policy: (900, 'testing'), (800, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

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

Versions of packages software-properties-gtk depends on:
ii  gksu2.0.2-5  graphical frontend to su
ii  python  2.6.6-3+squeeze4 interactive high-level object-orie
ii  python-glade2   2.17.0-4 GTK+ bindings: Glade support
ii  python-gtk2 2.17.0-4 Python bindings for the GTK+ widge
ii  python-software-propert 0.60.debian-3manage the repositories that you i
ii  python-support  1.0.10   automated rebuilding support for P
ii  synaptic0.70~pre1+b1 Graphical package manager

software-properties-gtk recommends no packages.

software-properties-gtk suggests no packages.

-- no debconf information



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



Bug#609449: ITP: ranger - a file manager with an ncurses frontend written in Python

2011-01-09 Thread Vern Sun
Package: wnpp
Severity: wishlist
Owner: Vern Sun s5u...@gmail.com

* Package name: ranger
  Version : 1.4.1-1
  Upstream Author : Roman Zimbelmann  rom...@lavabit.com
* URL : http://ranger.nongnu.org/
* License : GNU General Public License Version 3
  Section : utils

Ranger is a free console file manager that gives you greater flexibility and a
good overview of your files without having to leave your *nix console. It
visualizes the directory tree in two dimensions: the directory hierarchy on
one, lists of files on the other, with a preview to the right so you know
where you'll be going.

The default keys are similar to those of Vim, Emacs and Midnight Commander,
though ranger is easily controllable with just the arrow keys or the mouse.

-- 
Vern
vim -c :s(^(ZnQr8va1puvan.(|:s)\d\(\S\)) \U\1)g|:1 normal g??


signature.asc
Description: Digital signature


Bug#609450: firmware-iwlwifi: since ~2weeks connection problems

2011-01-09 Thread Stefan Krueger
Subject: firmware-iwlwifi: since ~2weeks connection problems -- direct probe to 
AP
Package: firmware-iwlwifi
Version: 0.27
Severity: important

*** Please type your report below this line ***

Since 2weeks I have connection Problems(after an apt-get update; apt-get 
upgrade) with my iwl3945 Intel(R) PRO/Wireless 3945ABG/BG. 
Now, I dont become an connection to my router, i dont know why, before the 2 
weeks all works very fine.




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

Kernel: Linux 2.6.32-5-686 (SMP w/2 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

firmware-iwlwifi depends on no packages.

firmware-iwlwifi recommends no packages.

Versions of packages firmware-iwlwifi suggests:
ii  initramfs-tools   0.98.7 tools for generating an initramfs
ii  linux-image-2.6.32-5-686 [lin 2.6.32-29  Linux 2.6.32 for modern PCs

-- no debconf information

**uname -a
Linux squeezy 2.6.32-5-686 #1 SMP Fri Dec 10 16:12:40 UTC 2010 i686 GNU/Linux

**lsmod
Module  Size  Used by
usbhid 28008  0 
hid50873  1 usbhid
iwl394546032  0 
rndis_host  4359  0 
cdc_ether   2633  1 rndis_host
usbnet  9527  2 rndis_host,cdc_ether
mii 2714  1 usbnet
usb_storage30541  0 
iwlcore67478  1 iwl3945
mac80211  123574  2 iwl3945,iwlcore
cfg80211   87657  3 iwl3945,iwlcore,mac80211
acpi_cpufreq4951  1 
cpufreq_conservative 4018  0 
cpufreq_userspace   1480  0 
cpufreq_powersave602  0 
cpufreq_stats   1940  0 
parport_pc 15799  0 
ppdev   4058  0 
lp  5570  0 
parport22554  3 parport_pc,ppdev,lp
sco 5857  2 
bridge 33019  0 
stp  996  1 bridge
bnep7444  2 
rfcomm 25171  8 
l2cap  21705  16 bnep,rfcomm
kvm_intel  32860  0 
uinput  4796  1 
kvm   182779  1 kvm_intel
nls_utf8 908  1 
nls_cp437   4489  1 
vfat6570  1 
fat34912  1 vfat
coretemp3401  0 
loop9765  0 
firewire_sbp2   9647  0 
snd_hda_codec_realtek   163282  1 
joydev  6739  0 
arc4 974  2 
ecb 1405  2 
snd_hda_intel  16787  2 
i915  222064  2 
drm_kms_helper 18301  1 i915
snd_hda_codec  46002  2 snd_hda_codec_realtek,snd_hda_intel
btusb   8077  2 
drm   112088  3 i915,drm_kms_helper
psmouse44657  0 
i2c_algo_bit3497  1 i915
snd_hwdep   4054  1 snd_hda_codec
bluetooth  36319  9 sco,bnep,rfcomm,l2cap,btusb
serio_raw   2916  0 
wmi 3575  0 
processor  26327  3 acpi_cpufreq
snd_pcm47222  2 snd_hda_intel,snd_hda_codec
button  3598  1 i915
video  14605  1 i915
battery 3782  0 
evdev   5609  19 
snd_seq35463  0 
snd_timer  12258  2 snd_pcm,snd_seq
snd_seq_device  3673  1 snd_seq
rfkill 10264  3 cfg80211,bluetooth
i2c_i8016462  0 
i2c_core   12696  5 i915,drm_kms_helper,drm,i2c_algo_bit,i2c_i801
output  1204  1 video
snd34375  12 
snd_hda_codec_realtek,snd_hda_intel,snd_hda_codec,snd_hwdep,snd_pcm,snd_seq,snd_timer,snd_seq_device
soundcore   3450  1 snd
snd_page_alloc  5045  2 snd_hda_intel,snd_pcm
ac  1640  0 
pcspkr  1207  0 
ext4  257803  2 
mbcache 3762  1 ext4
jbd2   56155  1 ext4
crc16   1027  2 l2cap,ext4
sg 15968  0 
sd_mod 25969  5 
crc_t10dif  1012  1 sd_mod
sr_mod 10770  0 
cdrom  26487  1 sr_mod
ata_generic 2067  0 
uhci_hcd   16057  0 
firewire_ohci  16725  0 
sdhci_pci   4525  0 
sdhci  12147  1 sdhci_pci
ata_piix   17736  0 
tg388273  0 
ahci   27270  4 
libata115753  3 ata_generic,ata_piix,ahci
ricoh_mmc   2561  0 
firewire_core  31235  2 firewire_sbp2,firewire_ohci
crc_itu_t   1035  1 firewire_core
mmc_core   38665  1 sdhci
ehci_hcd   27851  0 
led_class   1757  3 iwl3945,iwlcore,sdhci
libphy 11638  1 tg3
thermal 9206  0 
thermal_sys 9378 

Bug#609451: Debian CD signing key not in debian-keyring

2011-01-09 Thread Maximilian Gaukler

Package: debian-keyring
Version:2009.01.18
Severity: normal
Found: 2009.01.18
Fixed: 2010.06.08

Please add the debian CD signing key (64E6EA7D) to debian-keyring/lenny so that 
lenny CD-images can be verified on a lenny system.

With the lenny debian-role keyring, it is not possible to verify the SHA512SUMS 
file from http://cdimage.debian.org/debian-cd/5.0.7/amd64/jigdo-cd/
$ gpg --keyring /usr/share/keyrings/debian-role-keys.gpg --verify 
SHA512SUMS.sign
gpg: Signature made Sun Nov 28 22:47:37 2010 CET using RSA key ID 64E6EA7D
gpg: Can't check signature: public key not found

If I extract the debian-role keyring from the testing version of 
debian-keyring, I can successfully verify the SHA512SUMS file:

$ gpg --keyring ./debian-role-keys.gpg --verify SHA512SUMS.sign
gpg: Signature made Sun Nov 28 22:47:37 2010 CET using RSA key ID 64E6EA7D
gpg: Good signature from Debian CD signing key debian...@lists.debian.org
gpg: WARNING: This key is not certified with a trusted signature!
gpg:  There is no indication that the signature belongs to the owner.

Thanks

Max Gaukler



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



Bug#601558: Blnak screen

2011-01-09 Thread Julien Cristau
On Thu, Dec  9, 2010 at 23:48:52 +0100, Robert David wrote:

 I can confirm this bug. I halve intel GMA945 and resolution 1024x600. Display 
 turn black when KMS start. I can login (blindly) and than suspend (hotkey), 
 after resume the screen is ok. I dont think disabling KMS is the solution, I 
 use KMS for a long time and had this problem since the last few kernel 
 updates 
 2.6.32-5-686. When I plugin VGA display in and boot, I can see the login 
 screen on both displays with resolution 800x600. So it may be something with 
 startup mode selection.
 
Please don't mix up your issues in someone else's bug report.  If you
have problems, file a separate report for them.

Thanks,
Julien


signature.asc
Description: Digital signature


Bug#601558: Still not working with kernel in squeeze

2011-01-09 Thread Julien Cristau
On Sun, Jan  9, 2011 at 16:10:57 +0100, Oliver Sander wrote:

 I tried this again after an update to today's squeeze, with kernel 2.6.32-29
 and xserver-xorg-video-intel 2:2.13.0-5.  Unfortunately, the problem remains
 unchanged: the screen turns black when the frame buffer is switched on,
 and there is no way to get a text console let alone X.
 
 I also tried with the current kernel from experimental: 2.6.37-rc7.
 That seems to work nicely.  I didn't encounter any serious problems after
 about an hour of playing around with it.  In particular, the X server
 freezes I reported above with the 2.6.36 kernel appear to have gone.
 
 As this bug is not ranked important enough to be fixed in squeeze,
 and it already is fixed in post-squeeze, feel free to close this bug report.
 Thank you guys for your help!
 
Can you try adding commit 897493504addc5609f04a2c4f73c37ab972c29b2 on
top of squeeze's kernel, see if that improves things for you?

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#609452: release.debian.org: unblock muroard/0.1.0-5

2011-01-09 Thread Patrick Matthäi
Package: release.debian.org
Severity: normal

Hello,

please unblock muroard, it fixes the RC bug #608812.

-- System Information:
Debian Release: 5.0.7
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.32.2--std-ipv4-32 (SMP w/4 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash



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



Bug#606976:

2011-01-09 Thread Miguel Figueiredo
i got this info on #debian-boot which may help:

- the message points to a missing initramfs
- you get this message if no initramfs is around, so unless mistaken
this smells isolinux to me.
- I'd ask him to try the dailies, irc isolinux got fixes for broken
bios'es.

So, can you try with the dailies?


-- 
Melhores cumprimentos/Best regards,

Miguel Figueiredo
http://www.DebianPT.org




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



Bug#554497: FTBFS with binutils-gold

2011-01-09 Thread Ilya Barygin
tags 554497 patch
thanks

Hello,

The following patch has been applied in Ubuntu to deal with this.
Actually it's only a quick fix, the real problem is that tests in
configure.ac set insufficient LDAPLIBS to link dirmngr_ldap executable;
this is probably something that should be fixed upstream.

https://launchpad.net/ubuntu/+source/dirmngr/1.0.3-1ubuntu1

only in patch2:
unchanged:
--- dirmngr-1.0.3.orig/src/Makefile.am
+++ dirmngr-1.0.3/src/Makefile.am
@@ -61,7 +61,7 @@
 dirmngr_ldap_CFLAGS = $(GPG_ERROR_CFLAGS)
 dirmngr_ldap_LDFLAGS =
 dirmngr_ldap_LDADD = $(ldap_ldadd) ../jnlib/libjnlib.a $(LIBOBJS) \
-$(GPG_ERROR_LIBS) $(LDAPLIBS) $(LIBINTL) $(LIBICONV)
+$(GPG_ERROR_LIBS) $(LDAPLIBS) $(LIBINTL) $(LIBICONV) -llber
 
 dirmngr_client_SOURCES = dirmngr-client.c i18n.h util.h b64enc.c \
  get-path.c no-libgcrypt.c no-libgcrypt.h 
only in patch2:
unchanged:
--- dirmngr-1.0.3.orig/src/Makefile.in
+++ dirmngr-1.0.3/src/Makefile.in
@@ -279,7 +279,7 @@
 dirmngr_ldap_CFLAGS = $(GPG_ERROR_CFLAGS)
 dirmngr_ldap_LDFLAGS = 
 dirmngr_ldap_LDADD = $(ldap_ldadd) ../jnlib/libjnlib.a $(LIBOBJS) \
-$(GPG_ERROR_LIBS) $(LDAPLIBS) $(LIBINTL) $(LIBICONV)
+$(GPG_ERROR_LIBS) $(LDAPLIBS) $(LIBINTL) $(LIBICONV) -llber
 
 dirmngr_client_SOURCES = dirmngr-client.c i18n.h util.h b64enc.c \
  get-path.c no-libgcrypt.c no-libgcrypt.h 



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



  1   2   3   4   >