Bug#670331: iotop: UnicodeEncodeError in ui.py

2012-04-25 Thread Paul Wise
On Wed, 2012-04-25 at 07:32 +1000, Paul Szabo wrote:

 I often run iotop something like
 
   nohup iotop -o -P -k -t -qqq iotop.log 21 
 
 but that sometimes fails and dies with:

Can you check if this happens with the version on backports?

http://backports-master.debian.org/Instructions/

-- 
bye,
pabs

http://wiki.debian.org/PaulWise


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


Bug#670373: [Pkg-nagios-devel] Bug#670373: nsca 2.7.2 / nsca-client 2.9.1: do not communicate

2012-04-25 Thread Alexander Wirt
tag #670373 upstream
thanks
Gerardo Esteban Malazdrewicz schrieb am Tuesday, den 24. April 2012:

 Package: nsca
 Version: nsca 2.7.2 does not recognize packages from nsca-client 2.9.1
 Severity: normal
 
 Dear Maintainer,
 
 Using encryption/decryption method 16 (RIJNDAEL-256), same /etc/send_nsca.cfg 
 file.
 
 nsca from squeeze / nsca-client from testing:
 
 Apr 24 19:50:35 monitor nsca[16135]: Connection from XX.XX.XX.XX port 10630
 Apr 24 19:50:35 monitor nsca[16135]: Handling the connection...
 Apr 24 19:50:36 monitor nsca[16135]: Dropping packet with invalid CRC32 - 
 possibly due to client using wrong password or crypto algorithm?
 
 nsca from squeeze / nsca-client from squeeze:
 
 Apr 24 19:55:10 monitor nsca[16891]: Connection from XX.XX.XX.XX port 19846
 Apr 24 19:55:10 monitor nsca[16891]: Handling the connection...
 Apr 24 19:55:11 monitor nsca[16891]: SERVICE CHECK - Host Name: 
 'servername', Service Description: 'Disk usage in percent', Return Code: '0', 
 Output: 'OKs: /run is 0.00, /run/shm is 0.00, /dev is 0.00, / is 15.26, / is 
 15.26, /run/lock is 0.00, /tmp is 0.00.'
 Apr 24 19:55:11 monitor nsca[16891]: SERVICE CHECK - Host Name: 
 'servername', Service Description: '5 min Load average', Return Code: '0', 
 Output: 'OKs: load is 0.12.'
 Apr 24 19:55:11 monitor nsca[16891]: End of connection...
upstream broke that. (even if they said they fixed it).

Alex




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



Bug#670384: [PATCH] i810switch: Helping to update to packaging format 3.0

2012-04-25 Thread jari . aalto
Package: i810switch
Severity: wishlist
Tags: patch

Hi,

The dpatch patch management system has been deprecated for some time. The
Lintian currently flags use of dpatch packages as an error. The new 3.0
packaging format is an improved version which, among other things, contains
patch management built-in. For more information, see:

http://wiki.debian.org/Projects/DebSrc3.0

