Bug#519570: [Pkg-samba-maint] Bug#519570: Kerberos working on samba 3.2.5 PDC, but failing when joining the domain

2009-03-16 Thread Christian Perrier


More generally speaking, about this bug, I think that our best option
is reporting it upstream ith all information passed by Eduardo along
his various exchanges with us.

For such bugs, I thinnk that having us (package maintainers in Debian)
as proxies hasn't much added value...

I will open a bug report in Bugzilla as soon as I have time for that
(that needs time as it needs collecting all what we have in Debian
BTSplus sending pointers to network capture made by Eduardo, etc.




signature.asc
Description: Digital signature


Bug#519913: btrfs-tools: FTBFS on alpha and ia64, printk cast warning

2009-03-16 Thread Luca Bruno
Package:  btrfs-tools
Version:  0.18-1
Severity: serious
Tags: patch

Some warnings of the form:
format '%llu' expects type 'long long unsigned int' but argument has
type 'u64'
in conjunction with -Werror are causing build failures on ia64 and
alpha. Patch attached to properly cast them, avoiding compiler
warnings.
This issue should be the last one stopping the migration to
testing...

Cheers, Luca

-- 
 .''`.  ** Debian GNU/Linux **  | Luca Bruno (kaeso)
: :'  :   The Universal O.S.| lucab (AT) debian.org
`. `'`  | GPG Key ID: 3BFB9FB3
  `- http://www.debian.org  | Debian GNU/Linux Developer
commit f1147b7796a2127d426ba976ebd319831d4cdea9
Author: Luca Bruno lu...@debian.org
Date:   Sun Mar 15 18:26:35 2009 +0100

btrfs-progs: Fix printf format casting errors

There are still some warnings of the form:

format '%llu' expects type 'long long unsigned int' but argument has type 'u64'

In conjunction with -Werror, this is causing some build failures.
Now they're properly casted, avoiding compiler warnings.

Signed-off-by: Luca Bruno lu...@debian.org

diff --git a/btrfsck.c b/btrfsck.c
index 5834ca3..dd546c8 100644
--- a/btrfsck.c
+++ b/btrfsck.c
@@ -1134,12 +1134,14 @@ static int check_inode_recs(struct btrfs_root *root,
 		ret = check_root_dir(rec);
 		if (ret) {
 			fprintf(stderr, root %llu root dir %llu error\n,
-root-root_key.objectid, root_dirid);
+(unsigned long long) root-root_key.objectid, 
+(unsigned long long) root_dirid);
 			error++;
 		}
 	} else {
 		fprintf(stderr, root %llu root dir %llu not found\n,
-			root-root_key.objectid, root_dirid);
+			(unsigned long long) root-root_key.objectid, 
+			(unsigned long long) root_dirid);
 	}
 
 	while (1) {
@@ -1160,7 +1162,8 @@ static int check_inode_recs(struct btrfs_root *root,
 		if (!rec-found_inode_item)
 			rec-errors |= I_ERR_NO_INODE_ITEM;
 		fprintf(stderr, root %llu inode %llu errors %x\n,
-			root-root_key.objectid, rec-ino, rec-errors);
+			(unsigned long long) root-root_key.objectid, 
+			(unsigned long long) rec-ino, rec-errors);
 		list_for_each_entry(backref, rec-backrefs, list) {
 			if (!backref-found_dir_item)
 backref-errors |= REF_ERR_NO_DIR_ITEM;
@@ -1170,7 +1173,8 @@ static int check_inode_recs(struct btrfs_root *root,
 backref-errors |= REF_ERR_NO_INODE_REF;
 			fprintf(stderr, \tunresolved ref dir %llu index %llu
  namelen %u name %s filetype %d error %x\n,
-backref-dir, backref-index,
+(unsigned long long) backref-dir, 
+(unsigned long long) backref-index,
 backref-namelen, backref-name,
 backref-filetype, backref-errors);
 		}
diff --git a/extent-tree.c b/extent-tree.c
index cc8d1d7..94ddb0c 100644
--- a/extent-tree.c
+++ b/extent-tree.c
@@ -823,7 +823,7 @@ int btrfs_lookup_extent_ref(struct btrfs_trans_handle *trans,
 		goto out;
 	if (ret != 0) {
 		btrfs_print_leaf(root, path-nodes[0]);
-		printk(failed to find block number %Lu\n, bytenr);
+		printk(failed to find block number %Lu\n, (unsigned long long) bytenr);
 		BUG();
 	}
 	l = path-nodes[0];
diff --git a/mkfs.c b/mkfs.c
index af7d12c..1533754 100644
--- a/mkfs.c
+++ b/mkfs.c
@@ -388,7 +388,7 @@ int main(int ac, char **av)
 	fprintf(stderr, File system size 
 		%llu bytes is too small, 
 		256M is required at least\n,
-		block_count);
+		(unsigned long long) block_count);
 	exit(1);
 }
 zero_end = 0;
diff --git a/print-tree.c b/print-tree.c
index 52ef7c7..8ff763f 100644
--- a/print-tree.c
+++ b/print-tree.c
@@ -70,7 +70,7 @@ static int print_inode_ref_item(struct extent_buffer *eb, struct btrfs_item *ite
 		len = (name_len = sizeof(namebuf))? name_len: sizeof(namebuf);
 		read_extent_buffer(eb, namebuf, (unsigned long)(ref + 1), len);
 		printf(\t\tinode ref index %llu namelen %u name: %.*s\n,
-		   index, name_len, len, namebuf);
+		   (unsigned long long) index, name_len, len, namebuf);
 		len = sizeof(*ref) + name_len;
 		ref = (struct btrfs_inode_ref *)((char *)ref + len);
 		cur += len;


pgp9cow4IiDKJ.pgp
Description: PGP signature


Bug#519913: btrfs-tools: FTBFS on alpha and ia64, printk cast warning

2009-03-16 Thread Daniel Baumann
Luca Bruno wrote:
 This issue should be the last one stopping the migration to
 testing...

thanks.. uploading soon.

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  daniel.baum...@panthera-systems.net
Internet:   http://people.panthera-systems.net/~daniel-baumann/



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



Bug#519735: marked as done (gnonlin_0.10.10.2-1(mips/unstable): FTBFS on mips. Missing build dependency ?)

2009-03-16 Thread Debian Bug Tracking System

Your message dated Mon, 16 Mar 2009 08:13:03 +0100
with message-id 1237187583.19606.0.ca...@odin.lan
and subject line Re: Bug#519735: gnonlin_0.10.10.2-1(mips/unstable): FTBFS on 
mips. Missing build dependency ?
has caused the Debian Bug report #519735,
regarding gnonlin_0.10.10.2-1(mips/unstable): FTBFS on mips. Missing build 
dependency ?
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
519735: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=519735
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: gnonlin
Version: 0.10.10.2-1
Severity: serious

There was an error while trying to autobuild your package:

 Automatic build of gnonlin_0.10.10.2-1 on ball by sbuild/mips 99.99
 Build started at 20090311-2201

[...]

 ** Using build dependencies supplied by package:
 Build-Depends: cdbs, debhelper (= 5), libgstreamer0.10-dev (= 0.10.21), 
 pkg-config, libglib2.0-dev (= 2.6), gettext (= 0.11.5), check (= 0.9.2), 
 libgstreamer-plugins-base0.10-dev (= 0.10.21), lsb-release, gstreamer-tools 
 (= 0.10.21), gstreamer0.10-plugins-base, gstreamer0.10-plugins-good

[...]

 checking for ps2pdf... no
 checking for xsltproc... no
 checking for dvips... no
 checking for xmllint... no
 checking for fig2dev... no
 configure: WARNING: Did not find fig2dev (from xfig), images will not be 
 generated.
 checking for pngtopnm... no
 checking for pnmtops... no
 checking for epstopdf... no
 configure: Will not output HTML documentation
 configure: Will not output PS documentation
 configure: Will not output PDF documentation
 configure: error: You need to have gtk-doc = 1.3 installed to build gtk-doc
 make: *** [config.status] Error 1
 dpkg-buildpackage: failure: debian/rules build gave error exit status 2

A full build log can be found at:
http://buildd.debian.org/build.php?arch=mipspkg=gnonlinver=0.10.10.2-1



---End Message---
---BeginMessage---
Version: 0.10.10.2-2

Am Samstag, den 14.03.2009, 20:28 +0200 schrieb Peter De Schrijver:
 Package: gnonlin
 Version: 0.10.10.2-1
 Severity: serious
 
 There was an error while trying to autobuild your package:
[...]
  configure: error: You need to have gtk-doc = 1.3 installed to build gtk-doc
  make: *** [config.status] Error 1
  dpkg-buildpackage: failure: debian/rules build gave error exit status 2
 

Hi,
this is fixed in 0.10.10.2-2.


signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil
---End Message---


Bug#519924: webkit_1.1.1-1(experimental/amd64/thukydides): symbol file not correct

2009-03-16 Thread Marc Brockschmidt
Package: webkit
Version: 1.1.1-1
Severity: serious
Tags: experimental

Heya,

Building your package fails on my buildd:

| Automatic build of webkit_1.1.1-1 on thukydides by sbuild/amd64 98-farm
| Build started at 20090315-1942
| **

[...]

| dh_makeshlibs -a -V 'libwebkit-1.0-2 (= 1.1.1)' -- -c4
| dpkg-gensymbols: warning: some symbols disappeared in the symbols file: see 
diff output below
| dpkg-gensymbols: warning: debian/libwebkit-1.0-2/DEBIAN/symbols doesn't match 
completely debian/libwebkit-1.0-2.symbols
| --- dpkg-gensymbolsY2LaLx 2009-03-15 19:27:25.0 +
| +++ dpkg-gensymbols8zRVLQ 2009-03-15 19:27:25.0 +
| @@ -75,8 +75,8 @@
|   jsvaluetoobj...@base 1.1.1
|   jsvaluetostringc...@base 1.1.1
|   jsvalueunprot...@base 1.1.1
| - ctitrampol...@base 1.1.1
| - ctivmthrowtrampol...@base 1.1.1
| +#MISSING: 1.1.1-1# ctitrampol...@base 1.1.1
| +#MISSING: 1.1.1-1# ctivmthrowtrampol...@base 1.1.1
|   kjsclassdefinitionem...@base 1.1.1
|   webkit_get_default_sess...@base 1.1.1
|   webkit_major_vers...@base 1.1.1
| dh_makeshlibs: dpkg-gensymbols returned exit code 1
| make: *** [binary-arch] Error 1
| dpkg-buildpackage: failure: /usr/bin/fakeroot debian/rules binary-arch gave 
error exit status 2
| **
| Build finished at 20090315-2027
| FAILED [dpkg-buildpackage died]
| Build needed 00:43:14, 3142952k disk space

A complete build log can be found at
http://experimental.debian.net/build.php?arch=amd64pkg=webkitver=1.1.1-1

-- 
Fachbegriffe der Informatik - Einfach erklärt
170: Gigabit-Ethernet-PC-Karte
   Warum wollen Sie einen mannshohen Abwasserkanal für Ihr Privathaus? So
   schnell können Sie gar nicht kacken! (Hans Bonfigt)



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



Processed: Re: [Openjdk] Bug#517338: openjdk-6-jre: /usr/lib/jni not in library path

2009-03-16 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 517338 + confirmed
Bug#517338: openjdk-6-jre: /usr/lib/jni not in library path
There were no tags set.
Tags added: confirmed

 tags 517338 + help
Bug#517338: openjdk-6-jre: /usr/lib/jni not in library path
Tags were: confirmed
Tags added: help

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#519940: weechat-curses: DoS (crash) with some IRC messages from other users

2009-03-16 Thread Sebastien Helleu
Package: weechat-curses
Version: 0.2.6-3
Severity: grave
Justification: renders package unusable

Denial of service (crash) when receiving some IRC messages from other users,
with special data inside.

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

Kernel: Linux 2.6.28.7
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages weechat-curses depends on:
ii  libc6 2.9-4  GNU C Library: Shared libraries
ii  libgnutls26   2.6.4-2the GNU TLS library - runtime libr
ii  libncursesw5  5.7+20090228-1 shared libraries for terminal hand
ii  weechat-common0.2.6-3Common files for WeeChat

Versions of packages weechat-curses recommends:
ii  weechat-plugins   0.2.6-3Plugins for WeeChat

weechat-curses suggests no packages.

-- no debconf information



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



Bug#519896: apt-cacher: upgrade failure

2009-03-16 Thread Marc Dequènes (Duck)

Coin,

Quoting Mark Hindley m...@hindley.org.uk:


Could you try this patch.


Just moved the complaint to the log_set_config() line.

--
Marc Dequènes (Duck)


pgplrSKkz8VnA.pgp
Description: PGP Digital Signature


Bug#515035: Backport changes from 2.3.1 to 2.2.2 or new upload?

2009-03-16 Thread Salvatore Bonaccorso
Hi

Vincent Snijders wrote in Message #27, that there is a fix now for
this problem regarding the powerpc architecture.

I have a question about that, would be the fix backported for 2.2.2
currently in unstable, or would development version 2.3.1 be uploaded
to unstable in future?

Thanks for your work on fpc!
Bests
Salvatore


signature.asc
Description: Digital signature


Processed: closing 518741

2009-03-16 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 close 518741 1:8.2-1.2-1
Bug#518741: coq-float: FTBFS: Error: Attempt to save an incomplete proof
'close' is deprecated; see http://www.debian.org/Bugs/Developer#closing.
Bug marked as fixed in version 1:8.2-1.2-1, send any further explanations to 
Lucas Nussbaum lu...@lucas-nussbaum.net


End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#519708: zabbix-frontend-php: Web Frontend doesn't work anymore after upgrading to Lenny

2009-03-16 Thread Fabio Napoleoni - ZENIT


Il giorno 14/mar/09, alle ore 16:54, Michael Ablassmeier ha scritto:


hi,

On Sat, Mar 14, 2009 at 11:08:40AM -0400, Fabio Napoleoni wrote:
Every page I load from a web browser run for a while and after 30  
seconds it reports:


Fatal error: Maximum execution time of 30 seconds exceeded in /usr/ 
share/zabbix/include/config.inc.php on line 365


I've enabled php error_log directive, with error_report to all, but
in the error file I don't find anything except the error above.


can you please set your maximum execution time higher than 30  
seconds? It seems
to error out in an error reporting function, probaby you will get an  
detailed

error message after.


I've done it, the message remains the same, probably it is a loop on  
error reporting.


I set it to120 seconds and the error_reporting to  E_ALL | E_STRICT,  
but no additional info, only this message.


--
Fabio Napoleoni - ZENIT
fa...@zenit.org

Computer Science is no more about computers than astronomy is
about telescopes

Edsger W. Dijkstra




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



Bug#519896: apt-cacher: upgrade failure

2009-03-16 Thread Mark Hindley
On Mon, Mar 16, 2009 at 12:45:35AM +0100, Marc Dequènes (Duck) wrote:
 Coin,

 In fact, 1.6.7 is not working any more. Seems it is related to libdb4.7 
 being draggued in by other packages in the upgrade.

Could you try this patch.

Mark


commit 08c1ecae34e77d5f164fa2ac4208cc0e76024b9d
Author: Mark Hindley m...@hindley.org.uk
Date:   Mon Mar 16 09:03:59 2009 +

Possible fix for #519896.

DB logging controlled with log_set_config in libdb-4.7

diff --git a/apt-cacher-lib-cs.pl b/apt-cacher-lib-cs.pl
index bff07aa..83feed9 100755
--- a/apt-cacher-lib-cs.pl
+++ b/apt-cacher-lib-cs.pl
@@ -123,8 +123,8 @@ sub db_recover {
  -Flags  = DB_CREATE | DB_INIT_LOG |
DB_INIT_MPOOL | DB_INIT_TXN |
  DB_RECOVER | DB_PRIVATE | DB_USE_ENVIRON,
-   -SetFlags = DB_LOG_INMEMORY
  or die Unable to create recovery environment: 
$BerkeleyDB::Error\n;
+$renv-log_set_config( DB_LOG_INMEMORY, 1 )  warn log_set_config failed 
with $!;
 close $logfile;
 unlink $cfg-{cache_dir}/private/dblock;
 return defined $renv;



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



Bug#517338: [Openjdk] Bug#517338: openjdk-6-jre: /usr/lib/jni not in library path

2009-03-16 Thread Matthias Klose
tags 517338 + confirmed
tags 517338 + help
thanks

brian m. carlson schrieb:
 Package: openjdk-6-jre-headless
 Version: 6b14-1~exp1
 Severity: serious
 
 According to Debian Java Policy[0], /usr/lib/jni *must* be in the
 default library path, but it isn't:

I have never seen a rationale for this policy, but it's there ... I'd like to
downgrade it, other VM's like sun-java[56] don't honor it as well. Care to send
a patch?




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



Bug#519896: apt-cacher: upgrade failure

2009-03-16 Thread Mark Hindley
On Mon, Mar 16, 2009 at 10:56:11AM +0100, Marc Dequènes (Duck) wrote:
 Coin,

 Quoting Mark Hindley m...@hindley.org.uk:

 Could you try this patch.

 Just moved the complaint to the log_set_config() line.

Sorry, they have changed the flag as well. Is this better?

commit 9d0562b66e472e40c0dda778af58708c92b2abce
Author: Mark Hindley m...@hindley.org.uk
Date:   Mon Mar 16 10:35:39 2009 +

DB_LOG_INMEMORY changed to DB_LOG_IN_MEMORY!!

diff --git a/apt-cacher-lib-cs.pl b/apt-cacher-lib-cs.pl
index 83feed9..e0665c4 100755
--- a/apt-cacher-lib-cs.pl
+++ b/apt-cacher-lib-cs.pl
@@ -124,7 +124,7 @@ sub db_recover {
DB_INIT_MPOOL | DB_INIT_TXN |
  DB_RECOVER | DB_PRIVATE | DB_USE_ENVIRON,
  or die Unable to create recovery environment: 
$BerkeleyDB::Error\n;
-$renv-log_set_config( DB_LOG_INMEMORY, 1 )  warn log_set_config failed 
with $!;
+$renv-log_set_config( DB_LOG_IN_MEMORY, 1 )  warn log_set_config 
failed with $!;
 close $logfile;
 unlink $cfg-{cache_dir}/private/dblock;
 return defined $renv;



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



Bug#519930: icedtea6-plugin: install fails in update-alternatives

2009-03-16 Thread Marcus Better
Package: icedtea6-plugin
Version: 6b14-1.5~pre1-4
Severity: serious

Upgrading the package from 6b14-1.5~pre1-3 fails:

~# aptitude install icedtea6-plugin 
Reading package lists... Done 
Building dependency tree  
Reading state information... Done 
Reading extended state information
Initializing package states... Done
The following partially installed packages will be configured:
  icedtea6-plugin
0 packages upgraded, 0 newly installed, 0 to remove and 2 not upgraded.
Need to get 0B of archives. After unpacking 0B will be used.
Writing extended state information... Done
Setting up icedtea6-plugin (6b14-1.5~pre1-4) ...
update-alternatives: error: alternative link 
/usr/lib/mozilla/plugins/libjavaplugin.so is already managed by 
iceweasel-javaplugin.so.
dpkg: error processing icedtea6-plugin (--configure):
 subprocess installed post-installation script returned error exit status 2
Errors were encountered while processing:
 icedtea6-plugin
E: Sub-process /usr/bin/dpkg returned an error code (1)
A package failed to install.  Trying to recover:
Setting up icedtea6-plugin (6b14-1.5~pre1-4) ...
update-alternatives: error: alternative link 
/usr/lib/mozilla/plugins/libjavaplugin.so is already managed by 
iceweasel-javaplugin.so.
dpkg: error processing icedtea6-plugin (--configure):
 subprocess installed post-installation script returned error exit status 2
Errors were encountered while processing:
 icedtea6-plugin


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

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

Versions of packages icedtea6-plugin depends on:
ii  dpkg 1.15.0  Debian package management system
ii  libatk1.0-0  1.22.0-1The ATK accessibility toolkit
ii  libc62.9-4   GNU C Library: Shared libraries
ii  libcairo21.8.6-2 The Cairo 2D vector graphics libra
ii  libfontconfig1   2.6.0-3 generic font configuration library
ii  libfreetype6 2.3.7-2 FreeType 2 font engine, shared lib
ii  libgcc1  1:4.3.3-3   GCC support library
ii  libglib2.0-0 2.18.4-2The GLib library of C routines
ii  libgtk2.0-0  2.14.7-4+b1 The GTK+ graphical user interface 
ii  libmozjs1d   1.9.0.6-1   The Mozilla SpiderMonkey JavaScrip
ii  libnspr4-0d  4.7.1-4 NetScape Portable Runtime Library
ii  libpango1.0-01.22.4-2Layout and rendering of internatio
ii  libstdc++6   4.3.3-3 The GNU Standard C++ Library v3
ii  openjdk-6-jre6b14-1.5~pre1-4 OpenJDK Java runtime, using Hotspo

icedtea6-plugin recommends no packages.

icedtea6-plugin suggests no packages.

-- no debconf information



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



Bug#519338: marked as done (libsndfile1: FTB - When building on AMD64 built in test suite fails for vorbis audio)

2009-03-16 Thread Debian Bug Tracking System

Your message dated Mon, 16 Mar 2009 09:03:13 +
with message-id e1lj8j3-0003df...@ries.debian.org
and subject line Bug#519338: fixed in libsndfile 1.0.19-2
has caused the Debian Bug report #519338,
regarding libsndfile1: FTB - When building on AMD64 built in test suite fails 
for vorbis audio
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
519338: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=519338
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: libsndfile1
Version: 1.0.19-1
Severity: serious
Justification: no longer builds from source


Attempting to build this from source the built in test suite fails.  Here is
the last few lines:

ogg_seek_test  : vorbis_double.oga ... ok
ogg_stereo_seek_test   : vorbis_seek.ogg . ok
vorbis_test: vorbis_test.oga . 

Error : max_abs 1.020731 should be  1.02.

make[2]: *** [check] Error 1
make[2]: Leaving directory 
`/home/fozzy/computing/software/debian/libsndfile-1.0.19/tests'
make[1]: *** [check-recursive] Error 1
make[1]: Leaving directory 
`/home/fozzy/computing/software/debian/libsndfile-1.0.19'
make: *** [build-stamp] Error 2
dpkg-buildpackage: failure: debian/rules build gave error exit status 2

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

Kernel: Linux 2.6.28.7-ecrins
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages libsndfile1 depends on:
ii  libc6 2.7-18 GNU C Library: Shared libraries
ii  libflac8  1.2.1-1.2  Free Lossless Audio Codec - runtim

libsndfile1 recommends no packages.

libsndfile1 suggests no packages.

-- no debconf information


---End Message---
---BeginMessage---
Source: libsndfile
Source-Version: 1.0.19-2

We believe that the bug you reported is fixed in the latest version of
libsndfile, which is due to be installed in the Debian FTP archive:

libsndfile1-dev_1.0.19-2_i386.deb
  to pool/main/libs/libsndfile/libsndfile1-dev_1.0.19-2_i386.deb
libsndfile1_1.0.19-2_i386.deb
  to pool/main/libs/libsndfile/libsndfile1_1.0.19-2_i386.deb
libsndfile_1.0.19-2.diff.gz
  to pool/main/libs/libsndfile/libsndfile_1.0.19-2.diff.gz
libsndfile_1.0.19-2.dsc
  to pool/main/libs/libsndfile/libsndfile_1.0.19-2.dsc
sndfile-programs_1.0.19-2_i386.deb
  to pool/main/libs/libsndfile/sndfile-programs_1.0.19-2_i386.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 519...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Samuel Mimram smim...@debian.org (supplier of updated libsndfile package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 16 Mar 2009 09:44:42 +0100
Source: libsndfile
Binary: libsndfile1-dev libsndfile1 sndfile-programs
Architecture: source i386
Version: 1.0.19-2
Distribution: unstable
Urgency: low
Maintainer: Samuel Mimram smim...@debian.org
Changed-By: Samuel Mimram smim...@debian.org
Description: 
 libsndfile1 - Library for reading/writing audio files
 libsndfile1-dev - Library for reading/writing audio files
 sndfile-programs - Sample programs that use libsndfile
Closes: 518037 519338
Changes: 
 libsndfile (1.0.19-2) unstable; urgency=low
 .
   * Ignore failures of check since it causes too many false negatives,
 closes: #518037, #519338.
   * Update standards version to 3.8.1.
Checksums-Sha1: 
 68b441ed1ea7d83033be644713b7db7a4d12bc0a 1181 libsndfile_1.0.19-2.dsc
 ade3bd750ca898ec088d8cba479c9243a322395c 9345 libsndfile_1.0.19-2.diff.gz
 c941c4033b79b0e07d6197b6b420da35a5c9b365 351458 
libsndfile1-dev_1.0.19-2_i386.deb
 101ab80a9c631b5358533a023cd7136af92aeb01 226964 libsndfile1_1.0.19-2_i386.deb
 db2a8dbe5f0ef8c03fb80b789edfbcd5b110a4f1 99158 
sndfile-programs_1.0.19-2_i386.deb
Checksums-Sha256: 
 1d612513821017d5f62e039e236837e85d8e1bfce69efb14db811ae90a342769 1181 
libsndfile_1.0.19-2.dsc
 002d2a1e7ae6787275ec46e9135547aef6e10114d962969114c2cc7feefbba69 9345 
libsndfile_1.0.19-2.diff.gz
 a339ec8030c2df8cef02443f119a4fc69ad4104699ad51277bf84fc7219cea87 351458 
libsndfile1-dev_1.0.19-2_i386.deb
 

Bug#518281: FTBS: midori on pa-risc

2009-03-16 Thread Sebastian Andrzej Siewior
* Trent W. Buck | 2009-03-16 13:01:50 [+1100]:

Unfortunately neither I nor Christian (the upstream maintainer) have
access to HPPA hardware, and I cannot emulate it with the qemu version
available to me.  However Christian has said that your patch looks
good.  I guess that means he's happy to apply it once we know it
fixes the problem.

I will leave this bug as-is until someone can provide HPPA hardware to
test on.

So you do are not a DD, I did not know this. Could you please upload
this to exp and see if the buildd build this? You need a similar fix for
mips btw.

Sebastian



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



Bug#519927: default response to libpam-runtime configuration disables unix passwords

2009-03-16 Thread Russell Senior

Package: libpam-runtime 
Version: 1.0.1-7
Severity: critical

On some Debian unstable systems, configuring libpam-runtime leads to
the following question:

  # dpkg-reconfigure libpam-runtime
  Pluggable Authentication Modules (PAM) determine how authentication, 
  authorization, and password changing are handled on the system, as well as 
  allowing configuration of additional actions to take when starting user 
  sessions.

  Some PAM module packages provide profiles that can be used to automatically 
  adjust the behavior of all PAM-using applications on the system.  Please 
  indicate which of these behaviors you wish to enable.

1. Unix authentication  2. none of the above

  (Enter the items you want to select, separated by spaces.)

  PAM profiles to enable: 

Pressing enter (with an empty default) results in Unix password
authentication being turned off.  This is unexpected and not very nice
behavior.  I have labelled severity as critical as it had the effect
of leaving a system accessible remotely without password for several
days, during which typical ssh robo-scans were able to log in freely
and trivially gain root.


-- 
Russell Senior ``I have nine fingers; you have ten.''
seni...@aracnet.com



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



Bug#518037: marked as done (libsndfile_1.0.19-1(mips/unstable): FTBFS on mips. regression test failure.)

2009-03-16 Thread Debian Bug Tracking System

Your message dated Mon, 16 Mar 2009 09:03:13 +
with message-id e1lj8j3-0003dd...@ries.debian.org
and subject line Bug#518037: fixed in libsndfile 1.0.19-2
has caused the Debian Bug report #518037,
regarding libsndfile_1.0.19-1(mips/unstable): FTBFS on mips. regression test 
failure.
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
518037: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=518037
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: libsndfile
Version: 1.0.19-1
Severity: serious

There was an error while trying to autobuild your package:

 Automatic build of libsndfile_1.0.19-1 on mayr by sbuild/mips 99.999
 Build started at 20090303-1511

[...]

 ** Using build dependencies supplied by package:
 Build-Depends: debhelper (= 7.0.0), dpatch, pkg-config, libvorbis-dev, 
 libflac-dev (= 1.1.4-3), libasound2-dev [!hurd-i386 !kfreebsd-i386 
 !kfreebsd-amd64]

[...]

 float_scaled_test  : pcm_16.sds .. -140.5dB SNR 
 ... ok
 float_scaled_test  : pcm_24.sds .. -181.3dB SNR 
 ... ok
 float_scaled_test  : flac_8.flac .  -41.9dB SNR 
 ... ok
 float_scaled_test  : flac_16.flac   -90.7dB SNR 
 ... ok
 float_scaled_test  : flac_24.flac  -138.6dB SNR 
 ... ok
 float_scaled_test  : vorbis.oga .. 
 
 Line 231: Actual SNR ( 57.4)  target SNR (-31.0).
 
 make[2]: *** [check] Error 1
 make[2]: Leaving directory `/build/buildd/libsndfile-1.0.19/tests'
 make[1]: *** [check-recursive] Error 1
 make[1]: Leaving directory `/build/buildd/libsndfile-1.0.19'
 make: *** [build-stamp] Error 2
 dpkg-buildpackage: failure: debian/rules build gave error exit status 2

A full build log can be found at:
http://buildd.debian.org/build.php?arch=mipspkg=libsndfilever=1.0.19-1



---End Message---
---BeginMessage---
Source: libsndfile
Source-Version: 1.0.19-2

We believe that the bug you reported is fixed in the latest version of
libsndfile, which is due to be installed in the Debian FTP archive:

libsndfile1-dev_1.0.19-2_i386.deb
  to pool/main/libs/libsndfile/libsndfile1-dev_1.0.19-2_i386.deb
libsndfile1_1.0.19-2_i386.deb
  to pool/main/libs/libsndfile/libsndfile1_1.0.19-2_i386.deb
libsndfile_1.0.19-2.diff.gz
  to pool/main/libs/libsndfile/libsndfile_1.0.19-2.diff.gz
libsndfile_1.0.19-2.dsc
  to pool/main/libs/libsndfile/libsndfile_1.0.19-2.dsc
sndfile-programs_1.0.19-2_i386.deb
  to pool/main/libs/libsndfile/sndfile-programs_1.0.19-2_i386.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 518...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Samuel Mimram smim...@debian.org (supplier of updated libsndfile package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 16 Mar 2009 09:44:42 +0100
Source: libsndfile
Binary: libsndfile1-dev libsndfile1 sndfile-programs
Architecture: source i386
Version: 1.0.19-2
Distribution: unstable
Urgency: low
Maintainer: Samuel Mimram smim...@debian.org
Changed-By: Samuel Mimram smim...@debian.org
Description: 
 libsndfile1 - Library for reading/writing audio files
 libsndfile1-dev - Library for reading/writing audio files
 sndfile-programs - Sample programs that use libsndfile
Closes: 518037 519338
Changes: 
 libsndfile (1.0.19-2) unstable; urgency=low
 .
   * Ignore failures of check since it causes too many false negatives,
 closes: #518037, #519338.
   * Update standards version to 3.8.1.
Checksums-Sha1: 
 68b441ed1ea7d83033be644713b7db7a4d12bc0a 1181 libsndfile_1.0.19-2.dsc
 ade3bd750ca898ec088d8cba479c9243a322395c 9345 libsndfile_1.0.19-2.diff.gz
 c941c4033b79b0e07d6197b6b420da35a5c9b365 351458 
libsndfile1-dev_1.0.19-2_i386.deb
 101ab80a9c631b5358533a023cd7136af92aeb01 226964 libsndfile1_1.0.19-2_i386.deb
 db2a8dbe5f0ef8c03fb80b789edfbcd5b110a4f1 99158 
sndfile-programs_1.0.19-2_i386.deb
Checksums-Sha256: 
 1d612513821017d5f62e039e236837e85d8e1bfce69efb14db811ae90a342769 1181 
libsndfile_1.0.19-2.dsc
 002d2a1e7ae6787275ec46e9135547aef6e10114d962969114c2cc7feefbba69 9345 
libsndfile_1.0.19-2.diff.gz
 a339ec8030c2df8cef02443f119a4fc69ad4104699ad51277bf84fc7219cea87 351458 

Bug#519923: listen_0.6~rc1-1(experimental/i386/demosthenes): Missing build-deps, broken configure

2009-03-16 Thread Marc Brockschmidt
Package: listen
Version: 0.6~rc1-1
Severity: serious
Tags: experimental

Heya,

Your package fails to build on my buildd:

| Automatic build of listen_0.6~rc1-1 on demosthenes.ayous.org by sbuild/i386 
98-farm
| Build started at 20090315-1942
| **

[...]

| Checking for DBUS: not found
| Listen dbus recommanded. 
| Checking for python-daap: not found
| Listen recommends python-daap (http://jerakeen.org/code/PythonDaap/)
| Checking for python-libgpod: not found
| Listen recommends python-gpod (http://www.gtkpod.org)
| Checking for python-musicbrainz2: not found
| , but recommanded
| Checking for python-tunepimp  0.5: not found
| , but recommanded
| Checking for libsexy: not found
| Listen recommends python sexy for sexy widget. 
| Checking for gnome.ui:/bin/sh: line 4: 32214 Aborted python 
./check.py
| make[1]: *** [check] Error 134
| make[1]: Leaving directory `/build/buildd/listen-0.6~rc1'
| make: *** [debian/stamp-makefile-build] Error 2
| dpkg-buildpackage: failure: debian/rules build gave error exit status 2
| **
| Build finished at 20090315-1949
| FAILED [dpkg-buildpackage died]
| Build needed 00:00:13, 3756k disk space

A complete build log can be found at
http://experimental.debian.net/build.php?arch=i386pkg=listenver=0.6~rc1-1

Marc
-- 
Fachbegriffe der Informatik - Einfach erklärt
165: SuSE
   Nürnberger Windows (Andreas Gradert)



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



Bug#519133: marked as done (banshee-extension-mirage: file conflict with mirage)

2009-03-16 Thread Debian Bug Tracking System

Your message dated Mon, 16 Mar 2009 10:47:04 +
with message-id e1ljaly-gf...@ries.debian.org
and subject line Bug#519133: fixed in banshee-extension-mirage 0.5.0-2
has caused the Debian Bug report #519133,
regarding banshee-extension-mirage: file conflict with mirage
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
519133: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=519133
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: banshee-extension-mirage
Version: 0.5.0-1
Severity: serious
Justification: Policy 6.6(4)

The translations that banshee-extension-mirage now ships conflict with
those from an (unrelated) image viewer named mirage:

 dpkg: error processing 
 /var/cache/apt/archives/banshee-extension-mirage_0.5.0-1_amd64.deb (--unpack):
 trying to overwrite `/usr/share/locale/it/LC_MESSAGES/mirage.mo', which is 
 also in package mirage

Could you please arrange for b-e-m to use a more fully-qualified
message catalog name?

Thanks!

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

Kernel: Linux 2.6.28-1-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 banshee-extension-mirage depends on:
ii  banshee   1.4.3-2Media Management and Playback appl
ii  libc6 2.9-4  GNU C Library: Shared libraries
ii  libfftw3-33.1.2-3.1  library for computing Fast Fourier
ii  libglib2.0-0  2.18.4-2   The GLib library of C routines
ii  libgstreamer0.10-00.10.22-2  Core GStreamer libraries and eleme
ii  libgtk2.0-cil 2.12.8-2   CLI binding for the GTK+ toolkit 2
ii  libmono-addins0.2-cil 0.4-4  addin framework for extensible CLI
ii  libmono-corlib2.0-cil 2.0.1-5Mono core library (2.0)
ii  libmono-sqlite2.0-cil 2.0.1-5Mono Sqlite library
ii  libmono-system-data2.0-cil2.0.1-5Mono System.Data Library
ii  libsamplerate00.1.7-2audio rate conversion library

banshee-extension-mirage recommends no packages.

banshee-extension-mirage suggests no packages.

-- no debconf information


---End Message---
---BeginMessage---
Source: banshee-extension-mirage
Source-Version: 0.5.0-2

We believe that the bug you reported is fixed in the latest version of
banshee-extension-mirage, which is due to be installed in the Debian FTP 
archive:

banshee-extension-mirage_0.5.0-2.diff.gz
  to 
pool/main/b/banshee-extension-mirage/banshee-extension-mirage_0.5.0-2.diff.gz
banshee-extension-mirage_0.5.0-2.dsc
  to pool/main/b/banshee-extension-mirage/banshee-extension-mirage_0.5.0-2.dsc
banshee-extension-mirage_0.5.0-2_amd64.deb
  to 
pool/main/b/banshee-extension-mirage/banshee-extension-mirage_0.5.0-2_amd64.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 519...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Sebastian Dröge sl...@debian.org (supplier of updated 
banshee-extension-mirage package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 16 Mar 2009 11:21:03 +0100
Source: banshee-extension-mirage
Binary: banshee-extension-mirage
Architecture: source amd64
Version: 0.5.0-2
Distribution: unstable
Urgency: low
Maintainer: Sebastian Dröge sl...@debian.org
Changed-By: Sebastian Dröge sl...@debian.org
Description: 
 banshee-extension-mirage - Automatic Playlist Generation Extension for Banshee
Closes: 519133
Changes: 
 banshee-extension-mirage (0.5.0-2) unstable; urgency=low
 .
   * debian/patches/01_gettext-package.patch:
 + Fix gettext package to prevent file conflicts with the
   image viewer mirage (Closes: #519133).
   * debian/patches/02_am-maintainer-mode.patch:
 + Add AM_MAINTAINER_MODE to configure.ac to allow easier patching
   of autotools generated files.
   * debian/patches/99_autoreconf.patch:
 + Regenerate autotools generated files for the above changes.
Checksums-Sha1: 
 ac8f2cbcdac1ba518490b0191a93666ba72fa3e1 1604 
banshee-extension-mirage_0.5.0-2.dsc
 

Bug#519632: ocamlbricks: FTBFS: ocamldoc-api-ref-config: Command not found

2009-03-16 Thread Jonathan . Roudiere

Hi,

/usr/share/cdbs/1/class/ocamldoc-api-ref-config is provide by
the ocaml-nox package and ocamlbricks depends on ocaml-nox,

Ocaml-nox is it installed on your system ?

try apt-get build-dep ocamlbricks before build ocamlbricks,

Joe



pgpcaiLemmwRJ.pgp
Description: Signature numérique PGP


binfjVFnKFG3U.bin
Description: Clef publique PGP


Bug#515035: Backport changes from 2.3.1 to 2.2.2 or new upload?

2009-03-16 Thread Vincent Snijders

Salvatore Bonaccorso schreef:

Hi

Vincent Snijders wrote in Message #27, that there is a fix now for
this problem regarding the powerpc architecture.

I have a question about that, would be the fix backported for 2.2.2
currently in unstable, or would development version 2.3.1 be uploaded
to unstable in future?



I am not an fpc maintainer, nor a debian maintainer, so I won't backport 
anything.

The fix is available in the development version 2.3.1 which will eventually become 
2.4.0 as stable release. When, that is unknown.


AFAIK, the fix has not been backported to version 2.2.4, which is already tagged in 
the fpc svn repository and is to be released in the coming weeks. Personally, I 
doubt, that this fix will be back ported to the 2.2.x branch, but you 'd better ask 
that a fpc or debian developer.


Even if it will be backported to 2.2.5, it is not yet decided if there will be a 
2.2.6 release or that the next fpc release will be 2.4.0. A fixes_2_4_0 branch (the 
first step towards a 2.4.0 release, after the 2.3.1 has all the features for 2.4.0) 
has not yet been created.


Vincent



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



Bug#519930: [Openjdk] Bug#519930: icedtea6-plugin: install fails in update-alternatives

2009-03-16 Thread Matthias Klose
reassign 519930 iceweasel
thanks

the plugin is provided by icedtea6-plugin, it shouldn't be managed by iceweasel.

Marcus Better schrieb:
 Package: icedtea6-plugin
 Version: 6b14-1.5~pre1-4
 Severity: serious
 
 Upgrading the package from 6b14-1.5~pre1-3 fails:
 
 ~# aptitude install icedtea6-plugin 
 Reading package lists... Done 
 Building dependency tree  
 Reading state information... Done 
 Reading extended state information
 Initializing package states... Done
 The following partially installed packages will be configured:
   icedtea6-plugin
 0 packages upgraded, 0 newly installed, 0 to remove and 2 not upgraded.
 Need to get 0B of archives. After unpacking 0B will be used.
 Writing extended state information... Done
 Setting up icedtea6-plugin (6b14-1.5~pre1-4) ...
 update-alternatives: error: alternative link 
 /usr/lib/mozilla/plugins/libjavaplugin.so is already managed by 
 iceweasel-javaplugin.so.
 dpkg: error processing icedtea6-plugin (--configure):
  subprocess installed post-installation script returned error exit status 2
 Errors were encountered while processing:
  icedtea6-plugin
 E: Sub-process /usr/bin/dpkg returned an error code (1)
 A package failed to install.  Trying to recover:
 Setting up icedtea6-plugin (6b14-1.5~pre1-4) ...
 update-alternatives: error: alternative link 
 /usr/lib/mozilla/plugins/libjavaplugin.so is already managed by 
 iceweasel-javaplugin.so.
 dpkg: error processing icedtea6-plugin (--configure):
  subprocess installed post-installation script returned error exit status 2
 Errors were encountered while processing:
  icedtea6-plugin




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



Bug#515035: Backport changes from 2.3.1 to 2.2.2 or new upload?

2009-03-16 Thread Mazen Neifer
FPC 2.2.4 is being released by the end of the week, This problem is
probably fixed in it. Otherwise I will backport the fixed from 2.3.1

Cheers,
Mazen,

Le lundi 16 mars 2009 à 08:42 +0100, Salvatore Bonaccorso a écrit :
 Hi
 
 Vincent Snijders wrote in Message #27, that there is a fix now for
 this problem regarding the powerpc architecture.
 
 I have a question about that, would be the fix backported for 2.2.2
 currently in unstable, or would development version 2.3.1 be uploaded
 to unstable in future?
 
 Thanks for your work on fpc!
 Bests
 Salvatore




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



Processed: Re: [Openjdk] Bug#519930: icedtea6-plugin: install fails in update-alternatives

2009-03-16 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reassign 519930 iceweasel
Bug#519930: icedtea6-plugin: install fails in update-alternatives
Bug reassigned from package `icedtea6-plugin' to `iceweasel'.

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#519947: resolvconf destroys /etc/resolv.conf on every boot

2009-03-16 Thread Christoph Pleger
Package: resolvconf
Version: 1.42
Severity: critical
Justification: breaks unrelated software

Hello,

after installing resolvconf (because it is recommended by vpnc), my file 
/etc/resolv.conf was overwritten by only a comment that the file should not be 
edited by hand. Because it contained no information about nameserver 
configuration, all resolution of DNS host names did not work anymore. To make 
DNS resolution work again, I restored my old /etc/resolv.conf, but after the 
next reboot, the file again only contained the comment mentioned above.

I think that this bug is critical, as it makes networking nearly unusable. 
Surely, most users do not want to type in IP addresses.

Regards
  Christoph


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

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

Versions of packages resolvconf depends on:
ii  coreutils 6.10-6 The GNU core utilities
ii  debconf [debconf-2.0] 1.5.24 Debian configuration management sy
ii  lsb-base  3.2-20 Linux Standard Base 3.2 init scrip

resolvconf recommends no packages.

resolvconf suggests no packages.

-- debconf information:
* resolvconf/linkify-resolvconf: true
* resolvconf/downup-interfaces:
  resolvconf/link-tail-to-original: false



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



Processed (with 1 errors): Re: [Resolvconf-devel] Bug#519947: resolvconf destroys /etc/resolv.conf on every boot

2009-03-16 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 package resolvconf
Ignoring bugs not assigned to: resolvconf

 severity 519947 normal
Bug#519947: resolvconf destroys /etc/resolv.conf on every boot
Severity set to `normal' from `critical'

 reassign 519947 vpnc
Bug#519947: resolvconf destroys /etc/resolv.conf on every boot
Bug reassigned from package `resolvconf' to `vpnc'.

 retitle 519947 Should not recommend resolvconf but only suggest it
Bug number 519947 belongs to package vpnc, skipping.

 stop
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#519632: ocamlbricks: FTBFS: ocamldoc-api-ref-config: Command not found

2009-03-16 Thread Sylvain Le Gall
On Mon, Mar 16, 2009 at 12:08:25PM +0100, 
jonathan.roudi...@lipn.univ-paris13.fr wrote:
 Hi,

 /usr/share/cdbs/1/class/ocamldoc-api-ref-config is provide by
 the ocaml-nox package and ocamlbricks depends on ocaml-nox,

 Ocaml-nox is it installed on your system ?

 try apt-get build-dep ocamlbricks before build ocamlbricks,


There is an OCaml transition to 3.11. One of the goal of this transition
is to move a lots of packaging related stuff into dh-ocaml.
ocamldoc-api-ref-config for example is no more in ocaml-nox but in
dh-ocaml.

You should update your package and upload it for OCaml 3.11
http://wiki.debian.org/Teams/OCamlTaskForce/OCaml311Migration

Regards
Sylvain Le Gall


signature.asc
Description: Digital signature


Processed: Re: Bug#519930: [Openjdk] Bug#519930: icedtea6-plugin: install fails in update-alternatives

2009-03-16 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reassign 519930 icedtea6-plugin
Bug#519930: icedtea6-plugin: install fails in update-alternatives
Bug reassigned from package `iceweasel' to `icedtea6-plugin'.

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#519930: [Openjdk] Bug#519930: icedtea6-plugin: install fails in update-alternatives

2009-03-16 Thread Mike Hommey
reassign 519930 icedtea6-plugin
thanks

On Mon, Mar 16, 2009 at 12:19:20PM +0100, Matthias Klose d...@ubuntu.com 
wrote:
 reassign 519930 iceweasel
 thanks
 
 the plugin is provided by icedtea6-plugin, it shouldn't be managed by 
 iceweasel.

It's not managed by iceweasel.

Mike



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



Processed: Re: Migrating tcl8.5 and tk8.5

2009-03-16 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 clone 517182 -1
Bug#517182: tcl8.5: no I _really_ don't want my alternatives to get messed up.
Bug 517182 cloned as bug 519958.

 reassign 517182 tcl8.5 8.5.6-2
Bug#517182: tcl8.5: no I _really_ don't want my alternatives to get messed up.
Bug reassigned from package `tcl8.5, tk8.5' to `tcl8.5'.

 reassign -1 tk8.5 8.5.6-2
Bug#519958: tcl8.5: no I _really_ don't want my alternatives to get messed up.
Bug reassigned from package `tcl8.5, tk8.5' to `tk8.5'.

 fixed 517182 8.5.6-3
Bug#517182: tcl8.5: no I _really_ don't want my alternatives to get messed up.
Bug marked as fixed in version 8.5.6-3.

 fixed -1 8.5.6-3
Bug#519958: tcl8.5: no I _really_ don't want my alternatives to get messed up.
Bug marked as fixed in version 8.5.6-3.

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Processed: tagging 519923

2009-03-16 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 519923 + pending
Bug#519923: listen_0.6~rc1-1(experimental/i386/demosthenes): Missing 
build-deps, broken configure
Tags were: experimental
Tags added: pending


End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#516829: Http double slash request arbitrary file access vulnerability

2009-03-16 Thread Nico Golde
Hi,
this bug was marked as pending on February 24th. What is 
missing for the upload? Do you need an NMU?

Cheers
Nico

-- 
Nico Golde - http://www.ngolde.de - n...@jabber.ccc.de - GPG: 0x73647CFF
For security reasons, all text in this mail is double-rot13 encrypted.


pgpxQWt87MiNL.pgp
Description: PGP signature


Bug#519312: Removing dfb++ and fusionsound?

2009-03-16 Thread Adeodato Simó
Hello,

dfb++ and fusionsound have been orphaned for more than a year now
without nobody picking them up. They are both libraries, said to be part
of the directfb suite. However, they’ve not been adopted by the DirectFB
Maintainers, and additionally they have no reverse dependencies in Debian.

Both are failing to build against directfb 1.2.0 (#519307, #519312). I’d
like to hear the opinion of the DirectFB Maintainers about the relevance
of these packages, and their willingness to adopt them.

But since they have no reverse dependencies, maybe a plain removal is a
better option? I’ll do that in a week unless somebody objects or an
offer for maintenance is received.

Thanks,

-- 
- Are you sure we're good?
- Always.
-- Rory and Lorelai




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



Bug#516829: Http double slash request arbitrary file access vulnerability

2009-03-16 Thread Mehdi Dogguy


Nico Golde wrote:
 Hi,
 this bug was marked as pending on February 24th. What is 
 missing for the upload? Do you need an NMU?
 

We were fixing other bugs. It will uploaded ASAP (tonight...).

Cheers,

-- 
Mehdi Dogguy مهدي الدقي
http://www.pps.jussieu.fr/~dogguy
Tel.: (+33).1.44.27.28.38



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



Bug#519965: python-matplotlib: breaks python help('modules')

2009-03-16 Thread Bernd Zeimetz
Package: python-matplotlib
Version: 0.98.3-5
Severity: grave


0 b...@think:~$ python2.5
Python 2.5.4 (r254:67916, Feb 18 2009, 03:00:47) 
[GCC 4.3.3] on linux2
Type help, copyright, credits or license for more information.
 help('modules')

Please wait a moment while I gather a list of all available modules...


/usr/lib/python2.5/site-packages/apt/__init__.py:18: FutureWarning: apt API not 
stable yet
  warnings.warn(apt API not stable yet, FutureWarning)
/usr/lib/python2.5/site-packages/logilab/__init__.py:3: UserWarning: Module 
OpenGL was already imported from 
/usr/lib/python2.5/site-packages/OpenGL/__init__.py, but 
/usr/lib/python2.5/site-packages is being added to sys.path
  __import__('pkg_resources').declare_namespace(__name__)
Traceback (most recent call last):
  File stdin, line 1, in module
  File /usr/lib/python2.5/site.py, line 342, in __call__
return pydoc.help(*args, **kwds)
  File /usr/lib/python2.5/pydoc.py, line 1647, in __call__
self.help(request)
  File /usr/lib/python2.5/pydoc.py, line 1684, in help
elif request == 'modules': self.listmodules()
  File /usr/lib/python2.5/pydoc.py, line 1805, in listmodules
ModuleScanner().run(callback)
  File /usr/lib/python2.5/pydoc.py, line 1856, in run
for importer, modname, ispkg in pkgutil.walk_packages():
  File /usr/lib/python2.5/pkgutil.py, line 125, in walk_packages
for item in walk_packages(path, name+'.', onerror):
  File /usr/lib/python2.5/pkgutil.py, line 110, in walk_packages
__import__(name)
  File /usr/lib/python2.5/site-packages/matplotlib/config/__init__.py, line 
5, in module
from rcparams import rc
  File /usr/lib/python2.5/site-packages/matplotlib/config/rcparams.py, line 
117, in module
rcParams = rc_params()
  File /usr/lib/python2.5/site-packages/matplotlib/config/rcparams.py, line 
49, in rc_params
fname = get_config_file()
  File /usr/lib/python2.5/site-packages/matplotlib/config/cutils.py, line 
181, in get_config_file
path =  get_data_path() # guaranteed to exist or raise
  File /usr/lib/python2.5/site-packages/matplotlib/config/verbose.py, line 
74, in wrapper
ret = func(*args, **kwargs)
  File /usr/lib/python2.5/site-packages/matplotlib/config/cutils.py, line 
129, in _get_data_path_cached
defaultParams['datapath'][0] = _get_data_path()
  File /usr/lib/python2.5/site-packages/matplotlib/config/cutils.py, line 
125, in _get_data_path
raise RuntimeError('Could not find the matplotlib data files')
RuntimeError: Could not find the matplotlib data files
 



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

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

Versions of packages python-matplotlib depends on:
ii  libatk1.0-01.24.0-2  The ATK accessibility toolkit
ii  libc6  2.9-5 GNU C Library: Shared libraries
ii  libcairo2  1.8.6-2+b1The Cairo 2D vector graphics libra
ii  libfreetype6   2.3.9-4   FreeType 2 font engine, shared lib
ii  libgcc11:4.3.3-5 GCC support library
ii  libglib2.0-0   2.20.0-1  The GLib library of C routines
ii  libgtk2.0-02.14.7-4+b1   The GTK+ graphical user interface 
ii  libpango1.0-0  1.22.4-2  Layout and rendering of internatio
ii  libpng12-0 1.2.35-1  PNG library - runtime
ii  libstdc++6 4.3.3-5   The GNU Standard C++ Library v3
ii  python 2.5.4-2   An interactive high-level object-o
ii  python-cairo   1.4.12-1.2Python bindings for the Cairo vect
ii  python-central 0.6.11register and build utility for Pyt
ii  python-dateutil1.4.1-3   powerful extensions to the standar
ii  python-excelerator 0.6.3a-4  module for reading/writing Excel s
ii  python-glade2  2.14.1-1  GTK+ bindings: Glade support
ii  python-gobject 2.16.1-1  Python bindings for the GObject li
ii  python-gtk22.14.1-1  Python bindings for the GTK+ widge
ii  python-matplotlib-data 0.98.3-5  Python based plotting system (data
ii  python-numpy   1:1.2.1-1 Numerical Python adds a fast array
ii  python-pyparsing   1.5.1-2   Python parsing module
ii  python-qt3 3.17.4-1  Qt3 bindings for Python
ii  python-qt4 4.4.2-4   Python bindings for Qt4
ii  python-tk  2.5.2-1   Tkinter - Writing Tk applications 
ii  python-tz  2009a-1   Python version of the Olson timezo
ii  python-wxgtk2.82.8.7.1-1.1   wxWidgets Cross-platform C++ GUI t
ii  tcl8.4 8.4.19-3  Tcl (the Tool Command Language) v8

Bug#519966: hplip-data package contains .pyc files because of wrong dh_python

2009-03-16 Thread Steve Langasek
Package: hplip-data
Version: 3.9.2-1
Severity: serious
Justification: python policy 2.6
Tags: patch
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu ubuntu-patch jaunty

Running 'debsums -s' on my system, I found a large number of checksum
mismatches for files under /usr/share/hplip.  The reason for this is that
hplip-data incorrectly ships a number of .pyc files within the package,
which has been a violation of python packaging policy as long as there has
been a python packaging policy.

The debian/rules for some reason calls dh_pysupport for the Architecture:
any packages, when hplip-data, containing the .py files, is an arch: all
package.  The attached patch fixes this so that the .py files are actually
registered with python-support.

The hplip.preinst code to remove all .pyc and .pyo files on upgrade of the
*hplip* package is probably also unnecessary with this change.  (Even if
it's not unnecessary, it is wrong.  The hplip package shouldn't be doing
anything with .pyc files originating with another binary package.)

-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
Ubuntu Developerhttp://www.debian.org/
slanga...@ubuntu.com vor...@debian.org
diff -Nru hplip-3.9.2/debian/changelog hplip-3.9.2/debian/changelog
--- hplip-3.9.2/debian/changelog	2009-03-16 13:46:37.0 +
+++ hplip-3.9.2/debian/changelog	2009-03-16 13:46:39.0 +
@@ -1,3 +1,17 @@
+hplip (3.9.2-1ubuntu3) jaunty; urgency=low
+
+  * Also add missing ${python:Depends} to hplip-data.
+
+ -- Steve Langasek steve.langa...@ubuntu.com  Mon, 16 Mar 2009 13:30:57 +
+
+hplip (3.9.2-1ubuntu2) jaunty; urgency=low
+
+  * The python scripts are in hplip-data - call dh_pysupport -i, not
+dh_pysupport -a, so we don't end up shipping .pyc files in the
+package!
+
+ -- Steve Langasek steve.langa...@ubuntu.com  Mon, 16 Mar 2009 12:50:52 +
+
 hplip (3.9.2-1ubuntu1) jaunty; urgency=low
 
   [ Till Kamppeter ]
diff -Nru hplip-3.9.2/debian/control hplip-3.9.2/debian/control
--- hplip-3.9.2/debian/control	2009-03-16 13:46:37.0 +
+++ hplip-3.9.2/debian/control	2009-03-16 13:46:39.0 +
@@ -54,7 +54,7 @@
 Package: hplip-data
 Architecture: all
 Recommends: hplip
-Depends: python
+Depends: ${python:Depends}
 Description: HP Linux Printing and Imaging - data files
  This package contains data files for the HP Linux Printing and
  Imaging System.
diff -Nru hplip-3.9.2/debian/rules hplip-3.9.2/debian/rules
--- hplip-3.9.2/debian/rules	2009-03-16 13:46:37.0 +
+++ hplip-3.9.2/debian/rules	2009-03-16 13:46:39.0 +
@@ -326,8 +326,8 @@
 	dh_compress -i
 	dh_fixperms -i
 #	dh_perl -i
-#	dh_pysupport -i
-#	dh_python -i /usr/share/hplip
+	dh_pysupport -i /usr/share/hplip
+	dh_python -i /usr/share/hplip
 #	dh_makeshlibs -i
 	dh_installdeb -i
 	dh_shlibdeps -i --dpkg-shlibdeps-params=--ignore-missing-info
@@ -362,8 +362,6 @@
 	dh_installman -a
 #	dh_installinfo -a
 	dh_installchangelogs -a $(CHANGELOG)
-	dh_pysupport -a /usr/share/hplip
-	dh_python -a /usr/share/hplip
 	# must come after dh_pysupport and dh_python, or the postinst
 	# ordering will be screwed up and break.
 	#dh_installinit -phplip --init-script=hplip -- multiuser 19


Bug#519711: splashy: hard-coded dependency on libdirectfb-1.0-0

2009-03-16 Thread Luis Mondesi
This is a bit complicated. We will work on it.

On Sat, Mar 14, 2009 at 11:12 AM, Adeodato Simó d...@net.com.org.es wrote:

 Package: splashy
 Version: 0.3.13-3
 Severity: serious

 I guess it’s time to drop the hard coded dependency on libdirectfb-1.0-0.

 Thanks,

 --
 - Are you sure we're good?
 - Always.
-- Rory and Lorelai







-- 
)(-
Luis Mondesi
Maestro Debiano

- START ENCRYPTED BLOCK (Triple-ROT13) --
Gur Hohagh [Yvahk] qvfgevohgvba oevatf gur fcvevg bs Hohagh gb gur fbsgjner
jbeyq.
- END ENCRYPTED BLOCK (Triple-ROT13) --


Bug#519711: splashy: hard-coded dependency on libdirectfb-1.0-0

2009-03-16 Thread Luis Mondesi
Splashy has not been tested against newer version of libdirectfb. I know for
sure that libdirectfb 1.2 makes it segfault.

We will need to work on the transition anyway. I just have not have time
lately to work on this. Maybe this summer.

On Mon, Mar 16, 2009 at 9:53 AM, Adeodato Simó d...@net.com.org.es wrote:

  This is a bit complicated. We will work on it.

 I’m curious. Why is it complicated?

 Thanks,

 --
 - Are you sure we're good?
 - Always.
-- Rory and Lorelai




-- 
)(-
Luis Mondesi
Maestro Debiano

- START ENCRYPTED BLOCK (Triple-ROT13) --
Gur Hohagh [Yvahk] qvfgevohgvba oevatf gur fcvevg bs Hohagh gb gur fbsgjner
jbeyq.
- END ENCRYPTED BLOCK (Triple-ROT13) --


Bug#519312: Removing dfb++ and fusionsound?

2009-03-16 Thread Fathi Boudra
Hi,

IMHO, dfb++ and fusionsound are candidate for plain removal.
I'm not interested to adopt them.

cheers,

Fathi



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



Bug#519711: splashy: hard-coded dependency on libdirectfb-1.0-0

2009-03-16 Thread Adeodato Simó
 This is a bit complicated. We will work on it.

I’m curious. Why is it complicated?

Thanks,

-- 
- Are you sure we're good?
- Always.
-- Rory and Lorelai




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



Bug#519923: marked as done (listen_0.6~rc1-1(experimental/i386/demosthenes): Missing build-deps, broken configure)

2009-03-16 Thread Debian Bug Tracking System

Your message dated Mon, 16 Mar 2009 13:47:03 +
with message-id e1ljd9j-mt...@ries.debian.org
and subject line Bug#519923: fixed in listen 0.6~rc1-2
has caused the Debian Bug report #519923,
regarding listen_0.6~rc1-1(experimental/i386/demosthenes): Missing build-deps, 
broken configure
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
519923: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=519923
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: listen
Version: 0.6~rc1-1
Severity: serious
Tags: experimental

Heya,

Your package fails to build on my buildd:

| Automatic build of listen_0.6~rc1-1 on demosthenes.ayous.org by sbuild/i386 
98-farm
| Build started at 20090315-1942
| **

[...]

| Checking for DBUS: not found
| Listen dbus recommanded. 
| Checking for python-daap: not found
| Listen recommends python-daap (http://jerakeen.org/code/PythonDaap/)
| Checking for python-libgpod: not found
| Listen recommends python-gpod (http://www.gtkpod.org)
| Checking for python-musicbrainz2: not found
| , but recommanded
| Checking for python-tunepimp  0.5: not found
| , but recommanded
| Checking for libsexy: not found
| Listen recommends python sexy for sexy widget. 
| Checking for gnome.ui:/bin/sh: line 4: 32214 Aborted python 
./check.py
| make[1]: *** [check] Error 134
| make[1]: Leaving directory `/build/buildd/listen-0.6~rc1'
| make: *** [debian/stamp-makefile-build] Error 2
| dpkg-buildpackage: failure: debian/rules build gave error exit status 2
| **
| Build finished at 20090315-1949
| FAILED [dpkg-buildpackage died]
| Build needed 00:00:13, 3756k disk space

A complete build log can be found at
http://experimental.debian.net/build.php?arch=i386pkg=listenver=0.6~rc1-1

Marc
-- 
Fachbegriffe der Informatik - Einfach erklärt
165: SuSE
   Nürnberger Windows (Andreas Gradert)


---End Message---
---BeginMessage---
Source: listen
Source-Version: 0.6~rc1-2

We believe that the bug you reported is fixed in the latest version of
listen, which is due to be installed in the Debian FTP archive:

listen_0.6~rc1-2.diff.gz
  to pool/main/l/listen/listen_0.6~rc1-2.diff.gz
listen_0.6~rc1-2.dsc
  to pool/main/l/listen/listen_0.6~rc1-2.dsc
listen_0.6~rc1-2_amd64.deb
  to pool/main/l/listen/listen_0.6~rc1-2_amd64.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 519...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Julien Valroff jul...@kirya.net (supplier of updated listen package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 16 Mar 2009 14:02:41 +0100
Source: listen
Binary: listen
Architecture: source amd64
Version: 0.6~rc1-2
Distribution: experimental
Urgency: low
Maintainer: Julien Valroff jul...@kirya.net
Changed-By: Julien Valroff jul...@kirya.net
Description: 
 listen - music player and manager for GNOME
Closes: 519923
Changes: 
 listen (0.6~rc1-2) experimental; urgency=low
 .
   * Added patch to skip dependencies check during build
 (Closes: #519923)
   * Use upstream manpage
Checksums-Sha1: 
 bb6f80ceaa957d95f7855cbfa752d5dd3c052550 1374 listen_0.6~rc1-2.dsc
 8af824ec4d4c87dbac37b5c700b8ce9ca3967621 8670 listen_0.6~rc1-2.diff.gz
 bdccd738edb9b9eafa2bf9231b31af564f60f03d 506372 listen_0.6~rc1-2_amd64.deb
Checksums-Sha256: 
 0154d484882a97ffae7036fba662b3114c24fc92c273b2f3790bb375fc6e09db 1374 
listen_0.6~rc1-2.dsc
 38ad1f4cb322061ce97b8ba4dbeadae392dc4639053668bc6630c983fc4f1d8e 8670 
listen_0.6~rc1-2.diff.gz
 e2fb688cd2baa50b4d38c2ede1b7460917beaa6a66e68962512e8493873efb84 506372 
listen_0.6~rc1-2_amd64.deb
Files: 
 3f788332300081c5a9b4d81e438288a1 1374 sound optional listen_0.6~rc1-2.dsc
 26408c14b4a701523b8103a241f3895a 8670 sound optional listen_0.6~rc1-2.diff.gz
 b8367df0b9c774f572506f9bb334a56d 506372 sound optional 
listen_0.6~rc1-2_amd64.deb

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

iEYEARECAAYFAkm+Uz4ACgkQIQvyq59x1EnjlQCdF6GcLWxTQ1GlIPeQOXvLw4US
sm0AoL7d/fOxoYJHM8EWySACS3FAdFol
=dNjY
-END PGP SIGNATURE-


---End Message---


Bug#519595: gnome-phone-manager: FTBFS: No package 'libglade-2.0' found

2009-03-16 Thread Adeodato Simó
user debian-rele...@lists.debian.org
usertags 519595 + transition-blocker
thanks

Hello, Francesco.

 It seems you're missing a build dependency on atleast libglade2-dev,
 and it looks like you don't have build depedencies for some of the
 other the source package requires.

This bug is very easy to fix (I’ve verified myself that adding a
build-dependency on libglade2-dev fixes the problem), so it’d be great
if you could make an upload soon.

Feel free to merge your changes from 0.60-2 from experimental, but note
that you will have to build-depend on libgnokii-dev instead of
libgnokii4-dev.

Thanks,

-- 
- Are you sure we're good?
- Always.
-- Rory and Lorelai




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



Bug#519595: gnome-phone-manager: FTBFS: No package 'libglade-2.0' found

2009-03-16 Thread Francesco Namuri
Hi Adeodato,

I'm sorry if this bug is blocking something, I've already fixed the
problem, I'm only waiting a review and the upload from my sponsor...

the package is available on mentors:

http://mentors.debian.net/debian/pool/main/g/gnome-phone-manager/gnome-phone-manager_0.60-3.dsc

thanks for your report

francesco

Il giorno lun, 16/03/2009 alle 15.05 +0100, Adeodato Simó ha scritto:
 user debian-rele...@lists.debian.org
 usertags 519595 + transition-blocker
 thanks
 
 Hello, Francesco.
 
  It seems you're missing a build dependency on atleast libglade2-dev,
  and it looks like you don't have build depedencies for some of the
  other the source package requires.
 
 This bug is very easy to fix (I’ve verified myself that adding a
 build-dependency on libglade2-dev fixes the problem), so it’d be great
 if you could make an upload soon.
 
 Feel free to merge your changes from 0.60-2 from experimental, but note
 that you will have to build-depend on libgnokii-dev instead of
 libgnokii4-dev.
 
 Thanks,
 
-- 
 .''`. Francesco Namuri france...@namuri.it
: :' : http://namuri.it/
`. `'  key ID = 3B30EB44
  `-fingerprint = 20FC 1C89 F7B8 F724 08FD B4B1 8E27 6437 3B30 EB44



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



Bug#519148: gnucash: Segfault when opening account

2009-03-16 Thread R E Riding
Package: gnucash
Version: 2.2.6-2
Followup-For: Bug #519148

I used the --nofile option to try starting without opening
the old accounts file.  This worked, and with no account tabs
open I was able to both open old account files and create a
new account tree.  In both cases, when I went a step further to
open the checking account (for instance) from the accounts tab, the
segfault occured.  Scheduled transactions were processed OK
with the old accounts files.  This has occured in both i386 and 
amd64 archs.

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

Kernel: Linux 2.6.28.7 (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/bash

Versions of packages gnucash depends on:
ii  gconf2 2.24.0-7  GNOME configuration database syste
ii  gnucash-common 2.2.6-2   A personal finance tracking progra
ii  guile-1.6-libs 1.6.8-6.3 Main Guile libraries
ii  guile-1.6-slib 1.6.8-6.3 Guile SLIB support
ii  libaqbanking20 3.8.2-1   library for online banking applica
ii  libart-2.0-2   2.3.20-2  Library of functions for 2D graphi
ii  libatk1.0-01.24.0-2  The ATK accessibility toolkit
ii  libbonobo2-0   2.24.1-1  Bonobo CORBA interfaces library
ii  libbonoboui2-0 2.24.1-1  The Bonobo UI library
ii  libc6  2.9-4 GNU C Library: Shared libraries
ii  libcairo2  1.8.6-2+b1The Cairo 2D vector graphics libra
ii  libcrypt-ssleay-perl   0.57-1+b1 Support for https protocol in LWP
ii  libdate-manip-perl 5.54-1a perl library for manipulating da
ii  libfinance-quote-perl  1.15-1Perl module for retrieving stock q
ii  libfontconfig1 2.6.0-3   generic font configuration library
ii  libfreetype6   2.3.9-4   FreeType 2 font engine, shared lib
ii  libgconf2-42.24.0-7  GNOME configuration database syste
ii  libglade2-01:2.6.3-1 library to load .glade files at ru
ii  libglib2.0-0   2.20.0-1  The GLib library of C routines
ii  libgnome2-02.24.1-2  The GNOME 2 library - runtime file
ii  libgnomecanvas2-0  2.20.1.1-1A powerful object-oriented display
ii  libgnomeprint2.2-0 2.18.6-1  The GNOME 2.2 print architecture -
ii  libgnomeprintui2.2-0   2.18.4-1  GNOME 2.2 print architecture User 
ii  libgnomeui-0   2.24.1-1  The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0 1:2.24.0-2GNOME Virtual File System (runtime
ii  libgoffice-0-4 0.4.2-4   Document centric objects library -
ii  libgsf-1-114   1.14.11-2 Structured File Library - runtime 
ii  libgtk2.0-02.14.7-4+b1   The GTK+ graphical user interface 
ii  libgtkhtml3.8-15   3.12.3-3  HTML rendering/editing library - r
ii  libguile-ltdl-11.6.8-6.3 Guile's patched version of libtool
ii  libgwenhywfar473.7.2-1   OS abstraction layer
ii  libice62:1.0.5-1 X11 Inter-Client Exchange library
ii  libktoblzcheck1c2a 1.21-1library for verification of accoun
ii  libofx41:0.9.0-3 library to support Open Financial 
ii  liborbit2  1:2.14.17-0.1 libraries for ORBit2 - a CORBA ORB
ii  libosp51.5.2-6   Runtime library for OpenJade group
ii  libpango1.0-0  1.22.4-2  Layout and rendering of internatio
ii  libpixman-1-0  0.14.0-1  pixel-manipulation library for X a
ii  libpng12-0 1.2.35-1  PNG library - runtime
ii  libpopt0   1.14-4lib for parsing cmdline parameters
ii  libqthreads-12 1.6.8-6.3 QuickThreads library for Guile
ii  libsm6 2:1.1.0-2 X11 Session Management library
ii  libx11-6   2:1.2-1   X11 client-side library
ii  libxcb-render-util00.3.3-2   utility libraries for X C Binding 
ii  libxcb-render0 1.2-1 X C Binding, render extension
ii  libxcb11.2-1 X C Binding
ii  libxml22.7.3.dfsg-1  GNOME XML library
ii  libxrender11:0.9.4-2 X Rendering Extension client libra
ii  psfontmgr  0.11.10-0.2   PostScript font manager -- part of
ii  slib   3b1-3 Portable Scheme library
ii  x-ttcidfont-conf   32TrueType and CID fonts configurati
ii  zlib1g 1:1.2.3.3.dfsg-13 compression library - runtime

Versions of packages gnucash recommends:
ii  gnucash-docs  2.2.0-3Documentation for gnucash, a perso

Versions of packages gnucash 

Bug#519971: git-cola: breaks python help

2009-03-16 Thread Bernd Zeimetz
Package: git-cola
Version: 1.3.5.28-1
Severity: grave

git-cola breaks the python modules help:


0 b...@think:~$ python2.5
Python 2.5.4 (r254:67916, Feb 18 2009, 03:00:47) 
[GCC 4.3.3] on linux2
Type help, copyright, credits or license for more information.
 help('modules')

Please wait a moment while I gather a list of all available modules...

/usr/lib/python2.5/site-packages/apt/__init__.py:18: FutureWarning: apt API not 
stable yet
  warnings.warn(apt API not stable yet, FutureWarning)
/usr/lib/python2.5/site-packages/logilab/__init__.py:3: UserWarning: Module 
OpenGL was already imported from 
/usr/lib/python2.5/site-packages/OpenGL/__init__.py, but 
/usr/lib/python2.5/site-packages is being added to sys.path
  __import__('pkg_resources').declare_namespace(__name__)
Traceback (most recent call last):
  File stdin, line 1, in module
  File /usr/lib/python2.5/site.py, line 342, in __call__
return pydoc.help(*args, **kwds)
  File /usr/lib/python2.5/pydoc.py, line 1647, in __call__
self.help(request)
  File /usr/lib/python2.5/pydoc.py, line 1684, in help
elif request == 'modules': self.listmodules()
  File /usr/lib/python2.5/pydoc.py, line 1805, in listmodules
ModuleScanner().run(callback)
  File /usr/lib/python2.5/pydoc.py, line 1856, in run
for importer, modname, ispkg in pkgutil.walk_packages():
  File /usr/lib/python2.5/pkgutil.py, line 125, in walk_packages
for item in walk_packages(path, name+'.', onerror):
  File /usr/lib/python2.5/pkgutil.py, line 110, in walk_packages
__import__(name)
  File /var/lib/python-support/python2.5/cola/controllers/__init__.py, line 
1, in module
from cola.controllers.main import Controller
  File /var/lib/python-support/python2.5/cola/controllers/main.py, line 31, 
in module
from cola.controllers.util import logger
  File /var/lib/python-support/python2.5/cola/controllers/util.py, line 15, 
in module
from cola.model import Model
  File /var/lib/python-support/python2.5/cola/model.py, line 24, in module
from cola import jsonpickle
  File /var/lib/python-support/python2.5/cola/jsonpickle/__init__.py, line 
221, in module
json = JSONPluginMgr()
  File /var/lib/python-support/python2.5/cola/jsonpickle/__init__.py, line 
97, in __init__
self.load_backend('json', 'dumps', 'loads', ValueError)
  File /var/lib/python-support/python2.5/cola/jsonpickle/__init__.py, line 
138, in load_backend
self._encoders[name] = getattr(mod, encode_name)
AttributeError: 'module' object has no attribute 'dumps'
 



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

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

Versions of packages git-cola depends on:
ii  git-core  1:1.6.2-1  fast, scalable, distributed revisi
ii  python2.5.4-2An interactive high-level object-o
ii  python-qt44.4.2-4Python bindings for Qt4
ii  python-support0.8.7  automated rebuilding support for P

Versions of packages git-cola recommends:
ii  gitk  1:1.6.2-1  fast, scalable, distributed revisi

Versions of packages git-cola suggests:
pn  python-pyinotify  none (no description available)
ii  python-simplejson 2.0.9-1Simple, fast, extensible JSON enco

-- no debconf information



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



Bug#519972: git-cola: should use private module dirs.

2009-03-16 Thread Bernd Zeimetz
Package: git-cola
Version: 1.3.5.28-1
Severity: serious

git-cola ships private modules, they should be installed to /usr/share/git-cola
according to the policy [1], if there is not a good reason to install them
system-wide. As the modules are not used by any other program, they should
be moved into the private directory.

[1] 
http://www.debian.org/doc/packaging-manuals/python-policy/ch-programs.html#s-current_version_progs

Let me know if you need any help with that.

Cheers,

Bernd

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

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

Versions of packages git-cola depends on:
ii  git-core  1:1.6.2-1  fast, scalable, distributed revisi
ii  python2.5.4-2An interactive high-level object-o
ii  python-qt44.4.2-4Python bindings for Qt4
ii  python-support0.8.7  automated rebuilding support for P

Versions of packages git-cola recommends:
ii  gitk  1:1.6.2-1  fast, scalable, distributed revisi

Versions of packages git-cola suggests:
pn  python-pyinotify  none (no description available)
ii  python-simplejson 2.0.9-1Simple, fast, extensible JSON enco

-- no debconf information



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



Bug#519930: [Openjdk] Bug#519930: icedtea6-plugin: install fails in update-alternatives

2009-03-16 Thread Marcus Better
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Matthias Klose wrote:
 the plugin is provided by icedtea6-plugin, it shouldn't be managed by 
 iceweasel.

The file /usr/lib/mozilla/plugins/libjavaplugin.so does not exist in my
file system.

Cheers,

Marcus
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iEYEARECAAYFAkm+YT8ACgkQXjXn6TzcAQmgJQCfWFFRCnTmCfKPKkUUr902UnEA
c9QAn064f23T7QjxQDjyJXCxw0JNeviO
=VtUw
-END PGP SIGNATURE-



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



Processed: tagging 519595

2009-03-16 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 519595 pending
Bug#519595: gnome-phone-manager: FTBFS: No package 'libglade-2.0' found
Tags were: experimental
Bug#518949: gnome-phone-manager_0.60-2(experimental/powerpc/anakreon): No 
package 'libglade-2.0' found 
Tags added: pending


End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#519595: gnome-phone-manager: FTBFS: No package 'libglade-2.0' found

2009-03-16 Thread Adeodato Simó
 Hi Adeodato,

 I'm sorry if this bug is blocking something, I've already fixed the
 problem, I'm only waiting a review and the upload from my sponsor...

Ah, perfect! It’s not very urgent, I just wanted to know it was
progressing at some pace. And it’s better that it gets registered in the
bug report, as to not duplicate efforts from you and eg. prospective
NMUers. (It is good practice to always mention you have package ready in
the bug log for RC bugs.)

Thanks for your quick fix, please let me know if after a week you still
need sponsoring.

Cheers,

-- 
- Are you sure we're good?
- Always.
-- Rory and Lorelai




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



Bug#518847: marked as done (phpldapadmin: FTBFS: cannot stat `./644')

2009-03-16 Thread Debian Bug Tracking System

Your message dated Mon, 16 Mar 2009 14:49:34 +
with message-id e1lje8e-00062r...@ries.debian.org
and subject line Bug#518847: fixed in phpldapadmin 1.1.0.6-1
has caused the Debian Bug report #518847,
regarding phpldapadmin: FTBFS: cannot stat `./644'
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
518847: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=518847
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: phpldapadmin
Version: 1.1.0.5-6
Severity: serious

From my pbuilder build log:

...
dh_compress
dh_fixperms
dh_install -m 644 debian/conf/apache.conf /etc/phpldapadmin/
Unknown option: m
dh_install: warning: unknown options will be a fatal error in a future 
debhelper release
cp: cannot stat `./644': No such file or directory
dh_install: cp returned exit code 1
make: *** [binary-indep] Error 1
dpkg-buildpackage: failure: fakeroot debian/rules binary gave error exit status 
2
-- 
Daniel Schepler



---End Message---
---BeginMessage---
Source: phpldapadmin
Source-Version: 1.1.0.6-1

We believe that the bug you reported is fixed in the latest version of
phpldapadmin, which is due to be installed in the Debian FTP archive:

phpldapadmin_1.1.0.6-1.diff.gz
  to pool/main/p/phpldapadmin/phpldapadmin_1.1.0.6-1.diff.gz
phpldapadmin_1.1.0.6-1.dsc
  to pool/main/p/phpldapadmin/phpldapadmin_1.1.0.6-1.dsc
phpldapadmin_1.1.0.6-1_all.deb
  to pool/main/p/phpldapadmin/phpldapadmin_1.1.0.6-1_all.deb
phpldapadmin_1.1.0.6.orig.tar.gz
  to pool/main/p/phpldapadmin/phpldapadmin_1.1.0.6.orig.tar.gz



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 518...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Fabio Tranchitella kob...@debian.org (supplier of updated phpldapadmin 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 16 Mar 2009 14:54:15 +0100
Source: phpldapadmin
Binary: phpldapadmin
Architecture: source all
Version: 1.1.0.6-1
Distribution: unstable
Urgency: low
Maintainer: Fabio Tranchitella kob...@debian.org
Changed-By: Fabio Tranchitella kob...@debian.org
Description: 
 phpldapadmin - web based interface for administering LDAP servers
Closes: 505559 518578 518847 519086
Changes: 
 phpldapadmin (1.1.0.6-1) unstable; urgency=low
 .
   * New upstream release. (Closes: #518578)
   * debian/rules: removed -m 644 from the dh_install call. (Closes: #518847)
   * debian/postrm: remove config.php at purge time. (Closes: #519086)
   * debian/patches/hungarian.dpatch: fixed a hungarian translation.
 (Closes: #505559)
Checksums-Sha1: 
 fce5f9c3f6e630cf53c8e44ab45f142ba96af5d0 1039 phpldapadmin_1.1.0.6-1.dsc
 d8bb31e2340a9610a451b80731f7c3a670c7807b 1147910 
phpldapadmin_1.1.0.6.orig.tar.gz
 b6261dbf3489b329f88c621b437067cf265e10fa 21061 phpldapadmin_1.1.0.6-1.diff.gz
 63fc306d0ea7c150dd68d8e4d58c6af2f22d7ade 1062646 phpldapadmin_1.1.0.6-1_all.deb
Checksums-Sha256: 
 9166da892f57708ad5303401b382fb68889c53d3b7bf4db8466c8e7bbd6beacb 1039 
phpldapadmin_1.1.0.6-1.dsc
 6acde7a1018d3ed8235fcc01477b84b4d10688c839addf68d71371d947659515 1147910 
phpldapadmin_1.1.0.6.orig.tar.gz
 c52caf400c12d1f987df696520c1c11e4c54a60e67c3ce12ffd6da433c211028 21061 
phpldapadmin_1.1.0.6-1.diff.gz
 868b1167947a6c7f667883fddc55b656bf697c454166c9e5933a44ffca11a686 1062646 
phpldapadmin_1.1.0.6-1_all.deb
Files: 
 43862fd74a25d98434579586d63b923c 1039 admin extra phpldapadmin_1.1.0.6-1.dsc
 f763977c46d09c5801d9af4ebde07a4f 1147910 admin extra 
phpldapadmin_1.1.0.6.orig.tar.gz
 df88dbbd18a0310975b3d982f0955735 21061 admin extra 
phpldapadmin_1.1.0.6-1.diff.gz
 563682a31f8ce09d245a0a3fc22a435f 1062646 admin extra 
phpldapadmin_1.1.0.6-1_all.deb

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

iEYEARECAAYFAkm+WwwACgkQK/juK3+WFWQ2owCfeK7piZd0f5wkg68KUxsdP5YM
kSoAn3ciOwFoimKd2XWL5qngtkfhCC4F
=KXNC
-END PGP SIGNATURE-


---End Message---


Bug#517543: Re : [Pkg-openmpi-maintainers] Bug#517543: openmpi_1.3-2 fails to build on alpha

2009-03-16 Thread Arthur Loiret
Hey Manuel,

No problem, I'll have a look and test it in a very few days, thanks a
lot for it!


Arthur.



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



Bug#518876: marked as done (libsearch-estraier-perl: FTBFS: Missing Build-Depends)

2009-03-16 Thread Debian Bug Tracking System

Your message dated Mon, 16 Mar 2009 15:17:07 +
with message-id e1ljeyt-0008ml...@ries.debian.org
and subject line Bug#518876: fixed in libsearch-estraier-perl 0.09-2
has caused the Debian Bug report #518876,
regarding libsearch-estraier-perl: FTBFS: Missing Build-Depends
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
518876: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=518876
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: libsearch-estraier-perl
Version: 0.09-1
Severity: serious

From my pbuilder build log:

...
/usr/bin/make test
make[1]: Entering directory `/tmp/buildd/libsearch-estraier-perl-0.09'
PERL_DL_NONLAZY=1 /usr/bin/perl -MExtUtils::Command::MM -e test_harness(0, 
'blib/lib', 
'blib/arch') t/*.t
t/1_Document..
#   Failed test 'use Search::Estraier;'
#   at t/1_Document.t line 10.
# Tried to use 'Search::Estraier'.
# Error:  Can't locate URI.pm in @INC (@INC contains: 
/tmp/buildd/libsearch-estraier-
perl-0.09/blib/arch /tmp/buildd/libsearch-estraier-perl-0.09/blib/lib 
/tmp/buildd/libsearch-estraier-
perl-0.09/blib/lib /tmp/buildd/libsearch-estraier-perl-0.09/blib/arch /etc/perl 
/usr/local/lib/perl/5.10.0 
/usr/local/share/perl/5.10.0 /usr/lib/perl5 /usr/share/perl5 /usr/lib/perl/5.10 
/usr/share/perl/5.10 
/usr/local/lib/site_perl . /etc/perl /usr/local/lib/perl/5.10.0 
/usr/local/share/perl/5.10.0 /usr/lib/perl5 
/usr/share/perl5 /usr/lib/perl/5.10 /usr/share/perl/5.10 
/usr/local/lib/site_perl .) at 
/tmp/buildd/libsearch-estraier-perl-0.09/blib/lib/Search/Estraier.pm line 980.
# BEGIN failed--compilation aborted at t/1_Document.t line 10.
# Compilation failed in require at (eval 6) line 2.
# BEGIN failed--compilation aborted at (eval 6) line 2.
...
Failed Test  Stat Wstat Total Fail  List of Failed
---
t/1_Document.t255 6528060  109  1 7-60
t/2_Condition.t   255 6528034   59  1 6-34
t/3_ResultDocument.t1   256121  1
t/4_NodeResult.t1   256101  1
t/5_Node.t255 65280   313  625  1-313
2 tests skipped.
Failed 5/7 test scripts. 400/429 subtests failed.
Files=7, Tests=429,  1 wallclock secs ( 0.26 cusr +  0.08 csys =  0.34 CPU)
Failed 5/7 test programs. 400/429 subtests failed.
make[1]: *** [test_dynamic] Error 255
make[1]: Leaving directory `/tmp/buildd/libsearch-estraier-perl-0.09'
make: *** [build-stamp] Error 2
dpkg-buildpackage: failure: debian/rules build gave error exit status 2
-- 
Daniel Schepler



---End Message---
---BeginMessage---
Source: libsearch-estraier-perl
Source-Version: 0.09-2

We believe that the bug you reported is fixed in the latest version of
libsearch-estraier-perl, which is due to be installed in the Debian FTP archive:

libsearch-estraier-perl_0.09-2.diff.gz
  to 
pool/main/libs/libsearch-estraier-perl/libsearch-estraier-perl_0.09-2.diff.gz
libsearch-estraier-perl_0.09-2.dsc
  to pool/main/libs/libsearch-estraier-perl/libsearch-estraier-perl_0.09-2.dsc
libsearch-estraier-perl_0.09-2_all.deb
  to 
pool/main/libs/libsearch-estraier-perl/libsearch-estraier-perl_0.09-2_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 518...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Taku YASUI t...@debian.or.jp (supplier of updated libsearch-estraier-perl 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 16 Mar 2009 23:52:09 +0900
Source: libsearch-estraier-perl
Binary: libsearch-estraier-perl
Architecture: source all
Version: 0.09-2
Distribution: unstable
Urgency: low
Maintainer: Taku YASUI t...@debian.or.jp
Changed-By: Taku YASUI t...@debian.or.jp
Description: 
 libsearch-estraier-perl - pure perl module to use Hyper Estraier search engine
Closes: 518876
Changes: 
 libsearch-estraier-perl (0.09-2) unstable; urgency=low
 .
   * Fix Build-Depends:
 (closes: #518876)
Checksums-Sha1: 
 688abded755ffa259929522cb3bad960de39ecaa 1194 
libsearch-estraier-perl_0.09-2.dsc
 96ab3fd880781af0f3117d2ec888d8c945f272e1 2279 
libsearch-estraier-perl_0.09-2.diff.gz
 1e7018c94e740bb7629ac8d345f313980d1f5083 28096 
libsearch-estraier-perl_0.09-2_all.deb

Bug#519927: same here

2009-03-16 Thread Aristeu Rozanski
I can confirm this problem. I've set a cron job to update the system everyday
and got this from /var/log/apt/term.log:
Setting up libpam-runtime (1.0.1-7) ...
debconf: unable to initialize frontend: Dialog
debconf: (TERM is not set, so the dialog frontend is not usable.)
debconf: falling back to frontend: Readline
Pluggable Authentication Modules (PAM) determine how authentication, 
authorization, and password changing are handled on the system, as well as 
allowing configuration of additional actions to take when starting user 
sessions.

Some PAM module packages provide profiles that can be used to 
automatically adjust the behavior of all PAM-using applications on the system.  
Please indicate which of these behaviors you wish to enable.

  1. Unix authentication  2. none of the above

(Enter the items you want to select, separated by spaces.)

PAM profiles to enable:
Use of uninitialized value $_[1] in join or string at 
/usr/share/perl5/Debconf/DbDriver/Stack.pm line 104.
(Reading database ... 313074 files and directories currently installed.)
Preparing to replace libpam0g 1.0.1-5 (using 
.../libpam0g_1.0.1-7_i386.deb) ...
Unpacking replacement libpam0g ...
Setting up libpam0g (1.0.1-7) ...

but ssh doesn't appear to be affected by this, still asks for a password.

-- 
Aristeu




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



Bug#519940: marked as done (weechat-curses: DoS (crash) with some IRC messages from other users)

2009-03-16 Thread Debian Bug Tracking System

Your message dated Mon, 16 Mar 2009 14:51:05 +
with message-id e1lje9h-0006y1...@ries.debian.org
and subject line Bug#519940: fixed in weechat 0.2.6.1-1
has caused the Debian Bug report #519940,
regarding weechat-curses: DoS (crash) with some IRC messages from other users
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
519940: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=519940
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: weechat-curses
Version: 0.2.6-3
Severity: grave
Justification: renders package unusable

Denial of service (crash) when receiving some IRC messages from other users,
with special data inside.

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

Kernel: Linux 2.6.28.7
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages weechat-curses depends on:
ii  libc6 2.9-4  GNU C Library: Shared libraries
ii  libgnutls26   2.6.4-2the GNU TLS library - runtime libr
ii  libncursesw5  5.7+20090228-1 shared libraries for terminal hand
ii  weechat-common0.2.6-3Common files for WeeChat

Versions of packages weechat-curses recommends:
ii  weechat-plugins   0.2.6-3Plugins for WeeChat

weechat-curses suggests no packages.

-- no debconf information


---End Message---
---BeginMessage---
Source: weechat
Source-Version: 0.2.6.1-1

We believe that the bug you reported is fixed in the latest version of
weechat, which is due to be installed in the Debian FTP archive:

weechat-common_0.2.6.1-1_all.deb
  to pool/main/w/weechat/weechat-common_0.2.6.1-1_all.deb
weechat-curses_0.2.6.1-1_amd64.deb
  to pool/main/w/weechat/weechat-curses_0.2.6.1-1_amd64.deb
weechat-plugins_0.2.6.1-1_amd64.deb
  to pool/main/w/weechat/weechat-plugins_0.2.6.1-1_amd64.deb
weechat_0.2.6.1-1.diff.gz
  to pool/main/w/weechat/weechat_0.2.6.1-1.diff.gz
weechat_0.2.6.1-1.dsc
  to pool/main/w/weechat/weechat_0.2.6.1-1.dsc
weechat_0.2.6.1-1_all.deb
  to pool/main/w/weechat/weechat_0.2.6.1-1_all.deb
weechat_0.2.6.1.orig.tar.gz
  to pool/main/w/weechat/weechat_0.2.6.1.orig.tar.gz



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 519...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Emmanuel Bouthenot kol...@openics.org (supplier of updated weechat package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 16 Mar 2009 13:18:29 +
Source: weechat
Binary: weechat weechat-curses weechat-common weechat-plugins
Architecture: source all amd64
Version: 0.2.6.1-1
Distribution: unstable
Urgency: low
Maintainer: Emmanuel Bouthenot kol...@openics.org
Changed-By: Emmanuel Bouthenot kol...@openics.org
Description: 
 weechat- Fast, light and extensible IRC client
 weechat-common - Common files for WeeChat
 weechat-curses - Fast, light and extensible IRC client - console client
 weechat-plugins - Plugins for WeeChat
Closes: 519940
Changes: 
 weechat (0.2.6.1-1) unstable; urgency=low
 .
   * New upstream release which includes a fix against a possible remote
 Denial of Service (crash) while receiving messages with special chars
 (Closes: #519940).
   * Refresh patch multiple_ip_servers according to the new upstream release.
   * Update Standards-Version to 3.8.1.
Checksums-Sha1: 
 01e74130a788214245daeef937b5f2d1f912f726 1438 weechat_0.2.6.1-1.dsc
 969efdb8d7a13f5b9188e750f2342fdf94086f17 1616912 weechat_0.2.6.1.orig.tar.gz
 26b37a378ae2912be3ba1952b40812854c33149d 5602 weechat_0.2.6.1-1.diff.gz
 4c09d18925a52f4aeebaaf1ab636f8aed896c03f 20346 weechat_0.2.6.1-1_all.deb
 6d8d99310300c68e00155798e2abc4dfd988bbeb 427346 
weechat-common_0.2.6.1-1_all.deb
 a40262e00b1a407a87b05cac4d14c8e162ecf932 214428 
weechat-curses_0.2.6.1-1_amd64.deb
 af71293cb37464aa54be1283a2f80d985487a3db 119156 
weechat-plugins_0.2.6.1-1_amd64.deb
Checksums-Sha256: 
 d02f50c9f3dbe2d71f19a03a6fb526f0db48a84de5143f1570b939481cb91f5f 1438 
weechat_0.2.6.1-1.dsc
 19b4ffb80c19d1b0cedb7696bb2f5a250b4510ae82afb5fa58fb1213d700f80d 1616912 
weechat_0.2.6.1.orig.tar.gz
 

Bug#518037: Please reopen this bug.

2009-03-16 Thread Erik de Castro Lopo

I am the upstream author of libsndfile.

From the 1.0.19-2 debian/changelog:

* Ignore failures of check since it causes too many false negatives,
  closes: #518037, #519338.

The second one (#519338) reported on amd64 :

vorbis_test: vorbis_test.oga . 
  
Error : max_abs 1.020731 should be  1.02.

This one is definitely fixed by the patch I provided.

The first one (#518037) reported :

float_scaled_test  : flac_16.flac   -90.7dB 
SNR ... ok
float_scaled_test  : flac_24.flac  -138.6dB 
SNR ... ok
float_scaled_test  : vorbis.oga .. 
Line 231: Actual SNR ( 57.4)  target SNR (-31.0).

This one is definitely not fixed and should not be ignored. I am 
however pretty certain that this is test failure is related to this
bug:

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

In general I think it is a bad idea to ignore the pass/fail status of
these tests, especially with an upstream as responsive as I am.

Cheers,
Erik
-- 
-
Erik de Castro Lopo
-
C++ : Where friends have access to your private members.
-- Gavin Russell Baker



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



Processed: reopening 518037

2009-03-16 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reopen 518037
Bug#518037: libsndfile_1.0.19-1(mips/unstable): FTBFS on mips. regression test 
failure.
'reopen' may be inappropriate when a bug has been closed with a version;
you may need to use 'found' to remove fixed versions.
Bug reopened, originator not changed.


End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Processed: Still not fixed in Lenny

2009-03-16 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reopen 518458
Bug#518458: iceweasel: Critical security update 3.0.7
'reopen' may be inappropriate when a bug has been closed with a version;
you may need to use 'found' to remove fixed versions.
Bug reopened, originator not changed.

 tags 518458 security
Bug#518458: iceweasel: Critical security update 3.0.7
There were no tags set.
Tags added: security

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#519774: libc6: causes many programs not to be able to resolve dns addresses

2009-03-16 Thread Mark Kamichoff
Hi - 

 The problem is that the DNS server of your ISP does not conform to the
 RFC and only answer to the  query with a void answer. It never
 answer to the A query, so the glibc resolver can only conclude the
 whole query has no answer.

Just a thought, many DNS ALGs on firewalls (eg, Juniper NetScreen) will
close the UDP/53 session after one packet (response, presumably) is
received, and drop any subsequent response packets.  It could be that
the DNS servers are fine, just the firewall protecting it is the
culprit.  I suspect this can be hit or miss due to timing of these
events.

- Mark

-- 
Mark Kamichoff
p...@prolixium.com
http://www.prolixium.com/


signature.asc
Description: Digital signature


Bug#518458: Still not fixed in Lenny

2009-03-16 Thread debianbug
Bug still not fixed in Lenny!

thanks
-- 
Pt! Schon vom neuen GMX MultiMessenger gehört? Der kann`s mit allen: 
http://www.gmx.net/de/go/multimessenger01



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



Bug#519774: libc6: causes many programs not to be able to resolve dns addresses

2009-03-16 Thread Aurelien Jarno
Mark Kamichoff a écrit :
 Hi - 
 
 The problem is that the DNS server of your ISP does not conform to the
 RFC and only answer to the  query with a void answer. It never
 answer to the A query, so the glibc resolver can only conclude the
 whole query has no answer.
 
 Just a thought, many DNS ALGs on firewalls (eg, Juniper NetScreen) will
 close the UDP/53 session after one packet (response, presumably) is
 received, and drop any subsequent response packets.  It could be that
 the DNS servers are fine, just the firewall protecting it is the
 culprit.  I suspect this can be hit or miss due to timing of these
 events.

I don't think this behaviour is allowed by the RFC. Then the problem is
in the firewall and not the DNS, but the result is exactly the same for
the user.

-- 
Aurelien Jarno  GPG: 1024D/F1BCDB73
aurel...@aurel32.net http://www.aurel32.net



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



Bug#518458: marked as done (iceweasel: Critical security update 3.0.7)

2009-03-16 Thread Debian Bug Tracking System

Your message dated Mon, 16 Mar 2009 17:20:27 +0100
with message-id 20090316162026.ga3...@glandium.org
and subject line Re: Bug#518458: Still not fixed in Lenny
has caused the Debian Bug report #518458,
regarding iceweasel: Critical security update 3.0.7
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
518458: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=518458
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: iceweasel
Version: 3.0.6-1
Severity: critical
Justification: causes serious data loss

Version 3.0.7 closes several critical marked security flaws.
http://www.mozilla.org/security/known-vulnerabilities/firefox30.html


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

Kernel: Linux 2.6.28.7 (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/bash

Versions of packages iceweasel depends on:
ii  debianutils  2.30Miscellaneous utilities specific t
ii  fontconfig   2.6.0-3 generic font configuration library
ii  libc62.7-18  GNU C Library: Shared libraries
ii  libgcc1  1:4.3.2-1.1 GCC support library
ii  libglib2.0-0 2.16.6-1The GLib library of C routines
ii  libgtk2.0-0  2.12.11-4   The GTK+ graphical user interface 
ii  libnspr4-0d  4.7.1-4 NetScape Portable Runtime Library
ii  libstdc++6   4.3.2-1.1   The GNU Standard C++ Library v3
ii  procps   1:3.2.7-11  /proc file system utilities
ii  psmisc   22.6-1  Utilities that use the proc filesy
ii  xulrunner-1.91.9.0.6-1   XUL + XPCOM application runner

iceweasel recommends no packages.

Versions of packages iceweasel suggests:
pn  latex-xft-fonts   none (no description available)
ii  libkrb53  1.6.dfsg.4~beta1-5 MIT Kerberos runtime libraries
pn  mozpluggernone (no description available)
pn  ttf-mathematica4.1none (no description available)
pn  xfonts-mathml none (no description available)
pn  xprintnone (no description available)
ii  xulrunner-1.9-gnome-s 1.9.0.6-1  Support for GNOME in xulrunner app

-- no debconf information


---End Message---
---BeginMessage---
Version: 3.0.7-1

On Mon, Mar 16, 2009 at 05:10:46PM +0100, debian...@gmx.de debian...@gmx.de 
wrote:
 Bug still not fixed in Lenny!
 

And it was correctly marked as such.

Mike

---End Message---


Bug#519774: libc6: causes many programs not to be able to resolve dns addresses

2009-03-16 Thread Mark Kamichoff
On Mon, Mar 16, 2009 at 05:16:13PM +0100, Aurelien Jarno wrote:
 I don't think this behaviour is allowed by the RFC. Then the problem
 is in the firewall and not the DNS, but the result is exactly the same
 for the user.

Correct, I'm just moving the finger pointing to the firewall instead of
the DNS itself, since the latter may be behaving correctly.  I work with
these types of firewalls on a regular basis, and might open up a case
with our vendor (Juniper), to see if they will fix the behavior.  Cisco
and others might have the same problem, though, so it could be
widespread.

- Mark

-- 
Mark Kamichoff
p...@prolixium.com
http://www.prolixium.com/


signature.asc
Description: Digital signature


Bug#519774: libc6: causes many programs not to be able to resolve dns addresses

2009-03-16 Thread Aurelien Jarno
Mark Kamichoff a écrit :
 On Mon, Mar 16, 2009 at 05:16:13PM +0100, Aurelien Jarno wrote:
 I don't think this behaviour is allowed by the RFC. Then the problem
 is in the firewall and not the DNS, but the result is exactly the same
 for the user.
 
 Correct, I'm just moving the finger pointing to the firewall instead of
 the DNS itself, since the latter may be behaving correctly.  I work with
 these types of firewalls on a regular basis, and might open up a case
 with our vendor (Juniper), to see if they will fix the behavior.  Cisco
 and others might have the same problem, though, so it could be
 widespread.

Upstream has promised to update the current behaviour (which has already
been introduced to workaround this kind of problem) and to do the DNS
requests using two distincts sockets. We don't know when it will be done
though.

-- 
Aurelien Jarno  GPG: 1024D/F1BCDB73
aurel...@aurel32.net http://www.aurel32.net



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



Bug#519981: libxrandr-dev must depend on x11proto-randr-dev (= 1.3.0)

2009-03-16 Thread Adrian Bunk
Package: libxrandr-dev
Version: 2:1.3.0-1
Severity: serious

I got this from pkg-config when trying to build Liferea on my system:

Package 'Xrandr' requires 'randrproto = 1.3' but version of RandrProto is 
1.2.99.3



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



Bug#517543: Re : [Pkg-openmpi-maintainers] Bug#517543: openmpi_1.3-2 fails to build on alpha

2009-03-16 Thread Manuel Prinz
Am Montag, den 16.03.2009, 16:41 +0100 schrieb Arthur Loiret:
 No problem, I'll have a look and test it in a very few days, thanks a
 lot for it!

Thanks! In case you try building the full Debian packages, please use a
SVN checkout, as I fixed a bug in debian/rules that may make the build
fail, though the patch is OK.

Thanks in advance!

Manuel


signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil


Bug#519340: [gstreamer0.10-ffmpeg] segmentation fault with pidgin

2009-03-16 Thread E Taylor
I'm running Debian testing / squeeze, and have just upgraded a number of 
packages (including libgstreamer0.10-0 and libc6), then after a reboot 
found that Pidgin no longer loads.  In an attempt to debug the problem, 
I ran it from a terminal under strace and got this output (after 
interrupting it when it froze):


/
...
...
...
open(/usr/lib/libtag.so.1, O_RDONLY)  = 9
read(9, 
\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0\0\1\0\0\0P\2\0\0\0\0\0@..., 832) 
= 832

fstat(9, {st_mode=S_IFREG|0644, st_size=447896, ...}) = 0
mmap(NULL, 2545832, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 9, 
0) = 0x7feb9e38d000

mprotect(0x7feb9e3f7000, 2097152, PROT_NONE) = 0
mmap(0x7feb9e5f7000, 12288, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 9, 0x6a000) = 0x7feb9e5f7000
mmap(0x7feb9e5fa000, 2216, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7feb9e5fa000

close(9)= 0
munmap(0x7febd7399000, 57427)   = 0
rt_sigaction(SIGSEGV, {0x7febd70e3420, [], SA_RESTORER, 0x7febd457e7b0}, 
{0x47ccc0, [SEGV], SA_RESTORER|SA_RESTART, 0x7febd457e7b0}, 8) = 0

futex(0x1afa084, FUTEX_WAIT_PRIVATE, 1, NULL^C unfinished ...
f...@bar:~$ process 3863: arguments to dbus_connection_send() were 
incorrect, assertion connection != NULL failed in file 
dbus-connection.c line 3099.

This is normally a bug in some application using the D-Bus library.
*** glibc detected *** pidgin: free(): invalid pointer: 
0x01b2cc20 ***

=== Backtrace: =
/lib/libc.so.6[0x7febd428f1b8]
/lib/libc.so.6(cfree+0x76)[0x7febd4290cf6]
/usr/lib/libpurple.so.0(purple_core_quit+0x145)[0x7febd53b2885]
/lib/libc.so.6[0x7febd424f190]
/lib/libpthread.so.0(pthread_cond_wait+0xb7)[0x7febd457ac07]
/usr/lib/libglib-2.0.so.0(g_once_init_enter_impl+0xb3)[0x7febd4a712b3]
/usr/lib/gstreamer-0.10/libgsttaglib.so(gst_tag_lib_mux_get_type+0x2c)[0x7feb9e5ff59c]
/usr/lib/gstreamer-0.10/libgsttaglib.so(gst_id3v2_mux_get_type+0x44)[0x7feb9e6004d4]
/usr/lib/gstreamer-0.10/libgsttaglib.so(gst_id3v2_mux_plugin_init+0x9)[0x7feb9e600559]
/usr/lib/gstreamer-0.10/libgsttaglib.so[0x7feb9e5ff549]
/usr/lib/libgstreamer-0.10.so.0[0x7febd70e3677]
/usr/lib/libgstreamer-0.10.so.0(gst_plugin_load_file+0x5e7)[0x7febd70e4387]
/usr/lib/libgstreamer-0.10.so.0[0x7febd70edf9b]
/usr/lib/libgstreamer-0.10.so.0(gst_registry_scan_path+0xe4)[0x7febd70ee0b4]
/usr/lib/libgstreamer-0.10.so.0[0x7febd70a7554]
/usr/lib/libgstreamer-0.10.so.0[0x7febd70a77af]
/usr/lib/libgstreamer-0.10.so.0[0x7febd70a9226]
/usr/lib/libglib-2.0.so.0(g_option_context_parse+0x510)[0x7febd4a56640]
/usr/lib/libgstreamer-0.10.so.0(gst_init_check+0xed)[0x7febd70a89ad]
pidgin[0x49b276]
pidgin[0x47cb64]
/usr/lib/libpurple.so.0(purple_core_init+0x2a2)[0x7febd53b2b72]
pidgin(main+0x4e7)[0x47d237]
/lib/libc.so.6(__libc_start_main+0xe6)[0x7febd423b5a6]
pidgin[0x430779]
=== Memory map: 
0040-004d3000 r-xp  08:05 868645 
/usr/bin/pidgin
006d3000-006d8000 rw-p 000d3000 08:05 868645 
/usr/bin/pidgin

006d8000-006d9000 rw-p 006d8000 00:00 0
01afa000-02109000 rw-p 01afa000 00:00 0  
[heap]
7feb9e38d000-7feb9e3f7000 r-xp  08:05 918226 
/usr/lib/libtag.so.1.5.0
7feb9e3f7000-7feb9e5f7000 ---p 0006a000 08:05 918226 
/usr/lib/libtag.so.1.5.0
7feb9e5f7000-7feb9e5fa000 rw-p 0006a000 08:05 918226 
/usr/lib/libtag.so.1.5.0

7feb9e5fa000-7feb9e5fb000 rw-p 7feb9e5fa000 00:00 0
7feb9e5fb000-7feb9e606000 r-xp  08:05 950642 
/usr/lib/gstreamer-0.10/libgsttaglib.so
7feb9e606000-7feb9e806000 ---p b000 08:05 950642 
/usr/lib/gstreamer-0.10/libgsttaglib.so
7feb9e806000-7feb9e807000 rw-p b000 08:05 950642 
/usr/lib/gstreamer-0.10/libgsttaglib.so
7feb9e807000-7feb9e84a000 r-xp  08:05 917656 
/usr/lib/libsoup-2.4.so.1.2.0
7feb9e84a000-7feb9ea49000 ---p 00043000 08:05 917656 
/usr/lib/libsoup-2.4.so.1.2.0
7feb9ea49000-7feb9ea4c000 rw-p 00042000 08:05 917656 
/usr/lib/libsoup-2.4.so.1.2.0
7feb9ea4c000-7feb9ea53000 r-xp  08:05 950379 
/usr/lib/gstreamer-0.10/libgstsouphttpsrc.so
7feb9ea53000-7feb9ec53000 ---p 7000 08:05 950379 
/usr/lib/gstreamer-0.10/libgstsouphttpsrc.so
7feb9ec53000-7feb9ec54000 rw-p 7000 08:05 950379 
/usr/lib/gstreamer-0.10/libgstsouphttpsrc.so
7feb9ec54000-7feb9ec58000 r-xp  08:05 950474 
/usr/lib/gstreamer-0.10/libgstaudiorate.so
7feb9ec58000-7feb9ee58000 ---p 4000 08:05 950474 
/usr/lib/gstreamer-0.10/libgstaudiorate.so
7feb9ee58000-7feb9ee59000 rw-p 4000 08:05 950474 
/usr/lib/gstreamer-0.10/libgstaudiorate.so
7feb9ee59000-7feb9ee5d000 r-xp  08:05 950641 

Bug#518069: gnome-session goes a bit further with bdus-launch (but stays unusable)

2009-03-16 Thread Tanguy Ortolo
Package: gnome-session
Version: 2.22.3-2
Followup-For: Bug #518069

Hello,

I am trying to launch two gnome-session's: one from GDM (no problem) and
another one with xinit.

The second one fails, as described in the bug report. But I was able to go a
little further by modifying my .xinitrc (or running this as xinit's client
parameter):
exec dbus-launch gnome-session

Launched through dbus-launch, gnome-session is able to set the mouse cursor
(instead of the X one) and to display a gnome-panel. But this gnome-panel
contains almost nothing (no visible menu…), and there is no nautilus desktop.
So, it is still an unusable gnome-session, but there is a little progress. :-)

Hope this may help,

-- 
Tanguy Ortolo

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

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

Versions of packages gnome-session depends on:
ii  gconf2 2.24.0-7  GNOME configuration database syste
ii  gnome-control-center   1:2.22.2.1-2  utilities to configure the GNOME d
ii  gnome-settings-daemon  2.22.2.1-2GNOME settings daemon
ii  libatk1.0-01.22.0-1  The ATK accessibility toolkit
ii  libbonobo2-0   2.24.1-1  Bonobo CORBA interfaces library
ii  libc6  2.7-18GNU C Library: Shared libraries
ii  libdbus-1-31.2.1-5   simple interprocess messaging syst
ii  libdbus-glib-1-2   0.80-3simple interprocess messaging syst
ii  libgconf2-42.24.0-7  GNOME configuration database syste
ii  libglib2.0-0   2.20.0-1  The GLib library of C routines
ii  libgnome-keyring0  2.22.3-2  GNOME keyring services library
ii  libgnome2-02.20.1.1-1The GNOME 2 library - runtime file
ii  libgnomeui-0   2.20.1.1-2The GNOME 2 libraries (User Interf
ii  libgtk2.0-02.14.7-4+b1   The GTK+ graphical user interface 
ii  libice62:1.0.4-1 X11 Inter-Client Exchange library
ii  liborbit2  1:2.14.13-0.1 libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0  1.22.4-2  Layout and rendering of internatio
ii  libsm6 2:1.0.3-2 X11 Session Management library
ii  libwrap0   7.6.q-16  Wietse Venema's TCP wrappers libra
ii  libx11-6   2:1.2-1   X11 client-side library
ii  libxau61:1.0.3-3 X11 authorisation library

Versions of packages gnome-session recommends:
ii  dbus-x11  1.2.1-5simple interprocess messaging syst
ii  gnome-panel   2.20.3-5   launcher and docking facility for 
ii  metacity  1:2.22.0-2 A lightweight GTK2 based Window Ma
ii  nautilus  2.20.0-7   file manager and graphical shell f

Versions of packages gnome-session suggests:
ii  desktop-base  5.0.3  common files for the Debian Deskto
ii  gnome-user-guide [gnome2-user 2.22.1-1   GNOME user's guide

-- no debconf information



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



Bug#519983: tkcvs: freezes upon first interaction

2009-03-16 Thread Martin Gisser
Package: tkcvs
Version: 8.1-1
Severity: grave
Justification: renders package unusable

wish8.5 runs high.
I gotneed Tcl/Tk 8.4 and 8.5 installed. (Have not tested if it works
with 
one deinstalled.)

** TkCvs8.2 works. **

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

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

Versions of packages tkcvs depends on:
ii  cvs 1:1.12.13-12 Concurrent Versions System
ii  tk8.5   8.5.3-4  Tk toolkit for Tcl and X11,
v8.5 -
ii  ttf-dejavu  2.25-3   Metapackage to pull in
ttf-dejavu-

Versions of packages tkcvs recommends:
ii  dirdiff   2.1-4  Display and merge changes
between 
ii  gnome-terminal [x-terminal-em 2.22.3-3   The GNOME 2 terminal
emulator appl
ii  xterm [x-terminal-emulator]   235-2  X terminal emulator

tkcvs suggests no packages.

-- no debconf information





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



Bug#519984: Cannot boot 2.6.26 kernel on HPPA N4000

2009-03-16 Thread Marc Rodriguez
Package: linux-image
Version: 2.6.26-parisc64
Severity: Critical


Attempting to boot a 2.6.26 kernel on an HP N4000 machine (64 bit PA-RISC)
yields the following results (beginning at system startup):
Beginning of error



GSP Host Name:  uninitialized

GSP co


CO

You are now leaving the Guardian Service Processor Command Interface
and returning to the console mode. Type Ctrl B to reactivate it.



Configuration Menu: Enter command  ma
  Main
Menu ---

 Command   Description
 ---   ---
 BOot [PRI|ALT|path] Boot from specified path
 PAth [PRI|ALT] [path]   Display or modify a path
 SEArch [DIsplay|IPL] [path] Search for boot devices

 COnfiguration menuDisplays or sets boot values
 INformation menu  Displays hardware information
 SERvice menu  Displays service commands

 DIsplay   Redisplay the current menu
 HElp [menu|command]   Display help for menu or command
 RESET Restart the system

Main Menu: Enter command or menu  bo

Interact with IPL (Y, N, or Cancel)? y
 Booting...
Boot IO Dependent Code (IODC) revision 1


HARD Booted.
palo ipl 1.14 r...@duet Sat Apr  8 16:08:16 EDT 2006

Skipping extended partition 6 - beyond reach of IPL

Partition Start(MB) End(MB) Id Type


1   1  31   f0 Palo


2  32 156   83 ext2


5 157   67413   83 ext2

PALO(F0) partition contains:

0/vmlinux64 6300839 bytes @ 0x48000


Information: No console specified on kernel command line. This is normal.

PALO will choose the console currently used by firmware (serial).Current
command line:

2/vmlinux root=/dev/sda5 initrd=2/initrd.img HOME=/ console=ttyS0 TERM=vt102

 0: 2/vmlinux

 1: root=/dev/sda5

 2: initrd=2/initrd.img

 3: HOME=/

 4: console=ttyS0

 5: TERM=vt102


#edit the numbered field

'b'boot with this command line

'r'restore command line

'l'list dir

? 0 b


Command line for kernel: 'root=/dev/sda5 HOME=/ console=ttyS0 TERM=vt102
palo_kernel=2/vmlinux'

Selected kernel: /vmlinux from partition 2

Selected ramdisk: /initrd.img from partition 2

ELF64 executable

Entry 0010 first 0010 n 3

Segment 0 load 0010 size 4648960 mediaptr 0x1000

Segment 1 load 005c4000 size 395160 mediaptr 0x47

Segment 2 load 00628000 size 304384 mediaptr 0x4d1000

Loading ramdisk 6339147 bytes @ 3f9e3000...

Branching to kernel entry point 0x0010.  If this is the last

message you see, you may need to switch your console.  This is

a common symptom -- search the FAQ and mailing list at parisc-linux.org


Linux version 2.6.26 (2.6.26) (r...@sys0t-debian) (gcc version 4.3.2 (GCC) )
#1 SMP Mon Mar 16 07:17:55 MDT 2009
FP[0] enabled: Rev 1 Model 16
The 64-bit Kernel has started...
console [ttyB0] enabled
Initialized PDC Console for debugging.
Determining PDC firmware type: 64 bit PAT.
model 5cc0 0491  0002 28f7f76d 10f0 0008
00b2 00b2
vers  0203
CPUID vers 17 rev 8 (0x0228)
capabilities 0x1
model 9000/800/N4000-44
Memory Ranges:
 0) Start 0x End 0x7fff Size   2048 MB
 1) Start 0x00018000 End 0x0001 Size   2048 MB
Total Memory: 4096 MB
initrd: 7f9e3000-7ffeea4b
initrd: reserving 3f9e3000-3ffeea4b (mem_max 1)
SMP: bootstrap CPU ID is 0
Built 2 zonelists in Zone order, mobility grouping on.  Total pages: 1034240
Kernel command line: root=/dev/sda5 HOME=/ console=ttyS0 TERM=vt102
palo_kernel=2/vmlinux
PID hash table entries: 4096 (order: 12, 32768 bytes)
Console: colour dummy device 160x64
Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
Memory: 4109824k/4194304k available (3121k kernel code, 83764k reserved,
1370k data, 300k init)
virtual kernel memory layout:
vmalloc : 0x8000 - 0x3f00   (1007 MB)
memory  : 0x4000 - 0x00024000   (8192 MB)
  .init : 0x40628000 - 0x40673000   ( 300 kB)
  .data : 0x4040c518 - 0x40563000   (1370 kB)
  .text : 0x4010 - 0x4040c518   (3121 kB)
Security Framework initialized
SELinux:  Disabled at boot.
Capability LSM initialized
Mount-cache hash table entries: 256
Brought up 1 CPUs
net_namespace: 1168 bytes
NET: Registered protocol family 16
EISA bus registered
Searching for devices...
Found devices:
1. Prelude W 440 at 0xfed25000 [37] { 0, 0x0, 0x5cc, 0x4 }
2. Prelude W 440 at 0xfed2d000 [45] { 0, 0x0, 0x5cc, 0x4 }
3. Prelude W 440 at 0xfed65000 [101] { 0, 0x0, 0x5cc, 0x4 }
4. Prelude W 440 at 0xfed6d000 [109] { 0, 0x0, 0x5cc, 0x4 }
5. DEW BC Runway Port at 0xfed24000 [36] { 7, 

Bug#519632: ocamlbricks: FTBFS: ocamldoc-api-ref-config: Command not found

2009-03-16 Thread Kurt Roeckx
On Mon, Mar 16, 2009 at 12:08:25PM +0100, 
jonathan.roudi...@lipn.univ-paris13.fr wrote:
 Hi,

 /usr/share/cdbs/1/class/ocamldoc-api-ref-config is provide by
 the ocaml-nox package and ocamlbricks depends on ocaml-nox,

It seems to be provided by dh-ocaml in unstable.

 Ocaml-nox is it installed on your system ?

Yes.  See:
https://buildd.debian.org/fetch.cgi?pkg=ocamlbricks;ver=0.50.1-1%2Bb1;arch=amd64;stamp=1236985045

From the log:
Selecting previously deselected package ocaml-nox.
Unpacking ocaml-nox (from .../ocaml-nox_3.11.0-5_amd64.deb) ...


Kurt




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



Bug#517392: marked as done (gssdp should Build-Depends on libglib2.0-dev (= 2.18))

2009-03-16 Thread Debian Bug Tracking System

Your message dated Mon, 16 Mar 2009 17:32:05 +
with message-id e1ljgfv-0007ke...@ries.debian.org
and subject line Bug#517392: fixed in gssdp 0.6.4-2
has caused the Debian Bug report #517392,
regarding gssdp should Build-Depends on libglib2.0-dev (= 2.18)
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
517392: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=517392
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: gssdp
Version: 0.6.4-1
Severity: serious

Hi,

Build failed on alpha because of:

checking pkg-config is at least version 0.9.0... yes
checking for LIBGSSDP... configure: error: Package requirements
(glib-2.0 = 2.18 gobject-2.0 = 2.18
   libsoup-2.4) were not met:

Requested 'glib-2.0 = 2.18' but version of GLib is 2.16.6
Requested 'gobject-2.0 = 2.18' but version of GObject is 2.16.6


See build log here:
https://buildd.debian.org/fetch.cgi?pkg=gssdparch=alphaver=0.6.4-1stamp=1235177896file=logas=raw

Thanks,
Arthur.


---End Message---
---BeginMessage---
Source: gssdp
Source-Version: 0.6.4-2

We believe that the bug you reported is fixed in the latest version of
gssdp, which is due to be installed in the Debian FTP archive:

gssdp-tools_0.6.4-2_i386.deb
  to pool/main/g/gssdp/gssdp-tools_0.6.4-2_i386.deb
gssdp_0.6.4-2.diff.gz
  to pool/main/g/gssdp/gssdp_0.6.4-2.diff.gz
gssdp_0.6.4-2.dsc
  to pool/main/g/gssdp/gssdp_0.6.4-2.dsc
libgssdp-1.0-1_0.6.4-2_i386.deb
  to pool/main/g/gssdp/libgssdp-1.0-1_0.6.4-2_i386.deb
libgssdp-1.0-dbg_0.6.4-2_i386.deb
  to pool/main/g/gssdp/libgssdp-1.0-dbg_0.6.4-2_i386.deb
libgssdp-1.0-dev_0.6.4-2_i386.deb
  to pool/main/g/gssdp/libgssdp-1.0-dev_0.6.4-2_i386.deb
libgssdp-doc_0.6.4-2_all.deb
  to pool/main/g/gssdp/libgssdp-doc_0.6.4-2_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 517...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Ross Burton r...@debian.org (supplier of updated gssdp package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 08 Mar 2009 00:12:33 +
Source: gssdp
Binary: libgssdp-1.0-1 libgssdp-1.0-dev libgssdp-1.0-dbg libgssdp-doc 
gssdp-tools
Architecture: source all i386
Version: 0.6.4-2
Distribution: unstable
Urgency: low
Maintainer: Ross Burton r...@debian.org
Changed-By: Ross Burton r...@debian.org
Description: 
 gssdp-tools - GObject-based library for SSDP (tools)
 libgssdp-1.0-1 - GObject-based library for SSDP
 libgssdp-1.0-dbg - GObject-based library for SSDP (debug symbols)
 libgssdp-1.0-dev - GObject-based library for SSDP (development files)
 libgssdp-doc - GObject-based library for SSDP (documentation)
Closes: 517392
Changes: 
 gssdp (0.6.4-2) unstable; urgency=low
 .
   * Bump libglib2.0 build-dependency (Closes: #517392)
Checksums-Sha1: 
 3821b05036ad7106e7a6c10316b961ec904a9dfc 1057 gssdp_0.6.4-2.dsc
 3555054f5b4367b0894053d0ecebe2ef539cf4fb 2213 gssdp_0.6.4-2.diff.gz
 a713db196803e73ab8b4ec9e4598ae064c18c726 21212 libgssdp-doc_0.6.4-2_all.deb
 c11307feeb62c1c9d28b4f443c08284e70d59b7f 23284 libgssdp-1.0-1_0.6.4-2_i386.deb
 2a0fea44de301ff4d7db79d685ffa682b78ff361 25036 
libgssdp-1.0-dev_0.6.4-2_i386.deb
 b87269b7641816c799d292074073c41b23b145c8 62724 
libgssdp-1.0-dbg_0.6.4-2_i386.deb
 45647c23fc4506ab7442a2e4da6ec9afb79dbdc9 18700 gssdp-tools_0.6.4-2_i386.deb
Checksums-Sha256: 
 576a0cff5998016ab16b80832b066141de2b536933c71c36d008ac1413a7c3c3 1057 
gssdp_0.6.4-2.dsc
 1b2133b9925b20adec386a90c50fc09cdc9fd037e796733e1a40dbc08d0c7ad6 2213 
gssdp_0.6.4-2.diff.gz
 231dd5b29044cb9d468d115e448e5bfb9349a4c4ffca55fef7af9261a3a1e13f 21212 
libgssdp-doc_0.6.4-2_all.deb
 3c8d94e489b11c54a9e78160d6ccd0f2c78e7dba97a404b4e7a425ff541faa22 23284 
libgssdp-1.0-1_0.6.4-2_i386.deb
 98515d8a7fbeaf22cbd59c2e974775687bfe94cd988a470196e5141f60c7b3f8 25036 
libgssdp-1.0-dev_0.6.4-2_i386.deb
 9bc5d2368e1bcd9a7e2ec1290fde26255c6bdbfbde4474c72b2c9a71612a89eb 62724 
libgssdp-1.0-dbg_0.6.4-2_i386.deb
 cd4cbfea73b1f0df32ac91789179d9e652d2d082b238ab8f6c7a3e8e133c3997 18700 
gssdp-tools_0.6.4-2_i386.deb
Files: 
 c4807851bb85bc6275864c937a8dac2f 1057 libs optional gssdp_0.6.4-2.dsc
 e83d5eca4a4e7589f6a16c000c35ad74 2213 libs optional 

Bug#519986: approx: Missing initscript

2009-03-16 Thread Michael Deelwater
Package: approx
Version: 4.0-1
Severity: grave
Justification: renders package unusable

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

There is no /etc/init.d/approx anymore in 4.0-1, so approx is not started.

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

Kernel: Linux 2.6.28-7.slh.1-sidux-amd64 (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages approx depends on:
ii  adduser 3.110add and remove users and groups
ii  bzip2   1.0.5-1  high-quality block-sorting file co
ii  curl7.18.2-8 Get a file from an HTTP, HTTPS or 
ii  debconf [debconf-2.0]   1.5.25   Debian configuration management sy
ii  libc6   2.9-3GNU C Library: Shared libraries
ii  libpcre37.8-2Perl 5 Compatible Regular Expressi
ii  lsb-base3.2-20   Linux Standard Base 3.2 init scrip
ii  openbsd-inetd [inet-superse 0.20080125-2 The OpenBSD Internet Superserver
ii  update-inetd4.31 inetd configuration file updater

approx recommends no packages.

approx suggests no packages.

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

iEYEARECAAYFAkm+jboACgkQnwTD+9oPQSgEbgCfY8dYIlcGSQ5E6ubZvMFzbueM
mwMAniyVX1PwXxr1mcy1dgSkvCMGe1N9
=p8Sp
-END PGP SIGNATURE-



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



Bug#519711: splashy: hard-coded dependency on libdirectfb-1.0-0

2009-03-16 Thread Adeodato Simó
* Luis Mondesi [Mon, 16 Mar 2009 09:56:22 -0400]:

 Splashy has not been tested against newer version of libdirectfb. I know for
 sure that libdirectfb 1.2 makes it segfault.

 We will need to work on the transition anyway. I just have not have time
 lately to work on this. Maybe this summer.

Okay. We’ll probably need to remove splashy from testing in the
meantime.

-- 
- Are you sure we're good?
- Always.
-- Rory and Lorelai




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



Bug#519986: approx: Missing initscript

2009-03-16 Thread Roman Mamedov
On Mon, 16 Mar 2009 18:34:56 +0100
Michael Deelwater michael.deelwa...@googlemail.com wrote:

 Package: approx
 Version: 4.0-1
 Severity: grave
 Justification: renders package unusable
 
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 There is no /etc/init.d/approx anymore in 4.0-1, so approx is not
 started.
 

Approx no longer runs as a daemon, now it is being invoked by inetd.
For example if you use openbsd-inetd, see /etc/inetd.conf.
Also check out the bug #517217.

-- 
With respect,
Roman



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



Bug#519983: tkcvs: freezes upon first interaction

2009-03-16 Thread Tim Cutts


On 16 Mar 2009, at 7:19 pm, Martin Gisser wrote:


Package: tkcvs
Version: 8.1-1
Severity: grave
Justification: renders package unusable

wish8.5 runs high.
I gotneed Tcl/Tk 8.4 and 8.5 installed. (Have not tested if it works
with
one deinstalled.)


I've never seen this happen.  Can you give me some information to help  
me reproduce it?


1) Did you start it from the command line or from the Applications menu?

2) Were you trying to access a CVS or subversion checkout?

3) Is the repository local to your machine, or remote?

4) If it is remote, do you need to supply a password?  If so, check  
the terminal from which you launched tkcvs - it might be prompting you  
for a password.


Regards,

Tim


--
The Wellcome Trust Sanger Institute is operated by Genome Research 
Limited, a charity registered in England with number 1021457 and a 
company registered in England with number 2742969, whose registered 
office is 215 Euston Road, London, NW1 2BE. 




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



Processed: Re: [Openjdk] Bug#517338: openjdk-6-jre: /usr/lib/jni not in library path

2009-03-16 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 517338 + patch
Bug#517338: openjdk-6-jre: /usr/lib/jni not in library path
Tags were: help confirmed
Tags added: patch

 kthxbye
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#517338: [Openjdk] Bug#517338: openjdk-6-jre: /usr/lib/jni not in library path

2009-03-16 Thread brian m. carlson

tags 517338 + patch
kthxbye

On Mon, Mar 16, 2009 at 08:45:05AM +0100, Matthias Klose wrote:

brian m. carlson schrieb:

According to Debian Java Policy[0], /usr/lib/jni *must* be in the
default library path, but it isn't:


I have never seen a rationale for this policy, but it's there ... I'd like to
downgrade it, other VM's like sun-java[56] don't honor it as well. Care to send
a patch?


Well, whether it's honored or not by JVMs, other packages are relying on
it[0].  I'd prefer that you not downgrade it, since it is mandated by
policy; if the policy changes, then feel free to downgrade it (and clone
this bug to libunixsocket-java, stating that it needs to put its shared
library somewhere else).

A patch (to one of the IcedTea patches) is enclosed; this should
search /usr/lib{64,}/jni before the normal system directories, but I
haven't tested it.  If you really want me to bootstrap it, let me know;
I won't be able to get to it any sooner than to-morrow.

[0] gcj has this path in its java.library.path; in fact, other than the
gcj-specific directory, that's the only directory that's in there.

--
brian m. carlson / brian with sandals: Houston, Texas, US
+1 713 440 7475 | http://crustytoothpaste.ath.cx/~bmc | My opinion only
troff on top of XML: http://crustytoothpaste.ath.cx/~bmc/code/thwack
OpenPGP: RSA v4 4096b 88AC E9B2 9196 305B A994 7552 F1BA 225C 0223 B187
--- openjdk-6-6b14-1.5~pre1/patches/icedtea-lib64.patch.old	2009-03-16 18:04:37.0 +
+++ openjdk-6-6b14-1.5~pre1/patches/icedtea-lib64.patch	2009-03-16 18:05:31.0 +
@@ -7,9 +7,9 @@
 -#define DEFAULT_LIBPATH	/lib:/usr/lib
 +
 +#if defined(AMD64) || defined(_LP64)  (defined(PPC) || defined(S390))
-+#define DEFAULT_LIBPATH /usr/lib64:/lib64:/lib:/usr/lib
++#define DEFAULT_LIBPATH /usr/lib64/jni:/usr/lib/jni:/usr/lib64:/lib64:/lib:/usr/lib
 +#else
-+#define DEFAULT_LIBPATH	/lib:/usr/lib
++#define DEFAULT_LIBPATH	/usr/lib/jni:/lib:/usr/lib
 +#endif
  
  #define EXTENSIONS_DIR	/lib/ext


signature.asc
Description: Digital signature


Bug#519986: marked as done (approx: Missing initscript)

2009-03-16 Thread Debian Bug Tracking System

Your message dated Mon, 16 Mar 2009 15:07:39 -0400
with message-id 20090316190739.gb5...@localhost
and subject line Re: Bug#519986: approx: Missing initscript
has caused the Debian Bug report #519986,
regarding approx: Missing initscript
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
519986: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=519986
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: approx
Version: 4.0-1
Severity: grave
Justification: renders package unusable

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

There is no /etc/init.d/approx anymore in 4.0-1, so approx is not started.

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

Kernel: Linux 2.6.28-7.slh.1-sidux-amd64 (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages approx depends on:
ii  adduser 3.110add and remove users and groups
ii  bzip2   1.0.5-1  high-quality block-sorting file co
ii  curl7.18.2-8 Get a file from an HTTP, HTTPS or 
ii  debconf [debconf-2.0]   1.5.25   Debian configuration management sy
ii  libc6   2.9-3GNU C Library: Shared libraries
ii  libpcre37.8-2Perl 5 Compatible Regular Expressi
ii  lsb-base3.2-20   Linux Standard Base 3.2 init scrip
ii  openbsd-inetd [inet-superse 0.20080125-2 The OpenBSD Internet Superserver
ii  update-inetd4.31 inetd configuration file updater

approx recommends no packages.

approx suggests no packages.

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

iEYEARECAAYFAkm+jboACgkQnwTD+9oPQSgEbgCfY8dYIlcGSQ5E6ubZvMFzbueM
mwMAniyVX1PwXxr1mcy1dgSkvCMGe1N9
=p8Sp
-END PGP SIGNATURE-


---End Message---
---BeginMessage---
On Mon, Mar 16, 2009 at 06:34:56PM +0100, Michael Deelwater wrote:
 There is no /etc/init.d/approx anymore in 4.0-1, so approx is not started.

Approx is now run (only) from inetd (see NEWS in
/usr/share/doc/approx/).

An entry in /etc/inetd.conf should have been added automatically on
upgrade.

-- 
Eric Cooper e c c @ c m u . e d u

---End Message---


Bug#517605: (no subject)

2009-03-16 Thread Joe Nahmias
Hi,

On Sun, Mar 08, 2009 at 05:21:49PM +, Iain Lane wrote:
 Hi,
 
 I've made the remaining transition bugs serious as they block completion
 of the Mono 2 transition. You package will ftbfs until this is resolved.
 
 Please apply the patches soon.
 
 Thanks,
 Iain (pkg-cli-libs team).
 

Please feel free to NMU as I'm keyless at the moment.

--Joe



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



Bug#518800: marked as done (lamsarrow.sty is non-free)

2009-03-16 Thread Debian Bug Tracking System

Your message dated Mon, 16 Mar 2009 19:17:43 +
with message-id e1ljijj-0007al...@ries.debian.org
and subject line Bug#518800: fixed in texlive-base 2007.dfsg.2-1
has caused the Debian Bug report #518800,
regarding lamsarrow.sty is non-free
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
518800: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=518800
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: texlive-pictures
Version: 2007.dfsg.1-5
Severity: normal

The package 'lamsarrow', included in texlive-pictures, does not work,
as it attempts to use a font lams1, which does not seem to be
currently included in Debian.  See the very short test file below.

-- Package-specific info:

##
minimal input file

\documentclass{article}
\usepackage{lamsarrow}

\begin{document}
Test.
\end{document}

##
other files

##
 List of ls-R files

-rw-r--r-- 1 root root 1145 2009-03-08 13:31 /var/lib/texmf/ls-R
-rw-r--r-- 1 root staff 79 2009-03-05 07:30 /usr/local/share/texmf/ls-R
lrwxrwxrwx 1 root root 29 2008-11-11 20:01 /usr/share/texmf/ls-R - 
/var/lib/texmf/ls-R-TEXMFMAIN
lrwxrwxrwx 1 root root 27 2009-01-15 16:52 /usr/share/texmf-texlive/ls-R - 
/var/lib/texmf/ls-R-TEXLIVE
lrwxrwxrwx 1 root root 27 2009-01-15 16:52 /usr/share/texmf-texlive/ls-R - 
/var/lib/texmf/ls-R-TEXLIVE
##
 Config files
lrwxrwxrwx 1 root root 20 2008-11-11 20:01 /usr/share/texmf/web2c/texmf.cnf - 
/etc/texmf/texmf.cnf
-rw-r--r-- 1 root root 8689 2009-03-05 07:34 /var/lib/texmf/web2c/fmtutil.cnf
-rw-r--r-- 1 root root 16522 2009-03-05 07:34 /var/lib/texmf/web2c/updmap.cfg
-rw-r--r-- 1 root root 10434 2009-03-05 07:34 
/var/lib/texmf/tex/generic/config/language.dat
##
 Files in /etc/texmf/web2c/
total 1
-rw-r--r-- 1 root root 283 2006-08-16 11:02 mktex.cnf
##
 md5sums of texmf.d
42c20d7e8bd343542772b5a145bf8ad8  /etc/texmf/texmf.d/05TeXMF.cnf
5f7f6652cc8b8071c9e4ea6ba9e9f0a1  /etc/texmf/texmf.d/15Plain.cnf
f68e5add6afd6585b982f2f78e2e6a92  /etc/texmf/texmf.d/45TeXinputs.cnf
ea33127256c6a9f37145ae5b16fdb80c  /etc/texmf/texmf.d/55Fonts.cnf
afccf1d3f87057411166a77c58e00bd1  /etc/texmf/texmf.d/65BibTeX.cnf
9da7c1c7b1eaf06f941af91f48a23068  /etc/texmf/texmf.d/75DviPS.cnf
7ae52efac46feb97010986e57877d12e  /etc/texmf/texmf.d/80DVIPDFMx.cnf
92e13107fe95c3f681df94e0235d0e45  /etc/texmf/texmf.d/80tex4ht.cnf
37329819f1109e8a457e64b8b58fecdb  /etc/texmf/texmf.d/85Misc.cnf
a8952d594677235951d447665ec46e9c  /etc/texmf/texmf.d/90TeXDoc.cnf
30f4f13357c2761ed01a6a15f28725a5  /etc/texmf/texmf.d/95NonPath.cnf

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

Kernel: Linux 2.6.27.2
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages texlive-pictures depends on:
ii  tex-common 1.11.3common infrastructure for building
ii  texlive-base   2007.dfsg.1-5 TeX Live: Essential programs and f
ii  texlive-common 2007.dfsg.1-5 TeX Live: Base component

Versions of packages texlive-pictures recommends:
ii  pgf2.00-1TeX Portable Graphic Format
ii  texlive-pictures-doc   2007.dfsg.1-5 TeX Live: Documentation files for 

texlive-pictures suggests no packages.

Versions of packages tex-common depends on:
ii  debconf   1.5.26 Debian configuration management sy
ii  ucf   3.0016 Update Configuration File: preserv

Versions of packages texlive-pictures is related to:
pn  tetex-basenone (no description available)
pn  tetex-bin none (no description available)
pn  tetex-extra   none (no description available)
ii  tex-common1.11.3 common infrastructure for building

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


---End Message---
---BeginMessage---
Source: texlive-base
Source-Version: 2007.dfsg.2-1

We believe that the bug you reported is fixed in the latest version of
texlive-base, which is due to be installed in the Debian FTP archive:

tetex-base_2007.dfsg.2-1_all.deb
  to pool/main/t/texlive-base/tetex-base_2007.dfsg.2-1_all.deb
tetex-bin_2007.dfsg.2-1_all.deb
  to 

Bug#516829: marked as done (Http double slash request arbitrary file access vulnerability)

2009-03-16 Thread Debian Bug Tracking System

Your message dated Mon, 16 Mar 2009 19:32:31 +
with message-id e1ljiy3-jl...@ries.debian.org
and subject line Bug#516829: fixed in mldonkey 3.0.0-1
has caused the Debian Bug report #516829,
regarding Http double slash request arbitrary file access vulnerability
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
516829: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=516829
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: mldonkey-server
Version: 2.9.5-2
Severity: grave
Tags: security

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1


Hi,

MLdonkey (up to 2.9.7) has  a  vulnerability  that allows remote user to
access any
file   with   rights   of  running  Mldonkey  daemon  by  supplying  a
special-crafted  request  (ok,  there's  not much special about double
slash) to an Mldonkey http GUI (tcp/4080 usually).

Reference:
https://savannah.nongnu.org/bugs/?25667

Thus, the exploit would be as simple as accessing any file on a remote
host with your browser and double slash:

http://mlhost:4080//etc/passwd




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

iEYEARECAAYFAkmjETEACgkQNxpp46476arOowCfdUi6Nmhi0vagcdOb06ya/RRA
RWsAn1THtf88DUbVAL6dunEq4MeLJjWn
=elDe
-END PGP SIGNATURE-


---End Message---
---BeginMessage---
Source: mldonkey
Source-Version: 3.0.0-1

We believe that the bug you reported is fixed in the latest version of
mldonkey, which is due to be installed in the Debian FTP archive:

mldonkey-gui_3.0.0-1_i386.deb
  to pool/main/m/mldonkey/mldonkey-gui_3.0.0-1_i386.deb
mldonkey-server_3.0.0-1_i386.deb
  to pool/main/m/mldonkey/mldonkey-server_3.0.0-1_i386.deb
mldonkey_3.0.0-1.diff.gz
  to pool/main/m/mldonkey/mldonkey_3.0.0-1.diff.gz
mldonkey_3.0.0-1.dsc
  to pool/main/m/mldonkey/mldonkey_3.0.0-1.dsc
mldonkey_3.0.0.orig.tar.gz
  to pool/main/m/mldonkey/mldonkey_3.0.0.orig.tar.gz



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 516...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Samuel Mimram smim...@debian.org (supplier of updated mldonkey package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 16 Mar 2009 20:11:12 +0100
Source: mldonkey
Binary: mldonkey-server mldonkey-gui
Architecture: source i386
Version: 3.0.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
Changed-By: Samuel Mimram smim...@debian.org
Description: 
 mldonkey-gui - Graphical frontend for mldonkey based on GTK+
 mldonkey-server - Door to the 'donkey' network
Closes: 204266 332324 432205 484674 487803 508280 508436 508533 508538 509001 
513369 514449 516829 517996
Changes: 
 mldonkey (3.0.0-1) unstable; urgency=low
 .
   [ Sylvain Le Gall ]
   * Remove useless explanation in chroot section of README.Debian.
   * Add debian/gbp.conf to force using pristine-tar
 .
   [ Stephane Glondu ]
   * Switch packaging to git.
 .
   [ Samuel Mimram ]
   * New upstream release, closes: #508280.
   * Fixes alignement problem on ARM, closes: #487803.
   * Remove useless line in init script, closes: #509001.
   * Better handling of errors in init script, closes: #508538.
   * Pass --debconf-ok option to ucf, closes: #514449.
   * Mention default telnet port in README.Debian, closes: #508436.
   * Updated vietnamese debconf translation, closes: #513369.
   * Update standards version to 3.8.1.
   * Don't uselessly build-depend on dpkg-dev.
   * Version reference to GPL in copyright.
 .
   [ Mehdi Dogguy ]
   * New upstream release, closes: #516829.
   * Bump standards version to 3.8.0, no changes needed.
   * Fix Lintian warning concerning debian/mldonkey-server.postinst: not
 specify full path of used commands.
   * Add ${misc:Depends} as a dependency for mldonkey-gui.
   * Add myself to uploaders.
   * Add DMUA flag (with Sam's blessing)
   * Add Homepage field
   * Use ocamlbuild to build utils
   * Add msse2 flag for i386 architecture
   * Simplify debian/rules
   * Create a manpage for mldonkey (link to mlnet's manpage for the moment)
   * Drop chrooted-mlnet support and do not suggest makejail anymore,
 closes: #204266.
   * Update/install NEWS.Debian and mention (again) removal of 

Bug#519981: marked as done (libxrandr-dev must depend on x11proto-randr-dev (= 1.3.0))

2009-03-16 Thread Debian Bug Tracking System

Your message dated Mon, 16 Mar 2009 19:32:27 +
with message-id e1ljixz-id...@ries.debian.org
and subject line Bug#519981: fixed in libxrandr 2:1.3.0-2
has caused the Debian Bug report #519981,
regarding libxrandr-dev must depend on x11proto-randr-dev (= 1.3.0)
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
519981: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=519981
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: libxrandr-dev
Version: 2:1.3.0-1
Severity: serious

I got this from pkg-config when trying to build Liferea on my system:

Package 'Xrandr' requires 'randrproto = 1.3' but version of RandrProto is 
1.2.99.3


---End Message---
---BeginMessage---
Source: libxrandr
Source-Version: 2:1.3.0-2

We believe that the bug you reported is fixed in the latest version of
libxrandr, which is due to be installed in the Debian FTP archive:

libxrandr-dev_1.3.0-2_amd64.deb
  to pool/main/libx/libxrandr/libxrandr-dev_1.3.0-2_amd64.deb
libxrandr2-dbg_1.3.0-2_amd64.deb
  to pool/main/libx/libxrandr/libxrandr2-dbg_1.3.0-2_amd64.deb
libxrandr2_1.3.0-2_amd64.deb
  to pool/main/libx/libxrandr/libxrandr2_1.3.0-2_amd64.deb
libxrandr_1.3.0-2.diff.gz
  to pool/main/libx/libxrandr/libxrandr_1.3.0-2.diff.gz
libxrandr_1.3.0-2.dsc
  to pool/main/libx/libxrandr/libxrandr_1.3.0-2.dsc



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 519...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Julien Cristau jcris...@debian.org (supplier of updated libxrandr package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 16 Mar 2009 20:23:40 +0100
Source: libxrandr
Binary: libxrandr2 libxrandr2-dbg libxrandr-dev
Architecture: source amd64
Version: 2:1.3.0-2
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force debia...@lists.debian.org
Changed-By: Julien Cristau jcris...@debian.org
Description: 
 libxrandr-dev - X11 RandR extension library (development headers)
 libxrandr2 - X11 RandR extension library
 libxrandr2-dbg - X11 RandR extension library (debug package)
Closes: 519981
Changes: 
 libxrandr (2:1.3.0-2) unstable; urgency=low
 .
   * libxrandr-dev depends on randrproto 1.3 (closes: #519981).  Thanks, Adrian
 Bunk!
Checksums-Sha1: 
 4ba4af9c316ea0cc54e4bf1a7328dff3e297624a 1478 libxrandr_1.3.0-2.dsc
 c614fd8ac66dedfaad324ce97d0c266880ffa52e 17359 libxrandr_1.3.0-2.diff.gz
 74892ef88b90938575945f26ccdc240774345a44 28188 libxrandr2_1.3.0-2_amd64.deb
 7dd172b4d89951d1af05765f06ea2ed41f8502f1 66590 libxrandr2-dbg_1.3.0-2_amd64.deb
 1a525f0d89801b06c486f3c57cbe492932ea1aeb 35730 libxrandr-dev_1.3.0-2_amd64.deb
Checksums-Sha256: 
 bd2117996b09b4314f2375d76b5ee96a1e0f06d89c6509914bd545567cc24b45 1478 
libxrandr_1.3.0-2.dsc
 1ad6c1056a40e86b3f923de3615891b15d7aa89d0f6cc66f3ca4616c3c198b12 17359 
libxrandr_1.3.0-2.diff.gz
 5fa559fdf0162ccb124e1c09e467552bee18b368d33f6b9e6e7cafa1d74b21f2 28188 
libxrandr2_1.3.0-2_amd64.deb
 85863a149a47162908bb4c1ed95de4638ed5fb73049b60a6411f8df14e3e691b 66590 
libxrandr2-dbg_1.3.0-2_amd64.deb
 e8eb5d22058ce6ce607fda4e08cbdb8a8361c5f3f379ee2b9ec2ad0008a5 35730 
libxrandr-dev_1.3.0-2_amd64.deb
Files: 
 7d442581963a876c190cbf6bdb8f8d22 1478 x11 optional libxrandr_1.3.0-2.dsc
 61d770050a071191aca07a8bc0a2c1e9 17359 x11 optional libxrandr_1.3.0-2.diff.gz
 ade913158fdc56628b3633c1124aa832 28188 libs optional 
libxrandr2_1.3.0-2_amd64.deb
 48e9c65f609e0174f7cedde59796240e 66590 libdevel extra 
libxrandr2-dbg_1.3.0-2_amd64.deb
 18928855524f1b2dec387a7dab8779a9 35730 libdevel optional 
libxrandr-dev_1.3.0-2_amd64.deb

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

iEYEARECAAYFAkm+p8UACgkQmEvTgKxfcAx8NACgrE1cb8E9pAiy27Y12S9zfrWY
iu4AoNaObeXd5YWvcH+aWQD/fH6EBB+W
=l9u7
-END PGP SIGNATURE-


---End Message---


Bug#520001: powerman: tries to overwrite file owned by speech-tools

2009-03-16 Thread Ralf Treinen
Package: powerman
Version: 2.3.3-1
Severity: serious
User: trei...@debian.org
Usertags: edos-file-overwrite

Date: 2009-03-15
Architecture: amd64
Distribution: sid
Command: apt-get --assume-yes --allow-unauthenticated install powerman 
speech-tools


Hi,

automatic installation tests of packages that share a file and at the
same time do not conflict by their package dependency relationships has
detected the following problem:

Reading package lists...
Building dependency tree...
The following extra packages will be installed:
  ca-certificates esound-common libaudiofile0 libcurl3-gnutls libdes425-3
  libesd0 libestools1.2 libgenders0 libgssapi-krb5-2 libidn11 libk5crypto3
  libkeyutils1 libkrb5-3 libkrb53 libkrb5support0 libldap-2.4-2 openssl
Suggested packages:
  krb5-doc krb5-user esound speech-tools-doc
Recommended packages:
  esound-clients
The following NEW packages will be installed:
  ca-certificates esound-common libaudiofile0 libcurl3-gnutls libdes425-3
  libesd0 libestools1.2 libgenders0 libgssapi-krb5-2 libidn11 libk5crypto3
  libkeyutils1 libkrb5-3 libkrb53 libkrb5support0 libldap-2.4-2 openssl
  powerman speech-tools
0 upgraded, 19 newly installed, 0 to remove and 0 not upgraded.
Need to get 4484kB of archives.
After this operation, 12.6MB of additional disk space will be used.
WARNING: The following packages cannot be authenticated!
  libkeyutils1 libkrb5support0 libk5crypto3 libkrb5-3 libdes425-3
  libgssapi-krb5-2 libidn11 libkrb53 libldap-2.4-2 openssl ca-certificates
  esound-common libaudiofile0 libcurl3-gnutls libesd0 libestools1.2
  libgenders0 speech-tools powerman
Authentication warning overridden.
Get:1 http://localhost sid/main libkeyutils1 1.2-10 [6164B]
Get:2 http://localhost sid/main libkrb5support0 1.6.dfsg.4~beta1-11 [40.0kB]
Get:3 http://localhost sid/main libk5crypto3 1.6.dfsg.4~beta1-11 [94.0kB]
Get:4 http://localhost sid/main libkrb5-3 1.6.dfsg.4~beta1-11 [311kB]
Get:5 http://localhost sid/main libdes425-3 1.6.dfsg.4~beta1-11 [32.1kB]
Get:6 http://localhost sid/main libgssapi-krb5-2 1.6.dfsg.4~beta1-11 [106kB]
Get:7 http://localhost sid/main libidn11 1.12-1 [155kB]
Get:8 http://localhost sid/main libkrb53 1.6.dfsg.4~beta1-11 [73.5kB]
Get:9 http://localhost sid/main libldap-2.4-2 2.4.15-1 [211kB]
Get:10 http://localhost sid/main openssl 0.9.8g-15 [1043kB]
Get:11 http://localhost sid/main ca-certificates 20081127 [151kB]
Get:12 http://localhost sid/main esound-common 0.2.41-2 [57.6kB]
Get:13 http://localhost sid/main libaudiofile0 0.2.6-7 [82.5kB]
Get:14 http://localhost sid/main libcurl3-gnutls 7.18.2-8.1 [215kB]
Get:15 http://localhost sid/main libesd0 0.2.41-2 [16.8kB]
Get:16 http://localhost sid/main libestools1.2 1:1.2.96~beta-2 [1324kB]
Get:17 http://localhost sid/main libgenders0 1.11-1-1 [40.9kB]
Get:18 http://localhost sid/main speech-tools 1:1.2.96~beta-2 [265kB]
Get:19 http://localhost sid/main powerman 2.3.3-1 [258kB]
Preconfiguring packages ...
Fetched 4484kB in 0s (15.3MB/s)
Can not write log, openpty() failed (/dev/pts not mounted?)
Selecting previously deselected package libkeyutils1.
(Reading database ... 8078 files and directories currently installed.)
Unpacking libkeyutils1 (from .../libkeyutils1_1.2-10_amd64.deb) ...
Selecting previously deselected package libkrb5support0.
Unpacking libkrb5support0 (from 
.../libkrb5support0_1.6.dfsg.4~beta1-11_amd64.deb) ...
Selecting previously deselected package libk5crypto3.
Unpacking libk5crypto3 (from .../libk5crypto3_1.6.dfsg.4~beta1-11_amd64.deb) ...
Selecting previously deselected package libkrb5-3.
Unpacking libkrb5-3 (from .../libkrb5-3_1.6.dfsg.4~beta1-11_amd64.deb) ...
Selecting previously deselected package libdes425-3.
Unpacking libdes425-3 (from .../libdes425-3_1.6.dfsg.4~beta1-11_amd64.deb) ...
Selecting previously deselected package libgssapi-krb5-2.
Unpacking libgssapi-krb5-2 (from 
.../libgssapi-krb5-2_1.6.dfsg.4~beta1-11_amd64.deb) ...
Selecting previously deselected package libidn11.
Unpacking libidn11 (from .../libidn11_1.12-1_amd64.deb) ...
Selecting previously deselected package libkrb53.
Unpacking libkrb53 (from .../libkrb53_1.6.dfsg.4~beta1-11_amd64.deb) ...
Selecting previously deselected package libldap-2.4-2.
Unpacking libldap-2.4-2 (from .../libldap-2.4-2_2.4.15-1_amd64.deb) ...
Selecting previously deselected package openssl.
Unpacking openssl (from .../openssl_0.9.8g-15_amd64.deb) ...
Selecting previously deselected package ca-certificates.
Unpacking ca-certificates (from .../ca-certificates_20081127_all.deb) ...
Selecting previously deselected package esound-common.
Unpacking esound-common (from .../esound-common_0.2.41-2_all.deb) ...
Selecting previously deselected package libaudiofile0.
Unpacking libaudiofile0 (from .../libaudiofile0_0.2.6-7_amd64.deb) ...
Selecting previously deselected package libcurl3-gnutls.
Unpacking libcurl3-gnutls (from .../libcurl3-gnutls_7.18.2-8.1_amd64.deb) ...
Selecting previously deselected package libesd0.
Unpacking libesd0 (from 

Bug#519708: zabbix-frontend-php: Web Frontend doesn't work anymore after upgrading to Lenny

2009-03-16 Thread Michael Ablassmeier
hi,

On Mon, Mar 16, 2009 at 10:52:35AM +0100, Fabio Napoleoni - ZENIT wrote:
 Il giorno 14/mar/09, alle ore 16:54, Michael Ablassmeier ha scritto:
 On Sat, Mar 14, 2009 at 11:08:40AM -0400, Fabio Napoleoni wrote:
 Every page I load from a web browser run for a while and after 30  
 seconds it reports:

 Fatal error: Maximum execution time of 30 seconds exceeded in /usr/ 
 share/zabbix/include/config.inc.php on line 365

 I've enabled php error_log directive, with error_report to all, but
 in the error file I don't find anything except the error above.

 can you please set your maximum execution time higher than 30 seconds? 
 It seems
 to error out in an error reporting function, probaby you will get an  
 detailed
 error message after.

 I've done it, the message remains the same, probably it is a loop on  
 error reporting.

yeah, probably.

 I set it to120 seconds and the error_reporting to  E_ALL | E_STRICT, but 
 no additional info, only this message.

thats bad. Ive got no response so far from other persons which did upgrade from
etch. I have to test if this also occours on an clean zabbix installation done
on lenny (which i cant imagine since this problem would have been reported way
earlier then ..)

Can you fiddle arround the function to find out whats happening there? Hard to
debug this if i cant reproduce ..

bye,
- michael



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



Bug#519330: stellarium: Segfault just before creating GUI

2009-03-16 Thread Cédric Delfosse
Le mercredi 11 mars 2009 à 22:29 +0100, Manolo Díaz a écrit :
 Package: stellarium
 Version: 0.10.1-1
 Severity: grave
 
 Hi,
 Reinstalling stellarium and stellarium-data after been purged or
 removing ~/.stellarium dir doesn't solve the problem. Previous version
 worked for me with no problem at all.

Hello,

could you try version 0.10.2 which is available in unstable ?

Regards,

Cédric





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



Bug#520005: gpsim: FTBFS: ../cli/.libs/libgpsimcli.so: undefined reference to `rl_getc_function'

2009-03-16 Thread Kurt Roeckx
Source: gpsim
Version: 0.22.0-5.1
Severity: serious

Hi,

Your package is failing to build (on powerpc) with the following
error:
powerpc-linux-gnu-g++ -g -O2 -o .libs/gpsim main.o -pthread  
../src/.libs/libgpsim.so ../cli/.libs/libgpsimcli.so 
../gui/.libs/libgpsimgui.so ../eXdbm/.libs/libgpsim_eXdbm.so -lstdc++ 
/usr/lib/libgthread-2.0.so /usr/lib/libgtkextra-x11-2.0.so -lXext -lXinerama 
-lXi -lXrandr -lXcursor -lXfixes -lpng12 -lXrender -lX11 -ldl -lrt 
/usr/lib/libgtk-x11-2.0.so /usr/lib/libgdk-x11-2.0.so /usr/lib/libatk-1.0.so 
/usr/lib/libpangoft2-1.0.so /usr/lib/libgdk_pixbuf-2.0.so -lm 
/usr/lib/libpangocairo-1.0.so /usr/lib/libgio-2.0.so /usr/lib/libcairo.so 
/usr/lib/libpango-1.0.so /usr/lib/libfreetype.so -lz -lfontconfig 
/usr/lib/libgobject-2.0.so /usr/lib/libgmodule-2.0.so /usr/lib/libglib-2.0.so 
/usr/lib/libpopt.so
../cli/.libs/libgpsimcli.so: undefined reference to `rl_getc_function'
../cli/.libs/libgpsimcli.so: undefined reference to 
`rl_attempted_completion_function'
../cli/.libs/libgpsimcli.so: undefined reference to `rl_forced_update_display'
../cli/.libs/libgpsimcli.so: undefined reference to `rl_completion_matches'
../cli/.libs/libgpsimcli.so: undefined reference to `rl_callback_handler_remove'
../cli/.libs/libgpsimcli.so: undefined reference to `rl_callback_read_char'
../cli/.libs/libgpsimcli.so: undefined reference to 
`rl_callback_handler_install'
../cli/.libs/libgpsimcli.so: undefined reference to `add_history'
collect2: ld returned 1 exit status
make[3]: *** [gpsim] Error 1



Kurt




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



Bug#520006: webkit_1.1.1-1(hppa/experimental): FTBFS: warning: some symbols disappeared in the symbols file

2009-03-16 Thread Frank Lichtenheld
Package: webkit
Version: 1.1.1-1
Severity: serious

Hi,

your package failed to build from source.

| Automatic build of webkit_1.1.1-1 on meitner by sbuild/hppa 98-farm
| Build started at 20090315-2104
| **
| Checking available source versions...
| Fetching source files...
| Reading package lists...
| Building dependency tree...
| Reading state information...
| Need to get 5760kB of source archives.
| Get:1 http://ftp2.de.debian.org experimental/main webkit 1.1.1-1 (dsc) [1773B]
| Get:2 http://ftp2.de.debian.org experimental/main webkit 1.1.1-1 (tar) 
[5179kB]
| Get:3 http://ftp2.de.debian.org experimental/main webkit 1.1.1-1 (diff) 
[579kB]
| Fetched 5760kB in 29s (194kB/s)
| Download complete and in download only mode
| ** Using build dependencies supplied by package:
| Build-Depends: debhelper (= 5.0), libgtk2.0-dev (= 2.10), libpango1.0-dev 
(= 1.16), libicu-dev, libxslt-dev, libsoup2.4-dev (= 2.25.91), 
libsqlite3-dev, gperf, bison, flex, libjpeg62-dev, libpng12-dev, libxt-dev, 
autotools-dev
| Checking for already installed source dependencies...
[...]
| dh_makeshlibs -a -V 'libwebkit-1.0-2 (= 1.1.1)' -- -c4
| dpkg-gensymbols: warning: some symbols disappeared in the symbols file: see 
diff output below
| dpkg-gensymbols: warning: debian/libwebkit-1.0-2/DEBIAN/symbols doesn't match 
completely debian/libwebkit-1.0-2.symbols
| --- dpkg-gensymbolsf5fGpy 2009-03-16 00:33:35.0 +
| +++ dpkg-gensymbolsLTglgh 2009-03-16 00:33:35.0 +
| @@ -75,8 +75,8 @@
|   jsvaluetoobj...@base 1.1.1
|   jsvaluetostringc...@base 1.1.1
|   jsvalueunprot...@base 1.1.1
| - ctitrampol...@base 1.1.1
| - ctivmthrowtrampol...@base 1.1.1
| +#MISSING: 1.1.1-1# ctitrampol...@base 1.1.1
| +#MISSING: 1.1.1-1# ctivmthrowtrampol...@base 1.1.1
|   kjsclassdefinitionem...@base 1.1.1
|   webkit_get_default_sess...@base 1.1.1
|   webkit_major_vers...@base 1.1.1
| dh_makeshlibs: dpkg-gensymbols returned exit code 1
| make: *** [binary-arch] Error 1
| dpkg-buildpackage: failure: /usr/bin/fakeroot debian/rules binary-arch gave 
error exit status 2
| **
| Build finished at 20090316-0133
| FAILED [dpkg-buildpackage died]

Full build log(s): 
http://experimental.ftbfs.de/build.php?ver=1.1.1-1pkg=webkitarch=hppa

Gruesse,
-- 
Frank Lichtenheld dj...@debian.org
www: http://www.djpig.de/



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



Bug#519930: [Openjdk] Bug#519930: icedtea6-plugin: install fails in update-alternatives

2009-03-16 Thread peter green
I have tried and failed to reproduce this in pbuilder, all the java 
plugin packages in debian that i'm aware of ( icedtea-gcjwebplugin, 
icedtea6-plugin, sun-java5-plugin and sun-java6-plugin) seem to handle 
the plugin alternatives in the same way which seems pretty sane to me 
and unless multiple plugin dirs are symlinked together or something else 
is messing with the alteratives I can't see how this could happen on 
upgrade from -3 to -4.


Have you ever installed a java plugin package from a non-debian source?
Is either /usr/lib/mozilla/plugins or /usr/lib/iceweasel/plugins a 
symlink on your system? If it is where does it point and do you have any 
idea how it got that way?

What does /etc/alternatives/iceweasel-javaplugin.so point to?



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



Processed: merging 519924 520006

2009-03-16 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 # urgs sorry for the dupe
 merge 519924 520006
Bug#519924: webkit_1.1.1-1(experimental/amd64/thukydides): symbol file not 
correct
Bug#520006: webkit_1.1.1-1(hppa/experimental): FTBFS: warning: some symbols 
disappeared in the symbols file
Merged 519924 520006.


End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#517975: pdnsd: package update overrides configuration

2009-03-16 Thread Alexander Gattin
Hello again,

On Sun, Mar 08, 2009 at 03:19:09PM +0100, Pierre Habouzit wrote:
 you absolutely don't get it. I give the two most used
 configurations

(i.e. pdnsd-recurse.conf and pdnsd-resolvconf.conf)

  for free, namely:
   * local cache, slave to your ISP or dhcp servers, through the
 resolvconf facilities ;
   * local recursive cache server.

Look, you call them _configurations_ yourself, and
that's right - they are configuration files.
Moreover, and more importantly, they are
configuration files:

1. according to The Debian Policy:

 10.7. Configuration files
 -
 
 10.7.1. Definitions
 ---
 
  configuration file
   A file that affects the operation of a program, or provides site-
   or host-specific information, or otherwise customizes the
   behavior of a program.  Typically, configuration files are
   intended to be modified by the system administrator (if needed or
   desired) to conform to local policy or to provide more useful
   site-specific behavior.

2. according to their usage in /etc/init.d/pdnsd
   script:

 if test -n $AUTO_MODE  test -f /usr/share/pdnsd/pdnsd-$AUTO_MODE.conf
 then
 START_OPTIONS=${START_OPTIONS} -c /usr/share/pdnsd/pdnsd-$AUTO_MODE.conf
 fi

  because you pass name of the file with -c
  option, which denotes config-file:

  -c FILE  or  --config-file=FILE
 specifies that configuration is to be read from FILE.
 Default is /etc/pdnsd.conf.

3. according to syntax, which is the same as that
   of de-jure-config-file-of-the-pdnsd-package
   (/etc/pdnsd.conf)

4. according to its semantics and effect on pdnsd's
   behaviour, which are the same in corresponding
   $AUTO_MODE as that of the /etc/pdnsd.conf in
   manual $AUTO_MODE

5. according to .conf file extension of theirs

As such, local changes to pdnsd-recurse.conf and
pdnsd-resolvconf.conf MUST be preserved on upgrade
and the files MUST be placed in /etc subtree.

That's what The Debian Policy says.

P.S. Christian, what's your opinion on the issue?

-- 
With best regards,
xrgtn (+380501102966/+380636177128/xr...@jabber.kiev.ua)



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



Bug#514418: [FIX]: ultra45 boot failing...

2009-03-16 Thread Julien Cristau
On Wed, 2009-02-25 at 13:41 +0100, Julien Cristau wrote:
 On Mon, 2009-02-09 at 12:49 +0100, Julien Cristau wrote:
  On Mon, 2009-02-09 at 01:21 -0800, David Miller wrote:
   No, I would have said that if time is tight at least we can use
   fbdev as the Xorg driver for PCI devices on sparc until we have a
   better fix for Xorg.
  
  We can probably do that for r1.
 
 OK so here is a tentative patch to fall back to the fbdev driver on
 sparc.  I'd appreciate if people could test it against lenny's
 xorg-server, and/or suggest better ways to do this.

I uploaded this to stable-proposed-updates, sparc binaries should appear
after the next mirror push.  There's still time to tweak things before
the point release, so testing reports from sparc X users to
488...@bugs.debian.org are welcome (whether things work or not).  Make
sure you have xserver-xorg-video-fbdev installed.

Cheers,
Julien



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



Bug#510845: mpi-defaults: FTBFS/not available on alpha

2009-03-16 Thread Manuel Prinz
Am Sonntag, den 15.03.2009, 16:14 +0100 schrieb Adeodato Simó:
 Indeed, bumping the SONAME in 1.3.1 would be great if indeed ABI
 compatibility has been broken. Thanks for pursuing this.

Upstream discusses the plans for future releases and dealing with
SONAMEs on their development list. We'll see where they end up, there is
no definite plan yet.

So, to get the issue fixed, my current plan is as follows:

1.) Fix the build issues.
2.) Fake the SONAME change by changing the library package name. [*]
3.) Patch and build all dependant software.
4.) File bugs for all packages, including patches.
5.) NMU if no response in a reasonable time frame.

I do not know if this plan is reasonable and the release-team is OK with
it. I will of course let them know about this before I take any action.
(Or is it OK to coordinate just with you?) Feedback is welcome and
appreciated, since this is the first time I need to do that.

Another option would be to upload to experimental, so the other
maintainers can test the packages theirselfs. Not sure if this is
reasonable but might result in less breakage since uploads to unstable
could be coordinated.

Best regards
Manuel

[*] The reason is that upstream does not yet know how (and if) they will
bump the SONAME, so I think it's best to stay with it as is, so
user-compiled software against 1.3 still runs.



signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil


Processed: tagging 519940

2009-03-16 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 519940 + security
Bug#519940: weechat-curses: DoS (crash) with some IRC messages from other users
There were no tags set.
Tags added: security


End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Processed: rea

2009-03-16 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reassign 520001 powerman,speech-tools
Bug#520001: powerman: tries to overwrite file owned by speech-tools
Bug reassigned from package `powerman' to `powerman,speech-tools'.


End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#518730: apwal: missing build-dependency on shared-mime-info

2009-03-16 Thread Simon McVittie
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Mon, 16 Mar 2009 at 22:07:40 +, Simon McVittie wrote:
 I can reproduce this in a clean sid chroot; the problem is that the Gtk pixbuf
 loader can't recognise PNGs unaided. Installing shared-mime-info is sufficient
 to make the package build.

Actually, this seems to have been considered a Gtk bug (#518090, fixed in
experimental - http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=518090).
Sorry for the noise.

S
-BEGIN PGP SIGNATURE-

iD8DBQFJvs6oWSc8zVUw7HYRApfmAKDYC2a65CRn7XcYE849PVoYXWjasQCggEqM
NtaqhOuSvolwlbZwm+xAUhU=
=+uqe
-END PGP SIGNATURE-



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



Bug#518730: apwal: missing build-dependency on shared-mime-info

2009-03-16 Thread Simon McVittie
retitle 518730 apwal: FTBFS: missing B-D on shared-mime-info
tags 518730 + patch
thanks

I can reproduce this in a clean sid chroot; the problem is that the Gtk pixbuf
loader can't recognise PNGs unaided. Installing shared-mime-info is sufficient
to make the package build.

Regards,
Simon


signature.asc
Description: Digital signature


Processed: apwal: missing build-dependency on shared-mime-info

2009-03-16 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 retitle 518730 apwal: FTBFS: missing B-D on shared-mime-info
Bug#518730: apwal: FTBFS: pixbufinline.inc:6: error: 'cursor' undeclared here 
(not in a function)
Changed Bug title to `apwal: FTBFS: missing B-D on shared-mime-info' from 
`apwal: FTBFS: pixbufinline.inc:6: error: 'cursor' undeclared here (not in a 
function)'.

 tags 518730 + patch
Bug#518730: apwal: FTBFS: missing B-D on shared-mime-info
There were no tags set.
Tags added: patch

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#520025: soundserver: Artsd / soundserver locks up my AMD64 machine on the way in.

2009-03-16 Thread Willy Gommel
Package: libarts1c2a
Version: 1.5.9-2+b1
Severity: grave
File: soundserver
Justification: renders package unusable

First, I must note that this problem relates to my AMD64 machine, which has 
been so severely disrupted that I can no longer use it.

First, this problem happened on my last software upgrade.

Second, it takes the form of a constantly-recurring fatal error message that 
says that soundserver failed to initialize, or load, or words to that effect. 
The biggest problem is in connection with the fact that the system simply 
cannot give up -- it 
retries to load the soundserver at least every three seconds until it runs out 
of memory. Mu system has 2 GB of memory, which means that it can stack up 230 
iterations of the procedure.

I would doubtless try to reinstall Debian on the machine, except that (a) I 
have no guarantee that it would make any improvement, and (b) I want you to 
have a chance to debug it first.

I hopw you can debug it.

N.B.: This machine has had trouble running either gnash or Adobe Flash software 
for months now. I cannot help but wonder whether this failure is related to 
that problem or not.

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

Kernel: Linux 2.6.26
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages libarts1c2a depends on:
ii  libartsc0 1.5.9-2+b1 aRts sound system C support librar
ii  libasound21.0.16-2   ALSA library
ii  libaudio2 1.9.1-5Network Audio System - shared libr
ii  libaudiofile0 0.2.6-7Open-source version of SGI's audio
ii  libc6 2.7-18 GNU C Library: Shared libraries
ii  libesd0   0.2.36-3   Enlightened Sound Daemon - Shared 
ii  libgcc1   1:4.3.3-3  GCC support library
ii  libglib2.0-0  2.16.6-1   The GLib library of C routines
ii  libjack0  0.116.1-3  JACK Audio Connection Kit (librari
ii  libmad0   0.15.1b-4  MPEG audio decoder library
ii  libqt3-mt 3:3.3.8b-5+b1  Qt GUI Library (Threaded runtime v
ii  libstdc++64.3.3-3The GNU Standard C++ Library v3
ii  libvorbis0a   1.2.0.dfsg-3.1 The Vorbis General Audio Compressi
ii  libvorbisfile31.2.0.dfsg-3.1 The Vorbis General Audio Compressi
ii  libx11-6  2:1.1.5-2  X11 client-side library
ii  oss-compat0.0.4+nmu2 OSS compatibility package

Versions of packages libarts1c2a recommends:
ii  libarts1-akode4:3.5.9-3  akode plugin for aRts

libarts1c2a suggests no packages.

-- no debconf information



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



  1   2   >