I had some free time; see attached patch to migrate to new package
format. Note that all files in debian/patches/* are canocalized to
*.patch.

Let me know if there is anything that needs adjusting or if it is ok
to upload this version in a NMU in case you are working on other
issues needing attention.

Thanks,
Jari

From 2a0f86e59c7e2f3f5d8c7fe3cabd30d7e1f62143 Mon Sep 17 00:00:00 2001
From: Jari Aalto jari.aa...@cante.net
Date: Wed, 25 Apr 2012 09:05:48 +0300
Subject: [PATCH] format-3.0
Organization: Private
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 8bit

Signed-off-by: Jari Aalto jari.aa...@cante.net
---
 Makefile   |   10 +-
 Makefile.debdiff   |   14 -
 debian/changelog   |   16 +-
 debian/compat  |2 +-
 debian/control |7 +-
 debian/copyright   |9 +-
 debian/menu|3 +-
 debian/patches/00list  |1 -
 debian/patches/10-i810switch.c.patch   |   16 +
 debian/patches/20-makefile.patch   |   33 ++
 ...ook.dpatch = 50-support-945-940-macbook.patch} |4 +
 debian/patches/series  |3 +
 debian/rules   |   32 +-
 debian/source/format   |1 +
 i810switch |  Bin 22317 - 0 bytes
 i810switch.c   |2 +-
 i810switch.c.new   |  555 
 i810switch.o   |  Bin 10376 - 0 bytes
 18 files changed, 100 insertions(+), 608 deletions(-)
 delete mode 100644 Makefile.debdiff
 delete mode 100644 debian/patches/00list
 create mode 100644 debian/patches/10-i810switch.c.patch
 create mode 100644 debian/patches/20-makefile.patch
 rename debian/patches/{01_support_945_940_macbook.dpatch = 50-support-945-940-macbook.patch} (80%)
 create mode 100644 debian/patches/series
 create mode 100644 debian/source/format
 delete mode 100755 i810switch
 delete mode 100644 i810switch.c.new
 delete mode 100644 i810switch.o

diff --git a/Makefile b/Makefile
index 4fdfee1..5359d39 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,4 @@
 OBJECTS	= i810switch.o
-INSTALL=/usr/bin/install
-CC=gcc
-
 
 %.o: %.c
 	$(CC) $(CFLAGS) -c -o $@ $
@@ -12,8 +9,10 @@ i810switch: $(OBJECTS)
 	$(CC) $(CFLAGS) -o $@ $(OBJECTS)
 
 install: i810switch
-	${INSTALL} -D -m 4754 --group=video i810switch ${DESTDIR}/usr/bin/i810switch
-	${INSTALL} -D -m 0754 --group=video i810rotate ${DESTDIR}/usr/bin/i810rotate
+	install -d $(DESTDIR)/usr/bin
+	install -d $(DESTDIR)/usr/share/man/man1
+	install i810switch i810rotate $(DESTDIR)/usr/bin
+	install i810switch.1.gz i810rotate.1.gz $(DESTDIR)/usr/share/man/man1
 
 uninstall:
 	rm -f $(DESTDIR)/usr/bin/i810switch
@@ -23,3 +22,4 @@ uninstall:
 
 clean:
 	@rm -f $(OBJECTS) i810switch
+
diff --git a/Makefile.debdiff b/Makefile.debdiff
deleted file mode 100644
index a9bef18..000
--- a/Makefile.debdiff
+++ /dev/null
@@ -1,14 +0,0 @@
-DESTDIR=
-CC=gcc
-BIN=i810switch
-SOURCE=i810switch.c
-INSTALL=/usr/bin/install
-all:
-	${CC} -o ${BIN} ${SOURCE}
-
-clean: 
-	rm ${BIN}
-
-install: all
-	${INSTALL} -D -m 4750 --group=video ${BIN} ${DESTDIR}/usr/bin/${BIN}
-	${INSTALL} -D -m 0750 --group=video i810rotate ${DESTDIR}/usr/bin/i810rotate
diff --git a/debian/changelog b/debian/changelog
index 2d24f6c..e279dd6 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,18 @@
+i810switch (0.6.5-7.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Remove deprecated dpatch and upgrade to packaging format 3.0 quilt.
+  * Update to Standards-Version to 3.9.3 and debhelper to 9.
+  * Add build-arch and build-indep targets; use dh_prep in rules file.
+  * Update homepage URL to current location.
+  * Patches 10 and 20 are new; in-line changes to original sources.
+  * Fix copyright-refers-to-symlink-license (Lintian).
+  * Fix debian-rules-ignores-make-clean-error (Lintian).
+  * Fix menu-item-uses-apps-section (Lintian).
+  * Fix no-homepage-field (Lintian).
+
+ -- Jari Aalto jari.aa...@cante.net  Wed, 25 Apr 2012 08:57:20 +0300
+
 i810switch (0.6.5-7) unstable; urgency=low
 
   * Added kfreebsd-amd64 as an architecture for the package. Closes: #494980.
@@ -105,4 +120,3 @@ i810switch (0.3-1) unstable; urgency=low
   * Initial Release. Closes: #197406
 
  -- James 

Bug#670358: ITP: sdl-audioin -- Library to add audio input support to SDL

2012-04-25 Thread Dominique Dumont
Le Wednesday 25 April 2012 01:27:32, Toby Smithe a écrit :
 I need this package, despite its age and despite the continuing development
 of SDL itself, in order to continue packaging PEBL (the Psychology
 Experiment Building Language) - see #650775.

From the titile of the bug, I assume you want to maintain this package. 

May I suggest you join sdl team to do so ? 

This way, you'll be able to use our team's repo (git) and sponsoring will be 
much easier. 

To join see the (new) joining the team section in:

http://wiki.debian.org/Teams/DebianSdlGroup#preview

all the best

Dominique


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


Bug#658840: Announce of the upcoming NMU for the aolserver4 package

2012-04-25 Thread Christian PERRIER
Dear maintainer of aolserver4 and Debian translators,

Some days ago, I sent a notice to the maintainer of the aolserver4 Debian
package, mentioning the status of at least one old po-debconf translation 
update in the BTS.

I announced the intent to build and possibly upload a non-maintainer upload
for this package in order to fix this long-time pending localization
bug as well as all other pending translations.

The package maintainer agreed for the NMU or did not respond in four
days, so I will proceed with the NMU.

The full planned schedule is available at the end of this mail.

The package is currently translated to: 
cs da de dz es eu fi fr gl it ja nl pt pt_BR ru sv vi

Among these, the following translations are incomplete: dz it pt_BR

If you did any of the, currently incomplete, translations you will get
ANOTHER mail with the translation to update.

Other translators also have the opportunity to create new translations
for this package. Once completed, please send them as a bug report
against the aolserver4 package so I can incorporate them in the build.

The deadline for receiving updates and new translations is Thursday, May 03, 
2012. If you
are not in time you can always send your translation to the BTS.

The POT file is attached to this mail.

If the maintainer objects to this process I will immediately abort my NMU
and send him/her all updates I receive.

Otherwise the following will happen (or already has):

 Friday, April 20, 2012   : send the first intent to NMU notice to
 the package maintainer.
 Wednesday, April 25, 2012   : send this notice
 Thursday, May 03, 2012   : (midnight) deadline for receiving translation 
updates
 Friday, May 04, 2012   : build the package and upload it to DELAYED/7-day
 send the NMU patch to the BTS
 Friday, May 11, 2012   : NMU uploaded to incoming

Thanks for your efforts and time.

-- 


-- 


# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR EMAIL@ADDRESS, YEAR.
#
#, fuzzy
msgid 
msgstr 
Project-Id-Version: PACKAGE VERSION\n
Report-Msgid-Bugs-To: aolserv...@packages.debian.org\n
POT-Creation-Date: 2010-01-19 14:38+0100\n
PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n
Last-Translator: FULL NAME EMAIL@ADDRESS\n
Language-Team: LANGUAGE l...@li.org\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=CHARSET\n
Content-Transfer-Encoding: 8bit\n

#. Type: string
#. Description
#: ../aolserver4-daemon.templates:2001
msgid Server hostname:
msgstr 

#. Type: string
#. Description
#: ../aolserver4-daemon.templates:2001
msgid 
AOLserver needs a hostname to use for redirect page URLs and for identifying 
itself.
msgstr 

#. Type: string
#. Description
#: ../aolserver4-daemon.templates:2001
msgid 
It is generally the fully-qualified DNS hostname of the computer, or 
localhost if it is not networked. Any name valid for a URL string can be 
used.
msgstr 

#. Type: string
#. Description
#: ../aolserver4-daemon.templates:3001
msgid Server IP address:
msgstr 

#. Type: string
#. Description
#: ../aolserver4-daemon.templates:3001
msgid AOLserver needs an IP address to listen to.
msgstr 

#. Type: string
#. Description
#: ../aolserver4-daemon.templates:3001
msgid 
The default is the address of the loopback interface. If the server is to be 
remotely accessible this should be replaced by the address of the 
appropriate network interface.
msgstr 

#. Type: string
#. Description
#: ../aolserver4-daemon.templates:4001
msgid Server TCP port:
msgstr 

#. Type: string
#. Description
#: ../aolserver4-daemon.templates:4001
msgid 
AOLserver needs a port number assigned for its use. This is almost always 
port 80 (the standard HTTP port), but might be different if another web 
server is installed, or some other service is listening on that port.
msgstr 


signature.asc
Description: Digital signature


Bug#670385: [PATCH] ilohamail: Helping to update to packaging format 3.0

2012-04-25 Thread jari . aalto
Package: ilohamail
Severity: wishlist
Tags: patch

Hi,

The dpatch patch management system has been deprecated for some time. The
Lintian currently flags use of dpatch packages as an error. The new 3.0
packaging format is an improved version which, among other things, contains
patch management built-in. For more information, see:

http://wiki.debian.org/Projects/DebSrc3.0

I had some free time; see attached patch to migrate to new package
format. Note that all files in debian/patches/* are canocalized to
*.patch.

Let me know if there is anything that needs adjusting or if it is ok
to upload this version in a NMU in case you are working on other
issues needing attention.

Thanks,
Jari

From b6e942ccfe8b648cac095bfad13c5ea9c89a1063 Mon Sep 17 00:00:00 2001
From: Jari Aalto jari.aa...@cante.net
Date: Wed, 25 Apr 2012 09:28:41 +0300
Subject: [PATCH] format-3.0
Organization: Private
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 8bit

Signed-off-by: Jari Aalto jari.aa...@cante.net
---
 debian/changelog   |   13 ++
 debian/compat  |2 +-
 debian/control |7 ++-
 debian/ilohamail.config|4 +-
 debian/ilohamail.postinst  |2 +
 debian/ilohamail.postrm|2 +
 debian/patches/00list  |   13 --
 .../{01-debianpath.dpatch = 01-debianpath.patch}  |   26 +--
 ...2-debianconfig.dpatch = 02-debianconfig.patch} |   26 +--
 debian/patches/03-sql.dpatch   |   39 -
 debian/patches/03-sql.patch|   17 
 debian/patches/04-xss3.dpatch  |   34 ---
 debian/patches/04-xss3.patch   |   13 ++
 debian/patches/{05-rc3.dpatch = 05-rc3.patch} |   25 +--
 debian/patches/06-notrim.dpatch|   37 
 debian/patches/06-notrim.patch |   15 +++
 debian/patches/07-utf8-conversion  |   38 -
 debian/patches/07-utf8-conversion.patch|   16 +++
 .../{08-remove-headers = 08-remove-headers.patch} |   26 +--
 .../patches/{09-smtp-port = 09-smtp-port.patch}   |   26 +--
 debian/patches/10-courier-mode |   40 -
 debian/patches/10-courier-mode.patch   |   18 
 debian/patches/{11-mktime = 11-mktime.patch}  |   26 +--
 debian/patches/12-extra-newlines   |   45 
 debian/patches/12-extra-newlines.patch |   26 +++
 debian/patches/13-pop3-content |   40 -
 debian/patches/13-pop3-content.patch   |   19 +
 debian/patches/series  |   13 ++
 debian/rules   |   11 +++--
 debian/source/format   |1 +
 30 files changed, 181 insertions(+), 439 deletions(-)
 mode change 100644 = 100755 debian/ilohamail.config
 mode change 100644 = 100755 debian/ilohamail.postinst
 mode change 100644 = 100755 debian/ilohamail.postrm
 delete mode 100644 debian/patches/00list
 rename debian/patches/{01-debianpath.dpatch = 01-debianpath.patch} (73%)
 rename debian/patches/{02-debianconfig.dpatch = 02-debianconfig.patch} (67%)
 delete mode 100644 debian/patches/03-sql.dpatch
 create mode 100644 debian/patches/03-sql.patch
 delete mode 100644 debian/patches/04-xss3.dpatch
 create mode 100644 debian/patches/04-xss3.patch
 rename debian/patches/{05-rc3.dpatch = 05-rc3.patch} (99%)
 delete mode 100644 debian/patches/06-notrim.dpatch
 create mode 100644 debian/patches/06-notrim.patch
 delete mode 100644 debian/patches/07-utf8-conversion
 create mode 100644 debian/patches/07-utf8-conversion.patch
 rename debian/patches/{08-remove-headers = 08-remove-headers.patch} (59%)
 rename debian/patches/{09-smtp-port = 09-smtp-port.patch} (61%)
 delete mode 100644 debian/patches/10-courier-mode
 create mode 100644 debian/patches/10-courier-mode.patch
 rename debian/patches/{11-mktime = 11-mktime.patch} (50%)
 delete mode 100644 debian/patches/12-extra-newlines
 create mode 100644 debian/patches/12-extra-newlines.patch
 delete mode 100644 debian/patches/13-pop3-content
 create mode 100644 debian/patches/13-pop3-content.patch
 create mode 100644 debian/patches/series
 create mode 100644 debian/source/format

diff --git a/debian/changelog b/debian/changelog
index 7b3d147..3b6f334 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,16 @@
+ilohamail (0.8.14-0rc3sid6.2) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Remove deprecated dpatch and upgrade to packaging format 3.0 quilt.
+  * Update to Standards-Version to 3.9.3 and debhelper to 9.
+  * Add build-arch and build-indep targets; use dh_prep 

Bug#658297: Announce of the upcoming NMU for the phamm package

2012-04-25 Thread Christian PERRIER
Dear maintainer of phamm and Debian translators,

Some days ago, I sent a notice to the maintainer of the phamm Debian
package, mentioning the status of at least one old po-debconf translation 
update in the BTS.

I announced the intent to build and possibly upload a non-maintainer upload
for this package in order to fix this long-time pending localization
bug as well as all other pending translations.

The package maintainer agreed for the NMU or did not respond in four
days, so I will proceed with the NMU.

The full planned schedule is available at the end of this mail.

The package is currently translated to: 
cs da de es eu fi fr gl it ja nb nl pt ru sv vi zh_TW

Among these, the following translations are incomplete: nb

If you did any of the, currently incomplete, translations you will get
ANOTHER mail with the translation to update.

Other translators also have the opportunity to create new translations
for this package. Once completed, please send them as a bug report
against the phamm package so I can incorporate them in the build.

The deadline for receiving updates and new translations is Thursday, May 03, 
2012. If you
are not in time you can always send your translation to the BTS.

The POT file is attached to this mail.

If the maintainer objects to this process I will immediately abort my NMU
and send him/her all updates I receive.

Otherwise the following will happen (or already has):

 Friday, April 20, 2012   : send the first intent to NMU notice to
 the package maintainer.
 Wednesday, April 25, 2012   : send this notice
 Thursday, May 03, 2012   : (midnight) deadline for receiving translation 
updates
 Friday, May 04, 2012   : build the package and upload it to DELAYED/7-day
 send the NMU patch to the BTS
 Friday, May 11, 2012   : NMU uploaded to incoming

Thanks for your efforts and time.

-- 


-- 


# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR EMAIL@ADDRESS, YEAR.
#
#, fuzzy
msgid 
msgstr 
Project-Id-Version: PACKAGE VERSION\n
Report-Msgid-Bugs-To: ph...@packages.debian.org\n
POT-Creation-Date: 2010-11-14 10:30+0100\n
PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n
Last-Translator: FULL NAME EMAIL@ADDRESS\n
Language-Team: LANGUAGE l...@li.org\n
Language: \n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=CHARSET\n
Content-Transfer-Encoding: 8bit\n

#. Type: string
#. Description
#: ../phamm.templates:2001
msgid LDAP server host:
msgstr 

#. Type: string
#. Description
#: ../phamm.templates:2001
msgid 
Please enter the host name or IP address of the LDAP server that Phamm 
should connect to.
msgstr 

#. Type: string
#. Description
#: ../phamm.templates:3001 ../phamm-ldap.templates:3001
msgid Distinguished Name of the search base:
msgstr 

#. Type: string
#. Description
#: ../phamm.templates:3001 ../phamm-ldap.templates:3001
msgid 
Please enter the Distinguished Name (DN) of the LDAP search base. Many sites 
use the components of their domain names for this purpose. For example, the 
domain \example.org\ would use \dc=example,dc=org\.
msgstr 

#. Type: string
#. Description
#: ../phamm.templates:4001 ../phamm-ldap.templates:4001
msgid Login DN for the LDAP server:
msgstr 

#. Type: string
#. Description
#: ../phamm.templates:4001 ../phamm-ldap.templates:4001
msgid 
Please enter the Distinguished Name of the account that will be used to log 
in to the LDAP server. If you use form-based authentication this will be the 
default login DN. In this case leaving it empty will prevent the creation of 
a default login DN.
msgstr 

#. Type: multiselect
#. Description
#: ../phamm.templates:5001
msgid Web server to reconfigure automatically:
msgstr 

#. Type: multiselect
#. Description
#: ../phamm.templates:5001
msgid 
Phamm supports any web server that PHP does, but this automatic 
configuration process only supports Apache.
msgstr 

#. Type: boolean
#. Description
#: ../phamm.templates:6001
msgid Restart the webserver(s)?
msgstr 

#. Type: boolean
#. Description
#: ../phamm.templates:6001
msgid In order to apply the changes, the webserver(s) must be restarted.
msgstr 

#. Type: boolean
#. Description
#: ../phamm-ldap.templates:2001
msgid Create empty LDAP base for Phamm?
msgstr 

#. Type: password
#. Description
#: ../phamm-ldap.templates:5001
msgid Login password for the LDAP server:
msgstr 

#. Type: password
#. Description
#: ../phamm-ldap.templates:5001
msgid 
Please enter the password that will be used to log in to the LDAP server.
msgstr 

#. Type: password
#. Description
#: ../phamm-ldap.templates:6001
msgid Login password for the LDAP phamm user:
msgstr 

#. Type: password
#. Description
#: ../phamm-ldap.templates:6001
msgid 
Please enter the password for \phamm user\ useful for binding with limited 
privileges.
msgstr 


signature.asc
Description: Digital signature


Bug#670192: libsysactivity: Bogus fflush on input stream fails network unit test

2012-04-25 Thread Niels Thykier
On 2012-04-23 23:03, Guillem Jover wrote:
 
 Hi!
 
 While rebuilding packages for the new libbsd 0.4.0 upload, this package
 fails to build consistently on at least my system, and it might seem
 like on at least the mips buildd too, I've not investigated in detail
 what exactly is triggering this only on these systems and not others,
 but I think it's due to me having 3 network interfaces (lo, eth0, wlan0),
 in any case there's a bogus fflush() on an input stream which is causing
 wrong subsequent fseek()s. The behaviour of fflush() in input streams is
 not usually well defined and in this case is not really needed, fseek()
 should just do fine.
 
 Attached a patch fixing this. And here's the failure mode:
 
 [...]
 
 thanks,
 guillem

Hi,

Thanks for the report.

I must admit I am a bit confused.  The fflush code is in the src/Linux
part and according to [1] fflush should be well defined on Linux.  So I
do not immediately see why the fflush should be removed from there.

Also, libbsd is only used when building on (k)FreeBSD, in that case
src/FreeBSD will be used as I understand the makefile[2] (and its
network.c does not have the fflush call).  So I do not see how removing
the fflush call in src/Linux will help in this case either.

Then there is the test error. Cannot allocate memory suggests a ENOMEM
or so is returned, but I do not see a code path in
sa_reset__netinterfaces() for Linux that could return ENOMEM.  On the
other hand sa_reset_net_interfaces on (k)FreeBSD has such a return (line
76).


My primary concern here is that I will be unable to convince upstream
why this patch is correct/needed.

~Niels

[1] http://linux.die.net/man/3/fflush


For input streams, fflush() discards any buffered data that has been
fetched from the underlying file, but has not been consumed by the
application. [...]

The standards do not specify the behavior for input streams. Most other
implementations behave the same as Linux.


[2] src/CMakeLists.txt




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



Bug#670387: libgcj12-dev: libgcj.a is not provided

2012-04-25 Thread Marius Gavrilescu
Package: libgcj12-dev
Version: 4.6.3-1
Severity: wishlist

Dear Maintainer,
 I wanted to use gcj to statically compile a java program, but it
complained that it cannot find -lgcj
 I did an `apt-file search libgcj.a` and it returned nothing
 Therefore, to avoid having to compile gcc, I'l like to have
libgcj.a provided somewhere in the Debian package archive

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

Kernel: Linux 3.4.0-rc2marius-00446-g27324c6 (SMP w/2 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
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#670386: krusader: Krusader doesn't start - symbol lookup error: /usr/lib/libQtDBus.so.4

2012-04-25 Thread Tomislav Parčina
Package: krusader
Version: 1:2.2.0~beta1-2+squeeze1
Severity: important

When I try to run Krusader from GUI, it doesn't start.
When I try to run it from CLI, I get this error message:
krusader: symbol lookup error: /usr/lib/libQtDBus.so.4: undefined symbol:
_ZN14QObjectPrivate15checkWindowRoleEv



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

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

Versions of packages krusader depends on:
ii  kdebase-runtime   4:4.4.5-1  runtime components from the offici
ii  libc6 2.11.3-3   Embedded GNU C Library: Shared lib
ii  libgcc1   1:4.4.5-8  GCC support library
ii  libkdecore5   4:4.4.5-2+squeeze3 the KDE Platform Core Library
ii  libkdeui5 4:4.4.5-2+squeeze3 the KDE Platform User Interface Li
ii  libkfile4 4:4.4.5-2+squeeze3 the File Selection Dialog Library 
ii  libkhtml5 4:4.4.5-2+squeeze3 the KHTML Web Content Rendering En
ii  libkio5   4:4.4.5-2+squeeze3 the Network-enabled File Managemen
ii  libkjsapi44:4.4.5-2+squeeze3 the KJS API Library for the KDE De
ii  libkparts44:4.4.5-2+squeeze3 the Framework for the KDE Platform
ii  libqt4-dbus   4:4.6.3-4+squeeze1 Qt 4 D-Bus module
ii  libqt4-network4:4.6.3-4+squeeze1 Qt 4 network module
ii  libqt4-svg4:4.6.3-4+squeeze1 Qt 4 SVG module
ii  libqt4-xml4:4.6.3-4+squeeze1 Qt 4 XML module
ii  libqtcore44:4.6.3-4+squeeze1 Qt 4 core module
ii  libqtgui4 4:4.6.3-4+squeeze1 Qt 4 GUI module
ii  libsolid4 4:4.4.5-2+squeeze3 Solid Library for KDE Platform
ii  libstdc++64.4.5-8The GNU Standard C++ Library v3
ii  zlib1g1:1.2.3.4.dfsg-3   compression library - runtime

krusader recommends no packages.

Versions of packages krusader suggests:
pn  arj none   (no description available)
pn  ark none   (no description available)
ii  bzip2   1.0.5-6+squeeze1 high-quality block-sorting file co
ii  cpio2.11-4   GNU cpio -- a program to manage ar
pn  kdiff3 | kompare | xxdi none   (no description available)
pn  kedit   none   (no description available)
pn  kmail   none   (no description available)
pn  konsole none   (no description available)
pn  krename none   (no description available)
pn  lha none   (no description available)
pn  md5deep | cfv   none   (no description available)
pn  okteta  none   (no description available)
pn  p7zip   none   (no description available)
pn  rpm none   (no description available)
pn  unace   none   (no description available)
pn  unrar | unrar-free | ra none   (no description available)
ii  unzip   6.0-4De-archiver for .zip files
pn  zip 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#670388: texlive-fonts-extra: typo in package description

2012-04-25 Thread Davide Prina

Package: texlive-fonts-extra
Severity: minor

Dear Maintainer,

in DDTSS I see:

calligra-type1 -- Type 1 version of Caliigra.
   ^
___|

I think it must be:

calligra-type1 -- Type 1 version of Calligra.

Ciao
Davide

--
Dizionari: http://linguistico.sourceforge.net/wiki
Browser: http://www.mozilla.org/products/firefox
GNU/Linux User: 302090: http://counter.li.org
Non autorizzo la memorizzazione del mio indirizzo su outlook



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



Bug#670390: [PATCH] mailfilter: Helping to update to packaging format 3.0

2012-04-25 Thread jari . aalto
Package: mailfilter
Severity: wishlist
Tags: patch

Hi Joerg and Ricardo,

I had some free time; see attached patch to deprecate dpatch. Note that all
files in debian/patches/* are canocalized to *.patch.

Let me know if there is anything that needs adjusting.

Thanks,
Jari


[*] The dpatch patch management system has been deprecated for some time. The
Lintian currently flags use of dpatch packages as an error. The new 3.0
packaging format is an improved version which, among other things, contains
patch management built-in. http://wiki.debian.org/Projects/DebSrc3.0.


From 0fe42bb3a2c747727b6feed03af7b4c9d39047af Mon Sep 17 00:00:00 2001
From: Jari Aalto jari.aa...@cante.net
Date: Wed, 25 Apr 2012 09:46:52 +0300
Subject: [PATCH] format-3.0
Organization: Private
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 8bit

Signed-off-by: Jari Aalto jari.aa...@cante.net
---
 debian/NEWS|   12 
 debian/README.source   |7 -
 debian/changelog   |   12 
 debian/compat  |2 +-
 debian/config  |4 ++-
 debian/control |5 ++--
 debian/patches/00list  |3 --
 ...atch = 01-remove-workaround-fixed-FTBFS.patch} |   10 ++-
 ...wer_g++.dpatch = 02-fix-build-newer-g++.patch} |8 ++
 ...sion.dpatch = 03-fix-invalid-conversion.patch} |   10 ++-
 debian/patches/10-manpage.patch|   30 
 debian/patches/series  |3 ++
 debian/postinst|5 +++-
 debian/rules   |9 +++---
 debian/source/format   |1 +
 src/rfc822.cc  |7 +++--
 16 files changed, 79 insertions(+), 49 deletions(-)
 delete mode 100644 debian/README.source
 mode change 100644 = 100755 debian/config
 delete mode 100644 debian/patches/00list
 rename debian/patches/{01_remove_workaround_fixed_FTBFS.dpatch = 01-remove-workaround-fixed-FTBFS.patch} (90%)
 rename debian/patches/{02_fix_build_newer_g++.dpatch = 02-fix-build-newer-g++.patch} (52%)
 rename debian/patches/{03_fix_invalid_conversion.dpatch = 03-fix-invalid-conversion.patch} (81%)
 create mode 100644 debian/patches/10-manpage.patch
 create mode 100644 debian/patches/series
 mode change 100644 = 100755 debian/postinst
 create mode 100644 debian/source/format

diff --git a/debian/NEWS b/debian/NEWS
index f5f272d..794421e 100644
--- a/debian/NEWS
+++ b/debian/NEWS
@@ -1,12 +1,12 @@
 mailfilter (0.8.1-1) unstable; urgency=low
 
-  * Mailfilter did change its rcfile format. From now on parameter strings
-have to be in quotes, e.g.
-.
+  Mailfilter did change its rcfile format. From now on parameter strings
+  have to be in quotes, e.g.
+
 SERVER = my.server
-.
-This also hits all your user created rules. It is not necessary if your
-parameter is a number e.g. the port number.  
+
+  This also hits all your user created rules. It is not necessary if your
+  parameter is a number e.g. the port number. 
 
  -- Joerg Jaspert jo...@debian.org  Sat, 15 Sep 2007 14:13:35 +0200
 
diff --git a/debian/README.source b/debian/README.source
deleted file mode 100644
index 093c0c2..000
--- a/debian/README.source
+++ /dev/null
@@ -1,7 +0,0 @@
-README.source for mailfilter
-
-  
- This package uses dpatch for patch management, see the file
- /usr/share/doc/dpatch/README.source.gz for details.
-
- -- Ricardo Mones mo...@debian.org  Fri, 15 Jan 2010 08:21:09 +0100
diff --git a/debian/changelog b/debian/changelog
index 8548d7a..d88e5da 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,15 @@
+mailfilter (0.8.2-2.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Remove deprecated dpatch and upgrade to packaging format 3.0 quilt.
+  * Update to Standards-Version to 3.9.3 and debhelper to 9.
+  * Use dh_prep in rules file.
+  * Fix debian-news-entry-uses-asterisk (Lintian).
+  * Fix maintainer-script-without-set-e (Lintian).
+  * Fix no-homepage-field (Lintian).
+
+ -- Jari Aalto jari.aa...@cante.net  Wed, 25 Apr 2012 09:31:08 +0300
+
 mailfilter (0.8.2-2) unstable; urgency=low
 
   * Modified 03_fix_invalid_conversion patch to include Ubuntu part,
diff --git a/debian/compat b/debian/compat
index 7ed6ff8..ec63514 100644
--- a/debian/compat
+++ b/debian/compat
@@ -1 +1 @@
-5
+9
diff --git a/debian/config b/debian/config
old mode 100644
new mode 100755
index a9a658f..ae01592
--- a/debian/config
+++ b/debian/config
@@ -1,4 +1,6 @@
-#!/bin/sh -e
+#!/bin/sh
+
+set -e
 
 # source debconf library
 . /usr/share/debconf/confmodule
diff --git a/debian/control b/debian/control
index 2c9deac..9afde2f 100644
--- a/debian/control
+++ 

Bug#670389: python3: CVE-2012-2135 utf-16 decoder unicode_decode_call_errorhandler aligned_end is not updated

2012-04-25 Thread Henri Salo
Package: python3
Version: 3.2.3~rc1-2
Severity: important
Tags: security

From: http://seclists.org/oss-sec/2012/q2/183

Python 3.2/3.3 utf-16 decoder unicode_decode_call_errorhandler
aligned_end is not updated

does not appear to affect Python 2.x

memory leak/crashes/etc.

http://bugs.python.org/issue14579

Author: Serhiy Storchaka (storchaka)Date: 2012-04-14 18:46

In the utf-16 decoder after calling unicode_decode_call_errorhandler
aligned_end is not updated. This may potentially cause data leaks,
memory damage, and crash. The bug introduced by implementation of the
issue #4868. In a similar situation in the utf-8 decoder aligned_end
is updated.

-- System Information:
Debian Release: 6.0.4
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-5-amd64 (SMP w/8 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 python3 depends on:
ii  python3-minimal3.1.3-12+squeeze1 minimal subset of the Python langu
ii  python3.1  3.1.3-1   An interactive high-level object-o

python3 recommends no packages.

Versions of packages python3 suggests:
pn  python3-doc   none (no description available)
pn  python3-profiler  none (no description available)
pn  python3-tknone (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#612924: [stable] Possible fix for possible RC bug

2012-04-25 Thread Norbert Preining
On So, 22 Apr 2012, Adam D. Barratt wrote:
 With the version changed to 2009-11+squeeze1, please feel free to
 re-upload.

I made the changes in our svn, build new packages and uploaded with
this version number.

Just for completeness I attach the real debdiff now, as the date
has changed.

Best wishes

Norbert

Norbert Preiningpreining@{jaist.ac.jp, logic.at, debian.org}
JAIST, Japan TeX Live  Debian Developer
DSA: 0x09C5B094   fp: 14DF 2E6C 0307 BE6D AD76  A9C0 D2BF 4AA3 09C5 B094

ERIBOLL (n.)
A brown bubble of cheese containing gaseous matter which grows on
welsh rarebit. It was Sir Alexander Flemming's study of eribolls which
led, indirectly, to his discovery of the fact that he didn't like
welsh rarebit very much.
--- Douglas Adams, The Meaning of Liff
diff -u texlive-base-2009/debian/changelog texlive-base-2009/debian/changelog
--- texlive-base-2009/debian/changelog
+++ texlive-base-2009/debian/changelog
@@ -1,3 +1,10 @@
+texlive-base (2009-11+squeeze1) stable; urgency=low
+
+  * Don't try to repair a missing pdftexconfig.tex in preinst - this is
+done and can only be done in postinst  (Closes: #612924)
+
+ -- Frank Küster fr...@debian.org  Wed, 25 Apr 2012 15:42:48 +0900
+
 texlive-base (2009-11) unstable; urgency=low
 
   * avoid unneeded 10texlive-base.cnfpre-edit files in /etc/texmf/fmt.d,
diff -u texlive-base-2009/debian/texlive-base.preinst.post 
texlive-base-2009/debian/texlive-base.preinst.post
--- texlive-base-2009/debian/texlive-base.preinst.post
+++ texlive-base-2009/debian/texlive-base.preinst.post
@@ -32,7 +32,7 @@
 
 # Cleanup after Bug #420390 for sid users
 resurrect_conffile_sid /etc/texmf/metafont/misc/modes.mf texlive-base $1 $2
-resurrect_conffile_sid /etc/texmf/tex/generic/config/pdftexconfig.tex 
texlive-base $1 $2
+#resurrect_conffile_sid /etc/texmf/tex/generic/config/pdftexconfig.tex 
texlive-base $1 $2
 # we do not ship config.ps currently, do we need to resurrect that one, too?
 #resurrect_conffile_sid /etc/texmf/dvips/config/config.ps texlive-bin $1 $2
 


Bug#364420: marked as done (cannot find latex if current path contains spaces)

2012-04-25 Thread Wouter Bolsterlee
Debian Bug Tracking System schreef op di 24-04-2012 om 21:33 [+]:
 I plan to upload a more recent version into Debian.

Could you please look into my (trivial) patch adding XeTeX support? I've
uploaded it quite some time ago to the Debian BTS.

— Wouter


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


Bug#670320: ruby-locale: fails to get available locale

2012-04-25 Thread Yannick Roehlly
Le mercredi 25 avril 2012 01:14:16 Sebastian Ramacher a écrit :
 As far as I can tell this is only reproducible if LANGUAGE is set but empty.
 So I guess KDE sets LANGUAGE to an empty value an Xfce does not.

Hi Sebastian,

In fact, you're right.  The LANGUAGE env. variable is never defined except 
under KDE where it has an empty value.  But the strange thing is that with 
2.0.5-2 package, it's not a problem.

Regards,

Yannick

-- 
Writing about music is like dancing about architecture.
-- Frank Zappa




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



Bug#670373: [Pkg-nagios-devel] Bug#670373: Bug#670373: nsca 2.7.2 / nsca-client 2.9.1: do not communicate

2012-04-25 Thread Michael Friedrich

 Original Message  
Subject: [Pkg-nagios-devel] Bug#670373: Bug#670373: nsca 2.7.2 / 
nsca-client 2.9.1: do not communicate

From: Alexander Wirt formo...@formorer.de
To: Gerardo Esteban Malazdrewicz gera...@malazdrewicz.com.ar, 
670...@bugs.debian.org

Date: 2012-04-25 08:03

tag #670373 upstream
thanks
Gerardo Esteban Malazdrewicz schrieb am Tuesday, den 24. April 2012:


Package: nsca
Version: nsca 2.7.2 does not recognize packages from nsca-client 2.9.1
Severity: normal

Dear Maintainer,

Using encryption/decryption method 16 (RIJNDAEL-256), same /etc/send_nsca.cfg 
file.

nsca from squeeze / nsca-client from testing:

Apr 24 19:50:35 monitor nsca[16135]: Connection from XX.XX.XX.XX port 10630
Apr 24 19:50:35 monitor nsca[16135]: Handling the connection...
Apr 24 19:50:36 monitor nsca[16135]: Dropping packet with invalid CRC32 - 
possibly due to client using wrong password or crypto algorithm?

nsca from squeeze / nsca-client from squeeze:

Apr 24 19:55:10 monitor nsca[16891]: Connection from XX.XX.XX.XX port 19846
Apr 24 19:55:10 monitor nsca[16891]: Handling the connection...
Apr 24 19:55:11 monitor nsca[16891]: SERVICE CHECK -  Host Name: 'servername', 
Service Description: 'Disk usage in percent', Return Code: '0', Output: 'OKs: /run 
is 0.00, /run/shm is 0.00, /dev is 0.00, / is 15.26, / is 15.26, /run/lock is 
0.00, /tmp is 0.00.'
Apr 24 19:55:11 monitor nsca[16891]: SERVICE CHECK -  Host Name: 'servername', 
Service Description: '5 min Load average', Return Code: '0', Output: 'OKs: load is 
0.12.'
Apr 24 19:55:11 monitor nsca[16891]: End of connection...

upstream broke that. (even if they said they fixed it).


it could be that it works vice versa - putting a 2.9 server with 2.7 
clients. but from what i've heard, that does not work either.


there seem to be more bugs in 2.9 itsself as well - see here 
http://www.nagios-portal.org/wbb/index.php?page=ThreadthreadID=25672


problem is still the static packet size. they changed 512 - 4096 bytes, 
which broke everything. then they put up a patch which should have added 
backwards compatibility for old_clients (like nsclient++ as well) and 
new_server

http://nagios.svn.sourceforge.net/viewvc/nagios?view=revisionrevision=1875

more or less, a different approach on the packet size - like the 
multipacket patch from opsview for nrpe - could work better in this 
regard. see here for some todos - https://dev.icinga.org/issues/2467





Alex




___
Pkg-nagios-devel mailing list
pkg-nagios-de...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-nagios-devel



--
DI (FH) Michael Friedrich

Vienna University Computer Center
Universitaetsstrasse 7 A-1010 Vienna, Austria

email:  michael.friedr...@univie.ac.at
phone:  +43 1 4277 14359
mobile: +43 664 60277 14359
fax:+43 1 4277 14338
web:http://www.univie.ac.at/zid
http://www.aco.net

Lead Icinga Core Developer
http://www.icinga.org




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



Bug#670391: biomaj-watcher: unowned files after purge (policy 6.8, 10.8)

2012-04-25 Thread Andreas Beckmann
Package: biomaj-watcher
Version: 1.2.0-4
Severity: important
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed your package left unowned files on
the system after purge, which is a violation of policy 6.8 (or 10.8):

http://www.debian.org/doc/debian-policy/ch-maintainerscripts.html#s-removedetails

Filing this as important as having a piuparts clean archive is a release
goal since lenny.

From the attached log (scroll to the bottom...):

2m20.3s ERROR: FAIL: Package purging left files on system:
  /etc/biomaj-watcher/   not owned
  /etc/biomaj-watcher/BmajWatcher#logs.xml   not owned
  /etc/biomaj-watcher/BmajWatcher.xmlnot owned
  /etc/biomaj-watcher/jobs.xml   not owned
  /etc/biomaj-watcher/jobs.xsd   not owned



cheers,

Andreas


biomaj-watcher_1.2.0-4.log.gz
Description: GNU Zip compressed data


Bug#670055: cups-filters: Printing a text file fails when Liberation is the only TrueType font available

2012-04-25 Thread Fabian Greffrath

tags 670055 moreinfo unreproducible
thanks

I still fail to reproduce this. Quite the contrary, I just printed a 
page with only fonts-liberation and gsfonts-x11 installed; it was 
Print to File from gedit, though, but it still worked fine.


I can imagine two different reasons for the failure on your system: 
Either you still have a local copy of the liberation fonts installed 
somewhere, e.g. in ~/.fonts or /usr/local/, and this copy still 
contains the bug that made Liberation-Mono appear non-monospaced 
(#567806). Or your fontconfig is confused or doesn't know about the 
right directory in which the fonts are installed. Could you please try 
to rm -rf ~/.fontconfig and run fc-cache -s -v as root?


 - Fabian



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



Bug#670392: checkrestart: should not be triggered by content of /dev/shm/

2012-04-25 Thread Gabor Kiss
Package: debian-goodies
Version: 0.53
Severity: minor

After restarting corosync processes:

---8--8
# checkrestart -v
Found 5 processes using old versions of upgraded files
(5 distinct programs)
Process /usr/lib/heartbeat/stonithd (PID: 31617) 
List of deleted files in use:
/dev/shm/dispatch_buffer-cNrx7V
/dev/shm/response_buffer-TXzeR7
/dev/shm/request_buffer-Cl4BBj
/dev/shm/control_buffer-ppFFmv
Process /usr/lib/heartbeat/cib (PID: 31618) 
List of deleted files in use:
/dev/shm/dispatch_buffer-grWY8W
/dev/shm/response_buffer-09SEQ8
/dev/shm/request_buffer-CSxGyk
/dev/shm/control_buffer-8FS3gw
Process /usr/lib/heartbeat/attrd (PID: 31620) 
List of deleted files in use:
/dev/shm/dispatch_buffer-qqlIpX
/dev/shm/response_buffer-Udwuc9
/dev/shm/request_buffer-AJwKZk
/dev/shm/control_buffer-G6buNw
Process /usr/lib/heartbeat/crmd (PID: 31622) 
List of deleted files in use:
/dev/shm/dispatch_buffer-5wslZ9
/dev/shm/response_buffer-vjlPei
/dev/shm/request_buffer-bkNFuq
/dev/shm/control_buffer-hGbSKy
Process /usr/sbin/corosync (PID: 31606) 
List of deleted files in use:
/dev/shm/dispatch_buffer-5wslZ9
/dev/shm/response_buffer-vjlPei
/dev/shm/request_buffer-bkNFuq
/dev/shm/control_buffer-hGbSKy
/dev/shm/dispatch_buffer-grWY8W
/dev/shm/response_buffer-09SEQ8
/dev/shm/request_buffer-CSxGyk
/dev/shm/control_buffer-8FS3gw
/dev/shm/dispatch_buffer-cNrx7V
/dev/shm/response_buffer-TXzeR7
/dev/shm/request_buffer-Cl4BBj
/dev/shm/control_buffer-ppFFmv
/dev/shm/dispatch_buffer-qqlIpX
/dev/shm/response_buffer-Udwuc9
/dev/shm/request_buffer-AJwKZk
/dev/shm/control_buffer-G6buNw
/dev/shm/fdata-Jp1Xzc
(2 distinct packages)

Of these, 1 seem to contain init scripts which can be used to restart them:
The following packages seem to have init scripts that could be used
to restart them:
corosync:
31606   /usr/sbin/corosync

These are the init scripts:
/etc/init.d/corosync restart

These processes do not seem to have an associated init script to restart them:
pacemaker:
31620   /usr/lib/heartbeat/attrd
31622   /usr/lib/heartbeat/crmd
31618   /usr/lib/heartbeat/cib
31617   /usr/lib/heartbeat/stonithd
# 
---8--8

IMHO /dev/shm/ is the same category as /tmp/.

Regards

Gabor

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

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

Versions of packages debian-goodies depends on:
ii  curl 7.21.0-2.1+squeeze2 Get a file from an HTTP, HTTPS or 
ii  dctrl-tools [grep-dc 2.14.5  Command-line tools to process Debi
ii  less 436-1   pager program similar to more
ii  lsof 4.81.dfsg.1-1   List open files
ii  perl 5.10.1-17squeeze3   Larry Wall's Practical Extraction 
ii  python   2.6.6-3+squeeze6interactive high-level object-orie
ii  whiptail 0.52.11-1   Displays user-friendly dialog boxe


debian-goodies recommends no packages.

Versions of packages debian-goodies suggests:
pn  popularity-contestnone (no description available)
pn  xdg-utils none (no description available)
pn  zenitynone (no description available)

Corosync companion:
ii  corosync 1.4.2-1~bpo60+1 Standards-based cluster framework

-- 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#667991: libv8-3.8.9.16: raising severity

2012-04-25 Thread coldtobi
Package: libv8-3.8.9.16
Severity: serious
Followup-For: Bug #667991

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Raising severity, as libv8 previously built on mipsel, thus it is RC.
(For example, this blocks the transision of other packages)

coldtobi


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

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

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

iEYEARECAAYFAk+XqoAACgkQvyUNygvkuQKyOgCg5lUh7756EVvU4JfxQtYvz1J+
FmcAoNXmFCFrtlgoL+WeO0GK2Qg4giMl
=7gbw
-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#670333: st0: Sense Key : Medium Error [deferred]

2012-04-25 Thread Giuseppe Sacco
Il giorno mar, 24/04/2012 alle 16.54 -0500, Jonathan Nieder ha scritto:
 Hi Giuseppe,
 
 Giuseppe Sacco wrote:
 
  Is this really a medium error or a kernel bug?
 
 Thanks.  My first guess would be a medium error.  Is this reproducible?

A second try completed without errors. So, without ejecting the tape
after the backup failed, the tape has been rewinded and the backup
started again and completed without errors.

Bye,
Giuseppe




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



Bug#669688: courier-authlib: does not call pam_end

2012-04-25 Thread Stefan Hornburg (Racke)

On 04/23/2012 06:42 PM, Russ Allbery wrote:

Stefan Hornburg (Racke)ra...@linuxia.de  writes:


The upstream author commented on this:



http://sourceforge.net/mailarchive/forum.php?thread_name=cone.1335179327.95630.24095.1000%40monster.email-scan.comforum_name=courier-users


Thanks for forwarding the bug along!  Could you also pass this along?

The assumption that all resources allocated by a PAM module can be made
process resources is unfortunately not correct (as much as I wish that it
were).  Due to a variety of reasons mostly related to how OpenSSH works
with privilege separation enabled, any Kerberos PAM module has to stash
the initial tickets in an external resource outside of the PAM library
data because the PAM library data is not preserved by OpenSSH between the
auth step and the session step.  (Mine uses a temporary disk ticket cache;
Red Hat's uses a shared memory segment.)  That external resource won't be
cleaned up properly without a pam_end call.

The lack of pam_end will also affect other PAM modules that change
external system state, such as pam_mount, although they're probably less
likely to be called in the context of Courier.

Of course, if there's a better way of handling the PAM authentication
inside ssh with privilege separation such that the temporary disk ticket
cache isn't required, I'm all ears -- I've always considered it a bit of a
hack (although less of one than using shared memory segments), and I'd
love to replace it with something else.  I've just never been able to find
a better solution.



OK, I'll forward this as well. Can you please provide a patch adding the
pam_end call?

Regards
Racke

--
LinuXia Systems = http://www.linuxia.de/
Expert Interchange Consulting and System Administration
ICDEVGROUP = http://www.icdevgroup.org/
Interchange Development Team




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



Bug#667979: libtokyocabinet9: TokyoCabinet got endianness in DB wrong on both big- and little-endian architectures

2012-04-25 Thread coldtobi
Package: libtokyocabinet9
Followup-For: Bug #667979

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Tagging this wontfix / help-needed, as currently I have no feasible way to 
resolve this, but to heavily patch tokyocabinet.

Of course, I'm open to other approaches which we might have missed...

coldtobi

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

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

Versions of packages libtokyocabinet9 depends on:
ii  libbz2-1.0  1.0.6-1
ii  libc6   2.13-30
ii  zlib1g  1:1.2.6.dfsg-2

libtokyocabinet9 recommends no packages.

libtokyocabinet9 suggests no packages.

- -- no debconf information

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

iEYEARECAAYFAk+Xq3gACgkQvyUNygvkuQKARwCfcQiQFCLgtqQ92y8ip7bSOiSP
ja4AoKy2Ptrn7eU2LwgcY/n+iO20uO/p
=iTyt
-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#670241: linux-2.6: Backporting the qmi_wwan driver to the Debian 3.2/wheezy kernels

2012-04-25 Thread Bjørn Mork
Bjørn Mork bj...@mork.no writes:

 The second batch is just a single bugfix for the sierra
 driver, which is necessary to allow the qmi_wwan driver
 to support some Sierra Wireless devices.  This could have
 gone to stable/linux-3.2.y but I did't submit it there as
 it is mostly irrelevant without the qmi_wwan driver.

Never underestimate Greg's efficiency...  Looks like he just picked up
this for 3.0-stable and 3.3-stable, so then I assume Ben will pick it
for 3.2-longterm as well.

 2) prevent sierra from binding to QMI/wwan interfaces

 749541d USB: sierra: avoid QMI/wwan interface on MC77xx

And if he does, then please ignore this commit.  It will go through
3.2-longterm upstream instead.



Bjørn



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



Bug#670393: condor: No longer builds on ia64 due to changes in src/condor_utils/compat_classad.h

2012-04-25 Thread Michael Hanke
Source: condor
Version: 7.7.6~dfsg.1-1
Severity: important
Tags: upstream

Condor fails to build from source (FTBFS) on ia64 due to a change that
was introduced with 7.7.6.

Successful build of 7.7.5

 
https://buildd.debian.org/status/fetch.php?pkg=condorarch=ia64ver=7.7.5%7Edfsg.1-2stamp=1332117436

Failed build of 7.7.6

 
https://buildd.debian.org/status/fetch.php?pkg=condorarch=ia64ver=7.7.6%7Edfsg.1-1stamp=1335297668

Relevant portion of the fail log:

=
cd 
/build/buildd-condor_7.7.6~dfsg.1-1-ia64-qialEI/condor-7.7.6~dfsg.1/obj-ia64-linux-gnu/src/condor_shadow.V6.1
  /usr/bin/c++   -D_FORTIFY_SOURCE=2 -DLINUX=\LINUX_2.6.32-BPO.5-MCKINLEY\ 
-DPLATFORM=\IA64-Debian_\ -DPRE_RELEASE_STR=\ Debian-7.7.6~dfsg.1-1\ 
-DCONDOR_VERSION=\7.7.6\ -DBUILD_DATE=\Apr 24 2012\ -DHAVE_CONFIG_H 
-DWITH_OPENSSL -DGLIBC=GLIBC -DGLIBC213=GLIBC213 -DIA64=IA64 -Wall -W -Wextra 
-Wfloat-equal -Wshadow -Wendif-labels -Wpointer-arith -Wcast-qual -Wcast-align 
-Wvolatile-register-var -fstack-protector -rdynamic -g 
-I/build/buildd-condor_7.7.6~dfsg.1-1-ia64-qialEI/condor-7.7.6~dfsg.1/obj-ia64-linux-gnu/bld_external/classads-7.7.6/install/include
 -I/usr/include/globus -I/usr/lib64/globus/include -I/usr/lib/globus/include 
-I/build/buildd-condor_7.7.6~dfsg.1-1-ia64-qialEI/condor-7.7.6~dfsg.1/src/condor_includes
 
-I/build/buildd-condor_7.7.6~dfsg.1-1-ia64-qialEI/condor-7.7.6~dfsg.1/obj-ia64-linux-gnu/src/condor_includes
 -I/build/buildd-condo
 r_7.7.6~dfsg.1-1-ia64-qialEI/condor-7.7.6~dfsg.1/src/condor_utils 
-I/build/buildd-condor_7.7.6~dfsg.1-1-ia64-qialEI/condor-7.7.6~dfsg.1/obj-ia64-linux-gnu/src/condor_utils
 
-I/build/buildd-condor_7.7.6~dfsg.1-1-ia64-qialEI/condor-7.7.6~dfsg.1/src/condor_daemon_core.V6
 
-I/build/buildd-condor_7.7.6~dfsg.1-1-ia64-qialEI/condor-7.7.6~dfsg.1/src/condor_daemon_client
 
-I/build/buildd-condor_7.7.6~dfsg.1-1-ia64-qialEI/condor-7.7.6~dfsg.1/src/ccb 
-I/build/buildd-condor_7.7.6~dfsg.1-1-ia64-qialEI/condor-7.7.6~dfsg.1/src/condor_io
 -I/build/buildd-condor_7.7.6~dfsg.1-1-ia64-qialEI/condor-7.7.6~dfsg.1/src/h 
-I/build/buildd-condor_7.7.6~dfsg.1-1-ia64-qialEI/condor-7.7.6~dfsg.1/obj-ia64-linux-gnu/src/h
 
-I/build/buildd-condor_7.7.6~dfsg.1-1-ia64-qialEI/condor-7.7.6~dfsg.1/src/classad
 
-I/build/buildd-condor_7.7.6~dfsg.1-1-ia64-qialEI/condor-7.7.6~dfsg.1/src/safefile
 
-I/build/buildd-condor_7.7.6~dfsg.1-1-ia64-qialEI/condor-7.7.6~dfsg.1/obj-ia64-linux-gnu/src/safefile
-o
  CMakeFiles/condor_shadow.dir/remoteresource.cpp.o -c 
/build/buildd-condor_7.7.6~dfsg.1-1-ia64-qialEI/condor-7.7.6~dfsg.1/src/condor_shadow.V6.1/remoteresource.cpp
/build/buildd-condor_7.7.6~dfsg.1-1-ia64-qialEI/condor-7.7.6~dfsg.1/src/condor_shadow.V6.1/remoteresource.cpp:1:0:
 warning: -fstack-protector not supported for this target [enabled by default]
/build/buildd-condor_7.7.6~dfsg.1-1-ia64-qialEI/condor-7.7.6~dfsg.1/src/condor_shadow.V6.1/remoteresource.cpp:
 In member function 'virtual void 
RemoteResource::updateFromStarter(compat_classad::ClassAd*)':
/build/buildd-condor_7.7.6~dfsg.1-1-ia64-qialEI/condor-7.7.6~dfsg.1/src/condor_shadow.V6.1/remoteresource.cpp:1214:61:
 error: no matching function for call to 
'compat_classad::ClassAd::EvalInteger(const char* const, NULL, int64_t)'
/build/buildd-condor_7.7.6~dfsg.1-1-ia64-qialEI/condor-7.7.6~dfsg.1/src/condor_shadow.V6.1/remoteresource.cpp:1214:61:
 note: candidates are:
/build/buildd-condor_7.7.6~dfsg.1-1-ia64-qialEI/condor-7.7.6~dfsg.1/src/condor_utils/compat_classad.h:352:6:
 note: int compat_classad::ClassAd::EvalInteger(const char*, classad::ClassAd*, 
int)
/build/buildd-condor_7.7.6~dfsg.1-1-ia64-qialEI/condor-7.7.6~dfsg.1/src/condor_utils/compat_classad.h:352:6:
 note:   no known conversion for argument 3 from 'int64_t {aka long int}' to 
'int'
/build/buildd-condor_7.7.6~dfsg.1-1-ia64-qialEI/condor-7.7.6~dfsg.1/src/condor_utils/compat_classad.h:353:6:
 note: int compat_classad::ClassAd::EvalInteger(const char*, classad::ClassAd*, 
long long int)
/build/buildd-condor_7.7.6~dfsg.1-1-ia64-qialEI/condor-7.7.6~dfsg.1/src/condor_utils/compat_classad.h:353:6:
 note:   no known conversion for argument 3 from 'int64_t {aka long int}' to 
'long long int'
make[4]: *** 
[src/condor_shadow.V6.1/CMakeFiles/condor_shadow.dir/remoteresource.cpp.o] 
Error 1
=

This looks like a data type issue that seems to have its origin in a
change to compat_classad.h that was introduced with 7.7.6.

Related Git commits are:

c2601f0db1df9e6869b7fe66070e7c6c9595922a
2e757aaa65299d21ae93137c56db657360bb2327
7fbb9e370a8d2ff8a7e2bbec4c8cedd36eabaeed
ac250a697b424984139f9d876c597dc3598f2070


% git diff debian/7.7.5_dfsg.1-2 -- src/condor_utils/compat_classad.h
diff --git a/src/condor_utils/compat_classad.h 
b/src/condor_utils/compat_classad.h
index 1a17d79..2d08a6d 100644
--- a/src/condor_utils/compat_classad.h
+++ b/src/condor_utils/compat_classad.h
@@ -26,6 +26,20 @@
 class StringList;
 class Stream;
 
+// hopefully this can 

Bug#670394: [PATCH] xxgdb: Helping to update to packaging format 3.0

2012-04-25 Thread jari . aalto
Package: xxgdb
Severity: wishlist
Tags: patch

Hi,

The dpatch patch management system has been deprecated for some time. The
Lintian currently flags use of dpatch packages as an error. The new 3.0
packaging format is an improved version which, among other things, contains
patch management built-in. For more information, see:

http://wiki.debian.org/Projects/DebSrc3.0

I had some free time; see attached patch to migrate to new package
format. Note that all files in debian/patches/* are canocalized to
*.patch.

Let me know if there is anything that needs adjusting or if it is ok
to upload this version in a NMU in case you are working on other
issues needing attention.

Thanks,
Jari

From 000e87e5ce1844c53bf4977ece01b5c8b0fbf67c Mon Sep 17 00:00:00 2001
From: Jari Aalto jari.aa...@cante.net
Date: Wed, 25 Apr 2012 10:56:41 +0300
Subject: [PATCH] format-3.0
Organization: Private
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 8bit

Signed-off-by: Jari Aalto jari.aa...@cante.net
---
 debian/changelog   |   11 +++
 debian/compat  |2 +-
 debian/control |6 ++--
 .../{001-imakefile.dpatch = 001-imakefile.patch}  |8 ++---
 ...{002-x-terminal.dpatch = 002-x-terminal.patch} |8 ++---
 ...-debian-patch.dpatch = 003-debian-patch.patch} |8 ++---
 .../{004-backspace.dpatch = 004-backspace.patch}  |8 ++---
 debian/patches/005-kfreebsd.dpatch |   21 -
 debian/patches/005-kfreebsd.patch  |   20 +
 ...06-nroff-fixes.dpatch = 006-nroff-fixes.patch} |   23 +++
 ...ort-filemenu.dpatch = 007-sort-filemenu.patch} |   21 +++--
 ...08-unix98-ptys.dpatch = 008-unix98-ptys.patch} |   31 ++--
 ...09-iowinttypid.dpatch = 009-iowinttypid.patch} |8 ++---
 debian/patches/00list  |   11 ---
 .../{010-gcc-wall.dpatch = 010-gcc-wall.patch}|8 ++---
 man-fixes.dpatch = 020-xxgdb.man-fixes.patch} |8 ++---
 debian/patches/series  |   11 +++
 debian/rules   |   26 +---
 debian/source/format   |2 +-
 19 files changed, 105 insertions(+), 136 deletions(-)
 rename debian/patches/{001-imakefile.dpatch = 001-imakefile.patch} (87%)
 rename debian/patches/{002-x-terminal.dpatch = 002-x-terminal.patch} (73%)
 rename debian/patches/{003-debian-patch.dpatch = 003-debian-patch.patch} (98%)
 rename debian/patches/{004-backspace.dpatch = 004-backspace.patch} (90%)
 delete mode 100644 debian/patches/005-kfreebsd.dpatch
 create mode 100644 debian/patches/005-kfreebsd.patch
 rename debian/patches/{006-nroff-fixes.dpatch = 006-nroff-fixes.patch} (80%)
 rename debian/patches/{007-sort-filemenu.dpatch = 007-sort-filemenu.patch} (55%)
 rename debian/patches/{008-unix98-ptys.dpatch = 008-unix98-ptys.patch} (66%)
 rename debian/patches/{009-iowinttypid.dpatch = 009-iowinttypid.patch} (88%)
 delete mode 100644 debian/patches/00list
 rename debian/patches/{010-gcc-wall.dpatch = 010-gcc-wall.patch} (98%)
 rename debian/patches/{020-xxgdb.man-fixes.dpatch = 020-xxgdb.man-fixes.patch} (89%)
 create mode 100644 debian/patches/series

diff --git a/debian/changelog b/debian/changelog
index 6774991..58eb310 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,14 @@
+xxgdb (1.12-17.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Remove deprecated dpatch and upgrade to packaging format 3.0 quilt.
+  * Update to Standards-Version to 3.9.3 and debhelper to 9.
+  * Add required build-arch and build-indep targets to rules file.
+  * Patches 00[5678]: update with quilt refresh to make them apply cleanly.
+  * Fix description-synopsis-starts-with-article (Lintian).
+
+ -- Jari Aalto jari.aa...@cante.net  Wed, 25 Apr 2012 10:53:51 +0300
+
 xxgdb (1.12-17) unstable; urgency=low
 
   * Import NMU
diff --git a/debian/compat b/debian/compat
index 7f8f011..ec63514 100644
--- a/debian/compat
+++ b/debian/compat
@@ -1 +1 @@
-7
+9
diff --git a/debian/control b/debian/control
index f8f938c..43258ec 100644
--- a/debian/control
+++ b/debian/control
@@ -2,14 +2,14 @@ Source: xxgdb
 Section: devel
 Priority: optional
 Maintainer: Joey Schulze j...@debian.org
-Standards-Version: 3.8.4
-Build-Depends: debhelper (= 7.1), dpatch, libxaw7-dev, libx11-dev,
+Standards-Version: 3.9.3
+Build-Depends: debhelper (= 9), libxaw7-dev, libx11-dev,
  libxt-dev, x11proto-core-dev, xutils-dev
 
 Package: xxgdb
 Architecture: any
 Depends: ${misc:Depends}, gdb, ${shlibs:Depends}
-Description: An X front-end to the GNU debugger gdb
+Description: graphical front-end to the GNU debugger gdb
  xxgdb is a simple but powerful graphical interface to the GNU
  debugger gdb.  A more powerful (but slower and much bigger) interface
  is available in the ddd package.
diff --git 

Bug#670395: [PATCH] openvas-plugins-dfsg: Helping to update to packaging format 3.0

2012-04-25 Thread jari . aalto
Package: openvas-plugins-dfsg
Severity: wishlist
Tags: patch

Hi,

The dpatch patch management system has been deprecated for some time. The
Lintian currently flags use of dpatch packages as an error. The new 3.0
packaging format is an improved version which, among other things, contains
patch management built-in. For more information, see:

http://wiki.debian.org/Projects/DebSrc3.0

I had some free time; see attached patch to migrate to new package
format. Note that all files in debian/patches/* are canocalized to
*.patch.

Let me know if there is anything that needs adjusting or if it is ok
to upload this version in a NMU in case you are working on other
issues needing attention.

Thanks,
Jari

From 05f8058a55293227fe9c9bd35acede40f0d6ef05 Mon Sep 17 00:00:00 2001
From: Jari Aalto jari.aa...@cante.net
Date: Wed, 25 Apr 2012 10:06:05 +0300
Subject: [PATCH] format-3.0
Organization: Private
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 8bit

Signed-off-by: Jari Aalto jari.aa...@cante.net
---
 debian/README.source   |4 -
 debian/changelog   |   13 +++
 debian/compat  |2 +-
 debian/control |4 +-
 debian/openvas-plugins-base.postinst   |5 +-
 debian/openvas-plugins-base.postrm |3 +-
 debian/openvas-plugins-dfsg.postinst   |5 +-
 debian/openvas-plugins-dfsg.postrm |3 +-
 debian/openvas-plugins-dfsg.preinst|7 +-
 debian/patches/00list  |4 -
 debian/patches/10-openvas-nvt-sync.patch   |  122 
 ...ripts_update.dpatch = 25-scripts-update.patch} |8 +-
 ...ude_plugins.dpatch = 30-include-plugins.patch} |8 +-
 ...s-nvt_sync.dpatch = 40-openvas-nvt-sync.patch} |8 +-
 ...audit_improve.dpatch = 90-audit-improve.patch} |9 +-
 debian/patches/series  |5 +
 debian/rules   |   14 +--
 debian/source/format   |1 +
 openvas-nvt-sync   |  116 ---
 19 files changed, 176 insertions(+), 165 deletions(-)
 mode change 100644 = 100755 debian/openvas-plugins-base.postinst
 mode change 100644 = 100755 debian/openvas-plugins-base.postrm
 mode change 100644 = 100755 debian/openvas-plugins-dfsg.postinst
 mode change 100644 = 100755 debian/openvas-plugins-dfsg.postrm
 mode change 100644 = 100755 debian/openvas-plugins-dfsg.preinst
 delete mode 100644 debian/patches/00list
 create mode 100644 debian/patches/10-openvas-nvt-sync.patch
 rename debian/patches/{25_scripts_update.dpatch = 25-scripts-update.patch} (97%)
 rename debian/patches/{30_include_plugins.dpatch = 30-include-plugins.patch} (99%)
 rename debian/patches/{40_openvas-nvt_sync.dpatch = 40-openvas-nvt-sync.patch} (94%)
 rename debian/patches/{100_audit_improve.dpatch = 90-audit-improve.patch} (96%)
 create mode 100644 debian/patches/series
 create mode 100644 debian/source/format
 delete mode 100644 openvas-nvt-sync

diff --git a/debian/README.source b/debian/README.source
index 2a45d12..204f375 100644
--- a/debian/README.source
+++ b/debian/README.source
@@ -1,6 +1,2 @@
 The new original tarball can be created by removing the non-free plugins
 listed in audit/REMOVED-PLUGINS file and removing the packaging/subdirectory
-
-For the rest we use dpatch for patch handling inside our package(s). Please
-see /usr/share/doc/dpatch/README.source.gz (if you have dpatch installed) for
-documentation on how to use dpatch.
diff --git a/debian/changelog b/debian/changelog
index 2eaa793..8374e96 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,16 @@
+openvas-plugins-dfsg (1:20100705-2.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Remove deprecated dpatch and upgrade to packaging format 3.0 quilt.
+  * Update to Standards-Version to 3.9.3 and debhelper to 9.
+  * Add required build-arch and build-indep targets to rules file.
+  * patches
+- (10): New; in-line changes to original sources.
+- (90): Rename from 100 to make listing sort alphabetically.
+  * Fix maintainer-script-without-set-e (Lintian).
+
+ -- Jari Aalto jari.aa...@cante.net  Wed, 25 Apr 2012 10:04:14 +0300
+
 openvas-plugins-dfsg (1:20100705-2) unstable; urgency=low
 
   * Added Japanese po-debconf translation provided by Hideki Yamane 
diff --git a/debian/compat b/debian/compat
index 7f8f011..ec63514 100644
--- a/debian/compat
+++ b/debian/compat
@@ -1 +1 @@
-7
+9
diff --git a/debian/control b/debian/control
index 3668e6b..fce76ce 100644
--- a/debian/control
+++ b/debian/control
@@ -2,11 +2,11 @@ Source: openvas-plugins-dfsg
 Section: admin
 Priority: optional
 Maintainer: Javier Fernandez-Sanguino Pen~a j...@debian.org
-Build-Depends: debhelper (= 7), dpatch, libopenvas2-dev, openvas-server-dev (= 1.0), 

Bug#661581: Fails to resume from suspend on ASUS P67-M mainboard

2012-04-25 Thread Arne Nordmark

2012-03-01 16:31, Jonathan Nieder skrev:

tags 661581 = upstream
forwarded 661581 http://thread.gmane.org/gmane.linux.kernel/1240187/focus=52118
quit

Arne Nordmark wrote:


Some newer ASUS mainboards fails to resume from suspend on
Linux. Instead the computer immediately restarts a few times, and then
does a full boot. This has been traced to an ACPI problem, and a
symtom is the kernel messages:

[...]

ACPI Error: [RAMB] Namespace lookup failure, AE_NOT_FOUND (20110623/psargs-359)
ACPI Exception: AE_NOT_FOUND, Could not execute arguments for [RAMW] (Region) 
(20110623/nsinit-349)

When applying the commit
[...];h=8931d9ea78848b073bf299594f148b83abde4a5e
to the current kernel sources from backports, the error messages
disappears, and resume functionality is restored.


Thanks.  Was this a regression?

Passed upstream.  Hopefully the fix can be part of the 3.2.y series
some time soon, so everyone benefits from it.


Looks like this made it into 3.2.16:

...
 drivers/acpi/acpica/acobject.h|1
 drivers/acpi/acpica/dsargs.c  |2
 drivers/acpi/acpica/excreate.c|6 +
...
Lin Ming (1):
  ACPICA: Fix to allow region arguments to reference other scopes
...



Hope that helps,
Jonathan


Thanks,
Arne



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



Bug#670396: [PATCH] recordmydesktop: Helping to update to packaging format 3.0

2012-04-25 Thread jari . aalto
Package: recordmydesktop
Severity: wishlist
Tags: patch

Hi,

The dpatch patch management system has been deprecated for some time. The
Lintian currently flags use of dpatch packages as an error. The new 3.0
packaging format is an improved version which, among other things, contains
patch management built-in. For more information, see:

http://wiki.debian.org/Projects/DebSrc3.0

I had some free time; see attached patch to migrate to new package
format. Note that all files in debian/patches/* are canocalized to
*.patch.

Let me know if there is anything that needs adjusting or if it is ok
to upload this version in a NMU in case you are working on other
issues needing attention.

Thanks,
Jari

From ae4fcd33098345542ecbfcf2006ffbe06ffb18b2 Mon Sep 17 00:00:00 2001
From: Jari Aalto jari.aa...@cante.net
Date: Wed, 25 Apr 2012 11:01:22 +0300
Subject: [PATCH] format-3.0
Organization: Private
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 8bit

Signed-off-by: Jari Aalto jari.aa...@cante.net
---
 debian/README.source   |7 ---
 debian/changelog   |   10 +
 debian/compat  |2 +-
 debian/control |4 ++--
 debian/copyright   |2 +-
 debian/patches/00list  |3 ---
 ...te_includes.dpatch = 01-update-includes.patch} |8 ++-
 ...x_new_theora.dpatch = 02-fix-new-theora.patch} |8 ++-
 debian/patches/series  |3 +++
 debian/rules   |   22 +---
 debian/source/format   |1 +
 11 files changed, 32 insertions(+), 38 deletions(-)
 delete mode 100644 debian/README.source
 delete mode 100644 debian/patches/00list
 rename debian/patches/{01_update_includes.dpatch = 01-update-includes.patch} (78%)
 rename debian/patches/{02_fix_new_theora.dpatch = 02-fix-new-theora.patch} (87%)
 create mode 100644 debian/patches/series
 create mode 100644 debian/source/format

diff --git a/debian/README.source b/debian/README.source
deleted file mode 100644
index 35ce936..000
--- a/debian/README.source
+++ /dev/null
@@ -1,7 +0,0 @@
-This package uses the dpatch system to save and apply patches to the 
-upstream  source code of the software that is packaged. For details 
-about how to use dpatch read
-
-/usr/share/doc/dpatch/README.source.gz
-
-from the dpatch package.
diff --git a/debian/changelog b/debian/changelog
index 43e59ea..1c55250 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,13 @@
+recordmydesktop (0.3.8.1+svn602-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Remove deprecated dpatch and upgrade to packaging format 3.0 quilt.
+  * Update to Standards-Version to 3.9.3 and debhelper to 9.
+  * Add build-arch and build-indep targets; use dh_prep in rules file.
+  * Fix copyright-refers-to-symlink-license (Lintian).
+
+ -- Jari Aalto jari.aa...@cante.net  Wed, 25 Apr 2012 11:00:23 +0300
+
 recordmydesktop (0.3.8.1+svn602-1) unstable; urgency=low
 
   * New version from upstream svn (Closes: #549263, #544699)
diff --git a/debian/compat b/debian/compat
index 7ed6ff8..ec63514 100644
--- a/debian/compat
+++ b/debian/compat
@@ -1 +1 @@
-5
+9
diff --git a/debian/control b/debian/control
index 80d56f2..d38a111 100644
--- a/debian/control
+++ b/debian/control
@@ -3,8 +3,8 @@ Section: video
 Priority: optional
 Maintainer: José L. Redrejo Rodríguez jredr...@debian.org
 Homepage: http://recordmydesktop.sourceforge.net
-Build-Depends: debhelper (= 5), dpatch, autotools-dev, libxdamage-dev, libvorbis-dev, libogg-dev, libxext-dev, libtheora-dev (= 0.0.0.alpha7), libasound2-dev [!kfreebsd-i386 !kfreebsd-amd64 !hurd-i386], libice-dev, libsm-dev, zlib1g-dev, libjack-dev, libpopt-dev
-Standards-Version: 3.8.4
+Build-Depends: debhelper (= 9), autotools-dev, libxdamage-dev, libvorbis-dev, libogg-dev, libxext-dev, libtheora-dev (= 0.0.0.alpha7), libasound2-dev [!kfreebsd-i386 !kfreebsd-amd64 !hurd-i386], libice-dev, libsm-dev, zlib1g-dev, libjack-dev, libpopt-dev
+Standards-Version: 3.9.3
 
 Package: recordmydesktop
 Architecture: any
diff --git a/debian/copyright b/debian/copyright
index 5164862..1d72f02 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -25,4 +25,4 @@ Copyright (C) 2006 John Varouhakis biocras...@gmail.com
 
 
 On Debian GNU/Linux systems, the complete text of the GNU General
-Public License can be found in `/usr/share/common-licenses/GPL'.
+Public License can be found in `/usr/share/common-licenses/GPL-2'.
diff --git a/debian/patches/00list b/debian/patches/00list
deleted file mode 100644
index 0fb9528..000
--- a/debian/patches/00list
+++ /dev/null
@@ -1,3 +0,0 @@
-01_update_includes.dpatch
-02_fix_new_theora.dpatch
-
diff --git a/debian/patches/01_update_includes.dpatch b/debian/patches/01-update-includes.patch
similarity 

Bug#662983: When called by aptitude, apt-listbugs crash and precludes the package upgrade

2012-04-25 Thread tv.deb...@googlemail.com

Francesco Poliinvernom...@paranoici.org  wrote:



On Tue, 24 Apr 2012 21:12:45 +0200 tv.deb...@googlemail.com wrote:



 Hi, I get this same error calling aptitude with sudo, and more
 surprisingly maybe when calling apt-get with sudo too. Following is the
 output of the command, the locale is French but you'll get the idea:



Hello tv.debian,
thanks for your followup.


[...]


Could you please check whether your problem is by chance the one
reported as bug #670320?


It very much is, thank you for the pointer and sorry for the noise.

[...]

Also please paste non-localized output (unless the issue is
localization dependent). You should be able to get non-localized output
from a command, by prefixing the command with env LC_ALL=C  as in:



  $ env LC_ALL=C sudo aptitude install one-package another-package


Yes, sorry, I know this but I was lazy since I had fixed it, I just
copied the old output rather than reproducing the bug with LC_ALL=C, shame
on me.

Thank you.




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



Bug#670385: [PATCH] ilohamail: Helping to update to packaging format 3.0

2012-04-25 Thread Joerg Jaspert
On 12827 March 1977, jari aalto wrote:
tags 670385 + wontfix
thanks

 The dpatch patch management system has been deprecated for some time. The
 Lintian currently flags use of dpatch packages as an error. The new 3.0
 packaging format is an improved version which, among other things, contains
 patch management built-in. For more information, see:
 http://wiki.debian.org/Projects/DebSrc3.0
 I had some free time; see attached patch to migrate to new package
 format. Note that all files in debian/patches/* are canocalized to
 *.patch.

Uh no, thank you for the work, but 3.0 is nothing one wants to have.

-- 
bye, Joerg
Some NM:
The shell script is called debcheck.py.



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



Bug#665452: [Pkg-openssl-devel] Bug#665452: openssl 1.0.0 breaks python-cloudfiles

2012-04-25 Thread Joar Wandborg
Hello, to replicate this error: install the python-cloudfiles package (i'm on 
wheezy), then
run:

#!/usr/bin/env python
import cloudfiles

connection = cloudfiles.get_connection(
username='fakeusername',
api_key='f7k34P1k3Y')


/Joar

On Mon, Apr 23, 2012 at 11:10:36PM +0200, Kurt Roeckx wrote:
 On Mon, Apr 23, 2012 at 09:16:34PM +0200, Joar Wandborg wrote:
  I get the following errors in python
  
  (mediagoblin)joar@lina:~/git/mediagoblin$ python
  Python 2.7.2+ (default, Oct  4 2011, 20:06:09) 
  [GCC 4.6.1] on linux2
  Type help, copyright, credits or license for more information.
   import cloudfiles
   conn = cloudfiles.get_connection(username='blah', api_key='dah')
 [...]
File /usr/lib/python2.7/ssl.py, line 296, in do_handshake
  self._sslobj.do_handshake()
  ssl.SSLError: [Errno 1] _ssl.c:503: error:14077102:SSL 
  routines:SSL23_GET_SERVER_HELLO:unsupported protocol
 
 I'm not sure how this is relavate to the bug report?  I will
 clearly need more details other than that it gives you an error,
 like what site are you trying to connect to, what protocol do you
 want to use?
 
 
 Kurt
 



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



Bug#670397: ITP: plug -- control Fender Mustang amplifiers

2012-04-25 Thread Alessio Treglia
Package: wnpp
Severity: wishlist
Owner: Alessio Treglia ales...@debian.org

* Package name: plug
  Version : 1.0
  Upstream Author : piorekf  pior...@gmail.com
* URL : http://piorekf.org/plug/
* License : GPL
  Programming Lang: C++
  Description : control Fender Mustang amplifiers

 PLUG was originally created as a Linux replacement for Fender FUSE
 software for Fender Mustang guitar amplifier. Its Qt4-based graphical
 interface allows one to control the amplifier and effect stages of
 all Mustang amplifiers from I to V.



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



Bug#670398: linux-image-2.6.32-5-amd64: SSH logins hang while hpet interrupts multiply on Intel Nehalem CPUs

2012-04-25 Thread Sven Hoexter
Package: linux-image-2.6.32-5-amd64
Version: 2.6.32-41squeeze2
Severity: important

Hi,

since about December 2011 we've seen systems were SSH sessions suddenly hang and
further logins on the physical TTY or via SSH are no longer possible. In some 
cases
ssh logins still work and you see motd and mayeb can even issue one or two 
commands.
(I've brought this issue up on debian-user in march with a private reply from a
fellow DD yesterday http://lists.debian.org/debian-user/2012/03/msg01204.html)


Over time we observed that ssh logins without PTS (ssh -T) still work. Looking 
at
other sessions sshd was in state and D entries in /dev/pts/ were created 
correctly.
Searching through munin graphs we could narrow down the starting point of this 
issue
to the point when the hpet interrupts for one CPU core multiplied. Sometimes 
they
multiplied by six. Looking further we've found the Kernel [events/$x] in state D
where $x is the number of the CPU core which has the high number of hpet 
interrupts.

When we started strace -f on the sshd master process everything works until you 
logout.
Then you'll again see the forked sshd process hanging in state D.

Up to that point we've seen this issue exclusively on Linux 2.6.32 based 
systems,
most often on Debian/Squeeze and less often on Ubuntu 10.04 and once or twice on
a RHEL 6.1 system.

Searching further I've seen references on a Dell PowerEdge mailinglist 
referencing
RedHat BZ#750201 and Intel CPU errata number AAO67 for Nehalem (rapid C state 
switching).
The RedHat bug is currently non-public but through our technical contact at 
RedHat I was
able to receive a summary of this bug and other referenced bugs which describe 
more or
less exactly our issue.

According to RedHat that should be fixed in their Kernel 2.6.32-220.7.1.el6
citing the following in the changelog:
- [x86] hpet: Disable per-cpu hpet timer if ARAT is supported (Prarit Bhargava) 
[772884 750201]
- [x86] Improve TSC calibration using a delayed workqueue (Prarit Bhargava) 
[772884 750201]
- [kernel] clocksource: Add clocksource_register_hz/khz interface (Prarit 
Bhargava) [772884 750201]
- [kernel] clocksource: Provide a generic mult/shift factor calculation (Prarit 
Bhargava) [772884 750201]

(Maybe that helps to track down the relevant changes.)

As a workaround it could work to disable C-states in the BIOS or on the Kernel 
commandline
with intel_idle.max_cstate=0 processor.max_cstate=1.
Since we run into that issue only from time to time on the same system we could 
not yet
verify either workaround. Rumours indicate that sometimes disabling it in the 
BIOS did
not help because the Kernel enabled C-states again.

My current guess is that it's somehow related to the Intel Nehalem CPU bug and 
only happens
if you have a high single threaded load which leads to one or core cores are 
switched into
a C-6 sleep state so that they can overclock one core. Marketing name is 
TurboBoost.

Regarding the CPUs I know this happens with:
- Intel X3430
- Intel X3450
- Intel L3426

We see it in almost all cases on Dell R210 with the X3430 CPUs.
Rumours claim it also happens with other Dell models based on other CPUs from 
the
Intel Nehalem series with TurboBoost. 


Would be great if someone could track down the needed changes and incorporate 
those
into a point release. In general I would be available for testing but we still 
have
no way reproduce it beside waiting a few month. :(


Regards,
Sven

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

Kernel: Linux 3.2.0-0.bpo.1-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 linux-image-2.6.32-5-amd64 depends on:
ii  debconf [debconf-2.0]   1.5.36.1 Debian configuration management sy
ii  initramfs-tools [linux-init 0.99~bpo60+1 tools for generating an initramfs
ii  linux-base  3.4~bpo60+1  Linux image base package
ii  module-init-tools   3.12-2   tools for managing Linux kernel mo

Versions of packages linux-image-2.6.32-5-amd64 recommends:
pn  firmware-linux-free   none (no description available)

Versions of packages linux-image-2.6.32-5-amd64 suggests:
pn  grub | lilo   none (no description available)
pn  linux-doc-2.6.32  none (no description available)



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



Bug#670397: ITP: plug -- control Fender Mustang amplifiers

2012-04-25 Thread Fabian Greffrath

Am 25.04.2012 10:31, schrieb Alessio Treglia:

* Package name: plug


A bit generic, or?

 - Fabian




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



Bug#669598: RFS: python-django-djblets/0.6.17-1 [ITP] -- Collection of useful extensions for Django

2012-04-25 Thread Dmitry Nezhevenko
On Wed, Apr 25, 2012 at 01:17:08AM +0200, Jakub Wilk wrote:
 (I don't intend to sponsor this package.)

Thanks for your comments. I'll try to fix issues

 
 * Dmitry Nezhevenko d...@dion.org.ua, 2012-04-22, 14:03:
 dget -x 
 http://mentors.debian.net/debian/pool/main/p/python-django-djblets/python-django-djblets_0.6.17-1.dsc
 
 Files: media/js/jquery* - did you mean Files:
 djblets/media/js/jquery*? More importantly, I don't see source for
 some of these files.

Yes. Will fix. But how can I handle these js files? There are actually
three versions of minified jQuery:

 jquery-1.3.2.min.js
 jquery-ui-1.6rc2.min.js
 jquery-ui-1.6rc5.min.js

Looks like only 1.3.2 is used so probably I can drop others. I'll try to
use package with jquery from libjs-jquery package (that is version 1.7 in
sid) and if I'm lucky probably it will work. If it will work, is it enough
to just not use/remove these embedded versions? Or I should repack
upstream tarball?

 Upstream provides a test suite. Please run it at build time, against
 all supported Python versions.

Some of these tests are known-to-fail outside of specially configured
environment. How this should be handled?  
 
-- 
WBR, Dmitry


signature.asc
Description: Digital signature


Bug#596741: patch from upstream

2012-04-25 Thread Jon Dowland
Hi Ben,

On Sun, Apr 08, 2012 at 11:13:54PM +0100, Ben Hutchings wrote:
 On Tue, 2012-04-03 at 09:17 +0100, Jon Dowland wrote:
  I tested a patch upstream and it solved the problem to me. I mailed it to 
  the bug
  (but chose to use -quiet which I perhaps shouldn't have.)
 
 I've applied this to the sid branch (i.e. for wheezy).
 
 Would you mind testing whether this backport to squeeze fixes the bug
 there?

I'm happy to: but after a few hours I've totally failed to build the squeeze
kernel for various reasons, the last attempt (in a pbuilder) without any clear
idea why it failed.  So I've rather ran out of time to dedicate to this task
but I'll happily test someone else's build.




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



Bug#670397: ITP: plug -- control Fender Mustang amplifiers

2012-04-25 Thread Alessio Treglia
On Wed, Apr 25, 2012 at 10:46 AM, Fabian Greffrath fab...@greffrath.com wrote:
 Am 25.04.2012 10:31, schrieb Alessio Treglia:

 * Package name    : plug


 A bit generic, or?

Yes, I've just taken upstream name.
How does mustang-plug sound?


-- 
Alessio Treglia          | www.alessiotreglia.com
Debian Developer         | ales...@debian.org
Ubuntu Core Developer    | quadris...@ubuntu.com
0416 0004 A827 6E40 BB98 90FB E8A4 8AE5 311D 765A



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



Bug#670399: abiword: system locale sv_FI.UTF-8 uses english user interface instead of swedish

2012-04-25 Thread Patrick Andila
Package: abiword
Version: 2.8.2-2.1
Severity: normal
Tags: l10n

When the system locale is sv_FI abiword uses english user interface.  Choosing
sv_SE results in the expected swedish menus.

While waiting for a proper fix the issue can be worked around by selecting
sv_SE.UTF-8 and adding the following lines to .profile:
export LC_TIME=sv_FI.UTF-8
export LC_MONETARY=sv_FI.UTF-8



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

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

Versions of packages abiword depends on:
ii  abiword-com 2.8.2-2.1efficient, featureful word process
ii  gsfonts 1:8.11+urwcyr1.0.7~pre44-4.2 Fonts for the Ghostscript interpre
ii  libabiword- 2.8.2-2.1efficient, featureful word process
ii  libaiksauru 1.2.1+dev-0.12-6 graphical interface to the Aiksaur
ii  libc6   2.11.3-2 Embedded GNU C Library: Shared lib
ii  libcairo2   1.10.2-7~bpo60+1 The Cairo 2D vector graphics libra
ii  libdbus-1-3 1.2.24-4+squeeze1simple interprocess messaging syst
ii  libdbus-gli 0.88-2.1 simple interprocess messaging syst
ii  libgcc1 1:4.4.5-8GCC support library
ii  libgcrypt11 1.4.5-2  LGPL Crypto library - runtime libr
ii  libglib2.0- 2.24.2-1 The GLib library of C routines
ii  libgnutls26 2.8.6-1+squeeze2 the GNU TLS library - runtime libr
ii  libgoffice- 0.8.8-1  Document centric objects library -
ii  libgsf-1-11 1.14.18-1Structured File Library - runtime 
ii  libgtk2.0-0 2.20.1-2 The GTK+ graphical user interface 
ii  libjpeg62   6b1-1The Independent JPEG Group's JPEG 
ii  libloudmout 1.4.3-7  Lightweight C Jabber library
ii  libots0 0.5.0-2  Open Text Summarizer (library)
ii  libpng12-0  1.2.44-1+squeeze4PNG library - runtime
ii  libreadline 6.1-3GNU readline and history libraries
ii  libsoup2.4- 2.30.2-1+squeeze1an HTTP library implementation in 
ii  libstdc++6  4.4.5-8  The GNU Standard C++ Library v3
ii  libwmf0.2-7 0.2.8.4-6.1+b1   Windows metafile conversion librar
ii  libwpd8c2a  0.8.14-1 Library for handling WordPerfect d
ii  libwpg-0.1- 0.1.3-1  WordPerfect graphics import/conver
ii  libwps-0.1- 0.1.2-1  Works text file format import filt
ii  libxml2 2.7.8.dfsg-2+squeeze3GNOME XML library
ii  libxslt1.1  1.1.26-6 XSLT 1.0 processing library - runt

Versions of packages abiword recommends:
ii  abiword-plugin 2.8.2-2.1 grammar checking plugin for AbiWor
ii  abiword-plugin 2.8.2-2.1 equation editor plugin for AbiWord
ii  aspell-sv [asp 0.51-0-2  The Swedish dictionary for GNU asp
ii  poppler-utils  0.12.4-1.2PDF utilitites (based on libpopple
ii  ttf-liberation 1.05.2.20091019-4squeeze1 Fonts with the same metrics as Tim

abiword 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#662983: When called by aptitude, apt-listbugs crash and precludes the package upgrade

2012-04-25 Thread Francesco Poli
On Wed, 25 Apr 2012 10:15:15 +0200 tv.deb...@googlemail.com wrote:

 Francesco Poliinvernom...@paranoici.org  wrote:
[...]
 Could you please check whether your problem is by chance the one
 reported as bug #670320?
 
 It very much is, thank you for the pointer and sorry for the noise.

No problem, I am glad I could help you in finding the root of the
issue...

Bye!


-- 
 http://www.inventati.org/frx/frx-gpg-key-transition-2010.txt
 New GnuPG key, see the transition document!
. Francesco Poli .
 GnuPG key fpr == CA01 1147 9CD2 EFDF FB82  3925 3E1C 27E1 1F69 BFFE


pgpZ3TndrefTt.pgp
Description: PGP signature


Bug#670242: php-db: Warnings about static calls to non-static methods from common.php

2012-04-25 Thread TreeBoy
Package: php-db
Version: 1.7.13-2
Followup-For: Bug #670242

Dear Maintainer,

I'm sorry, I did the diff after I had made the changes: I added the static in 
order to remove the problems about calls to DB::isManip() and DB::isError().

So the diff is of the altered file.


(As an aside, I should have said that my error_reporting is as follows:

error_reporting = E_ALL
)

Regards,
Peter

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

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

Versions of packages php-db depends on:
ii  php-pear  5.4.1~rc1-1

php-db recommends no packages.

php-db 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#657078: patches to reduce the footprint of the nfs4 idmapper

2012-04-25 Thread Rik Theys

Hi,

On 04/24/2012 10:45 PM, Jonathan Nieder wrote:

Could you describe the problem in more detail?  Under what
circumstances does the idmapper provoke allocation failures, and how
effectively do the patches avoid trouble?


We have two big NFSv4 file servers that also automount from each other 
to provide homedirs over samba.


These machines are accessed by a few hundred NFSv4 clients. On these 
(RHEL6) servers we see this issue come up sometimes twice a day, 
sometimes twice a week (since 6.2).


The are reports that Debian is affected by this bug as well, for example
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=636306

I've tried to reproduce this issue in the past but failed, so it's very 
hard to determine if the patches help a lot. But from what I've been 
able to find the patches dramatically reduce the memory needed (now 
order 4).


I don't know if you can see the following Red Hat bug report?
https://bugzilla.redhat.com/show_bug.cgi?id=730045

An upstream thread that starts talking about the memory issue can be 
found here:


http://www.spinics.net/lists/linux-nfs/msg27350.html

An initial patch brought this down from order 4 to order 2.

A bit further down the thread they mention:


Much, much better! Nice work.

Built on a different machine this time with a different compiler, so
sizes are a little different. Not certain why, but they're fairly close
-- maybe differences in padding or something:

Without either patch:
(gdb) p sizeof(struct idmap)
$1 = 39168

With just the first patch:
(gdb) p sizeof(struct idmap)
$1 = 8448

With both patches:
(gdb) p sizeof(struct idmap)
$1 = 272


Since the thread is also about the new nfs ID mapper, it could be that 
this large reduction is only (partialy) achieved if the new id mapper is 
in use. But since they applied it in Fedora 16, which also still has the 
old id mapper, I assume it's good.





NFSv4: Further reduce the footprint of the idmapper
commit 685f50f9188ac1e8244d0340a9d6ea36b6136cec

NFSv4: Reduce the footprint of the idmapper
commit d073e9b541e1ac3f52d72c3a153855d9a9ee3278


Whether or not these get applied in the stable tree (which would be
nice if it can be justified), I think we definitely want them in
Debian, so cloning the bug to track that.


I agree! (but I'm biased).

Regards,

Rik

--
Rik Theys
Senior System Engineer
KU Leuven - Dept. Elektrotechniek (ESAT)
Kasteelpark Arenberg 10
B-3001 LEUVEN - HEVERLEE
Tel.: +32(0)16/32.11.07

Any errors in spelling, tact or fact are transmission errors



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



Bug#670397: ITP: plug -- control Fender Mustang amplifiers

2012-04-25 Thread Fabian Greffrath

Am 25.04.2012 10:52, schrieb Alessio Treglia:

Yes, I've just taken upstream name.
How does mustang-plug sound?


IMHO better!



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



Bug#670322: apt: hiding foreign arch from APT::Architectures, using with [arch=] only, only partly works

2012-04-25 Thread Goswin von Brederlow
Yann Dirson ydir...@free.fr writes:

 Package: apt
 Version: 0.8.15.10
 Severity: normal

 (found no changelog entry for 0.9.x looking like this problem)

 I have many sources.list entries, and only want selected ones to take
 armel packages into account.  The new [arch=] tag seems tailored for
 this, but then, APT::Architectures defaults to all foreign archs

This works the other way around. arch=... is to limit the architectures.
The default is ment to be all APT::Architectures.

 -- /etc/apt/sources.list --

deb [ arch=amd64 ] ftp://ftp.debian.org/debian testing main contrib non-free
...
deb ftp://ftp.debian.org/debian squeeze main

deb [ arch=amd64 ] ftp://ftp.debian.org/debian testing main contrib non-free
...
deb ftp://ftp.debian.org/debian squeeze main

MfG
Goswin



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



Bug#664257: multiarch tuples are not documented/defined

2012-04-25 Thread Goswin von Brederlow
Ian Jackson ijack...@chiark.greenend.org.uk writes:

 Matthias Klose writes (Bug#664257: multiarch tuples are not 
 documented/defined):
 On 18.04.2012 05:16, Jonathan Nieder wrote:
  I think the Multiarch/Tuples wiki page is now in a sane state, though
  as always it could presumably be improved even more.  I think future
  required improvements can be tracked separately.  Do you mind if this
  bug is closed?
 
 lowered the severity. IMO it should stay open until multiarch is incorporated
 into the FHS and/or the LSB.

 We do not normally keep a bug open in the Debian BTS that cannot be
 fixed in Debian.

 What change to the Debian operating system, or to processes,
 documents, infrastructure or organisational arrangements, maintained
 by the Debian project, is this bug requesting ?

 Ian.

Aren't the Upstream and Forwarded tags exactly for this situation?

MfG
Goswin



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



Bug#669378: asterisk: init logger-reload not working

2012-04-25 Thread Tzafrir Cohen
On Thu, Apr 19, 2012 at 02:31:21PM +0100, Tristan Hill wrote:
 Package: asterisk
 Version: 1:1.8.8.2~dfsg-1
 
 I find that /etc/init.d/asterisk logger-reload isn't working.

It seems that the 'status' check was not working properly:

 status() {
-   status_of_proc $DAEMON $DESC  return 0 || return $?
+   status_of_proc -p $PIDFILE $NAME $DESC  return 0 || return $?
 }


To be included in the next upload.

-- 
   Tzafrir Cohen
icq#16849755  jabber:tzafrir.co...@xorcom.com
+972-50-7952406   mailto:tzafrir.co...@xorcom.com
http://www.xorcom.com  iax:gu...@local.xorcom.com/tzafrir



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



Bug#657078: patches to reduce the footprint of the nfs4 idmapper

2012-04-25 Thread Rik Theys

Hi,

On 04/24/2012 11:16 PM, Jeff Layton wrote:

On Tue, 24 Apr 2012 13:35:13 -0700
Greg KHgre...@linuxfoundation.org  wrote:


On Tue, Apr 24, 2012 at 10:22:50PM +0200, Rik Theys wrote:

Hi,

I'm experiencing the following Red Hat bug[1] on RHEL and also on
Debian.

I've noticed Fedora has started to ship an update with two patches
that reduce the footprint of the nfs4 id mapper which should prevent
this (or seriously limit the chance).

NFSv4: Further reduce the footprint of the idmapper
commit 685f50f9188ac1e8244d0340a9d6ea36b6136cec

NFSv4: Reduce the footprint of the idmapper
commit d073e9b541e1ac3f52d72c3a153855d9a9ee3278

I believe Red Hat will have those patches in an upcoming RHEL 6.x
release.

I'm looking for feedback on if it would be possible to include
these patches in a stable 3.2 update (and/or 3.0.x) so they
will become part of the upcoming Debian 7.0 kernel (which is based
on 3.2).

Have these patches made it into the 3.3 and/or 3.4-rc kernels?


Both of these are in the 3.4-rc1 kernel release.

As for stable kernels, I don't see how they fit the rules outlined in
Documentation/stable_kernel_rules.txt, do you?



There have been reports on linux-nfs of problems allocating this memory
in the past.

I suspect most of those occurred when people attempt to do an NFS mount
after memory is already heavily fragmented. This allocation was
fricking huge before those patches...

That said, I'm not sure that really qualifies as stable-kernel fodder...



After rereading the stable_kernel_rules.txt I agree that this might be 
too big for a stable update.


I would still like to see these patches in the Debian 3.2 kernel (bug 
report in cc).


Do you consider these patches something distributions could/should 
cherry pick for their kernels? I see from the RHEL 6.3 beta kernel 
(2.6.32-262.el6) changelog that it includes these fixes?


Maybe you and/or Trond could comment on whether you are aware of any 
dependencies or further fixes likely to be needed?


Regards,

Rik



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



Bug#670397: ITP: plug -- control Fender Mustang amplifiers

2012-04-25 Thread Neil Williams
On Wed, 25 Apr 2012 10:31:55 +0200
Alessio Treglia ales...@debian.org wrote:

 Package: wnpp
 Severity: wishlist
 Owner: Alessio Treglia ales...@debian.org
 
 * Package name: plug

That name appears much too generic.

mustang-plug ?

-- 


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



pgp03jcUA9pF1.pgp
Description: PGP signature


Bug#670397: ITP: plug -- control Fender Mustang amplifiers

2012-04-25 Thread Alessio Treglia
On Wed, Apr 25, 2012 at 11:21 AM, Neil Williams codeh...@debian.org wrote:
 That name appears much too generic.

 mustang-plug ?

Yep, already renamed, thanks!

-- 
Alessio Treglia          | www.alessiotreglia.com
Debian Developer         | ales...@debian.org
Ubuntu Core Developer    | quadris...@ubuntu.com
0416 0004 A827 6E40 BB98 90FB E8A4 8AE5 311D 765A



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



Bug#659111: Regarding NFSv4: Save the owner/group name string when doing open

2012-04-25 Thread Rik Theys

Hi,

On 04/25/2012 03:14 AM, Ben Hutchings wrote:

On Tue, 2012-04-24 at 22:04 +0200, Rik Theys wrote:

Hi,

I'm experiencing the bug described in the Debian[1] and Red Hat[2] bug tracker.

This bug seems to have been fixed in the 3.3 kernel with your commit
6926afd1925a54a13684ebe05987868890665e2b:

From: Trond Myklebusttrond.mykleb...@netapp.com
Date: Sat, 7 Jan 2012 13:22:46 -0500
Subject: NFSv4: Save the owner/group name string when doing open

commit 6926afd1925a54a13684ebe05987868890665e2b upstream.

...so that we can do the uid/gid mapping outside the asynchronous RPC
context.
This fixes a bug in the current NFSv4 atomic open code where the client
isn't able to determine what the true uid/gid fields of the file are,
(because the asynchronous nature of the OPEN call denies it the ability
to do an upcall) and so fills them with default values, marking the
inode as needing revalidation.
Unfortunately, in some cases, the VFS will do some additional sanity
checks on the file, and may override the server's decision to allow
the open because it sees the wrong owner/group fields.

Signed-off-by: Trond Myklebusttrond.mykleb...@netapp.com
Signed-off-by: Jonathan Niederjrnie...@gmail.com

It seems Red Hat will apply the patch in their RHEL 6.3 kernel. I would
also like to see this patch included in the upcoming Debian 7.0 kernel,
which is based on kernel 3.2.

I would like to propose this patch for a stable kernel update
(3.2.x and/or 3.0.x). Trond, do you agree that this patch (alone)
can/should be part of a stable update? The Debian maintainers would
prefer to see the patch be part of a stable update to consider it.


Note that this is not a *requirement* for the Debian kernel package.
But we do prefer to get backported bug fixes reviewed and tested through
the stable process, and shared with other distributions in this way.

Now that I've finally had a look at this patch - and I'm sorry it's
taken this long, but I do have a *lot* of different bugs and patches to
look at:


No problem, thanks for your time.



- With my 3.2-stable maintainer hat on, I'm going to follow Greg's
judgement and say this isn't suitable.


OK



- With my Debian kernel team hat on, I think this is probably OK, but
I'd like to see Trond comment on whether he's aware of any dependencies
or further fixes likely to be needed.


Thank you for considering this patch. Hopefully Trond can comment on 
this and provide you with any information about possible additional fixes.


Regards,

Rik



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



Bug#665452: [Pkg-openssl-devel] Bug#665452: openssl 1.0.0 breaks python-cloudfiles

2012-04-25 Thread Joar Wandborg
After some wiresharking I've came to the conclusion that it is the host
auth.api.rackspacecloud.com:443 that is requested.

This is the output of a command similar to those mentioned before in this
bug:


joar@lina:~/git/mediagoblin$ openssl s_client -connect 
auth.api.rackspacecloud.com:443
CONNECTED(0004)
depth=0 C = US, O = auth.api.rackspacecloud.com, OU = GT47404894, OU = See 
www.geotrust.com/resources/cps (c)09, OU = Domain Control Validated - 
QuickSSL(R), CN = auth.api.rackspacecloud.com
verify error:num=20:unable to get local issuer certificate
verify return:1
depth=0 C = US, O = auth.api.rackspacecloud.com, OU = GT47404894, OU = See 
www.geotrust.com/resources/cps (c)09, OU = Domain Control Validated - 
QuickSSL(R), CN = auth.api.rackspacecloud.com
verify error:num=27:certificate not trusted
verify return:1
depth=0 C = US, O = auth.api.rackspacecloud.com, OU = GT47404894, OU = See 
www.geotrust.com/resources/cps (c)09, OU = Domain Control Validated - 
QuickSSL(R), CN = auth.api.rackspacecloud.com
verify error:num=21:unable to verify the first certificate
verify return:1
---
Certificate chain
 0 s:/C=US/O=auth.api.rackspacecloud.com/OU=GT47404894/OU=See 
www.geotrust.com/resources/cps (c)09/OU=Domain Control Validated - 
QuickSSL(R)/CN=auth.api.rackspacecloud.com
   i:/C=US/O=Equifax/OU=Equifax Secure Certificate Authority
---
Server certificate
-BEGIN CERTIFICATE-
MIIDSDCCArGgAwIBAgIDC+cgMA0GCSqGSIb3DQEBBQUAME4xCzAJBgNVBAYTAlVT
MRAwDgYDVQQKEwdFcXVpZmF4MS0wKwYDVQQLEyRFcXVpZmF4IFNlY3VyZSBDZXJ0
aWZpY2F0ZSBBdXRob3JpdHkwHhcNMDkwNzEwMTEzNDU0WhcNMTQwNzExMDI1NzU5
WjCB0jELMAkGA1UEBhMCVVMxJDAiBgNVBAoTG2F1dGguYXBpLnJhY2tzcGFjZWNs
b3VkLmNvbTETMBEGA1UECxMKR1Q0NzQwNDg5NDExMC8GA1UECxMoU2VlIHd3dy5n
ZW90cnVzdC5jb20vcmVzb3VyY2VzL2NwcyAoYykwOTEvMC0GA1UECxMmRG9tYWlu
IENvbnRyb2wgVmFsaWRhdGVkIC0gUXVpY2tTU0woUikxJDAiBgNVBAMTG2F1dGgu
YXBpLnJhY2tzcGFjZWNsb3VkLmNvbTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkC
gYEA3RHT8usNdod+LpWCuGUPlHirMrqfbbpDdn5YJWEsnnCoH7JX0g0fLZXRsidF
XkE4wktgUeOLblbQN7pOXj/cEiiRwD9cUsUDKnkzBshTOVN91UGq36KUuC5PsmzO
T4Mx7747AdNRYA2G1oFZCgQDL9NGLp+ravl1gi2TAGwyyAsCAwEAAaOBrjCBqzAO
BgNVHQ8BAf8EBAMCBPAwHQYDVR0OBBYEFO+L8KgBgmIm8XOp1vHP12Y00sraMDoG
A1UdHwQzMDEwL6AtoCuGKWh0dHA6Ly9jcmwuZ2VvdHJ1c3QuY29tL2NybHMvc2Vj
dXJlY2EuY3JsMB8GA1UdIwQYMBaAFEjmaPkr0rKV10fYIyAQTzOYkJ/UMB0GA1Ud
JQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjANBgkqhkiG9w0BAQUFAAOBgQAgiQGt
u3sNBuEvxwFAUgDkEgXNz5gBH+Y1szcmpp2OxW1NWHYT31Fif/tB7d9qT8ssjr9G
uWC3sPqR/logqqE1zRWQIixaNvhX3bTUIPcxBTqVG+/HZRYJznhbWe5KCZ6Q9PpM
Q1p/YaYUhpmG6ROHfpBXugtpe6/dlTGgeQb4QA==
-END CERTIFICATE-
subject=/C=US/O=auth.api.rackspacecloud.com/OU=GT47404894/OU=See 
www.geotrust.com/resources/cps (c)09/OU=Domain Control Validated - 
QuickSSL(R)/CN=auth.api.rackspacecloud.com
issuer=/C=US/O=Equifax/OU=Equifax Secure Certificate Authority
---
No client certificate CA names sent
---
SSL handshake has read 1001 bytes and written 506 bytes
---
New, TLSv1/SSLv3, Cipher is RC4-SHA
Server public key is 1024 bit
Secure Renegotiation IS supported
Compression: NONE
Expansion: NONE
SSL-Session:
Protocol  : TLSv1.1
Cipher: RC4-SHA
Session-ID: D1E0F026A4954B03CAC3790825543A153CD06AE39C0571C6347756CACD12CE74
Session-ID-ctx: 
Master-Key: 
A1584B09A7125A765DB851C46E842090697CB5556FFB1733F35B493ED309586AB94577B3F237C5F66AC479F1236A5B6A
Key-Arg   : None
PSK identity: None
PSK identity hint: None
SRP username: None
Start Time: 1335346375
Timeout   : 300 (sec)
Verify return code: 21 (unable to verify the first certificate)
---
read:errno=0

Looks like the TLSv1.1 error you mentioned.

/Joar

On Mon, Apr 23, 2012 at 11:10:36PM +0200, Kurt Roeckx wrote:
 On Mon, Apr 23, 2012 at 09:16:34PM +0200, Joar Wandborg wrote:
  I get the following errors in python
  
  (mediagoblin)joar@lina:~/git/mediagoblin$ python
  Python 2.7.2+ (default, Oct  4 2011, 20:06:09) 
  [GCC 4.6.1] on linux2
  Type help, copyright, credits or license for more information.
   import cloudfiles
   conn = cloudfiles.get_connection(username='blah', api_key='dah')
 [...]
File /usr/lib/python2.7/ssl.py, line 296, in do_handshake
  self._sslobj.do_handshake()
  ssl.SSLError: [Errno 1] _ssl.c:503: error:14077102:SSL 
  routines:SSL23_GET_SERVER_HELLO:unsupported protocol
 
 I'm not sure how this is relavate to the bug report?  I will
 clearly need more details other than that it gives you an error,
 like what site are you trying to connect to, what protocol do you
 want to use?
 
 
 Kurt
 



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



Bug#670400: override: quvi:utils/optional

2012-04-25 Thread Ansgar Burchardt
Package: ftp.debian.org

On 04/25/2012 10:52 AM, Debian FTP Masters wrote:
 quvi_0.4.2-1_amd64.deb: package says priority is optional, override says 
 extra.

Please change the priority of quvi to optional.  There is no reason for
it to be extra and clive (utils/optional) will depend on it in the
future (it already does in experimental).

Regards,
Ansgar



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



Bug#667902: RFS: downtimed/0.5-2

2012-04-25 Thread Arno Töll
Hi,

is there still anything left to come from you?

-- 
with kind regards,
Arno Töll
IRC: daemonkeeper on Freenode/OFTC
GnuPG Key-ID: 0x9D80F36D



signature.asc
Description: OpenPGP digital signature


Bug#670320: ruby-locale: fails to get available locale

2012-04-25 Thread tv.deb...@googlemail.com

Hi,

seeing the same problem here. As a workaround I put a script to export 
LANGUAGE= to it's correct value in ~/.kde/env/ as recommended in [1]. 
It works with kde terminal emulator like Konsole or Yakuake.



[1] http://userbase.kde.org/Session_Environment_Variables/en



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



Bug#665672: pidgin-sipe: diff for NMU version 1.11.2-1.2

2012-04-25 Thread Mònica Ramírez Arceda
tags 665672 + patch
tags 665672 + pending
tags 667323 + patch
tags 667323 + pending
thanks

Dear maintainer,

I've prepared an NMU for pidgin-sipe (versioned as 1.11.2-1.2) and
uploaded it to DELAYED/5. Please feel free to tell me if I
should delay it longer.

Regards.
diff -Nru pidgin-sipe-1.11.2/debian/changelog pidgin-sipe-1.11.2/debian/changelog
--- pidgin-sipe-1.11.2/debian/changelog	2011-12-23 15:34:16.0 +0100
+++ pidgin-sipe-1.11.2/debian/changelog	2012-04-25 11:27:38.0 +0200
@@ -1,3 +1,14 @@
+pidgin-sipe (1.11.2-1.2) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * update-glib-2.32.patch: Update to use glib 2.32. Replace g_strcasecmp and 
+g_strncasecmp with g_utf8_casefold and g_utf8_collate.
+(Closes: #665672)
+  * gcc-4.7.patch: Fix -Werror=maybe-uninitialized to build with gcc-4.7.
+(Closes: #667323)
+
+ -- Mònica Ramírez Arceda mon...@debian.org  Thu, 19 Apr 2012 16:46:23 +0200
+
 pidgin-sipe (1.11.2-1.1) unstable; urgency=low
 
   * Non-maintainer upload.
diff -Nru pidgin-sipe-1.11.2/debian/patches/gcc-4.7.patch pidgin-sipe-1.11.2/debian/patches/gcc-4.7.patch
--- pidgin-sipe-1.11.2/debian/patches/gcc-4.7.patch	1970-01-01 01:00:00.0 +0100
+++ pidgin-sipe-1.11.2/debian/patches/gcc-4.7.patch	2012-04-25 11:24:24.0 +0200
@@ -0,0 +1,16 @@
+Description: Fix -Werror=maybe-uninitialized to build with gcc-4.7.
+Bug-Debian: http://bugs.debian.org/667323
+Author: Mònica Ramírez Arceda mon...@debian.org
+Last-Update: 2012-04-25
+
+--- a/src/core/sipe-cal.c
 b/src/core/sipe-cal.c
+@@ -664,7 +664,7 @@
+ 	const char* free_busy;
+ 	int ret = SIPE_CAL_NO_DATA;
+ 	time_t state_since;
+-	int index;
++	int index = 0;
+ 
+ 	if (!buddy || !buddy-cal_start_time || !buddy-cal_granularity) {
+ 		SIPE_DEBUG_INFO(sipe_cal_get_status: no calendar data1 for %s, exiting,
diff -Nru pidgin-sipe-1.11.2/debian/patches/series pidgin-sipe-1.11.2/debian/patches/series
--- pidgin-sipe-1.11.2/debian/patches/series	2011-12-23 15:21:25.0 +0100
+++ pidgin-sipe-1.11.2/debian/patches/series	2012-04-25 11:03:13.0 +0200
@@ -1,2 +1,4 @@
 sipe-purple-2.8.0.patch
 fix-werror.patch
+update-glib-2.32.patch
+gcc-4.7.patch
diff -Nru pidgin-sipe-1.11.2/debian/patches/update-glib-2.32.patch pidgin-sipe-1.11.2/debian/patches/update-glib-2.32.patch
--- pidgin-sipe-1.11.2/debian/patches/update-glib-2.32.patch	1970-01-01 01:00:00.0 +0100
+++ pidgin-sipe-1.11.2/debian/patches/update-glib-2.32.patch	2012-04-25 11:25:08.0 +0200
@@ -0,0 +1,168 @@
+Description: Update to use glib 2.32.  
+ Replace g_strcasecmp and g_strncasecmp with g_utf8_casefold and g_utf8_collate.
+Bug-Debian: http://bugs.debian.org/665672
+Author: Mònica Ramírez Arceda mon...@debian.org
+Last-Update: 2012-04-20
+
+--- a/src/core/sipmsg.c
 b/src/core/sipmsg.c
+@@ -232,7 +232,8 @@
+ 
+ 		elem = entry-data;
+ 		while (keepers[i]) {
+-			if (!g_strcasecmp(elem-name, keepers[i])) {
++			if (!g_utf8_collate(g_utf8_casefold(elem-name, -1),
++g_utf8_casefold(keepers[i], -1))) {
+ keeper = TRUE;
+ break;
+ 			}
+@@ -431,7 +432,8 @@
+ 		if (elem  elem-name 
+ 		(sipe_strcase_equal(elem-name,WWW-Authenticate) ||
+ 		 sipe_strcase_equal(elem-name,Authentication-Info)) ) {
+-			if (!g_strncasecmp((gchar *)elem-value, name, name_len)) {
++			if (!g_utf8_collate(g_utf8_casefold ((gchar *)elem-value, name_len),
++g_utf8_casefold (name, name_len))) {
+ /* SIPE_DEBUG_INFO(elem-value: %s, elem-value); */
+ return elem-value;
+ 			}
+--- a/src/core/sip-transport.c
 b/src/core/sip-transport.c
+@@ -307,12 +307,12 @@
+ 		return;
+ 	}
+ 
+-	if (!g_strncasecmp(hdr, NTLM, 4)) {
++	if (!g_utf8_collate(g_utf8_casefold(hdr, 4), NTLM)){
+ 		SIPE_DEBUG_INFO_NOFORMAT(fill_auth: type NTLM);
+ 		auth-type = AUTH_TYPE_NTLM;
+ 		hdr += 5;
+ 		auth-nc = 1;
+-	} else	if (!g_strncasecmp(hdr, Kerberos, 8)) {
++	} else  if (!g_utf8_collate(g_utf8_casefold(hdr, 8), Kerberos)) {
+ 		SIPE_DEBUG_INFO_NOFORMAT(fill_auth: type Kerberos);
+ 		auth-type = AUTH_TYPE_KERBEROS;
+ 		hdr += 9;
+@@ -493,7 +493,8 @@
+ 	key = g_strdup_printf(%s%s, call_id, cseq);
+ 	while (transactions) {
+ 		struct transaction *trans = transactions-data;
+-		if (!g_strcasecmp(trans-key, key)) {
++		if (!g_utf8_collate(g_utf8_casefold(trans-key, -1),
++g_utf8_casefold(key, -1))) {
+ 			g_free(key);
+ 			return trans;
+ 		}
+@@ -1056,7 +1057,7 @@
+ 			{
+ gchar *redirect = parse_from(sipmsg_find_header(msg, Contact));
+ 
+-if (redirect  (g_strncasecmp(sip:, redirect, 4) == 0)) {
++if (redirect  (g_utf8_collate(sip:, g_utf8_casefold(redirect, 4)) == 0)) {
+ 	gchar **parts = g_strsplit(redirect + 4, ;, 0);
+ 	gchar **tmp;
+ 	gchar *hostname;
+@@ -1072,8 +1073,8 @@
+ 	while (parts[i]) {
+ 		tmp = g_strsplit(parts[i], =, 0);
+ 		if (tmp[1]) {
+-			if (g_strcasecmp(transport, tmp[0]) == 0) {
+-if 

Bug#670341: proofgeneral: help mode access to source code

2012-04-25 Thread Hendrik Tews
Kevin Ryde writes:
   Date: Wed, 25 Apr 2012 08:21:58 +1000
   Subject: Bug#670341: proofgeneral: help mode access to source code
   
Thanks for the hint! A fix is on the way.

Bye,

Hendrik



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



Bug#660632: syntax file dircolors.vim - add keywords

2012-04-25 Thread Bram Moolenaar

Nikolai -

 OK, looks good.
 
 Bram, could you please apply the attached patch?

Thanks. I also updated the date in the header.  Last change was 6 years
ago :-).

- Bram

-- 
Save the plankton - eat a whale.

 /// Bram Moolenaar -- b...@moolenaar.net -- http://www.Moolenaar.net   \\\
///sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\  an exciting new programming language -- http://www.Zimbu.org///
 \\\help me help AIDS victims -- http://ICCF-Holland.org///



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



Bug#668172: Created upstream bug 49118

2012-04-25 Thread Eric Valette

Maybe this should be added by an upstream reference



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



Bug#670401: aptitude: segmentation fault after (during?) update

2012-04-25 Thread Salvo Tomaselli
Package: aptitude
Version: 0.6.6-1+b1
Severity: normal

Dear Maintainer,
launching aptitude update,

Get: 23 http://ftp.se.debian.org experimental/main amd64 
2012-04-25-0814.20.pdiff [716 B]
Get: 24 http://ftp.se.debian.org sid/main 2012-04-25-0814.20.pdiff [4368 B] 
Get: 25 http://ftp.se.debian.org experimental/non-free amd64 Packages [3238 B]  
  
Get: 26 http://ftp.se.debian.org experimental/main 2012-04-25-0814.20.pdiff 
[298 B]   
Ign http://ftp.sunet.se unstable/main Translation-it_IT  
Ign http://ftp.sunet.se unstable/main Translation-it
Ign http://ftp.sunet.se unstable/main Translation-en
Get: 27 http://ftp.se.debian.org sid/non-free 2012-04-25-0814.20.pdiff [598 B]
Get: 28 http://ftp.se.debian.org sid/main amd64 2012-04-25-0814.20.pdiff [4892 
B]
Scaricato 643 kB in 4s (154 kB/s)   
E: Method rred has died unexpectedly!
E: Il sottoprocesso rred ha ricevuto un segmentation fault.


-- Package-specific info:
Terminal: xterm
$DISPLAY is set.
which aptitude: /usr/bin/aptitude

aptitude version information:
aptitude 0.6.6 compiled at Apr 16 2012 22:17:55
Compiler: g++ 4.6.3
Compiled against:
  apt version 4.12.0
  NCurses version 5.9
  libsigc++ version: 2.2.10
  Ept support enabled.
  Gtk+ support disabled.
  Qt support disabled.

Current library versions:
  NCurses version: ncurses 5.9.20110404
  cwidget version: 0.5.16
  Apt version: 4.12.0

aptitude linkage:
linux-vdso.so.1 =  (0x7fffb1bff000)
libapt-pkg.so.4.12 = /usr/lib/x86_64-linux-gnu/libapt-pkg.so.4.12 
(0x7fe24bf7)
libncursesw.so.5 = /lib/x86_64-linux-gnu/libncursesw.so.5 
(0x7fe24bd41000)
libtinfo.so.5 = /lib/x86_64-linux-gnu/libtinfo.so.5 
(0x7fe24bb18000)
libsigc-2.0.so.0 = /usr/lib/libsigc-2.0.so.0 (0x7fe24b913000)
libcwidget.so.3 = /usr/lib/libcwidget.so.3 (0x7fe24b613000)
libept.so.1.0.5.4.12 = /usr/lib/libept.so.1.0.5.4.12 
(0x7fe24b3c)
libxapian.so.22 = /usr/lib/libxapian.so.22 (0x7fe24afc3000)
libz.so.1 = /usr/lib/x86_64-linux-gnu/libz.so.1 (0x7fe24adad000)
libsqlite3.so.0 = /usr/lib/x86_64-linux-gnu/libsqlite3.so.0 
(0x7fe24ab05000)
libboost_iostreams.so.1.49.0 = /usr/lib/libboost_iostreams.so.1.49.0 
(0x7fe24a8ec000)
libpthread.so.0 = /lib/x86_64-linux-gnu/libpthread.so.0 
(0x7fe24a6d)
libstdc++.so.6 = /usr/lib/x86_64-linux-gnu/libstdc++.so.6 
(0x7fe24a3c8000)
libm.so.6 = /lib/x86_64-linux-gnu/libm.so.6 (0x7fe24a146000)
libgcc_s.so.1 = /lib/x86_64-linux-gnu/libgcc_s.so.1 
(0x7fe249f3)
libc.so.6 = /lib/x86_64-linux-gnu/libc.so.6 (0x7fe249ba8000)
libutil.so.1 = /lib/x86_64-linux-gnu/libutil.so.1 (0x7fe2499a5000)
libdl.so.2 = /lib/x86_64-linux-gnu/libdl.so.2 (0x7fe2497a1000)
libbz2.so.1.0 = /lib/x86_64-linux-gnu/libbz2.so.1.0 
(0x7fe24959)
libuuid.so.1 = /lib/x86_64-linux-gnu/libuuid.so.1 (0x7fe24938b000)
librt.so.1 = /lib/x86_64-linux-gnu/librt.so.1 (0x7fe249182000)
/lib64/ld-linux-x86-64.so.2 (0x7fe24c2c1000)

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

Kernel: Linux 3.3.2a (SMP w/4 CPU cores)
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 aptitude depends on:
ii  libapt-pkg4.120.9.2
ii  libboost-iostreams1.49.0  1.49.0-2
ii  libc6 2.13-30
ii  libcwidget3   0.5.16-3.2
ii  libept1.4.12  1.0.6.1
ii  libgcc1   1:4.7.0-4
ii  libncursesw5  5.9-6
ii  libsigc++-2.0-0c2a2.2.10-0.1
ii  libsqlite3-0  3.7.11-2
ii  libstdc++64.7.0-4
ii  libtinfo5 5.9-6
ii  libxapian22   1.2.8-1
ii  zlib1g1:1.2.6.dfsg-2

Versions of packages aptitude recommends:
ii  apt-xapian-indexnone
ii  aptitude-doc-en | aptitude-doc  none
ii  libparse-debianchangelog-perl   1.2.0-1
ii  sensible-utils  0.0.6

Versions of packages aptitude suggests:
ii  debtags  none
ii  tasksel  3.09

-- 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#670379: [Aptitude-devel] Bug#670379: aptitude: Crash when downloading release not in sources.list

2012-04-25 Thread Axel Beckert
tag 670379 + confirmed
kthxbye

Igor FLEDERICK wrote:
 Package: aptitude
 Version: 0.6.6-1+b1
 Severity: important
 Tags: upstream
 
 Dear Maintainer,
 
 Here is the only entry I have in my sources.list:
 deb http://ftp.fr.debian.org/debian/ sid main
 
 When I try to download a package from a release which is not in
 sources.list, I get a segfault :
 $ aptitude download -t stable libc6
 Segmentation fault
 $ aptitude download -t testing libc6
 Segmentation fault

I also get an error message before the segfault:

# aptitude download -t oldstable foobar
E: The value 'oldstable' is invalid for APT::Default-Release as such a release 
is not available in the sources
Segmentation fault  
# 

It doesn't seem to make a difference if the package given on the
commandline really exists.

Regards, Axel
-- 
 ,''`.  |  Axel Beckert a...@debian.org, http://people.debian.org/~abe/
: :' :  |  Debian Developer, ftp.ch.debian.org Admin
`. `'   |  1024D: F067 EA27 26B9 C3FC 1486  202E C09E 1D89 9593 0EDE
  `-|  4096R: 2517 B724 C5F6 CA99 5329  6E61 2FF9 CD59 6126 16B5



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



Bug#670402: multistrap: [INTL:pt] Updated Portuguese translation for manpage

2012-04-25 Thread Traduz - Portuguese Translation Team

Package: multistrap
Version: 2.1.18
Tags: l10n, patch
Severity: wishlist

Updated Portuguese translation for multistrap's manpage.
Translator: Américo Monteiro a_monte...@netcabo.pt
Feel free to use it.

For translation updates please contact 'Last Translator' or the
Portuguese Translation Team traduz _at_ debianpt.org.


--
Melhores cumprimentos/Best regards,

Traduz! - Portuguese Translation Team


pt.po.gz
Description: GNU Zip compressed data


Bug#669598: RFS: python-django-djblets/0.6.17-1 [ITP] -- Collection of useful extensions for Django

2012-04-25 Thread Jakub Wilk

* Dmitry Nezhevenko d...@dion.org.ua, 2012-04-25, 11:46:

Yes. Will fix. But how can I handle these js files? There are actually
three versions of minified jQuery:

jquery-1.3.2.min.js


This one is jQuery...


jquery-ui-1.6rc2.min.js
jquery-ui-1.6rc5.min.js


...and these two is jQuery UI (a user interface library for jQuery). Not 
sure why two versions are needed. I don't see any reference to 1.6rc2 in 
the code.


If it will work, is it enough to just not use/remove these embedded 
versions? Or I should repack upstream tarball?


You have the following options:
1) Repack the tarball.
2) Include the source somewhere in debian/ (in that case please mention 
the fact in the copyright file; otherwise ftp-masters might miss it 
while reviewing the .orig.tar!).

3) Ask upstream to provide the source in their tarballs.

Option 3 is preferable, but it also might be the hardest one.

jQuery UI has also a different copyright holder than jQuery proper, so 
if you choose 2) to 3), you need to reflect that in the copyright file.


Oh, and looking again at jQuery UI, it's even worse than just missing 
source: it's undistributable. The license is GPL or MIT. The GPL 
requirements are obviously not satisfied. The MIT requirements (The 
above copyright notice and this permission notice shall be included in 
all copies or substantial portions of the Software.) are not satisfied 
either.


Upstream provides a test suite. Please run it at build time, against 
all supported Python versions.
Some of these tests are known-to-fail outside of specially configured 
environment. How this should be handled?


Is it feasible to create such specially configured environment in 
debian/rules? If yes, do it. :)


--
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#669607: [PATCH] fdupes: Helping to update to packaging format 3.0

2012-04-25 Thread Sandro Tosi
On Fri, Apr 20, 2012 at 14:04,  jari.aa...@cante.net wrote:
 I had some free time; see attached patch to migrate to new package
 format[*]. Note that all files in debian/patches/* are canocalized to
 *.patch.

thanks for the patch, but.. have you tried to build the package after
the conversion? because I got:

dpkg-source: error: expected [ +-] at start of line 141 of diff
`fdupes-1.50-PR2/debian/patches/50-bts284274-hardlinkreplace.patch'
dpkg-source: info: applying 50-bts284274-hardlinkreplace.patch
dpkg-buildpackage: error: dpkg-source -i -I --before-build
fdupes-1.50-PR2 gave error exit status 25
debuild: fatal error at line 1350:
dpkg-buildpackage -rfakeroot -D -us -uc -i -I failed


-- 
Sandro Tosi (aka morph, morpheus, matrixhasu)
My website: http://matrixhasu.altervista.org/
Me at Debian: http://wiki.debian.org/SandroTosi



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



Bug#670403: aptitude: FTBFS: configure: error: Can't figure out where Google Mock lives

2012-04-25 Thread Daniel Hartwig
Source: aptitude
Version: 0.6.6-1
Severity: serious
Tags: pending

configure: error: Can't figure out where Google Mock lives; either
install the google-mock package or place the library in the link path

Fix already committed.



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



Bug#670404: apt-listbugs: apt-get can't install or remove things

2012-04-25 Thread Salvo Tomaselli
Package: apt-listbugs
Version: 0.1.6
Severity: critical
Justification: breaks unrelated software

Dear Maintainer,
running aptitude install or remove or upgrade i get that

/usr/lib/ruby/vendor_ruby/locale.rb:239:in `collect_candidates': undefined 
method `size' for nil:NilClass (NoMethodError)
from /usr/lib/ruby/vendor_ruby/locale.rb:222:in `candidates'
from /usr/lib/ruby/1.8/gettext/runtime/textdomain_manager.rb:78:in 
`each_textdomains'
from /usr/lib/ruby/1.8/gettext/runtime/textdomain_manager.rb:102:in 
`translate_singluar_message'
from /usr/lib/ruby/1.8/gettext.rb:128:in `_'
from /usr/share/apt-listbugs/apt-listbugs/logic.rb:324
from /usr/sbin/apt-listbugs:258:in `require'
from /usr/sbin/apt-listbugs:258
E: Il sottoprocesso /usr/sbin/apt-listbugs apt || exit 10 ha restituito un 
codice d'errore (10)
E: Failure running script /usr/sbin/apt-listbugs apt || exit 10


i tried to remove apt-listbugs but apparently i can't.
This is very severe since it has to be solved manually (because it prevents 
automatic upgrades)

regards

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

Kernel: Linux 3.3.2a (SMP w/4 CPU cores)
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 apt-listbugs depends on:
ii  apt0.9.2
ii  libdpkg-ruby1.80.3.8
ii  libgettext-ruby1.8 2.1.0-2.1
ii  libruby1.8 [libzlib-ruby1.8]   1.8.7.358-2
ii  ruby-debian [libdpkg-ruby1.8]  0.3.8+b1
ii  ruby-httpclient2.2.4-1
ii  ruby-xmlparser 0.7.2-1
ii  ruby1.81.8.7.358-2

apt-listbugs recommends no packages.

Versions of packages apt-listbugs suggests:
ii  chromium [www-browser]   18.0.1025.151~r130497-1
ii  debianutils  4.3
ii  konqueror [www-browser]  4:4.7.4-1
ii  links2 [www-browser] 2.6-1
ii  opera [www-browser]  11.62.1347
ii  rekonq [www-browser] 0.8.1-1
ii  reportbug6.3.1

-- 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#670405: ekiga: Ekiga crashes on startup

2012-04-25 Thread Alberto Garcia
Package: ekiga
Version: 3.2.7-4.2
Severity: grave
Justification: renders package unusable

Since a few weeks ago, Ekiga crashes on startup (shortly after showing
the main window) and I cannot use it at all. It doesn't seem to happen
100% of the times, though, but the problem is very easy to reproduce.

Here's the output from GDB:

$ gdb ekiga
GNU gdb (GDB) 7.4-debian
Copyright (C) 2012 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later http://gnu.org/licenses/gpl.html
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type show copying
and show warranty for details.
This GDB was configured as i486-linux-gnu.
For bug reporting instructions, please see:
http://www.gnu.org/software/gdb/bugs/...
Reading symbols from /usr/bin/ekiga...(no debugging symbols found)...done.
(gdb) r
Starting program: /usr/bin/ekiga 
[Thread debugging using libthread_db enabled]
Using host libthread_db library 
/lib/i386-linux-gnu/i686/cmov/libthread_db.so.1.
[New Thread 0xf4494b70 (LWP 468)]
[New Thread 0xef91fb70 (LWP 469)]
[New Thread 0xef8deb70 (LWP 470)]
[New Thread 0xef89db70 (LWP 471)]
[New Thread 0xef85cb70 (LWP 472)]
ALSA lib conf.c:1220:(parse_def) show is not a compound
ALSA lib conf.c:1686:(snd_config_load1) _toplevel_:24:26:Unexpected char
ALSA lib conf.c:3406:(config_file_open) /usr/share/alsa/pulse-alsa.conf may be 
old or corrupted: consider to remove or fix it
[New Thread 0xef6ffb70 (LWP 473)]
[New Thread 0xef6beb70 (LWP 474)]
[New Thread 0xef67db70 (LWP 475)]
[New Thread 0xef63cb70 (LWP 476)]
[New Thread 0xef5fbb70 (LWP 477)]
[New Thread 0xef58ab70 (LWP 478)]
 osutils.cxx(2275)  PTLib   Possible deadlock in read/write mutex:
  thread-id=4016827248 (0xef6beb70), readers=1, writers=0
  thread-id=4103559328 (0xf49758a0), readers=0, writers=1

[Thread 0xef5fbb70 (LWP 477) exited]

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0xef67db70 (LWP 475)]
0xf6f1205e in PStringOptions::SetAt(PCaselessString const, PString const) () 
from /usr/lib/libopal.so.3.10.4
(gdb) bt
#0  0xf6f1205e in PStringOptions::SetAt(PCaselessString const, PString const) 
() from /usr/lib/libopal.so.3.10.4
#1  0xf6fa9506 in PStringOptions::SetAt(char const*, PString const) () from 
/usr/lib/libopal.so.3.10.4
#2  0xf73996f8 in SIPMIMEInfo::SetContact(PString const) () from 
/usr/lib/libopal.so.3.10.4
#3  0xf736b7f2 in SIPEndPoint::AdjustToRegistration(SIP_PDU, OpalTransport 
const, SIPConnection const*) ()
   from /usr/lib/libopal.so.3.10.4
#4  0xf739f6a6 in SIP_PDU::SendResponse(OpalTransport, SIP_PDU, SIPEndPoint*) 
const () from /usr/lib/libopal.so.3.10.4
#5  0xf73a7bb6 in SIPResponse::Send(OpalTransport, SIP_PDU const) () from 
/usr/lib/libopal.so.3.10.4
#6  0xf7366ff3 in SIPEndPoint::OnReceivedOPTIONS(OpalTransport, SIP_PDU) () 
from /usr/lib/libopal.so.3.10.4
#7  0xf736472c in SIPEndPoint::OnReceivedConnectionlessPDU(OpalTransport, 
SIP_PDU*) () from /usr/lib/libopal.so.3.10.4
#8  0xf7363f43 in SIPEndPoint::OnReceivedPDU(OpalTransport, SIP_PDU*) () from 
/usr/lib/libopal.so.3.10.4
#9  0xf73625e1 in SIPEndPoint::HandlePDU(OpalTransport) () from 
/usr/lib/libopal.so.3.10.4
#10 0xf73614d0 in SIPEndPoint::NewIncomingConnection(OpalTransport*) () from 
/usr/lib/libopal.so.3.10.4
#11 0xf6f254c3 in OpalEndPoint::ListenerCallback(PThread, int) () from 
/usr/lib/libopal.so.3.10.4
#12 0xf6f269aa in OpalEndPoint::ListenerCallback_PNotifier::Call(PObject, int) 
const () from /usr/lib/libopal.so.3.10.4
#13 0x081f3749 in PNotifierTemplateint::operator()(PObject, int) const ()
#14 0xf6f6ddd0 in OpalListener::ListenForConnections(PThread, int) () from 
/usr/lib/libopal.so.3.10.4
#15 0xf6f76762 in OpalListener::ListenForConnections_PNotifier::Call(PObject, 
int) const () from /usr/lib/libopal.so.3.10.4
#16 0x081f3749 in PNotifierTemplateint::operator()(PObject, int) const ()
#17 0xf683cf70 in PSimpleThread::Main() () from /usr/lib/libpt.so.2.10.4
#18 0xf680c5e9 in PThread::PX_ThreadStart(void*) () from 
/usr/lib/libpt.so.2.10.4
#19 0xf7da9c39 in start_thread (arg=0xef67db70) at pthread_create.c:304
#20 0xf612412e in clone () at ../sysdeps/unix/sysv/linux/i386/clone.S:130

Berto

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

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

Versions of packages ekiga depends on:
ii  evolution-data-server  3.2.2-1
ii  gconf-service  3.2.3-4
ii  gconf2 3.2.3-4
ii  libatk1.0-02.4.0-2
ii  libavahi-client3   0.6.31-1
ii  libavahi-common3   0.6.31-1
ii  libavahi-glib1 0.6.31-1
ii  libc6  2.13-27
ii  libdbus-glib-1-2   0.98-1
ii  libebook-1.2-123.2.2-1
ii  libedataserver-1.2-15  3.2.2-1
ii  libgcc11:4.7.0-3
ii  

Bug#669607: [PATCH] fdupes: Helping to update to packaging format 3.0

2012-04-25 Thread Sandro Tosi
fixed in 
http://anonscm.debian.org/gitweb/?p=users/morph/fdupes.git;a=commit;h=0c4ca02b85000c4ceebc6690726c1f067fec5153

On Wed, Apr 25, 2012 at 12:20, Sandro Tosi mo...@debian.org wrote:
 On Fri, Apr 20, 2012 at 14:04,  jari.aa...@cante.net wrote:
 I had some free time; see attached patch to migrate to new package
 format[*]. Note that all files in debian/patches/* are canocalized to
 *.patch.

 thanks for the patch, but.. have you tried to build the package after
 the conversion? because I got:

 dpkg-source: error: expected [ +-] at start of line 141 of diff
 `fdupes-1.50-PR2/debian/patches/50-bts284274-hardlinkreplace.patch'
 dpkg-source: info: applying 50-bts284274-hardlinkreplace.patch
 dpkg-buildpackage: error: dpkg-source -i -I --before-build
 fdupes-1.50-PR2 gave error exit status 25
 debuild: fatal error at line 1350:
 dpkg-buildpackage -rfakeroot -D -us -uc -i -I failed


 --
 Sandro Tosi (aka morph, morpheus, matrixhasu)
 My website: http://matrixhasu.altervista.org/
 Me at Debian: http://wiki.debian.org/SandroTosi



-- 
Sandro Tosi (aka morph, morpheus, matrixhasu)
My website: http://matrixhasu.altervista.org/
Me at Debian: http://wiki.debian.org/SandroTosi



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



Bug#669631: aptitude: Hash sum mismatch

2012-04-25 Thread Daniel Hartwig
reassign 669631 libapt-pkg4.12 0.9.1
retitle 669631 Hash Sum mismatch on local repo Packages
thanks

On 20 April 2012 23:51, Gilles Crevecoeur gilles.creveco...@gmail.com wrote:
 Package: aptitude
 Version: 0.6.6-1+b1
 Severity: important

 Hi,

 I have this message only with my local repositry on _every_update_ while apt-
 get works correctly:

        $ aptitude update
        ...
        W: Failed to fetch
 copy:/gil/debian/packages/dists/unstable/main/binary-i386/Packages  Hash Sum
 mismatch


Hash sum checking is handled by libapt-pkg, reassigning there.

 And i'm repeating myself: apt-get works correctly.
 But as i have noticed that, a update of  the apt package is pending.
 I don't known if this has an effect.

Does the more recent apt-get fail also?



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



Bug#670406: libcapi20-dev: Please provide capi_mod.h and capi_debug.h

2012-04-25 Thread Andreas Jochens
Package: libcapi20-dev
Version: 1:3.22+dfsg1-2
Severity: wishlist
Tags: patch

Please add the new include files capi_mod.h and capi_debug.h
to the list of installed files in debian/libcapi20-dev.install.

These include files are necessary to build the current version of mISDNuser
with CAPI support.

Kind regards

Andreas Jochens

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

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

Versions of packages libcapi20-dev depends on:
ii  libcapi20-3  1:3.22+dfsg1-2

libcapi20-dev recommends no packages.

Versions of packages libcapi20-dev suggests:
pn  isdnutils-doc  none

-- no debconf information
diff -ua isdnutils-3.22+dfsg1.orig/debian/libcapi20-dev.install isdnutils-3.22+dfsg1/debian/libcapi20-dev.install
--- isdnutils-3.22+dfsg1.orig/debian/libcapi20-dev.install	2012-04-15 03:25:51.0 +0200
+++ isdnutils-3.22+dfsg1/debian/libcapi20-dev.install	2012-04-25 11:54:35.629129046 +0200
@@ -1,6 +1,8 @@
 usr/include/capi20.h
 usr/include/capicmd.h
 usr/include/capiutils.h
+usr/include/capi_debug.h
+usr/include/capi_mod.h
 usr/lib/libcapi20*.a
 usr/lib/libcapi20*.so
 usr/lib/pkgconfig/capi20.pc


Bug#670407: override: libquvi-dev:libdevel/optional libquvi-doc:doc/optional libquvi7:libs/optional

2012-04-25 Thread Ansgar Burchardt
Package: ftp.debian.org

Please also change the priority to optional for the packages built by
libquvi.  There is no reason for them to be Priority: extra and there
are optional packages depending on them (cclive, grilo-plugins-0.1,
libtotem-plparser17 all depend on libquvi7).

Regards,
Ansgar



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



Bug#669616: [PATCH] sitecopy: Helping to update to packaging format 3.0

2012-04-25 Thread Sandro Tosi
Thanks for your work, but please rebase it on the git repository,
which contains changes not addressed in your patch.

On Fri, Apr 20, 2012 at 14:42,  jari.aa...@cante.net wrote:
 Package: sitecopy
 Severity: wishlist
 Tags: patch

 Hi Sandro,

 I had some free time; see attached patch to migrate to new package
 format. Note that all files in debian/patches/* are canocalized to
 *.patch.

 Thanks,
 Jari

 [*] The dpatch patch management system has been deprecated for some time. The
 Lintian currently flags use of dpatch packages as an error. The new 3.0
 packaging format is an improved version which, among other things, contains
 patch management built-in. For more information, see:
 http://wiki.debian.org/Projects/DebSrc3.0




-- 
Sandro Tosi (aka morph, morpheus, matrixhasu)
My website: http://matrixhasu.altervista.org/
Me at Debian: http://wiki.debian.org/SandroTosi



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



Bug#670408: pngnq: [patch] option -o - output filename

2012-04-25 Thread Marek Hobler
Package: pngnq
Version: 1.0-2
Severity: wishlist

Dear Maintainer,
As it's hard to reach upstream (only SF forum, which is quite old) -
please patch pngnq to allow using -o option. I need it to
use smush.py script (https://github.com/thebeansgroup/smush.py). 

Patch is avalible at:
https://github.com/thebeansgroup/smush.py/blob/master/contrib/pngnq-1.1.diff




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

Kernel: Linux 3.4.0-rc4 (SMP w/4 CPU cores)
Locale: LANG=pl_PL.UTF-8, LC_CTYPE=pl_PL.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages pngnq depends on:
ii  libc6   2.13-30
ii  libpng12-0  1.2.49-1
ii  zlib1g  1:1.2.6.dfsg-2

pngnq recommends no packages.

pngnq 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#670204: RFS: pylucene/3.5.0-1 ITA -- Python extension for accessing Java Lucene

2012-04-25 Thread Jakub Wilk

(I don't indend to sponsor this package.)

* Dmitry Nezhevenko d...@dion.org.ua, 2012-04-24, 02:01:

http://mentors.debian.net/debian/pool/main/p/pylucene/pylucene_3.5.0-1.dsc


I'd use debhelper (= 8) instead of debhelper (= 8.0.0).

Could you build a transitional package to allow smooth pylucene - 
python-lucene upgrades?


Please trap errors from make clean in debian/rules.

PYTHON_DEFAULT, USR_SHARE and PYTHON_SHAREDDIR variables appear to be 
unused.


Out of curiosity, what is NUM_FILES variable for?

AFAIK dh_installchangelog installs CHANGES file automatically, so the 
override is not needed.


--
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#670409: dh-make: emacsen-install.ex creates absolute symlinks violating policy section 10.5

2012-04-25 Thread Hendrik Tews
Package: dh-make
Version: 0.60
Severity: normal

According to Debian Policy 10.5 the symbolic links from the
ELCDIR to ELDIR should be relative links.

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

Kernel: Linux 2.6.32-5-amd64 (SMP w/2 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 dh-make depends on:
ii  debhelper 9.20120115~bpo60+1 helper programs for debian/rules
ii  dpkg-dev  1.15.8.12  Debian package development tools
ii  make  3.81-8 An utility for Directing compilati
ii  perl  5.10.1-17squeeze3  Larry Wall's Practical Extraction 

dh-make recommends no packages.

Versions of packages dh-make suggests:
ii  build-essential   11.5   Informational list of build-essent

-- no debconf information

-- 


Bye,

Hendrik



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



Bug#670410: w3m -6 should only use IPv6

2012-04-25 Thread Jens Link
Package: w3m
Version: 0.5.2-9
Severity: normal

From w3m help  -6   IPv6 only (-o dns_order=6)

When using a IPv4 only host, e.g. w3m -6 v4only.example.com on would expect an
error message but w3m falls back to IPv4. When using w3m for troubleshooting
and testing this will lead to some confusion.



-- System Information:
Debian Release: 6.0.4
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-0.bpo.2-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 w3m depends on:
ii  libc6  2.11.3-3  Embedded GNU C Library: Shared lib
ii  libgc1c2   1:6.8-1.2 conservative garbage collector for
ii  libgpm21.20.4-3.3General Purpose Mouse - shared lib
ii  libncurses55.7+20100313-5shared libraries for terminal hand
ii  libssl0.9.80.9.8o-4squeeze12 SSL shared libraries
ii  zlib1g 1:1.2.3.4.dfsg-3  compression library - runtime

Versions of packages w3m recommends:
ii  ca-certificates20090814+nmu3squeeze1 Common CA certificates

Versions of packages w3m suggests:
ii  man-db2.5.7-8on-line manual pager
ii  menu  2.1.44 generates programs menu for all me
pn  migemonone (no description available)
ii  mime-support  3.48-1 MIME files 'mime.types'  'mailcap
pn  w3m-elnone (no description available)
pn  w3m-img   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#669598: RFS: python-django-djblets/0.6.17-1 [ITP] -- Collection of useful extensions for Django

2012-04-25 Thread Dmitry Nezhevenko
On Wed, Apr 25, 2012 at 12:15:23PM +0200, Jakub Wilk wrote:
 You have the following options:
 1) Repack the tarball.
 2) Include the source somewhere in debian/ (in that case please
 mention the fact in the copyright file; otherwise ftp-masters might
 miss it while reviewing the .orig.tar!).
 3) Ask upstream to provide the source in their tarballs.
 
 Option 3 is preferable, but it also might be the hardest one.
 
 jQuery UI has also a different copyright holder than jQuery proper,
 so if you choose 2) to 3), you need to reflect that in the copyright
 file.
 
 Oh, and looking again at jQuery UI, it's even worse than just
 missing source: it's undistributable. The license is GPL or MIT. The
 GPL requirements are obviously not satisfied. The MIT requirements
 (The above copyright notice and this permission notice shall be
 included in all copies or substantial portions of the Software.)
 are not satisfied either.

Thanks a lot!. I've created bugreport in upstream tracker. And for now
I'll repack tarball and remove these files at all.

 Is it feasible to create such specially configured environment in
 debian/rules? If yes, do it. :)

Well. All failed tests are actually upstream issues. Some files required
for them are not present in orig tarball at all. I've reported this to
upstream. Also one test is probably outdated. For now I think that it's
better to not enable tests until they are fixed.

Thanks a lot for your feedback

-- 
WBR, Dmitry



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



Bug#670339: proofgeneral: debian-pkg-add-load-path-item

2012-04-25 Thread Hendrik Tews
Kevin Ryde writes:
   Date: Wed, 25 Apr 2012 08:17:38 +1000
   Subject: Bug#670339: proofgeneral: debian-pkg-add-load-path-item
   
Thanks for the report! Proof General changes load-path at various
places. I'll therefore first try to change the upstream version
such that all load-path additions are done by one function. This
bug will therefore stay open until the next upstream prerelease. 

Bye,

Hendrik



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



Bug#670367: pu: package coolkey/1.1.0-6

2012-04-25 Thread Jonathan Wiltshire

On 2012-04-25 01:10, A. Maitland Bottoms wrote:
I have good results with my own squeeze backport - but since I am new 
to the

stable proposed updates process I would like advice from the release
team on what
version number I should use to upload to stable. I'll post the 
package diff

to this bug soon...


Normal convention would be 1.1.0-6+squeeze1, if this is the first 
stable update for Squeeze. You should send a proposed debdiff and get an 
ACK before any uploads take place.


Thanks,


--
Jonathan Wiltshire, on behalf of but not for the release team
Debian Developer http://people.debian.org/~jmw

4096R: 0xD3524C51 / 0A55 B7C5 1223 3942 86EC  74C3 5394 479D D352 4C51




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



Bug#662679: quisk: insufficient dependency on python

2012-04-25 Thread Jakub Wilk

* Jakub Wilk jw...@debian.org, 2012-03-05, 17:57:
quisk has only unversioned dependency on python, despite providing 
Python modules only for a limited set of versions (currently: 2.6 and 
2.7). This is not a big deal for the moment, because 2.6 is already 
default version if squeeze and 2.8 likely will never exist.


However, if 2.6 stops being a supported Python version and then the 
package is rebuild, the dependency will become insufficient.


Adding ${python:Depends} to Depends in debian/control should fix this 
problem.


Any news on this bug?

--
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#670204: RFS: pylucene/3.5.0-1 ITA -- Python extension for accessing Java Lucene

2012-04-25 Thread Dmitry Nezhevenko
On Wed, Apr 25, 2012 at 12:55:47PM +0200, Jakub Wilk wrote:
 (I don't indend to sponsor this package.)

 Could you build a transitional package to allow smooth pylucene -
 python-lucene upgrades?

Is it needed at all? Looks like package is only present in sid:

http://packages.debian.org/search?keywords=pylucene

At the same time it's impossible to install it due to python2.5
dependency. I can do this if needed, but is it neede to add transition
package that nobody will use? 

 Out of curiosity, what is NUM_FILES variable for?

pylucene is python native python extension (.so) that is generated from
java sources. NUM_FILES specifies how much of .cpp files to generate.


Thanks for review. I'll fix issues.
 
-- 
WBR, Dmitry



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



Bug#670331: iotop: UnicodeEncodeError in ui.py

2012-04-25 Thread paul . szabo
Dear pabs,

 Can you check if this happens with the version on backports?

I could check that (and my proposed patch) if I could trigger the bug.
I suppose that running
  grep -q bad unicode some.large.file
or
  grep -q x large.file.with.bad unicode.name
would do the trick, but I do not know how to say bad unicode.
Can you help or suggest some references?

Thanks, Paul

Paul Szabo   p...@maths.usyd.edu.au   http://www.maths.usyd.edu.au/u/psz/
School of Mathematics and Statistics   University of SydneyAustralia



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



Bug#668250: Some fonts only shown and printed partially

2012-04-25 Thread Joachim Breitner
Hi,

Am Dienstag, den 10.04.2012, 09:41 +0200 schrieb Joachim Breitner:
 the attached PDF file is rendered and printed wrong, as shown in the
 attached screenshot: The fixed-with font parts are only partly visible,
 maybe the lower 10% of the font. It works fine in xpdf and also in
 evince after running it through pdf2ps.

I observe this behaviour with many more PDF files, not only fixed-width
fonts. In
http://www.cs.york.ac.uk/plasma/publications/pdf/BakewellRuncimanPPDP00.pdf all 
serif fonts are broken here.

Again, xpdf works fine.

Greetings,
Joachim

-- 
Joachim nomeata Breitner
Debian Developer
  nome...@debian.org | ICQ# 74513189 | GPG-Keyid: 4743206C
  JID: nome...@joachim-breitner.de | http://people.debian.org/~nomeata


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


Bug#670358: ITP: sdl-audioin -- Library to add audio input support to SDL

2012-04-25 Thread Toby Smithe
Hi Dominique,

On 25 April 2012 07:15, Dominique Dumont d...@debian.org wrote:
 From the titile of the bug, I assume you want to maintain this package.

Well, all I've done is produce a package. I think it complies with
policy and all the new-fangled stuff like multi-arch, and it is source
and binary lintian clean. Upstream considers that the project is
complete, so I think the maintenance burden should be very low. I get
the impression that it only supports OSS right now (unfortunately), so
if I find myself with some free time, I might try and hack a
PulseAudio back-end for it (but I'm not sure how free for that sort of
hacking I'll be over the next few months). In any case, I don't mind
looking after the package.

 May I suggest you join sdl team to do so ?

That sounds like a good idea.

 This way, you'll be able to use our team's repo (git) and sponsoring will be
 much easier.

Yes; I'll have to look into how the git repo is structured. Should I
update the control file to point to some future X-Vcs for this
package, once I have had a look, then? And should the Maintainer field
point at the team?

My main concern in joining the team is one of commitment: I don't want
to sign myself up for giving time to help out with all sorts of SDL
issues, not because I'm not keen to help, but because I think it would
be dishonest to make such a commitment when I'm not sure I have the
free time to do so. Of course, team maintenance does seem to reduce
the work burden for all concerned, so in that sense, I would be keen
to join.

Many thanks for your reply,

-- 
Toby Smithe
http://launchpad.net/~tsmithe



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



Bug#657078: patches to reduce the footprint of the nfs4 idmapper

2012-04-25 Thread Jeff Layton
On Wed, 25 Apr 2012 11:20:44 +0200
Rik Theys rik.th...@esat.kuleuven.be wrote:

 Hi,
 
 On 04/24/2012 11:16 PM, Jeff Layton wrote:
  On Tue, 24 Apr 2012 13:35:13 -0700
  Greg KHgre...@linuxfoundation.org  wrote:
 
  On Tue, Apr 24, 2012 at 10:22:50PM +0200, Rik Theys wrote:
  Hi,
 
  I'm experiencing the following Red Hat bug[1] on RHEL and also on
  Debian.
 
  I've noticed Fedora has started to ship an update with two patches
  that reduce the footprint of the nfs4 id mapper which should prevent
  this (or seriously limit the chance).
 
  NFSv4: Further reduce the footprint of the idmapper
  commit 685f50f9188ac1e8244d0340a9d6ea36b6136cec
 
  NFSv4: Reduce the footprint of the idmapper
  commit d073e9b541e1ac3f52d72c3a153855d9a9ee3278
 
  I believe Red Hat will have those patches in an upcoming RHEL 6.x
  release.
 
  I'm looking for feedback on if it would be possible to include
  these patches in a stable 3.2 update (and/or 3.0.x) so they
  will become part of the upcoming Debian 7.0 kernel (which is based
  on 3.2).
 
  Have these patches made it into the 3.3 and/or 3.4-rc kernels?
 
  Both of these are in the 3.4-rc1 kernel release.
 
  As for stable kernels, I don't see how they fit the rules outlined in
  Documentation/stable_kernel_rules.txt, do you?
 
 
  There have been reports on linux-nfs of problems allocating this memory
  in the past.
 
  I suspect most of those occurred when people attempt to do an NFS mount
  after memory is already heavily fragmented. This allocation was
  fricking huge before those patches...
 
  That said, I'm not sure that really qualifies as stable-kernel fodder...
 
 
 After rereading the stable_kernel_rules.txt I agree that this might be 
 too big for a stable update.
 
 I would still like to see these patches in the Debian 3.2 kernel (bug 
 report in cc).
 
 Do you consider these patches something distributions could/should 
 cherry pick for their kernels? I see from the RHEL 6.3 beta kernel 
 (2.6.32-262.el6) changelog that it includes these fixes?
 

Yeah, it should go into RHEL6.3, but we also pulled in the patches for
the new idmapper too so we sort of had to take these...

 Maybe you and/or Trond could comment on whether you are aware of any 
 dependencies or further fixes likely to be needed?
 

I think that set was relatively independent.

-- 
Jeff Layton jlay...@redhat.com



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



Bug#670411: bugs.debian.org : Inconsistency in display of extra information block containing Owned by entry

2012-04-25 Thread Simon Kainz
Package: bugs.debian.org
Severity: minor

I noticed the following inconsistency on the bugs.d.o website:

There seems to be a missing CR/LF in the template for Wishlist bugs.

Opening this url ( http://bugs.debian.org/cgi-
bin/pkgreport.cgi?submitter=si...@familiekainz.at ) and turning all extra
information on, you can see there is a missing space between the closing
bracket after the email address and the following semicolon. This seems to
happen
only when the Owned by block is inserted - after this block a CR/LF would be
needed to restore the correct behavior.

Please compare for example

http://bugs.debian.org/cgi-
bin/pkgreport.cgi?submitter=a.j.beresford%40sheffield.ac.uk

with the link metioned above.




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

Kernel: Linux 3.2.0-2-amd64 (SMP w/8 CPU cores)



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



Bug#670412: geli init script fails if /etc/default/geli is unconfigured

2012-04-25 Thread Stefan Bühler

Package: geom
Version: 9.0+ds1-3

The geli init script fails if no geli devices are configured in 
/etc/fstab and /etc/default/geli.

This prevented an upgrade of geom and freebsd-geom:

[...]
Setting up geom (9.0+ds1-3) ...
Starting GELI subsystem...UNCONFIGURED. See /etc/default/geli ... failed!
invoke-rc.d: initscript geli, action start failed.
dpkg: error processing geom (--configure):
 subprocess installed post-installation script returned error exit status 1
configured to not write apport reports
  dpkg: dependency problems prevent 
configuration of freebsd-geom:

 freebsd-geom depends on geom; however:
  Package geom is not configured yet.
dpkg: error processing freebsd-geom (--configure):
 dependency problems - leaving unconfigured
[...]

As geom contains more than just geli it is imho wrong to print an error 
(warning is fine ofc), but it certainly is wrong to fail the init script.




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



Bug#670413: samba4: fails to install: ProvisioningError: Existing smb.conf does not have a [netlogon] share, but you are configuring a DC.

2012-04-25 Thread Andreas Beckmann
Package: samba4
Version: 4.0.0~alpha19+dfsg1-6
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed your package failed to install. As
per definition of the release team this makes the package too buggy for
a release, thus the severity.

From the attached log (scroll to the bottom...):

  Selecting previously unselected package samba4.
  (Reading database ... 8688 files and directories currently installed.)
  Unpacking samba4 (from .../samba4_4.0.0~alpha19+dfsg1-6_amd64.deb) ...
  Setting up samba4 (4.0.0~alpha19+dfsg1-6) ...
  Administrator password will be set randomly!
  Unknown parameter encountered: max log size
  Ignoring unknown parameter max log size
  Unknown parameter encountered: syslog
  Ignoring unknown parameter syslog
  Unknown parameter encountered: unix password sync
  Ignoring unknown parameter unix password sync
  Unknown parameter encountered: passwd program
  Ignoring unknown parameter passwd program
  Unknown parameter encountered: pam password change
  Ignoring unknown parameter pam password change
  Unknown parameter encountered: valid users
  Ignoring unknown parameter valid users
  Unknown parameter encountered: guest ok
  Ignoring unknown parameter guest ok
  Unknown parameter encountered: guest ok
  Ignoring unknown parameter guest ok
  Unknown parameter encountered: max log size
  Ignoring unknown parameter max log size
  Unknown parameter encountered: syslog
  Ignoring unknown parameter syslog
  Unknown parameter encountered: unix password sync
  Ignoring unknown parameter unix password sync
  Unknown parameter encountered: passwd program
  Ignoring unknown parameter passwd program
  Unknown parameter encountered: pam password change
  Ignoring unknown parameter pam password change
  Unknown parameter encountered: valid users
  Ignoring unknown parameter valid users
  Unknown parameter encountered: guest ok
  Ignoring unknown parameter guest ok
  Unknown parameter encountered: guest ok
  Ignoring unknown parameter guest ok
  Looking up IPv4 addresses
  Looking up IPv6 addresses
  No IPv6 address will be assigned
  Setting up share.ldb
  Setting up secrets.ldb
  Setting up the registry
  Setting up the privileges database
  Setting up idmap db
  Setting up SAM db
  Setting up sam.ldb partitions and settings
  Setting up sam.ldb rootDSE
  Pre-loading the Samba 4 and AD schema
  ProvisioningError: Existing smb.conf does not have a [netlogon] share, but 
you are configuring a DC. Please either remove /etc/samba/smb.conf or see the 
template at /usr/share/samba/setup/provision.smb.conf.dc
  dpkg: error processing samba4 (--configure):
   subprocess installed post-installation script returned error exit status 1
  Errors were encountered while processing:
   samba4


cheers,

Andreas


samba4_4.0.0~alpha19+dfsg1-6.log.gz
Description: GNU Zip compressed data


Bug#670414: simba: unowned files after purge (policy 6.8, 10.8): /var/log/simba.log

2012-04-25 Thread Andreas Beckmann
Package: simba
Version: 0.8.4-4.2
Severity: important
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed your package left unowned files on
the system after purge, which is a violation of policy 6.8 (or 10.8):

http://www.debian.org/doc/debian-policy/ch-maintainerscripts.html#s-removedetails

Filing this as important as having a piuparts clean archive is a release
goal since lenny.

From the attached log (scroll to the bottom...):

1m2.6s ERROR: FAIL: Package purging left files on system:
  /var/log/simba.log not owned


cheers,

Andreas


simba_0.8.4-4.2.log.gz
Description: GNU Zip compressed data


Bug#613564: [Debian 6] Installation hangs during network hardware probing

2012-04-25 Thread Dmitry Zvorikin
Yes, the problem persists. It can be reproduced at 2 different
computers (S775 C2d E5400 G31 and that S478 old pc).
Both have latest-updated debians (apt-get update  apt-get
dist-upgrade  reboot).
I do have access to the card. I do not work with it, actually I use
cable connections.



On Mon, Feb 20, 2012 at 11:54, Jonathan Nieder jrnie...@gmail.com wrote:
 Hi Dmitry,

 Miguel Figueiredo wrote:
 A Terça 15 Fevereiro 2011 17:59:41 Dmitry Zvorikin você escreveu:

 Installation of newest stable debian 6 hangs.

 Is it a kernel crash? The installer is stopped?
 Can you take a look on what is happeding on the virtual console 4 and give
 more details?

 I would be interested to hear about this, since it could be a good
 source of information on how well the rtl8180 driver works.

 Do you still have access to this hardware?  What operating system is
 it running now, if any?

 Curious,
 Jonathan



-- 
С уважением,
Дмитрий А. Зворыкин,
системный администратор



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



Bug#670415: drupal7: Current drupal7 version (7.12-1) is giving errors on install.php

2012-04-25 Thread B Raveendra Reddy
Package: drupal7
Version: 7.12-1
Severity: normal

Hi,

Current release version of drupal (7.12 upstream) is giving errors while 
accessing the install.php.
However, the current development version is going smooth. 
Is it possible to keep the developmental version of drupal in sid?

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

Kernel: Linux 3.2.0-2-686-pae (SMP w/4 CPU cores)
Locale: LANG=en_IN, LC_CTYPE=en_IN (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages drupal7 depends on:
ii  apache2-mpm-prefork [httpd]  2.2.22-4
ii  curl 7.25.0-1
ii  dbconfig-common  1.8.47+nmu1
ii  debconf [debconf-2.0]1.5.42
ii  mysql-client 5.1.61-3
ii  mysql-client-5.1 [virtual-mysql-client]  5.1.61-3
ii  php5 5.4.0-3
ii  php5-gd  5.4.0-3
ii  php5-mysql   5.4.0-3
ii  ssmtp [mail-transport-agent] 2.64-6
ii  wwwconfig-common 0.2.2

Versions of packages drupal7 recommends:
ii  mysql-server 5.1.61-3
ii  mysql-server-5.1 [mysql-server]  5.1.61-3

drupal7 suggests no packages.

-- debconf information:
  drupal7/pgsql/authmethod-admin: ident
  drupal7/pgsql/changeconf: false
  drupal7/db/dbname: drupal7
  drupal7/pgsql/no-empty-passwords:
  drupal7/dbconfig-remove:
  drupal7/pgsql/authmethod-user:
  drupal7/db/basepath:
  drupal7/upgrade-error: abort
  drupal7/internal/skip-preseed: false
  drupal7/passwords-do-not-match:
* drupal7/dbconfig-install: true
  drupal7/purge: false
  drupal7/upgrade-backup: true
  drupal7/pgsql/manualconf:
* drupal7/database-type: mysql
  drupal7/internal/reconfiguring: false
  drupal7/install-error: abort
  drupal7/dbconfig-reinstall: false
  drupal7/mysql/method: unix socket
  drupal7/remote/port:
  drupal7/pgsql/method: unix socket
  drupal7/remove-error: abort
  drupal7/mysql/admin-user: root
  drupal7/pgsql/admin-user: postgres
  drupal7/remote/newhost:
  drupal7/missing-db-package-error: abort
  drupal7/dbconfig-upgrade: true
  drupal7/remote/host:
  drupal7/db/app-user: drupal7



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



Bug#670416: gnuradio: [UPGRADE] gnuradio:amd64 3.5.3-3 - 3.5.3.2-1 fails with, dependency error

2012-04-25 Thread e.waelde

Package: gnuradio
Version: 3.5.3-3
Severity: normal
Tags: upstream

Dear Maintainer,

thank you for packaging gnuradio!

the upgrade
[UPGRADE] gnuradio:amd64 3.5.3-3 - 3.5.3.2-1
fails with the following output:

Traceback (most recent call last):
  File /usr/bin/apt-listchanges, line 237, in module
main()
  File /usr/bin/apt-listchanges, line 48, in main
debs = apt_listchanges.read_apt_pipeline(config)
  File /usr/share/apt-listchanges/apt_listchanges.py, line 83, in
read_apt_pipeline
return map(lambda pkg: filenames[pkg], order)
  File /usr/share/apt-listchanges/apt_listchanges.py, line 83, in lambda
return map(lambda pkg: filenames[pkg], order)
KeyError: 'gnuradio'
dpkg: dependency problems prevent configuration of gnuradio:
 gnuradio depends on libgnuradio-atsc3.5.3; however:
  Package libgnuradio-atsc3.5.3:amd64 is not installed.
 gnuradio depends on libgnuradio-audio3.5.3; however:
  Package libgnuradio-audio3.5.3:amd64 is not installed.
 gnuradio depends on libgnuradio-comedi3.5.3; however:
  Package libgnuradio-comedi3.5.3:amd64 is not installed.
 gnuradio depends on libgnuradio-core3.5.3; however:
  Package libgnuradio-core3.5.3:amd64 is not installed.
 gnuradio depends on libgnuradio-digital3.5.3; however:
  Package libgnuradio-digital3.5.3:amd64 is not installed.
 gnuradio depends on libgnuradio-fcd3.5.3; however:
  Package libgnuradio-fcd3.5.3:amd64 is not installed.
 gnuradio depends on libgnuradio-noaa3.5.3; however:
  Package libgnuradio-noaa3.5.3:amd64 is not installed.
 gnuradio depends on libgnuradio-pager3.5.3; however:
  Package libgnuradio-pager3.5.3:amd64 is not installed.
 gnuradio depends on libgnuradio-qtgui3.5.3; however:
  Package libgnuradio-qtgui3.5.3:amd64 is not installed.
 gnuradio depends on libgnuradio-trellis3.5.3; however:
  Package libgnuradio-trellis3.5.3:amd64 is not installed.
 gnuradio depends on libgnuradio-uhd3.5.3; however:
  Package libgnuradio-uhd3.5.3:amd64 is not installed.
 gnuradio depends on libgnuradio-video-sdl3.5.3; however:
  Package libgnuradio-video-sdl3.5.3:amd64 is not installed.
 gnuradio depends on libgnuradio-vocoder3.5.3; however:
  Package libgnuradio-vocoder3.5.3:amd64 is not installed.
dpkg: error processing gnuradio (--configure):
 dependency problems - leaving unconfigured
Errors were encountered while processing:
 gnuradio


Anything else you need to know? Don't hesitate to
contact me for further information.

Thanks and have a nice day,
Erich






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

Kernel: Linux 3.2.0-2-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 gnuradio depends on:
ii  adduser   3.113+nmu1
ii  libasound21.0.25-2
ii  libboost-date-time1.49.0  1.49.0-2
ii  libboost-filesystem1.49.0 1.49.0-2
ii  libboost-program-options1.49.01.49.0-2
ii  libboost-system1.49.0 1.49.0-2
ii  libboost-test1.49.0   1.49.0-2
ii  libboost-thread1.49.0 1.49.0-2
ii  libc6 2.13-30
ii  libcomedi00.8.1-6
ii  libgcc1   1:4.7.0-4
ii  libgnuradio-atsc3.5.3 none
ii  libgnuradio-audio3.5.3none
ii  libgnuradio-comedi3.5.3   none
ii  libgnuradio-core3.5.3 none
ii  libgnuradio-digital3.5.3  none
ii  libgnuradio-fcd3.5.3  none
ii  libgnuradio-noaa3.5.3 none
ii  libgnuradio-pager3.5.3none
ii  libgnuradio-qtgui3.5.3none
ii  libgnuradio-trellis3.5.3  none
ii  libgnuradio-uhd3.5.3  none
ii  libgnuradio-video-sdl3.5.3none
ii  libgnuradio-vocoder3.5.3  none
ii  libgruel3.5.3 3.5.3-3
ii  libgsm1   1.0.13-4
ii  libjack-jackd2-0 [libjack-0.116]  1.9.8~dfsg.3+20120418gitf82ec715-3
ii  liborc-0.4-0  1:0.4.16-1
ii  libpython2.7  2.7.3~rc2-2.1
ii  libqtcore44:4.7.4-3
ii  libqtgui4 4:4.7.4-3
ii  libqwt5-qt4   5.2.2-2
ii  libsdl1.2debian   1.2.15-3
ii  libstdc++64.7.0-4
ii  libuhd003 3.4.1-1
ii  libusb-1.0-0  2:1.0.9-1
ii  libvolk0.0.0  3.5.3.2-1
ii  python2.7.2-10
ii  python-cheetah2.4.4-2+b1
ii  python-lxml   2.3.2-1
ii  python-opengl 3.0.1-1
ii  python-wxgtk2.8   2.8.12.1-8
ii  python2.7 2.7.3~rc2-2.1

Versions of packages gnuradio recommends:
ii  python-matplotlib 1.1.1~rc1-1
ii  python-qt44.9.1-1
ii  python-qwt5-qt4   

Bug#670019: [Pkg-sssd-devel] Bug#670019: libpam-sss: arch-dependent files in multiarch: same package

2012-04-25 Thread Timo Aaltonen
On 22.04.2012 16:20, Julien Cristau wrote:
 Package: libpam-sss
 Version: 1.8.1-1
 Severity: important
 User: multiarch-de...@lists.alioth.debian.org
 Usertags: multiarch
 
 Hi,
 
 libpam-sss is marked as Multi-Arch: same, but contains files in
 arch-independent paths with arch-specific contents:
 
 [libpam-sss 1.8.1-1]
 usr/share/man/man8/pam_sss.8.gz
   00a6ef07095826010d9b95cb27192b9f amd64
   31471273bca95d5a243171be245a36ba mipsel
   3fb3517148c6c6b6d1fcac702cc13a21 s390 sparc i386
   c687e882394d6dafc60615eabfe6bb19 armel
   ece8680395a070b5c76f2bf6f12509d8 ia64 mips s390x armhf powerpc
 
 Cheers,
 Julien

Thanks, looks like it's the datestamp that xsltproc generates which
makes the diff.. so the resulting manpages need to either strip the date
or make it match the latest changelog date or such...


-- 
t



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



Bug#670417: backlight dimmed at initrd startup

2012-04-25 Thread Harald Dunkel
Package: linux-image-2.6-amd64
Version: 3.2+44

On a Lenovo T420s laptop the screen backlight is dimmed
from the power-on default to very low at boot time.
This happens after Grub started the kernel and while the

Loading initial ramdisk...

is shown, but before all the usual hardware initialization
happens (quiet mode is off).

This is highly annoying, esp. if you have to enter a Luks
password at boot time to decrypt the root partition, but you
cannot read the screen.

The laptop is connected to AC. All the power management
options in the BIOS are set to Performance. Most recent
BIOS update is installed.

On a Samsung laptop there is no such problem (using the
same boot disk).

lspci:
00:00.0 Host bridge: Intel Corporation Sandy Bridge DRAM Controller (rev 09)
00:02.0 VGA compatible controller: Intel Corporation Sandy Bridge Integrated 
Graphics Controller (rev 09)
00:16.0 Communication controller: Intel Corporation Cougar Point HECI 
Controller #1 (rev 04)
00:16.3 Serial controller: Intel Corporation Cougar Point KT Controller (rev 04)
00:19.0 Ethernet controller: Intel Corporation 82579LM Gigabit Network 
Connection (rev 04)
00:1a.0 USB Controller: Intel Corporation Cougar Point USB Enhanced Host 
Controller #2 (rev 04)
00:1b.0 Audio device: Intel Corporation Cougar Point High Definition Audio 
Controller (rev 04)
00:1c.0 PCI bridge: Intel Corporation Cougar Point PCI Express Root Port 1 (rev 
b4)
00:1c.1 PCI bridge: Intel Corporation Cougar Point PCI Express Root Port 2 (rev 
b4)
00:1c.3 PCI bridge: Intel Corporation Cougar Point PCI Express Root Port 4 (rev 
b4)
00:1c.4 PCI bridge: Intel Corporation Cougar Point PCI Express Root Port 5 (rev 
b4)
00:1d.0 USB Controller: Intel Corporation Cougar Point USB Enhanced Host 
Controller #1 (rev 04)
00:1f.0 ISA bridge: Intel Corporation Cougar Point LPC Controller (rev 04)
00:1f.2 SATA controller: Intel Corporation Cougar Point 6 port SATA AHCI 
Controller (rev 04)
00:1f.3 SMBus: Intel Corporation Cougar Point SMBus Controller (rev 04)
03:00.0 Network controller: Intel Corporation 6000 Series Gen2 (rev 34)
05:00.0 System peripheral: Ricoh Co Ltd MMC/SD Host Controller (rev 07)
0d:00.0 USB Controller: NEC Corporation uPD720200 USB 3.0 Host Controller (rev 
04)


Regards

Harri


ppcl007.lspci.log.gz
Description: application/gzip


Bug#670418: python2.7: dh_python2 should run before dh_installinit in postinst

2012-04-25 Thread Alexander E. Patrakov
Package: python2.7
Version: 2.7.2-8
Severity: normal

Dear Maintainer,

I was trying to package a custom daemon written in Python for my
company. I used the following debian/rules:

#!/usr/bin/make -f

override_dh_installinit:
dh_installinit --name=customdaemon -R

%:
dh --with python2 $@

The end result is that, in the postinst, the section added by dh_python2
comes after the section added by dh_installinit. So python modules are
compiled after attempting to start the daemon.

While I have yet to see any real negative effects, I think that it is
similar to a reincarnation of this old bugreport:

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=546293

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

Kernel: Linux 3.2.0-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/dash

Versions of packages python2.7 depends on:
ii  libbz2-1.0 1.0.6-1
ii  libc6  2.13-27
ii  libdb4.8   4.8.30-11
ii  libexpat1  2.1.0-1
ii  libncursesw5   5.9-4
ii  libreadline6   6.2-8
ii  libsqlite3-0   3.7.11-2
ii  libtinfo5  5.9-4
ii  mime-support   3.52-1
ii  python2.7-minimal  2.7.2-8

python2.7 recommends no packages.

Versions of packages python2.7 suggests:
pn  binutils   2.22-6
pn  python2.7-doc  none

-- 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#613564: more about the card

2012-04-25 Thread Dmitry Zvorikin
addition about the wifi card
Debian just hangs.
After that no keypresses give any results.
I cannot switch to console 4.

The wifi card (with the chip) photo is available at the bugreport earlier.
The screen photo is here: http://fotki.yandex.ru/users/bmrd/view/567443
I tried waiting for 5 minutes, and nothing happened.


-- 
С уважением,
Дмитрий А. Зворыкин,
системный администратор


Bug#670419: nslcd: LDAP users can't login after upgrade 0.8.6- 0.8.7

2012-04-25 Thread Meik Hellmund
Package: nslcd
Version: 0.8.7-1
Severity: normal

Dear Maintainer,

LDAP users can't login after upgrade.

# nslcd --debug
nslcd: DEBUG: add_uri(ldap:°139.18.10.1/)
nslcd: DEBUG: add_uri(ldap:°139.18.10.111/)
nslcd: DEBUG: add_uri(ldap:°139.18.10.112/)
nslcd: version 0.8.7 starting
nslcd: DEBUG: unlink() of /var/run/nslcd/socket failed (ignored): No such file
or directory
nslcd: DEBUG: setgroups(0,NULL) done
nslcd: DEBUG: setgid(115) done
nslcd: DEBUG: setuid(108) done
nslcd: accepting connections
nslcd: [8b4567] DEBUG: connection from pid=4295 uid=0 gid=0
nslcd: DEBUG: accept() failed (ignored): Resource temporarily unavailable
nslcd: [8b4567] shadow=hellmund DEBUG: myldap_search(base=dc=mathematik,dc
=uni-leipzig,dc=de, filter=((objectClass=shadowAccount)(uid=hellmund)))
nslcd: [8b4567] shadow=hellmund DEBUG: ldap_initialize(ldap:°139.18.10.1/)
nslcd: DEBUG: accept() failed (ignored): Resource temporarily unavailable
nslcd: [8b4567] shadow=hellmund DEBUG: ldap_set_rebind_proc()
nslcd: [8b4567] shadow=hellmund DEBUG:
ldap_setºption(LDAP_OPT_PROTOCOL_VERSION,3)
nslcd: [8b4567] shadow=hellmund DEBUG: ldap_setºption(LDAP_OPT_DEREF,0)
nslcd: [8b4567] shadow=hellmund DEBUG:
ldap_setºption(LDAP_OPT_TIMELIMIT,0)
nslcd: [8b4567] shadow=hellmund DEBUG: ldap_setºption(LDAP_OPT_TIMEOUT,0)
nslcd: [8b4567] shadow=hellmund DEBUG:
ldap_setºption(LDAP_OPT_NETWORK_TIMEOUT,0)
nslcd: [8b4567] shadow=hellmund DEBUG:
ldap_setºption(LDAP_OPT_REFERRALS,LDAP_OPT_ON)
nslcd: [8b4567] shadow=hellmund DEBUG:
ldap_setºption(LDAP_OPT_RESTART,LDAP_OPT_ON)
nslcd: [8b4567] shadow=hellmund DEBUG: ldap_simple_bind_s(NULL,NULL)
(uri=ldap:°139.18.10.1/)
nslcd: [8b4567] shadow=hellmund DEBUG: ldap_result():
uid=hellmund,ou=People,dc=mathematik,dc=uni-leipzig,dc=de
nslcd: [8b4567] shadow=hellmund DEBUG: ldap_result(): end of results (1
total)
nslcd: [7b23c6] DEBUG: connection from pid=4295 uid=0 gid=0
nslcd: DEBUG: accept() failed (ignored): Resource temporarily unavailable
nslcd: [7b23c6] error reading from client: Connection reset by peer




after downgrade of nslcd to the  version in testing, everything works again.






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

Kernel: Linux 3.2.0-2-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 nslcd depends on:
ii  adduser3.113+nmu1
ii  debconf [debconf-2.0]  1.5.42
ii  libc6  2.13-30
ii  libgssapi-krb5-2   1.10+dfsg~beta1-2
ii  libldap-2.4-2  2.4.28-1.2

Versions of packages nslcd recommends:
ii  bind9-host [host]   1:9.8.1.dfsg.P1-4
ii  ldap-utils  2.4.28-1.2
ii  libnss-ldapd [libnss-ldap]  0.8.7-1
ii  libpam-ldapd [libpam-ldap]  0.8.7-1
ii  nscd2.13-30

Versions of packages nslcd suggests:
pn  kstart  none

-- debconf information:
  nslcd/ldap-bindpw: (password omitted)
  nslcd/ldap-sasl-realm:
* nslcd/ldap-starttls: false
  nslcd/ldap-sasl-krb5-ccname: /var/run/nslcd/nslcd.tkt
* nslcd/ldap-auth-type: none
  nslcd/ldap-reqcert:
* nslcd/ldap-uris: ldap://139.18.10.1/ ldap://139.18.10.111/ 
ldap://139.18.10.112/
  nslcd/ldap-sasl-secprops:
  nslcd/ldap-binddn:
  nslcd/ldap-sasl-authcid:
  nslcd/ldap-sasl-mech:
* nslcd/ldap-base: dc=mathematik,dc=uni-leipzig,dc=de
  nslcd/ldap-sasl-authzid:



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



Bug#573719: limit source to python-flickrapi, tagging 573719

2012-04-25 Thread Olivier Berger
On Tue, Apr 24, 2012 at 08:49:15AM +0200, Olivier Berger wrote:
 
 OK, great. I've just cloned it succesfully.
 
 And what about that 1.4.1-1 that you prepared ? Any reason not to upload
 it to unstable (but lintian warnings and likes) ?
 

FWIW, I've prepared a modified version of the package for the latest 1.4.2.

Apart from the build-dep change, of which I'm not sure, the rest may be 
interesting.

See it at : 
http://anonscm.debian.org/gitweb/?p=users/obergix/python-flickrapi.git;a=summary

Hope this helps.

Best regards,
-- 
Olivier BERGER 
(OpenPGP: 4096R/7C5BB6A5)
http://www.olivierberger.com/weblog/



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



Bug#670404: apt-listbugs: apt-get can't install or remove things

2012-04-25 Thread Francesco Poli
reassign 670404 ruby-locale 2.0.5-3
affects 670404 + apt-listbugs
severity 670404 grave
severity 670320 grave
forcemerge 670320 670404
thanks



On Wed, 25 Apr 2012 11:34:25 +0200 Salvo Tomaselli wrote:

 Package: apt-listbugs
 Version: 0.1.6
 Severity: critical
 Justification: breaks unrelated software
 
 Dear Maintainer,

Dear Salvo,
thanks for reporting this bug.

 running aptitude install or remove or upgrade i get that
 
 /usr/lib/ruby/vendor_ruby/locale.rb:239:in `collect_candidates': undefined 
 method `size' for nil:NilClass (NoMethodError)
 from /usr/lib/ruby/vendor_ruby/locale.rb:222:in `candidates'
[...]

The issue you are experiencing seems to be caused by a bug in
ruby-locale, which has already been reported as bug #670320.

I am therefore reassigning your bug report and merging accordingly.

 
 
 i tried to remove apt-listbugs but apparently i can't.
 This is very severe since it has to be solved manually (because it prevents 
 automatic upgrades)

There's no need to remove apt-listbugs, if you just want to prevent it
from being run by aptitude or apt-get.

Just temporarily edit /etc/apt/apt.conf.d/10apt-listbugs , turning all
its lines into comments (by prefixing them with // ).

What I would do in your case is the following:

  0) create a backup copy of /etc/apt/apt.conf.d/10apt-listbugs
 for instance in /tmp
  1) temporarily disable apt-listbugs (as explained above)
  2) downgrade to liblocale-ruby1.8/2.0.5-2 (currently in testing)
  3) purge ruby-locale/2.0.5-3 (unless that hasn't already happened
 automatically)
  4) re-enable apt-listbugs, by restoring the backup copy of the
 configuration file
  5) upgrade again: apt-listbugs should detect the now grave bug
 #670320 and offer you the possibility to pin package
 liblocale-ruby1.8 to its currently installed version (2.0.5-2)
  6) pin liblocale-ruby1.8
  7) upgrade one more time: package liblocale-ruby1.8 should _not_ get
 upgraded, until bug #670320 is fixed


I hope this helps.
Have a nice day.

-- 
 http://www.inventati.org/frx/frx-gpg-key-transition-2010.txt
 New GnuPG key, see the transition document!
. Francesco Poli .
 GnuPG key fpr == CA01 1147 9CD2 EFDF FB82  3925 3E1C 27E1 1F69 BFFE


pgplS6D1yqIjI.pgp
Description: PGP signature


Bug#670420: libsndfile1: undefined symbol: vorbis_version_string

2012-04-25 Thread Marcel Veldhuizen
Package: libsndfile1
Version: 1.0.25-4
Severity: important

Dear Maintainer,

I'm having a problem with the 1.0.25-4 version of the libsndfile1 package 
together with the current pulseaudio packages.

When I try to use pulseaudio, I get the following error message:
pulseaudio: symbol lookup error: /usr/lib/i386-linux-gnu/libsndfile.so.1: 
undefined symbol: vorbis_version_string

I've tried reverting the libsndfile1 package back to stable (1.0.21-3+squeeze1) 
which solves the problem.
Apparently, the new library version is not backward compatible with earlier 
versions, even though the version number suggests it.

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

Kernel: Linux 3.2.12 (SMP w/8 CPU cores)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages libsndfile1 depends on:
ii  libc6  2.13-27
ii  libflac8   1.2.1-6
ii  libogg01.2.2~dfsg-1
ii  libvorbis0a1.3.2-1.2
ii  libvorbisenc2  1.3.2-1.2
ii  multiarch-support  2.13-27

libsndfile1 recommends no packages.

libsndfile1 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



  1   2   3   >