Bug#614731: support for env var substitutions in .install (helps multiarch)

2011-12-07 Thread Riku Voipio
Hi,

Just to chime in to list some real world cases where env variable
substition would have been useful, but lacking it I had to create
some workarounds:

popt[1], and ncurses, have now install.in and links.in, which are
then preprocessed to the actual files. Wireless-tools[2] avoids
template files, but gets rid of .links file and instead does the
ln -s command manually in the rules file. 

All these source packages have in common that the split libraries in
/lib/ with development stuff under /usr/lib/.. For the more usual
/usr/lib only libraries, env substition is not mandatory usually.
We can just replace install files /usr/lib/*.so.* with /usr/lib/*/*.so.*.
But that is a potential trap, as packages could just fine install stuff
under subdirectories of /usr/lib which might not be relative to --libdir.

And still, we have cases like glib2.0, where the upstream buildsystem
forces building many copies, making it neccesary to use install.in files.

As a summary, it is possible to live without env substition built in
debhelper. But it means we need to add some common tasks to
debian/rules, exactly the things that debhelper usually lets
us avoid.

Riku


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




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



Bug#631251: Re: Bug#631251: gosmore version 0.0.0.20100711-1 failed to build with GCC-4.6/oneiric

2011-12-07 Thread Mahyuddin Susanto
Pada -9/01/37 02:59, Francesco P. Lovergine menulis:
 On Wed, Jul 06, 2011 at 10:29:27PM +0200, Stefano Rivera wrote:
 tags 631251 - moreinfo
 retitle 631251 gosmore failed to build with -Wl,--as-needed
 user debian-...@lists.debian.org
 usertag 631251 ld-as-needed
 thanks

 ...it builds fine here (i386, unstable, GCC 4.6).

 It's a ld --as-needed bug:

 http://wiki.debian.org/ToolChain/DSOLinking

 e.g.
 $ gcc -Wl,--as-needed -lm density.c -o density
 /tmp/ccRfNyA1.o: In function `main':
 density.c:(.text+0x20d): undefined reference to `exp'
 density.c:(.text+0x212): undefined reference to `atan'
 etc.

 SR

 
 Order does matter, -lm should go at the end of the command AFAIK.
 

I grabbed last patch from here but problem still accour. By placing -lm
in end all problem solved

-- 
Mahyuddin Susanto -- udienz {gmail,ubuntu}.com
http://www.udienz.web.id



signature.asc
Description: OpenPGP digital signature


Bug#651260: patch to move the Plots and Time Scale selectors to the right

2011-12-07 Thread Marc Haber
Package: dsc-statistics-presenter
Severity: wishlist

This is a patch by Torsten Heinig to move the Plots, Time Scale and
Y-Axis Settings to the right side of the web interface. This makes the
web interface much more useable if you have a lot of servers, and
caters for today's wide displays.

Greetings
Marc

--- plot.page   2011-12-07 08:57:13.955859591 +0100
+++ plot.page.orig  2010-12-21 15:35:15.741251593 +0100
@@ -41,14 +41,6 @@
div class=centeruServers/u/uNodes/u/div
[$navbar_servers_nodes]
/div
-  /td
-  td valign=top
-   [$img_with_map]
-  div class=description
-  [$description]
-  /div
-  /td
-  td valign=top
div class=border
div class=centeruPlots/u/div
[$navbar_plot]
@@ -62,6 +54,12 @@
[$navbar_yaxis]
/div
   /td
+  td valign=top
+   [$img_with_map]
+  div class=description
+  [$description]
+  /div
+  /td
  /tr
 /table


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

Kernel: Linux 3.1.4-zgsrv20080 (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/dash



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



Bug#391060: tar --null and -C no longer conflict

2011-12-07 Thread Lars Wirzenius

Looks to me like this bug can be closed. Bdale, do you agree?

liw@mavolio$ mkdir foo
liw@mavolio$ touch foo/one
liw@mavolio$ touch foo/two
liw@mavolio$ printf 'one\0' | tar -C foo --null -T - -cf - | tar -tvf -
-rw-rw-r-- liw/liw   0 2011-12-07 08:07 one
liw@mavolio$

Seems to work just fine.

However, the --help output should first be fixed to remove the note that 
--null resets -C, since that seems to be outdated now. The info 
documentation seems to be correct here.




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



Bug#634261: Requesting clarification

2011-12-07 Thread Mike Hommey
On Sun, Nov 27, 2011 at 11:24:30PM +, Jurij Smakov wrote:
 Mike, can you clarify a bit how glibc is failing to meet your 
 expectations here? I don't mind trying to work on this bug, but with 
 the available information I don't quite understand the problem. Is it 
 expected that glibc should work correctly even if _IO_stdin_used 
 symbol is not exported? If you could provide a simple test case 
 demonstrating the issue, it would be great too.

What is fishy is that only sparc is affected. So whatever it's doing on
sparc, it's doing it differently from other architectures.

As for a small test case:

$ cat  foo.c EOF
#include stdio.h
int main() {
  setbuf(stdout, 0);
  return 0;
}
EOF
$ cat  ver EOF
{
local: *;
};
EOF
$ gcc -o foo foo.c -Wl,--version-script,ver
$ ./foo
Bus error

As a matter of fact, despite the version script, the stdout symbol is
still exported. I guess the real problem is that _IO_stdin_used is not
defined the same way.

Mike



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



Bug#650771: r8169 connectivity intermittent, link up messages in syslog

2011-12-07 Thread Robbert Haarman
On Sat, Dec 03, 2011 at 06:10:06PM -0600, Jonathan Nieder wrote:
 Robbert Haarman wrote:
 
  I compiled a vanilla 3.2.0-rc4 kernel and that seems to fix the problem.
 
 Nice to hear.

After a few days still no problems. Looking good!

  I am going to catch some sleep now. If you need me to bisect things,
  provide more info, contact people, or whatever, please let me know.
 
 Yes, one more test.  Could you try the latest squeeze or
 squeeze-proposed-updates kernel to see if it is affected?

I tested using linux-image-2.6.32-5-amd64 version 2.6.32-39, which I 
think is current for both squeeze and squeeze-proposed-updates. This 
kernel is affected (problem reproduced using the r8169 driver as shipped 
by Debian).





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



Bug#259715: please consider adding a ctrl-c handler during download and installation

2011-12-07 Thread Daniel Hartwig
tags 259715 + wontfix
done

Marc Haber mh+debian-b...@zugschlus.de wrote:
 when I hit ctrl-c during download or package installation, I get
 returned to the shell. Please consider adding a ctrl-c handler that
 only aborts download and/or package installation and returns to
 aptitude.

Current behaviour of aptitude/0.6.4-1.2:

`C-c' during download = shell
`q' during download = aptitude

Generally a user expects `C-c' to interupt the entire program and as
aptitude already has `q' available to abort a download I don't see
good reason to change this behaviour.

`C-c' during install = (ignored)
`q' during install = (ignored)

During an install aptitude passes control to libapt-pkg which passes
control to dpkg.  Handling SIGINT during this is a bad idea:

(From apt-pkg/deb/dpkgpm.cc:1069)
  /* Mask off sig int/quit. We do this because dpkg also does when
 it forks scripts. What happens is that when you hit ctrl-c it sends
 it to all processes in the group. Since dpkg ignores the signal
 it doesn't die but we do! So we must also ignore it */

Situation unlikely to change so I am marking this `wontfix'.  Please
adjust if anyone disagrees.



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



Bug#651261: [clang] stdio.h breaks clang 3.0

2011-12-07 Thread Riccardo Magliocchetti
Package: clang
Version: 3.0-1
Severity: normal

--- Please enter the report below this line. ---

rm@montag:~/src/$ cat x.c
#include stdio.h
rm@montag:~/src/$ clang -v -c x.c 
Debian clang version 3.0-1 (tags/RELEASE_30/final) (based on LLVM 3.0)
Target: i386-pc-linux-gnu
Thread model: posix
 /usr/bin/clang -cc1 -triple i386-pc-linux-gnu -emit-obj -mrelax-all 
-disable-free -disable-llvm-verifier -main-file-name x.c -mrelocation-model 
static -mdisable-fp-elim -masm-verbose -mconstructor-aliases -target-cpu 
pentium4 -target-linker-version 2.21.90.20111025 -momit-leaf-frame-pointer -v 
-coverage-file x.o -resource-dir /usr/bin/../lib/clang/3.0 -fmodule-cache-path 
/var/tmp/clang-module-cache -internal-isystem /usr/local/include 
-internal-isystem /usr/bin/../lib/clang/3.0/include -internal-externc-isystem 
/usr/include/i486-linux-gnu -internal-externc-isystem /usr/include 
-ferror-limit 19 -fmessage-length 180 -fgnu-runtime -fobjc-runtime-has-arc 
-fobjc-runtime-has-weak -fobjc-fragile-abi -fdiagnostics-show-option 
-fcolor-diagnostics -o x.o -x c x.c
clang -cc1 version 3.0 based upon llvm 3.0 hosted on i386-pc-linux-gnu
ignoring nonexistent directory /usr/bin/../lib/clang/3.0/include
ignoring nonexistent directory /usr/include/i486-linux-gnu
ignoring nonexistent directory /usr/include/i486-linux-gnu/
ignoring nonexistent directory /usr/bin/../lib/clang/3.0/include
ignoring nonexistent directory /usr/include/i486-linux-gnu
ignoring duplicate directory /usr/local/include
ignoring duplicate directory /usr/include
#include ... search starts here:
#include ... search starts here:
 /usr/local/include
 /usr/include
 /usr/lib/gcc/i486-linux-gnu/4.6/include/
 /usr/lib/gcc/i486-linux-gnu/4.6/include-fixed/
End of search list.
In file included from x.c:1:
In file included from /usr/include/stdio.h:28:
/usr/include/features.h:323:10: fatal error: 'bits/predefs.h' file not found
#include bits/predefs.h
 ^
1 error generated.


--- System information. ---
Architecture: i386
Kernel:   Linux 3.2.0-rc3+

Debian Release: wheezy/sid
  500 unstablemi.mirror.garr.it 
  500 unstableftp.de.debian.org 
1 experimentalftp.de.debian.org 

--- Package information. ---
Depends(Version) | Installed
-+-==
libc6  (= 2.3.6-6~) | 2.13-21
libffi5   (= 3.0.4) | 3.0.10-3
libgcc1 (= 1:4.1.1) | 1:4.6.2-5
libllvm3.0   | 3.0-2
libstdc++6  (= 4.6) | 4.6.2-5
libstdc++6-4.6-dev   | 4.6.2-5


Recommends(Version) | Installed
===-+-===
llvm-3.0-dev| 
python  | 2.7.2-9


Package's Suggests field is empty.






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



Bug#651262: Please consider upgrade of all spice tools to latest stable release 0.10.x

2011-12-07 Thread Nico Prenzel
Package: libspice-server1
Version: 0.8.3-1

Hello Debian maintainer,

please consider to upgrade all spice related packages to the latest stable 
release 0.10.x as a lot of bugs have been fixed with this release. Also the usb 
redirection support requires at least the 0.9.x release. So an upgrade should 
help to resolve these problems.


Thanks.
NicoP.


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



Bug#594027: RFS: lucene3

2011-12-07 Thread Ľuboš Koščo
Hey guys

while at it can you look at / prepare lucene 3.5 too ?
(I see Mat works on 3.3)

James - {OpenGrok 0.11 will be released with lucene 3.0.2
however the new dev version (0.12 most probably) will use lucene 3.5 (I
just prepared the patch and will push as soon as we get 0.11 out) - mostly
because of performance and less RAM usage

thnx
Lubos

On Fri, Nov 11, 2011 at 6:20 PM, Damien Raude-Morvan draz...@debian.orgwrote:

 Le lundi 12 septembre 2011 16:40:32, James Page a écrit :
  On Mon, 2011-09-05 at 23:49 +0100, Mat Scales wrote:
   Hello all,

 Hi Mat,

  I'm unable to sponsor your package but I do have the following feedback:
 
  1) FTBFS on javadoc warnings
 [...]
  2) debhelper + javahelper
 [...]
  3) Repack of orig.tar.gz
 [...]
  4) liblucene2-java Conflicts on -java packages
 [...]

 I would like to sponsor your package. Did you had time to review James
 comments on your packaging ?

 Regards,
 --
 Damien - Debian Developper
 http://wiki.debian.org/DamienRaudeMorvan


 --
 To UNSUBSCRIBE, email to debian-java-requ...@lists.debian.org
 with a subject of unsubscribe. Trouble? Contact
 listmas...@lists.debian.org
 Archive: http://lists.debian.org/20111820.14897.draz...@debian.org




Bug#651076: linux-image-3.1.0-1-amd64: randomly hangs on systems with rtl8192se wireless

2011-12-07 Thread Ibragimov Rinat
Did an additional search on topic and found patch that should solve problem
https://bugzilla.redhat.com/show_bug.cgi?id=755154#c13

--
Rinat

Bug#516854: Detect if root login is disabled?

2011-12-07 Thread Daniel Hartwig
Hello

I am looking at Bug#516854 and wondering:

Is there a robust way for a *user* to detect if root login is
disabled?  Would like to perform such a check from an instance of
aptitude running as a user account.

I am aware of the following method which detects the `passwd -l' style
lock, however, it requires read access to /etc/shadow:

io:~# passwd -S root | grep  L   /dev/null; echo $?
1
io:~# passwd -l root
passwd: password expiry information changed.
io:~# passwd -S root | grep  L   /dev/null; echo $?
0

Thanks



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



Bug#594027: RFS: lucene3

2011-12-07 Thread James Page
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

On 07/12/11 08:52, Ľuboš Koščo wrote:
 while at it can you look at / prepare lucene 3.5 too ? (I see Mat
 works on 3.3)

Working on this already.

 
 James - {OpenGrok 0.11 will be released with lucene 3.0.2 however
 the new dev version (0.12 most probably) will use lucene 3.5 (I 
 just prepared the patch and will push as soon as we get 0.11 out) -
 mostly because of performance and less RAM usage

Great; I had tried OpenGrok with 3.4.0 and it worked OK as far as I
could tell.

Cheers

James

- -- 
James Page
Ubuntu Core Developer
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQIcBAEBCAAGBQJO3yn1AAoJEL/srsug59jDBN8P/15E+m7Veo3K0gMCGte5Vh7p
FwLfGMEhovUUzFQQWCPeXc1YMmCPVigHhfUQ2L+mCr7ZvnsTaIAcdhdlrDVZEJHv
99T6FXQIXotY2WMjh+SdxgteExQH9j5kTzKk8ZjirbAJiVLWJh5w80380QGqN4sd
SrkGnyVlY7cXn3ZFhMwGhW0FX85TsYJDHx9InKXJpqJXIJrgF6o731gBwKeIGIzx
LCgSHOxmy4L76zIEyIIJuy9LdkKkNLVNCk0sbf9JAjsk9YrcVEasJ/VBjV0RpdL/
XOeoL9XS9vOFEFMsAoFweBUSWnvdJss9hA/JDeC/oPPMQiTJR1CaGKZYDH9BNKGH
YKfc1elxRM9BzokuXbTS4XrLgi7jtTF6h1yWYQgaHQIBgz82OnsY/Ir9cIuM920f
xXPzVWbehev4SaYsCdqHjk4NxKmsTlV01zHULLrOj3oNwv0vHcehNY2WkWq5VLoC
wfKQ9WQYfN1ilE3QWf0otzsIkxbuwdSOfojYEbjEyooPkgcoA3Dv6KMMuUV9g6+e
Srd6le0oib340ZkbspMhO2shsKeOqzwRevO/QSuHTqMjY+pOkfn8Bm0Z0Ly1Zcwr
GVAmCQUUCNHf3z3m4UFG2IQbHle7uM4NEZzxVz+zB6QFJNbqu78s+0bU7iYNIL2F
peQTBm3wlwjRswtd3QUj
=LTx1
-END PGP SIGNATURE-



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



Bug#651263: daemon: FTBFS on hurd-i386: new platform

2011-12-07 Thread Svante Signell
Source: daemon
Version: 0.6.4-1
Severity: normal
Tags: patch
User: debian-h...@lists.debian.org
Usertags: hurd

Hi,

The attached patch adds support for GNU/Hurd for daemon package. Build-
but not run tested (yet) on hurd-i386. Some of the libslack tests fails
but they don't not seem to be critical since the complete package
builds.

Thanks!
diff -urN daemon-0.6.4/conf/gnu daemon-0.6.4.modified/conf/gnu
--- daemon-0.6.4/conf/gnu	1970-01-01 01:00:00.0 +0100
+++ daemon-0.6.4.modified/conf/gnu	2011-12-07 09:14:27.0 +0100
@@ -0,0 +1,134 @@
+#!/bin/sh
+#
+# daemon - http://libslack.org/daemon/
+#
+# Copyright (C) 1999-2010 raf r...@raf.org
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+# or visit http://www.gnu.org/copyleft/gpl.html
+#
+
+# Modify the macros.mk make include files to exercise optional code
+#
+# 20100612 raf r...@raf.org
+
+perl -pi \
+	-e 's/^(\S+ \+= xnet)$/# $1/;' \
+	-e 's/^(\S+ \+= socket)$/# $1/;' \
+	-e 's/^(\S+ \+= nsl)$/# $1/;' \
+	-e 's/^(\S+ \+= m)$/# $1/;' \
+	-e 's/^(GETOPT := getopt)$/# $1/;' \
+	-e 's/^(SNPRINTF := snprintf)$/# $1/;' \
+	-e 's/^(VSSCANF := vsscanf)$/# $1/;' \
+	-e 's/^# (\S+ \+= -DHAVE_GETOPT_LONG=1)$/$1/;' \
+	-e 's/^# (\S+ \+= -DHAVE_VSSCANF=1)$/$1/;' \
+	-e 's/^# (\S+ \+= -DHAVE_PTHREAD_RWLOCK=1)$/$1/;' \
+	-e 's/^(\S+ \+= -DNO_POSIX_C_SOURCE=1)$/# $1/;' \
+	-e 's/^(\S+ \+= -DNO_POSIX_SOURCE=1)$/# $1/;' \
+	-e 's/^(\S+ \+= -DNO_XOPEN_SOURCE=1)$/# $1/;' \
+	-e 's/^(\S+ \+= -DROOT_PID_DIR)=.*$/# $1=\\\/var\/run\\/;' \
+	-e 's/^(CC := cc)$/# $1/;' \
+	-e 's/^# (CC := gcc)$/$1/;' \
+	-e 's/^# (\S+ \+= -Wno-long-long)$/$1/;' \
+	-e 's/^# (\S+ \+= -Wno-overlength-strings)$/$1/;' \
+	-e 's/^# (\w*CCFLAGS \+= -O3)$/$1/;' \
+	-e 's/^# (\w*CCFLAGS \+= -Wall -pedantic)$/$1/;' \
+	-e 's/^(\w*(?:CC|LD)FLAGS \+= -m64)$/# $1/;' \
+	-e 's/^(\w*CCFLAGS \+= -xO4)$/# $1/;' \
+	-e 's/^# (\w*LIBS \+= pthread)$/$1/;' \
+	-e 's/^# (\w*LIBS \+= util)$/$1/;' \
+	-e 's/^(\w*LDFLAGS \+= -pthread)$/# $1/;' \
+	-e 's/^MAN_GZIP := 0$/MAN_GZIP := 1/;' \
+	-e 's/^(MAN_LOCDIR\s*:=).*$/$1 \$(PREFIX)\/share\/man/;' \
+	`find . -name Makefile` \
+	`find . -name macros.mk`
+
+perl -pi \
+	-e 's/\.\/myinstall -m/install -m/' \
+	`find . -name rules.mk`
+
+perl -pi \
+	-e 's/^#define (NO_POSIX_SOURCE) 1$/\/* #undef $1 *\//;' \
+	-e 's/^#define (NO_XOPEN_SOURCE) 1$/\/* #undef $1 *\//;' \
+	-e 's/^\/\* #undef (HAVE_STDARG_H) \*\/$/#define $1 1/;' \
+	-e 's/^#define (HAVE_STDINT_H) 1$/\/\* #undef $1 \*\//;' \
+	-e 's/^\/\* #undef (HAVE_POLL_H) \*\/$/#define $1 1/;' \
+	-e 's/^\/\* #undef (HAVE_SYS_POLL_H) \*\/$/#define $1 1/;' \
+	-e 's/^\/\* #undef (HAVE_SYS_SELECT_H) \*\/$/#define $1 1/;' \
+	-e 's/^\/\* #undef (HAVE_REGEX_H) \*\/$/#define $1 1/;' \
+	-e 's/^\/\* #undef (HAVE_LONG_DOUBLE) \*\/$/#define $1 1/;' \
+	-e 's/^\/\* #undef (HAVE_LONG_LONG) \*\/$/#define $1 1/;' \
+	-e 's/^\/\* #undef (HAVE_SNPRINTF) \*\/$/#define $1 1/;' \
+	-e 's/^\/\* #undef (HAVE_VSNPRINTF) \*\/$/#define $1 1/;' \
+	-e 's/^\/\* #undef (HAVE_GETOPT_LONG) \*\/$/#define $1 1/;' \
+	-e 's/^\/\* #undef (HAVE_VSSCANF) \*\/$/#define $1 1/;' \
+	-e 's/^\/\* #undef (HAVE_STRCASECMP) \*\/$/#define $1 1/;' \
+	-e 's/^\/\* #undef (HAVE_STRNCASECMP) \*\/$/#define $1 1/;' \
+	-e 's/^#define (HAVE_STRLCPY) 1$/\/* #undef $1 *\//;' \
+	-e 's/^#define (HAVE_STRLCAT) 1$/\/* #undef $1 *\//;' \
+	-e 's/^\/\* #undef (HAVE_ASPRINTF) \*\/$/#define $1 1/;' \
+	-e 's/^\/\* #undef (HAVE_VSPRINTF) \*\/$/#define $1 1/;' \
+	-e 's/^\/\* #undef (HAVE_FLOCKFILE) \*\/$/#define $1 1/;' \
+	-e 's/^\/\* #undef (HAVE_FCNTL_THAT_CAN_LOCK_FIFOS) \*\/$/#define $1 1/;' \
+	-e 's/^\/\* #undef (HAVE_ISOC_REALLOC) \*\/$/#define $1 1/;' \
+	-e 's/^\/\* #undef (HAVE_POLL) \*\/$/#define $1 1/;' \
+	-e 's/^\/\* #undef (HAVE_LINUX_POLL_BUG) \*\/$/#define $1 1/;' \
+	-e 's/^\/\* #undef (HAVE_MLOCK) \*\/$/#define $1 1/;' \
+	-e 's/^\/\* #undef (HAVE_FUNC_GETHOSTBYNAME_R_6) \*\/$/#define $1 1/;' \
+	-e 's/^#define (HAVE_FUNC_GETHOSTBYNAME_R_5) 1$/\/* #undef $1 *\//;' \
+	-e 's/^#define (HAVE_FUNC_GETHOSTBYNAME_R_3) 1$/\/* #undef $1 *\//;' \
+	-e 's/^\/\* #undef (HAVE_FUNC_GETSERVBYNAME_R_6) \*\/$/#define $1 1/;' \
+	-e 's/^#define (HAVE_FUNC_GETSERVBYNAME_R_5) 1$/\/* #undef $1 *\//;' \
+	-e 's/^#define (HAVE_FUNC_GETSERVBYNAME_R_4) 1$/\/* #undef $1 *\//;' \
+	-e 's/^\/\* #undef 

Bug#650771: r8169 connectivity intermittent, link up messages in syslog

2011-12-07 Thread Jonathan Nieder
Version: 3.2~rc4-1~experimental.1
found 650771 linux-2.6/2.6.32-39
tags 650771 + patch moreinfo
quit

Robbert Haarman wrote:
 Robbert Haarman wrote:

 I compiled a vanilla 3.2.0-rc4 kernel and that seems to fix the problem.
[...] 
 After a few days still no problems. Looking good!

That means one of two things: (a) v3.2-rc4 fixes this, or (b) some
patch or configuration detail in the Debian kernel provokes it.
Marking under the assumption that it is (a).

Presumably soon we'll know for sure. ;-)

I blame v3.2-rc3~25^2~63 (r8169: increase the delay parameter of
pm_schedule_suspend, 2011-11-07).

 I tested using linux-image-2.6.32-5-amd64 version 2.6.32-39, which I 
 think is current for both squeeze and squeeze-proposed-updates. This 
 kernel is affected (problem reproduced using the r8169 driver as shipped 
 by Debian).

Potential patch attached.  Thanks for checking so quickly.
From: hayeswang hayesw...@realtek.com
Date: Mon, 7 Nov 2011 20:44:37 +
Subject: r8169: increase the delay parameter of pm_schedule_suspend

commit 10953db8e1a278742ef7e64a3d1491802bcfa98b upstream.

The link down would occur when reseting PHY. And it would take about 2 ~ 5 
seconds
from link down to link up. If the delay of pm_schedule_suspend is not long 
enough,
the device would enter runtime_suspend before link up. After link up, the device
would wake up and reset PHY again. Then, you would find the driver keep in a 
loop
of runtime_suspend and rumtime_resume.

Signed-off-by: Hayes Wang hayesw...@realtek.com
Acked-by: Francois Romieu rom...@fr.zoreil.com
Signed-off-by: David S. Miller da...@davemloft.net
Signed-off-by: Jonathan Nieder jrnie...@gmail.com
---
 drivers/net/r8169.c |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/net/r8169.c b/drivers/net/r8169.c
index 0e2bf4bfd6db..003a5f710833 100644
--- a/drivers/net/r8169.c
+++ b/drivers/net/r8169.c
@@ -1115,7 +1115,7 @@ static void __rtl8169_check_link_status(struct net_device 
*dev,
netif_carrier_off(dev);
netif_info(tp, ifdown, dev, link down\n);
if (pm)
-   pm_schedule_suspend(tp-pci_dev-dev, 100);
+   pm_schedule_suspend(tp-pci_dev-dev, 5000);
}
spin_unlock_irqrestore(tp-lock, flags);
 }
-- 
1.7.8.rc3



Bug#651076: randomly hangs on systems with rtl8192se wireless

2011-12-07 Thread Jonathan Nieder
found 651076 linux-2.6/3.1.1-1
tags 651076 + upstream patch fixed-upstream
quit

Ibragimov Rinat wrote:

 Did an additional search on topic and found patch that should solve problem
 https://bugzilla.redhat.com/show_bug.cgi?id=755154#c13

Thanks.  Looks correct.

For reference, the aforementioned patch is e55b32c110b0 ('rtlwifi: fix
lps_lock deadlock', 2011-11-28), which is part of linus's master and
was cc-ed to stable@.  Soon to be part of a stable-3.1.y kernel near
you.

Ciao,
Jonathan



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



Bug#651264: glade: please provide an upgrade method for glade 3.6 projects

2011-12-07 Thread A Mennucc
Package: glade
Version: 3.10.2-1
Severity: wishlist

hi   

We have a long running project, that uses gtk2 to visualize. We
built all interfaces with glade (version 3.6.7, in debian Squeeze)

Lately I upgraded my laptop to Debian/wheezy: there glade is 3.10.2
and it is unable to open the project saved by glade 3.6.7, it prints
 Couldnt recognize GtkBuilder xml, skipping 

This is quite annoying. It means that, if I upgrade all of my 
boxes to Wheezy, I will lose the ability 
to edit the glade projects. This is quite annoying.

I did a manual comparison of my glade files with a glade file
saved by glade 3.10, and I found out that I could adapt easily
by hand, in two steps
1) replace the initial and end tags
 glade-interface  -  interface
2) replace all widget tags
 widget  -  object

With the above changes, I could load the project in glade 3.10

Please provide some way to automatically do that conversion
(or, provide a way to edit glade 3.6 project with glade 3.10)

a.

ps: yes, I understand that Glade 3.10 prepares projects for Gtk 3,
 so an automatically converted project may not work as expected;
 still a way to to do a first, rough, conversion would be very useful
 (BTW: I seem to remember that such a tool was present at the time
 of the glade/gtk 1 - 2 update)

ps2: another way to solve this problem would be to package 
 gnome 3.8 in Debian/wheezy


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

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

Versions of packages glade depends on:
ii  libc6   2.13-21 
ii  libgladeui-2-0  3.10.2-1
ii  libglib2.0-02.30.2-4
ii  libgtk-3-0  3.0.12-2

Versions of packages glade recommends:
pn  devhelp   3.2.0-1
pn  libgtk-3-dev  none 

glade suggests no packages.

-- no debconf information

-- 
Andrea Mennucc
 E' un mondo difficile. Che vita intensa! (Tonino Carotone)



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



Bug#651265: pbuilder: [INTL:pt_BR] Brazilian Portuguese debconf templates translation

2011-12-07 Thread Flamarion Jorge

Package: pbuilder
Tags: l10n patch
Severity: wishlist

Hello,

Please, Could you update the Brazilian Portuguese Translation?

Attached you will find the file pt_BR.po. It is UTF-8 encoded and it is 
tested with msgfmt and podebconf-display-po.


Kind regards.


--
Flamarion Jorge
# Brazilian Portuguese translation of pbuilder.
# Copyright (C) 2011 THE pbuilder COPYRIGHT HOLDER
# This file is distributed under the same license as the pbuilder package.
# Flamarion Jorge jorge.flamar...@gmail.com, 2011.
#
msgid 
msgstr 
Project-Id-Version: pbuilder 0.203\n
Report-Msgid-Bugs-To: pbuil...@packages.debian.org\n
POT-Creation-Date: 2008-03-07 00:09+0900\n
PO-Revision-Date: 2011-11-27 11:07-0200\n
Last-Translator: Flamarion Jorge jorge.flamar...@gmail.com\n
Language-Team: Brazilian Portuguese debian-l10n-portuguese@lists.debian.
org\n
Language: pt_BR\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n
Plural-Forms: nplurals=2; plural=(n  1);\n

#. Type: string
#. Description
#: ../pbuilder.templates:1001
msgid Default mirror site:
msgstr Localização do espelho de rede padrão:

#. Type: string
#. Description
#: ../pbuilder.templates:1001
msgid Please enter the default mirror you want to be used by pbuilder.
msgstr 
Por favor, informe o espelho de rede padrão que você quer que seja usado 
pelo pbuilder.

#. Type: string
#. Description
#: ../pbuilder.templates:1001
msgid 
If you leave this field blank, there will be one attempt to autodetect this 
information. If this attempt fails, you will be prompted again to insert 
some valid mirror information.
msgstr 
Se você deixar este campo em branco, será feita uma tentativa de auto 
detectar esta informação. Se a tentativa falhar, você será perguntado 
novamente para inserir alguma informação válida de espelho de rede.

#. Type: string
#. Description
#: ../pbuilder.templates:1001
msgid Here is a valid mirror example: http://cdn.debian.net/debian;
msgstr 
Este é um exemplo válido de espelho de rede: http://cdn.debian.net/debian;

#. Type: error
#. Description
#: ../pbuilder.templates:2001
msgid Default mirror not found
msgstr Espelho de rede padrão não encontrado

#. Type: error
#. Description
#: ../pbuilder.templates:2001
msgid 
Mirror information detection failed and the user provided no mirror 
information.
msgstr 
A detecção da informação do espelho de rede falhou e o usuário não forneceu 
uma informação de espelho de rede.

#. Type: error
#. Description
#: ../pbuilder.templates:2001
msgid Please enter valid mirror information.
msgstr Por favor, forneça uma informação de espelho de rede válida.

#. Type: boolean
#. Description
#: ../pbuilder.templates:3001
msgid Overwrite current configuration?
msgstr Sobrescrever a configuração atual?

#. Type: boolean
#. Description
#: ../pbuilder.templates:3001
msgid 
Your system seems to have already pbuilder configuration. Proceeding might 
discard or overwrite part or the entire pbuilder's configuration.
msgstr 
Seu sistema parece já ter uma configuração do pbuilder. Continuar poderá 
descartar ou sobrescrever parte ou toda a configuração do pbuilder.


Bug#651267: tomoyo-tools: update tomoyo-tools from 2.3 to 2.4 to work with kernel 3.1

2011-12-07 Thread Andras Horvath
Source: tomoyo-tools
Version: 2.3.0-20100820-4
Severity: important

Dear Maintainer,
*** Please consider answering these questions, where appropriate ***

   * What led up to the situation?
   * What exactly did you do (or not do) that was effective (or
 ineffective)?
   * What was the outcome of this action?
   * What outcome did you expect instead?

*** End of the template - remove these lines ***


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

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


Dear Developers,

Please update the tomoyo-tools package from version 2.3 to 2.4 to match the 
kernel space Tomoyo implementation that has the version 2.4 since kernel 3.1.

Installing tomoyo-tools and booting the system with security=tomoyo therefore 
causes a kernel panic saying it's expecting tomoyo userspace tools with version 
2.4.

Sid and Wheezy contains the same tomoyo-tools 2.3 currently.


Thanks.



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



Bug#651268: uzbl-core: error while loading shared libraries: libwebkit-1.0.so.2

2011-12-07 Thread E.Waelde
Package: uzbl
Version: 0.0.0~git.20111001-1
Severity: important

Dear Maintainer,

I installed uzbl from the unstable repo
ii uzbl  0.0.0~git.20111001-1   Lightweight Webkit browser following the UNIX 
philosophy

however, starting uzbl-browser will produce the following error: (edited $HOME 
for real name)

$ uzbl-browser 
{'cookie_jar': '$HOME/.local/share/uzbl/cookies.txt',
'cookie_socket': '$HOME/.cache/uzbl/cookie_daemon_socket',
'cookie_whitelist': '$HOME/.config/uzbl/cookie_whitelist',
'daemon_mode': True,
'daemon_timeout': 0,
'use_whitelist': False,
'verbose': True}
uzbl-cookie-daemon: detected daemon listening on 
'$HOME/.cache/uzbl/cookie_daemon_socket'
uzbl-event-manager: will auto close.
uzbl-event-manager: found pid file: '$HOME/.cache/uzbl/event_daemon.pid'
uzbl-event-manager: event daemon already started with pid: 5464
uzbl-core: error while loading shared libraries: libwebkit-1.0.so.2: cannot 
open shared object file: No such file or directory

ll /usr/lib/libwebkit*
lrwxrwxrwx 1 root root   26 2011-11-15 19:37 /usr/lib/libwebkitgtk-1.0.so.0 
- libwebkitgtk-1.0.so.0.11.0*
-rwxr-xr-x 1 root root 23982024 2011-11-15 19:37 
/usr/lib/libwebkitgtk-1.0.so.0.11.0*

something is clearly missing.
Do not hesitate to contact me, if you need further information.
Thanks for making Debian!

Cheers,
Erich

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

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

Versions of packages uzbl depends on:
ii  libatk1.0-0 2.2.0-2
ii  libc6   2.13-21
ii  libcairo2   1.10.2-6.1
ii  libfontconfig1  2.8.0-3
ii  libfreetype62.4.8-1
ii  libgdk-pixbuf2.0-0  2.24.0-1
ii  libglib2.0-02.30.2-4
ii  libgtk2.0-0 2.24.8-2
ii  libjavascriptcoregtk-1.0-0  1.6.1-5+b1
ii  libpango1.0-0   1.29.4-2
ii  libsoup2.4-12.36.1-1
ii  libwebkitgtk-1.0-0  1.6.1-5+b1
ii  libx11-62:1.4.4-4
ii  python  2.7.2-9
ii  python-gobject  3.0.2-4
ii  python-gtk2 2.24.0-2
ii  python-support  1.0.14

Versions of packages uzbl recommends:
pn  python-simplejson  2.2.0-1
pn  socat  none
pn  suckless-tools 38-1
pn  xclip  none
pn  zenity none

uzbl suggests no packages.

-- no debconf information



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



Bug#633026: hostapd: /run transition: Please switch to /run/sendsigs.omit.d

2011-12-07 Thread Roger Leigh
On Thu, Jul 07, 2011 at 11:23:29PM +0100, Roger Leigh wrote:
 Source: hostapd
 Version: 1:0.7.3-2
 Severity: important
 
 Your package is currently using/lib/init/rw/sendsigs.omit.d
 which is now deprecated and pending removal.  Please update your
 package to use /run/sendsigs.omit.d with a versioned dependency
 on initscripts, as detailed below.

I was about to prepare a patch for this, but saw it was fixed in
SVN back in July, but it looks like it was never uploaded.  Would
it be possible to do that?


Thanks,
Roger

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



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



Bug#645546: FTBFS(kfreebsd): error: Operating system is unknown, configure can't continue

2011-12-07 Thread Sylvestre Ledru
Le lundi 05 décembre 2011 à 19:28 -0600, David A. Greene a écrit :
 Any progress?  This is preventing migration to testing, meaning that we
 cannot use these packages for development.  I have a project waiting on
 this.
 
 Anything I can do to help?
For the record, it still fails with clang 3.0. I think I found the
reason issue.

* To build clang, we need the llvm sources available
* llvm sources are patched to accept kfreebsd  hurd
* sources are packed when llvm is created and stored into
llvm-3.0-source
* they were patched with dedicaded rules 
* I switched to format 3 and quilt recently 
= it is causing the patches not to be included in the llvm-3.0-source

Now, let's fix the issue.

Sylvestre






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



Bug#633047: chkrootkit: /run transition: Please switch use of /lib/init/rw to /run

2011-12-07 Thread Roger Leigh
tags 633047 + patch
thanks

On Fri, Jul 08, 2011 at 12:07:13AM +0100, Roger Leigh wrote:
 Source: chkrootkit
 Version: 0.49-4
 Severity: important
 User: rle...@debian.org
 Usertags: run-transition
 
 Your package is currently using /lib/init/rw/ which is now deprecated
 and pending removal.  Please update your package to use /run/ with a
 versioned dependency on initscripts, as detailed below.

Patch attached.


Regards,
Roger

-- 
  .''`.  Roger Leigh
 : :' :  Debian GNU/Linux http://people.debian.org/~rleigh/
 `. `'   Printing on GNU/Linux?   http://gutenprint.sourceforge.net/
   `-GPG Public Key: 0x25BFB848   Please GPG sign your mail.
From 1f7fb2dc501af64c44de4632d2fc0f558b739691 Mon Sep 17 00:00:00 2001
From: Roger Leigh Roger Leigh rle...@debian.org
Date: Wed, 7 Dec 2011 09:31:21 +
Subject: [PATCH] debian: Replace use of /lib/init/rw with /run and close
 #633047

---
 debian/changelog  |8 
 debian/patches/excludes.patch |2 +-
 2 files changed, 9 insertions(+), 1 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index f094bff..e4d6779 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+chkrootkit (0.49-4.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * /run transition: Replace use of /lib/init/rw with /run in
+debian/patches/excludes.patch. (Closes: #633047)
+
+ -- Roger Leigh rle...@debian.org  Wed, 07 Dec 2011 09:29:56 +
+
 chkrootkit (0.49-4) unstable; urgency=low
 
   * [4cb2e6c] Removed unused patches
diff --git a/debian/patches/excludes.patch b/debian/patches/excludes.patch
index 170ba41..5c5c33b 100644
--- a/debian/patches/excludes.patch
+++ b/debian/patches/excludes.patch
@@ -33,7 +33,7 @@ Description: add the ability to exclude specific files/directories from the chec
 + Because the above would result in less security, there is support for
 + excluding files, using the -e flag, for example:
 +
-+   # ./chkrootkit -e '/lib/init/rw/.mdadm /lib/init/rw/.ramfs'
++   # ./chkrootkit -e '/run/.ramfs'
 +
 + WARNING: by using this option you are giving attackers a way to avoid
 + detection! Make absolutely sure that these are truly false positives
-- 
1.7.7.3



Bug#651264: glade: please provide an upgrade method for glade 3.6 projects

2011-12-07 Thread Michael Biebl
On 07.12.2011 10:13, A Mennucc wrote:
 Package: glade
 Version: 3.10.2-1
 Severity: wishlist
 
 hi   
 
 We have a long running project, that uses gtk2 to visualize. We
 built all interfaces with glade (version 3.6.7, in debian Squeeze)
 
 Lately I upgraded my laptop to Debian/wheezy: there glade is 3.10.2
 and it is unable to open the project saved by glade 3.6.7, it prints
  Couldnt recognize GtkBuilder xml, skipping 
 
 This is quite annoying. It means that, if I upgrade all of my 
 boxes to Wheezy, I will lose the ability 
 to edit the glade projects. This is quite annoying.
 
 I did a manual comparison of my glade files with a glade file
 saved by glade 3.10, and I found out that I could adapt easily
 by hand, in two steps
 1) replace the initial and end tags
  glade-interface  -  interface
 2) replace all widget tags
  widget  -  object
 
 With the above changes, I could load the project in glade 3.10
 
 Please provide some way to automatically do that conversion
 (or, provide a way to edit glade 3.6 project with glade 3.10)

Have you tried gtk-builder-convert (libgtk2.0-dev)?

 ps2: another way to solve this problem would be to package 
  gnome 3.8 in Debian/wheezy

This was discussed some time ago and we don't plan to do that.


-- 
Why is it that all of the instruments seeking intelligent life in the
universe are pointed away from Earth?



signature.asc
Description: OpenPGP digital signature


Bug#651269: debian-maintainers: Annual ping for Thomas Friedrichsmeier

2011-12-07 Thread Thomas Friedrichsmeier
Package: debian-maintainers
Severity: normal

Sorry about sending my annual ping a few days late (again). Anyway, here it 
is.

Regards
Thomas


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


Bug#633034: nfs-utils: /run transition: Please switch to /run/sendsigs.omit.d

2011-12-07 Thread Roger Leigh
tags 633034 + patch
thanks

On Thu, Jul 07, 2011 at 11:33:01PM +0100, Roger Leigh wrote:
 Source: nfs-utils
 Version: 1:1.2.3-3
 Severity: important
 
 Your package is currently using/lib/init/rw/sendsigs.omit.d
 which is now deprecated and pending removal.  Please update your
 package to use /run/sendsigs.omit.d with a versioned dependency
 on initscripts, as detailed below.

Patch against current git attached.


Regards,
Roger

-- 
  .''`.  Roger Leigh
 : :' :  Debian GNU/Linux http://people.debian.org/~rleigh/
 `. `'   Printing on GNU/Linux?   http://gutenprint.sourceforge.net/
   `-GPG Public Key: 0x25BFB848   Please GPG sign your mail.
From 54f72b62d402f408049405470b1b7d663db4b857 Mon Sep 17 00:00:00 2001
From: Roger Leigh Roger Leigh rle...@debian.org
Date: Wed, 7 Dec 2011 09:50:02 +
Subject: [PATCH] debian: Migrate from /lib/init/rw to /run and close #633034

---
 debian/changelog   |   11 +++
 debian/control |2 +-
 debian/nfs-common.init |7 ---
 debian/nfs-common.postinst |5 +
 4 files changed, 21 insertions(+), 4 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 3f823a9..e599824 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,14 @@
+nfs-utils (1:1.2.5-2.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * /run transition: nfs-common migrates
+/lib/init/rw/sendsigs.omit.d/statd to /run/sendsigs.omit.d on upgrade,
+and uses /run/sendsigs.omit.d.  Depend on initscripts
+(= 2.88dsf-13.3) to guarantee the existence of
+/run/sendsigs.omit.d (Closes: #633034).
+
+ -- Roger Leigh rle...@debian.org  Wed, 07 Dec 2011 09:47:09 +
+
 nfs-utils (1:1.2.5-2) unstable; urgency=low
 
   * debian/patches/18-dont-use-PAGE_SIZE.patch
diff --git a/debian/control b/debian/control
index 9ee0ed0..4b32c72 100644
--- a/debian/control
+++ b/debian/control
@@ -32,7 +32,7 @@ Homepage: http://nfs.sourceforge.net/
 
 Package: nfs-common
 Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, rpcbind, adduser, ucf, lsb-base (= 1.3-9ubuntu3), initscripts (= 2.86.ds1-38.1)
+Depends: ${shlibs:Depends}, ${misc:Depends}, rpcbind, adduser, ucf, lsb-base (= 1.3-9ubuntu3), initscripts (= 2.88dsf-13.3)
 Recommends: python
 Provides: nfs-client
 Conflicts: nfs-client
diff --git a/debian/nfs-common.init b/debian/nfs-common.init
index 5e30d95..4076e31 100644
--- a/debian/nfs-common.init
+++ b/debian/nfs-common.init
@@ -156,9 +156,10 @@ case $1 in
 	log_end_msg $RET
 	exit $RET
 	else
-		mkdir -p /lib/init/rw/sendsigs.omit.d
-		rm -f /lib/init/rw/sendsigs.omit.d/statd
-		ln -s /var/run/rpc.statd.pid /lib/init/rw/sendsigs.omit.d/statd
+		if [ -d /run/sendsigs.omit.d ]; then
+		rm -f /run/sendsigs.omit.d/statd
+		ln -s /var/run/rpc.statd.pid /run/sendsigs.omit.d/statd
+		fi
 	fi
 	fi
 
diff --git a/debian/nfs-common.postinst b/debian/nfs-common.postinst
index 013e3c8..3b3332e 100644
--- a/debian/nfs-common.postinst
+++ b/debian/nfs-common.postinst
@@ -37,6 +37,11 @@ case $1 in
 dpkg-statoverride --remove /sbin/mount.nfs
 fi
 fi
+
+	# Migrate /lib/init/rw/sendsigs.omit.statd to /run.
+	if [ -f /lib/init/rw/sendsigs.omit.d/statd ]; then 
+	mv /lib/init/rw/sendsigs.omit.d/statd /run/sendsigs.omit.d/statd
+	fi
 ;;
 esac
 
-- 
1.7.7.3



Bug#607321: ITA: chordii

2011-12-07 Thread Malcolm Locke
Hi,

I'd hate to see this go from the archive, so I'll take it over.

Upstream releases are fairly infrequent, but the project still seems to
be active.  May be a while until my first upload though.

Thanks for all your work on this Stefan.

Malc



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



Bug#651270: hping3: Support for outputting unidirectional latencies

2011-12-07 Thread Saku Ytti
Package: hping3
Version: 3.a2.ds2-6
Severity: wishlist

I'd wish to get something like this included to debian hping3 package

[ytti@sci ~/hping3-3.a2.ds2/debian/patches]% cat 
170_unidirectional_latency.diff 
Added support for printing unidirectional latencies

[ytti@sci ~/hping3-3.a2.ds2]% ./hping3 -1 --icmp-ts ns.anylayer.com
HPING ns.anylayer.com (eth0 194.150.168.86): icmp mode set, 28 headers + 0 data 
bytes
len=46 ip=194.150.168.86 ttl=56 id=997 icmp_seq=0 rtt=38.8 ms
ICMP timestamp: Originate=35412743 Receive=35412758 Transmit=35412758
ICMP timestamp RTT tsrtt=39 src-dst=15 dst-src=24

len=46 ip=194.150.168.86 ttl=56 id=998 icmp_seq=1 rtt=38.6 ms
ICMP timestamp: Originate=35413743 Receive=35413758 Transmit=35413758
ICMP timestamp RTT tsrtt=38 src-dst=15 dst-src=23

--- a/waitpacket.c
+++ b/waitpacket.c
@@ -185,15 +185,17 @@
 void log_icmp_ts(void *ts)
 {
struct icmp_tstamp_data icmp_tstamp;
+   long unsigned int timestamp = get_midnight_ut_ms();
 
memcpy(icmp_tstamp, ts, sizeof(icmp_tstamp));
printf(ICMP timestamp: Originate=%u Receive=%u Transmit=%u\n,
(unsigned int) ntohl(icmp_tstamp.orig),
(unsigned int) ntohl(icmp_tstamp.recv),
(unsigned int) ntohl(icmp_tstamp.tran));
-   printf(ICMP timestamp RTT tsrtt=%lu\n\n,
-   (long unsigned int) (get_midnight_ut_ms() 
- - ntohl(icmp_tstamp.orig)));
+   printf(ICMP timestamp RTT tsrtt=%lu src-dst=%lu dst-src=%lu\n\n,
+   (long unsigned int) (timestamp - ntohl(icmp_tstamp.orig)),
+   (long unsigned int) (ntohl(icmp_tstamp.recv) - 
ntohl(icmp_tstamp.orig)),
+   (long unsigned int) (timestamp - ntohl(icmp_tstamp.tran)));
 }
 
 void log_icmp_addr(void *addrptr)
[ytti@sci ~/hping3-3.a2.ds2/debian/patches]% 



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

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

Versions of packages hping3 depends on:
ii  libc6   2.13-21
ii  libpcap0.8  1.1.1-10
ii  tcl8.4  8.4.19-4

hping3 recommends no packages.

hping3 suggests no packages.

-- debconf-show failed



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



Bug#651271: gstreamer0.10-fluendo-mp3: quodlibet and mp3splt-gtk crash when volume is changed (illegal instruction)

2011-12-07 Thread Bernward
Package: gstreamer0.10-fluendo-mp3
Version: 0.10.14.debian-1
Severity: grave
Justification: renders package unusable

quodlibet chrashes on start of a mp3-file, if its volume control is not set to 
100%. If quodlibets volume control is set to 100%, playing of mp3 starts, but 
quodlibet crashes as soon as volume is changed.
mp3splt-gtk starts an mp3-file, but crashes as soon as volume is changed.
If the applications are started from the command line, the error message for 
both is Ungültiger Maschinenbefehl (=german for illegal instruction).
Both applications work without failure, when I remove the package 
gstreamer0.10-fluendo-mp3 (I assume, that then gstreamer0.10-plugins-ugly 
is used for mp3-playing).  

-- System Information:
Debian Release: 6.0.3
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'oldstable'), (500, 'stable')
Architecture: powerpc (ppc)

Kernel: Linux 2.6.32-5-powerpc
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to de_DE.UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages gstreamer0.10-fluendo-mp3 depends on:
ii  libc6  2.11.2-10 Embedded GNU C Library: Shared lib
ii  libglib2.0-0   2.24.2-1  The GLib library of C routines
ii  libgstreamer0.10-0 0.10.30-1 Core GStreamer libraries and eleme
ii  liboil0.3  0.3.17-2  Library of Optimized Inner Loops
ii  libxml22.7.8.dfsg-2+squeeze1 GNOME XML library

gstreamer0.10-fluendo-mp3 recommends no packages.

gstreamer0.10-fluendo-mp3 suggests no packages.

-- no debconf information



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



Bug#651272: suck: logrotate complains on unsecure premissions

2011-12-07 Thread Elmar Haneke
Package: suck
Version: 4.3.2-9+b1
Severity: normal

Logrotate 3.8.1-1 does complain on permissions:

error: skipping /var/log/suck/*log because parent directory has insecure
permissions (It's world writable or writable by group which is not root)
Set su directive in config file to tell logrotate which user/group should
be used for rotation.
error: skipping /var/log/suck/suck-err because parent directory has
insecure permissions (It's world writable or writable by group which is not
root) Set su directive in config file to tell logrotate which user/group
should be used for rotation.
error: skipping /var/log/suck/suck-status because parent directory has
insecure permissions (It's world writable or writable by group which is not
root) Set su directive in config file to tell logrotate which user/group
should be used for rotation.

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

Kernel: Linux 3.1.0-1-686-pae (SMP w/2 CPU cores)
Locale: LANG=de_DE@euro, LC_CTYPE=de_DE@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages suck depends on:
ii  debconf [debconf-2.0]  1.5.41
ii  libc6  2.13-21
ii  libssl1.0.01.0.0e-3

Versions of packages suck recommends:
ii  perl  5.14.2-6

Versions of packages suck suggests:
pn  knode [news-reader] 4:4.4.11.1+l10n-1
pn  lynx-cur [news-reader]  2.8.8dev.9-2
pn  news-transport-system   none

-- no debconf information



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



Bug#651273: mixmaster: logrotate does complain on permissions

2011-12-07 Thread Elmar Haneke
Package: mixmaster
Version: 3.0.0-4+b1
Severity: normal

logrotate 3.8.1-1 does complain:

error: skipping /var/log/mixmaster/err.log because parent directory has
insecure permissions (It's world writable or writable by group which is not
root) Set su directive in config file to tell logrotate which user/group
should be used for rotation.

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

Kernel: Linux 3.1.0-1-686-pae (SMP w/2 CPU cores)
Locale: LANG=de_DE@euro, LC_CTYPE=de_DE@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages mixmaster depends on:
ii  adduser3.113
ii  debconf [debconf-2.0]  1.5.41
ii  libc6  2.13-21
ii  libmailtools-perl  2.08-1
ii  libncurses55.9-4
ii  libpcre3   8.12-4
ii  libssl1.0.01.0.0e-3
ii  libwww-perl6.03-1
ii  zlib1g 1:1.2.5.dfsg-1

Versions of packages mixmaster recommends:
ii  exim4-daemon-light [mail-transport-agent]  4.77-1+b1

Versions of packages mixmaster suggests:
ii  mutt  1.5.21-5

-- Configuration Files:
/etc/mixmaster/allpingers.txt changed:
[austria]
base= http://www.tahina.priv.at/~cm/stats/
rlist   = http://www.tahina.priv.at/~cm/stats/rlist.txt
mlist   = http://www.tahina.priv.at/~cm/stats/mlist.txt
rlist2  = http://www.tahina.priv.at/~cm/stats/rlist2.txt
mlist2  = http://www.tahina.priv.at/~cm/stats/mlist2.txt
rlist_html  = http://www.tahina.priv.at/~cm/stats/rlist.html
mlist_html  = http://www.tahina.priv.at/~cm/stats/mlist.html
rlist2_html = http://www.tahina.priv.at/~cm/stats/rlist2.html
mlist2_html = http://www.tahina.priv.at/~cm/stats/mlist2.html
pgpring = http://www.tahina.priv.at/~cm/stats/pgp-all.asc
pgpring_rsa = http://www.tahina.priv.at/~cm/stats/pgp-rsa.asc
mixring = http://www.tahina.priv.at/~cm/stats/pubring.mix
type2list   = http://www.tahina.priv.at/~cm/stats/type2.list
[banana]
base= http://pinger.bananasplit.info/
rlist   = http://pinger.bananasplit.info/rlist.txt
mlist   = http://pinger.bananasplit.info/mlist.txt
rlist2  = http://pinger.bananasplit.info/rlist2.txt
mlist2  = http://pinger.bananasplit.info/mlist2.txt
rlist_html  = http://pinger.bananasplit.info/rlist.html
mlist_html  = http://pinger.bananasplit.info/mlist.html
rlist2_html = http://pinger.bananasplit.info/rlist2.html
mlist2_html = http://pinger.bananasplit.info/mlist2.html
pgpring = http://pinger.bananasplit.info/pgp-all.asc
pgpring_rsa = http://pinger.bananasplit.info/pgp-rsa.asc
mixring = http://pinger.bananasplit.info/pubring.mix
type2list   = http://pinger.bananasplit.info/type2.list
[citrus]
base= http://privacy.outel.org/
rlist   = http://privacy.outel.org/rlist.txt
mlist   = http://privacy.outel.org/mlist.txt
rlist2  = http://privacy.outel.org/rlist2.txt
mlist2  = http://privacy.outel.org/mlist2.txt
rlist_html  = http://privacy.outel.org/rlist.html
mlist_html  = http://privacy.outel.org/mlist.html
rlist2_html = http://privacy.outel.org/rlist2.html
mlist2_html = http://privacy.outel.org/mlist2.html
pgpring = http://privacy.outel.org/pgp-all.asc
pgpring_rsa = http://privacy.outel.org/pgp-rsa.asc
mixring = http://privacy.outel.org/pubring.mix
type2list   = http://privacy.outel.org/type2.list
[cside]
base= http://www.cside.dyndns.org/stats/
rlist   = http://www.cside.dyndns.org/stats/rlist.txt
mlist   = http://www.cside.dyndns.org/stats/mlist.txt
rlist2  = http://www.cside.dyndns.org/stats/rlist2.txt
mlist2  = http://www.cside.dyndns.org/stats/mlist2.txt
rlist_html  = http://www.cside.dyndns.org/stats/rlist.html
mlist_html  = http://www.cside.dyndns.org/stats/mlist.html
rlist2_html = http://www.cside.dyndns.org/stats/rlist2.html
mlist2_html = http://www.cside.dyndns.org/stats/mlist2.html
pgpring = http://www.cside.dyndns.org/stats/pgp-all.asc
pgpring_rsa = http://www.cside.dyndns.org/stats/pgp-rsa.asc
mixring = http://www.cside.dyndns.org/stats/pubring.mix
type2list   = http://www.cside.dyndns.org/stats/type2.list
[deuxpi]
base= http://www.deuxpi.ca/echolot/
rlist   = http://www.deuxpi.ca/echolot/rlist.txt
mlist   = http://www.deuxpi.ca/echolot/mlist.txt
rlist2  = http://www.deuxpi.ca/echolot/rlist2.txt
mlist2  = http://www.deuxpi.ca/echolot/mlist2.txt
rlist_html  = http://www.deuxpi.ca/echolot/rlist.html
mlist_html  = http://www.deuxpi.ca/echolot/mlist.html
rlist2_html = http://www.deuxpi.ca/echolot/rlist2.html
mlist2_html = http://www.deuxpi.ca/echolot/mlist2.html
pgpring = http://www.deuxpi.ca/echolot/pgp-all.asc
pgpring_rsa = http://www.deuxpi.ca/echolot/pgp-rsa.asc
mixring = http://www.deuxpi.ca/echolot/pubring.mix
type2list   = http://www.deuxpi.ca/echolot/type2.list
[devurandom]
base= http://anonymitaet-im-inter.net/echolot/
rlist   = 

Bug#633038: sysklogd: /run transition: Please switch to /run/sendsigs.omit.d

2011-12-07 Thread Roger Leigh
tags 633038 + patch
thanks

On Thu, Jul 07, 2011 at 11:36:57PM +0100, Roger Leigh wrote:
 Source: sysklogd
 Version: 1.5-6.1
 Severity: important
 
 Your package is currently using/lib/init/rw/sendsigs.omit.d
 which is now deprecated and pending removal.  Please update your
 package to use /run/sendsigs.omit.d with a versioned dependency
 on initscripts, as detailed below.

Patch attached.


Regards,
Roger

-- 
  .''`.  Roger Leigh
 : :' :  Debian GNU/Linux http://people.debian.org/~rleigh/
 `. `'   Printing on GNU/Linux?   http://gutenprint.sourceforge.net/
   `-GPG Public Key: 0x25BFB848   Please GPG sign your mail.
diff -urN sysklogd-1.5.original/debian/changelog sysklogd-1.5/debian/changelog
--- sysklogd-1.5.original/debian/changelog	2011-12-07 09:53:59.792743369 +
+++ sysklogd-1.5/debian/changelog	2011-12-07 10:02:03.998126346 +
@@ -1,3 +1,15 @@
+sysklogd (1.5-6.2) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * /run transition: sysklogd and klogd use /run/sendsigs.omit.d in
+place of /lib/init/rw/sendsigs.omit.d.  Old files are migrated
+from /lib/init/rw/sendsigs.omit.d to /run/sendsigs.omit.d in the
+package postinsts, and both packages depend upon initscripts
+(= 2.88dsf-13.3) in order to guarantee the presence of
+/run/sendsigs.omit.d (Closes: #633038).
+
+ -- Roger Leigh rle...@debian.org  Wed, 07 Dec 2011 10:01:28 +
+
 sysklogd (1.5-6.1) unstable; urgency=low
 
   * Non-maintainer upload.
diff -urN sysklogd-1.5.original/debian/control sysklogd-1.5/debian/control
--- sysklogd-1.5.original/debian/control	2011-12-07 09:53:59.792743369 +
+++ sysklogd-1.5/debian/control	2011-12-07 09:59:15.947999887 +
@@ -8,7 +8,7 @@
 Package: sysklogd
 Architecture: any
 Section: admin
-Depends: ${shlibs:Depends}, klogd | linux-kernel-log-daemon, adduser, lsb-base
+Depends: ${shlibs:Depends}, klogd | linux-kernel-log-daemon, adduser, lsb-base, initscripts (= 2.88dsf-13.3)
 Conflicts: syslogd
 Provides: syslogd, system-log-daemon
 Replaces: syslogd
@@ -21,7 +21,7 @@
 Package: klogd
 Architecture: any
 Section: admin
-Depends: ${shlibs:Depends}, sysklogd | system-log-daemon, adduser, lsb-base
+Depends: ${shlibs:Depends}, sysklogd | system-log-daemon, adduser, lsb-base, initscripts (= 2.88dsf-13.3)
 Conflicts: sysklogd (= 1.3-33)
 Provides: linux-kernel-log-daemon
 Replaces: sysklogd
diff -urN sysklogd-1.5.original/debian/postinst sysklogd-1.5/debian/postinst
--- sysklogd-1.5.original/debian/postinst	2011-12-07 09:53:59.792743369 +
+++ sysklogd-1.5/debian/postinst	2011-12-07 09:58:07.487138722 +
@@ -54,6 +54,11 @@
 
 adduser --system --group --no-create-home --quiet syslog
 
+# Migrate from /lib/init/rw to /run prior to restart
+if [ -f /lib/init/rw/sendsigs.omit.d/sysklogd ]; then 
+	mv /lib/init/rw/sendsigs.omit.d/sysklogd /run/sendsigs.omit.d/sysklogd 
+fi
+
 # restarting daemon
 #
 if [ -f /etc/init.d/sysklogd ]
diff -urN sysklogd-1.5.original/debian/postinst.klogd sysklogd-1.5/debian/postinst.klogd
--- sysklogd-1.5.original/debian/postinst.klogd	2011-12-07 09:53:59.792743369 +
+++ sysklogd-1.5/debian/postinst.klogd	2011-12-07 09:58:30.599429071 +
@@ -27,6 +27,11 @@
 
 adduser --system --quiet --group --no-create-home klog || true
 
+# Migrate from /lib/init/rw to /run prior to restart
+if [ -f /lib/init/rw/sendsigs.omit.d/klogd ]; then
+mv /lib/init/rw/sendsigs.omit.d/klogd /run/sendsigs.omit.d/klogd
+fi
+
 # restarting daemon
 #
 if [ -f /etc/init.d/klogd ]
diff -urN sysklogd-1.5.original/debian/postrm sysklogd-1.5/debian/postrm
--- sysklogd-1.5.original/debian/postrm	2011-12-07 09:53:59.792743369 +
+++ sysklogd-1.5/debian/postrm	2011-12-07 09:55:27.749461878 +
@@ -6,6 +6,6 @@
 then
 update-rc.d sysklogd remove /dev/null
 
-test ! -f /lib/init/rw/sendsigs.omit.d/sysklogd || \
-	rm -f /lib/init/rw/sendsigs.omit.d/sysklogd
+test ! -f /run/sendsigs.omit.d/sysklogd || \
+	rm -f /run/sendsigs.omit.d/sysklogd
 fi
diff -urN sysklogd-1.5.original/debian/postrm.klogd sysklogd-1.5/debian/postrm.klogd
--- sysklogd-1.5.original/debian/postrm.klogd	2011-12-07 09:53:59.792743369 +
+++ sysklogd-1.5/debian/postrm.klogd	2011-12-07 09:54:40.017062927 +
@@ -7,6 +7,6 @@
   deluser --system --quiet klog || true
   update-rc.d klogd remove /dev/null
 
-  test ! -f /lib/init/rw/sendsigs.omit.d/klogd || \
-  rm -f /lib/init/rw/sendsigs.omit.d/klogd
+  test ! -f /run/sendsigs.omit.d/klogd || \
+  rm -f /run/sendsigs.omit.d/klogd
 fi
diff -urN sysklogd-1.5.original/debian/rc sysklogd-1.5/debian/rc
--- sysklogd-1.5.original/debian/rc	2011-12-07 09:53:59.792743369 +
+++ sysklogd-1.5/debian/rc	2011-12-07 10:05:11.152510567 +
@@ -115,9 +115,10 @@
 fix_log_ownership
 start-stop-daemon --start --quiet --pidfile $pidfile --name syslogd --startas $binpath -- $SYSLOGD
 log_end_msg $?
-test -d /lib/init/rw/sendsigs.omit.d || mkdir -p 

Bug#581441: notfixed 581441 in 3.0.2-1, reopening 581441

2011-12-07 Thread Josselin Mouette
reassign 581441 shared-mime-info 
retitle 581441 please add application/acrobat as an alias for application/pdf
thanks

Le mardi 06 décembre 2011 à 14:02 -0800, Josh Triplett a écrit : 
 This bug still seems to exist in current evince.  The evince desktop
 files don't support the application/acrobat MIME type either; nothing in
 evince or evince-common mentions application/acrobat.

Indeed, this should be added as an alias in the freedesktop data.

-- 
 .''`.  Josselin Mouette
: :' :
`. `'
  `-




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



Bug#621293: deja-dup: Getting rid of unneeded *.la / emptying

2011-12-07 Thread Laurent Bigonville
reopen 621293
found 621293
thanks

Hi,

20.2-1 still installs 2 .la files, so this is not fixed.

Cheers

Laurent Bigonville



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



Bug#651274: epic4: Error due to a bad number in the conflict field

2011-12-07 Thread Gilles Crevecoeur
Package: epic4
Version: 1:2.6-1.2
Severity: minor

Dear Maintainer,

A cron daily job report this error :

/etc/cron.daily/dlocate:
dpkg-query: warning: parsing file '/var/lib/dpkg/available' near line 622349
+package 'epic4':
 'Conflicts' field, reference to 'epic4-help': error in version: version number
+does not start with digit

This message is annoying me since many months.
I would wish that this message no longer annoy me.
Is it possible ?

Cheers.

Gilles Crèvecœur



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

Kernel: Linux 3.1.0-e2+ (SMP w/2 CPU cores; PREEMPT)
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 epic4 depends on:
pn  epic4-help   none
pn  libc62.13-21
pn  libncurses5  5.9-4
pn  libperl5.10  none
pn  libssl0.9.8  none

epic4 recommends no packages.

Versions of packages epic4 suggests:
pn  epic4-script  none



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



Bug#633060: tiger: /run transition: Please switch use of /lib/init/rw to /run

2011-12-07 Thread Roger Leigh
tags 633060 + patch
thanks

On Fri, Jul 08, 2011 at 12:16:52AM +0100, Roger Leigh wrote:
 Source: tiger
 Version: 1:3.2.3-7
 Severity: important
 User: rle...@debian.org
 Usertags: run-transition
 
 Your package is currently using /lib/init/rw/ which is now deprecated
 and pending removal.  Please update your package to use /run/ with a
 versioned dependency on initscripts, as detailed below.

Patch attached.


Regards,
Roger

-- 
  .''`.  Roger Leigh
 : :' :  Debian GNU/Linux http://people.debian.org/~rleigh/
 `. `'   Printing on GNU/Linux?   http://gutenprint.sourceforge.net/
   `-GPG Public Key: 0x25BFB848   Please GPG sign your mail.
diff -urN tiger-3.2.3.original/debian/changelog tiger-3.2.3/debian/changelog
--- tiger-3.2.3.original/debian/changelog	2011-12-07 10:10:08.260318402 +
+++ tiger-3.2.3/debian/changelog	2011-12-07 10:13:11.206672144 +
@@ -1,3 +1,10 @@
+tiger (1:3.2.3-8.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * /run transition: Replace /lib/init/rw with /run (Closes: #633060).
+
+ -- Roger Leigh rle...@debian.org  Wed, 07 Dec 2011 10:12:43 +
+
 tiger (1:3.2.3-8) unstable; urgency=high
 
   * debian/rules: Symlink systems/Linux/3 to systems/Linux/2 to support
diff -urN tiger-3.2.3.original/systems/Linux/2/config tiger-3.2.3/systems/Linux/2/config
--- tiger-3.2.3.original/systems/Linux/2/config	2011-12-07 10:10:08.244318196 +
+++ tiger-3.2.3/systems/Linux/2/config	2011-12-07 10:12:38.746254151 +
@@ -52,6 +52,8 @@
 # Linux/2/config - 04/25/2009 - jfs - Use apache2 directory if available in Debian
 # Linux/2/config - 01/14/2011 - jfs - Add /dev/shm and /lib/init/rw
 #   to the writable filesystems (common tmpfs) (Debian bug #317329)
+# Linux/2/config - 07/12/2011 - rleigh - Remove /lib/init/rw and add /run
+#   to the writable filesystems (common tmpfs) (Debian bug #633060)
 #
 #-
  
@@ -312,7 +314,7 @@
 LOCFS=ext2
 export LOCFS
 
-FS_WDIRSYS=/tmp/ /var/tmp/ /var/spool/mail/ /dev/shm /lib/init/rw
+FS_WDIRSYS=/tmp/ /var/tmp/ /var/spool/mail/ /dev/shm /run
 export FS_WDIRSYS
 #
 SYSDEFAULTPATH=/bin:/usr/bin


Bug#651275: grub2: [INTL:nl] Dutch translation of debconf templates

2011-12-07 Thread Jeroen Schot
Package: grub2
Severity: wishlist
Tags: l10n patch

Hello,

Attached is the updated Dutch translation of the grub2 debconf templates.
Please include it in your next upload.

Regards,
-- 
Jeroen Schot
# Dutch translation of grub2 debconf templates.
# Copyright (C) 2008-2011 THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the grub2 package.
# Paul Gevers p...@climbing.nl, 2008-2010.
# Jeroen Schot sc...@a-eskwadraat.nl, 2011.
#
msgid 
msgstr 
Project-Id-Version: grub2 1.99-14\n
Report-Msgid-Bugs-To: gr...@packages.debian.org\n
POT-Creation-Date: 2011-05-27 13:33+0100\n
PO-Revision-Date: 2011-12-06 08:19+0100\n
Last-Translator: Jeroen Schot sc...@a-eskwadraat.nl\n
Language-Team: Debian l10n Dutch debian-l10n-du...@lists.debian.org\n
Language: nl\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n

#. Type: boolean
#. Description
#: ../grub-pc.templates.in:2001
msgid Chainload from menu.lst?
msgstr Doorschakelen vanuit menu.lst?

#. Type: boolean
#. Description
#: ../grub-pc.templates.in:2001
msgid GRUB upgrade scripts have detected a GRUB Legacy setup in /boot/grub.
msgstr 
GRUBs opwaardeerscripts hebben een oude-stijl GRUB opstelling in /boot/grub 
gedetecteerd.

#. Type: boolean
#. Description
#: ../grub-pc.templates.in:2001
msgid 
In order to replace the Legacy version of GRUB in your system, it is 
recommended that /boot/grub/menu.lst is adjusted to load a GRUB 2 boot image 
from your existing GRUB Legacy setup. This step can be automatically 
performed now.
msgstr 
Om de oude-stijl versie van GRUB op uw systeem te vervangen wordt het 
aangeraden om het /boot/grub/menu.lst bestand zo te laten aanpassen dat er 
een GRUB 2 opstartopname wordt geladen vanuit uw bestaande oude-stijl GRUB 
opstelling. Deze stap kan nu automatisch worden uitgevoerd.

#. Type: boolean
#. Description
#: ../grub-pc.templates.in:2001
msgid 
It's recommended that you accept chainloading GRUB 2 from menu.lst, and 
verify that the new GRUB 2 setup works before it is written to the MBR 
(Master Boot Record).
msgstr 
U wordt aangeraden om het doorschakelen van GRUB 2 vanuit menu.lst te 
accepteren, en daarna te verifiëren dat de nieuwe GRUB 2 opstelling werkt 
voordat het in de MBR (Master Boot Record) wordt geïnstalleerd.

#. Type: boolean
#. Description
#: ../grub-pc.templates.in:2001
msgid 
Whatever your decision, you can replace the old MBR image with GRUB 2 later 
by issuing the following command as root:
msgstr 
Waar u ook voor kiest, u kunt de oude MBR opname later door GRUB 2 vervangen 
door het volgende commando uit te voeren (met beheerdersrechten (root)):

#. Type: multiselect
#. Description
#. Type: multiselect
#. Description
#: ../grub-pc.templates.in:3001 ../grub-pc.templates.in:4001
msgid GRUB install devices:
msgstr GRUB installatie apparaten:

#. Type: multiselect
#. Description
#: ../grub-pc.templates.in:3001
msgid 
The grub-pc package is being upgraded. This menu allows you to select which 
devices you'd like grub-install to be automatically run for, if any.
msgstr 
Het grub-pc pakket wordt bijgewerkt. Dit menu stelt u in staat om de 
apparaten te selecteren waar u wilt dat grub-install automatisch gedraaid 
wordt.

#. Type: multiselect
#. Description
#: ../grub-pc.templates.in:3001
msgid 
Running grub-install automatically is recommended in most situations, to 
prevent the installed GRUB core image from getting out of sync with GRUB 
modules or grub.cfg.
msgstr 
Het wordt over het algemeen aanbevolen om grub-install automatisch te laten 
draaien om te voorkomen dat de geïnstalleerde GRUB kernopname niet meer 
gesynchroniseerd is met GRUB modules of grub.cfg. 

#. Type: multiselect
#. Description
#. Type: multiselect
#. Description
#: ../grub-pc.templates.in:3001 ../grub-pc.templates.in:4001
msgid 
If you're unsure which drive is designated as boot drive by your BIOS, it is 
often a good idea to install GRUB to all of them.
msgstr 
Indien u niet zeker weet welk station door de BIOS wordt gebruikt als 
opstartstation, is het vaak een goed idee om GRUB op alle stations te 
installeren.

#. Type: multiselect
#. Description
#. Type: multiselect
#. Description
#: ../grub-pc.templates.in:3001 ../grub-pc.templates.in:4001
msgid 
Note: it is possible to install GRUB to partition boot records as well, and 
some appropriate partitions are offered here. However, this forces GRUB to 
use the blocklist mechanism, which makes it less reliable, and therefore is 
not recommended.
msgstr 
Merk op dat het ook mogelijk is om GRUB naar opstartstructuren op partities 
te installeren. Enkele geschikte partities worden hier aangeboden. Dit wordt 
echter niet aangeraden omdat het GRUB dwingt om een bloklijstmechanisme te 
gebruiken waar het minder betrouwbaar van wordt.

#. Type: multiselect
#. Description
#: ../grub-pc.templates.in:4001
msgid 
The GRUB boot loader was previously installed to a disk that is no longer 
present, or whose unique identifier has 

Bug#612981: wicd not working anymore with a similar encoding error

2011-12-07 Thread Raphael Plasson

Hi,

since I upgraded wicd to v. 1.7.1~b3-1 today, I cannot connect anymore 
with wicd (I switched back to network-manager, that I always keep 
installed as a safety).
The mistake is very similar to the one reported here. Feel free to 
change this bug report to wicd package, or to change its criticality if 
needed.


Nothing happens if I try to connect with wicd-kde (I do see a list of 
available networks, but that's it). Trying to launch wicd-curses gives 
this error:

Traceback (most recent call last):
  File /usr/share/wicd/curses/wicd-curses.py, line 1063, in module
main()
  File /usr/share/wicd/curses/wicd-curses.py, line 995, in main
ui.run_wrapper(run)
  File /usr/lib/python2.7/dist-packages/urwid/raw_display.py, line 
229, in run_wrapper

return fn()
  File /usr/share/wicd/curses/wicd-curses.py, line 89, in wrapper
return func(*args, **kargs)
  File /usr/share/wicd/curses/wicd-curses.py, line 1003, in run
app = appGUI()
  File /usr/share/wicd/curses/wicd-curses.py, line 551, in __init__
self.update_netlist(force_check=True,firstrun=True)
  File /usr/share/wicd/curses/wicd-curses.py, line 89, in wrapper
return func(*args, **kargs)
  File /usr/share/wicd/curses/wicd-curses.py, line 670, in update_netlist
wiredL,wlessL = gen_network_list()
  File /usr/share/wicd/curses/wicd-curses.py, line 177, in 
gen_network_list

label = NetLabel(network_id,is_active)
  File /usr/share/wicd/curses/wicd-curses.py, line 358, in __init__
self.stren,self.essid,self.encrypt,self.bssid,self.mode,self.channel)
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 5: 
ordinal not in range(128)


So there is indeed a bug where some informations that can be in utf-8 
format are only expected to be in ascii by wicd (I don't know which 
parameter is , concerned in the reported line 358 of sicd-curses.py, but 
I suspect it is about the encoding of self.essid, that is indeed 
unlikely to only contain ASCII characters). This bug seems critical, as 
wicd cannot be used in this case.


Thank you,
Raphaël




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



Bug#651243: debirf: chroot error due to missing files

2011-12-07 Thread Dick Thomas
hiya

it seems that kernel.org doesn't have the files I tried this a few times
but when I cha\nged it to DEBIRF_MIRROR=http://ftp.uk.debian.org/debian/;
it works

when I made the bug i was using  the default and then
DEBIRF_MIRROR=http://ftp.uk.debian.org/debian/${DEBIRF_DISTRO};
and that error'd too for obvious reasons now in the cold light of day :D

Hope this can be of some help and proves just to be user error

Dick Thomas

On 7 December 2011 00:47, Jameson Graef Rollins
jroll...@finestructure.netwrote:

 On Tue, 06 Dec 2011 23:34:28 +, Dick William Thomas xpd...@gmail.com
 wrote:
  running debirf make xkisok caues error after lots of missing file errors
 
  I: Installing core packages...
  W: Failure trying to run: chroot /home/xpd259/debirf/xkiosk/root dpkg
 --force-
  depends --install /var/cache/apt/archives/base-files_6.0squeeze2_i386.deb
  /var/cache/apt/archives/base-passwd_3.5.22_i386.deb

 Hey, Dick.  Thanks for the report.  It looks to me like you might have
 actually been experiencing network issues.  It looks like it was the
 debootstrap phase of the build that was failing to download packages
 From the mirror (http://mirrors.kernel.org/debian in this case).

 Some questions: Can you confirm that this wasn't just a transient
 network issue by trying to build again?  Have you tried another mirror
 (DEBIRF_MIRROR in the config)?  What about when building a different
 image, like the 'minimal' image?  Also, what happens if you run
 debootstrap on it's own?

 jamie.




-- 
Dick Thomas xpd...@gmail.com
www.xpd259.co.uk
www.google.com/profiles/xpd259


Bug#651277: xfce4-terminal: Memory leak

2011-12-07 Thread Isaac Gelado
Package: xfce4-terminal
Version: 0.4.8-1
Severity: important
Tags: upstream

xfce4-terminal increases its memory usage continuosly. I had a terminal open
(only one tab) for one day, and it was consuming 4GB of memory.

To reproduce the problem, just launch xfce4-terminal and let it run.



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

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

Versions of packages xfce4-terminal depends on:
ii  exo-utils   0.6.2-3   
ii  libatk1.0-0 2.2.0-2   
ii  libc6   2.13-21   
ii  libdbus-1-3 1.4.16-1  
ii  libdbus-glib-1-20.98-1
ii  libexo-1-0  0.6.2-3   
ii  libgdk-pixbuf2.0-0  2.24.0-1  
ii  libglib2.0-02.30.2-4  
ii  libgtk2.0-0 2.24.8-2  
ii  libpango1.0-0   1.29.4-2  
ii  libvte9 1:0.28.2-1
ii  libx11-62:1.4.4-4 
ii  libxfce4util4   4.8.2-1   

Versions of packages xfce4-terminal recommends:
ii  dbus-x11  1.4.16-1

xfce4-terminal suggests no packages.

-- no debconf information



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



Bug#621293: deja-dup: Getting rid of unneeded *.la / emptying

2011-12-07 Thread Laurent Bigonville
tag 621293 + patch
thanks

Hi,

Something like this would fix this bug once for all.

Cheers

Laurent Bigonvillediff -Nru deja-dup-20.2/debian/rules deja-dup-20.2/debian/rules
--- deja-dup-20.2/debian/rules	2011-11-25 21:33:23.0 +0100
+++ deja-dup-20.2/debian/rules	2011-12-07 11:20:57.0 +0100
@@ -5,6 +5,11 @@
 override_dh_auto_configure:
 	dh_auto_configure
 
+override_dh_install:
+	dh_install
+	find debian/deja-dup -name '*.la' -exec rm -f {} \;
+	find debian/deja-dup -name '*.a' -exec rm -f {} \;
+
 override_dh_makeshlibs:
 	dh_makeshlibs --exclude=libnautilus-deja-dup.so
 


Bug#651278: boinc-client: boinc issues a warning when installing

2011-12-07 Thread shirish शिरीष
Package: boinc-client
Version: 7.0.2+dfsg-1Severity: normal
Dear Maintainer,I have installed boinc-client but while installing
boinc gave couple of warnings. I have aptitude give a bit more verbose
output when installing hence saw those. Do not have any idea whether
its an important warning or not.
D01: deferred_configure updating conffilesupdate-rc.d: warning:
boinc-client start runlevel arguments (2 3 4 5) do not match LSB
Default-Start values (4 5)update-rc.d: warning: boinc-client stop
runlevel arguments (0 1 6) do not match LSB Default-Stop values (0 1 2
3 6)
Can you please look it up and see. Please let me know if any more help
is needed ?

One another thing, I got this privacy message while trying to file the
bug in reportbug about whether I choose to include or not the info.
that
boinc-client/remove_boinc_dir: false is set this way or not. I have no
idea what boinc-client/remove_boinc_dir: false does and if that is the
default setup or not.

Looking forward to comments and suggestions.
-- Package-specific info:-- Contents of /etc/default/boinc-client:#
This file is /etc/default/boinc-client, it is a configuration file for
the# /etc/init.d/boinc-client init script.
# Set this to 1 to enable and to 0 to disable the init script.ENABLED=1
# Set this to 1 to enable advanced scheduling of the BOINC core client
and# all its sub-processes (reduces the impact of BOINC on the
system's# performance).SCHEDULE=1
# The BOINC core client will be started with the permissions of this
user.BOINC_USER=boinc
# This is the data directory of the BOINC core
client.BOINC_DIR=/var/lib/boinc-client
# This is the location of the BOINC core client, that the init script
uses.# If you do not want to use the client program provided by the
boinc-client# package, you can specify here an alternative client
program.#BOINC_CLIENT=/usr/local/bin/boincBOINC_CLIENT=/usr/bin/boinc
# Here you can specify additional options to pass to the BOINC core
client.# Type 'boinc --help' or 'man boinc' for a full summary of
allowed options.#BOINC_OPTS=--allow_remote_gui_rpcBOINC_OPTS=
-- System Information:Debian Release: wheezy/sid  APT prefers unstable
 APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'), (1,
'experimental')Architecture: amd64 (x86_64)
Kernel: Linux 3.1.0-1-amd64 (SMP w/2 CPU cores)Locale: LANG=en_IN,
LC_CTYPE=en_IN (charmap=UTF-8)Shell: /bin/sh linked to /bin/dash
Versions of packages boinc-client depends on:ii  adduser
 3.113ii  ca-certificates        20111025ii  debconf [debconf-2.0]
1.5.41ii  libc6                  2.13-21ii  libcurl3
7.23.1-2ii  libgcc1                1:4.6.2-5ii  libssl1.0.0
1.0.0e-3ii  libstdc++6             4.6.2-5ii  libx11-6
2:1.4.4-4ii  libxss1                1:1.2.1-2ii  python
 2.7.2-9ii  zlib1g                 1:1.2.3.4.dfsg-3
Versions of packages boinc-client recommends:ii  ia32-libs  20111001
Versions of packages boinc-client suggests:ii  boinc-app-seti
noneii  boinc-manager      7.0.2+dfsg-1ii  libcuda1
noneii  libcuda1-ia32      noneii  x11-xserver-utils  7.6+3
-- Configuration Files:/etc/boinc-client/gui_rpc_auth.cfg [Errno 13]
Permission denied: u'/etc/boinc-client/gui_rpc_auth.cfg'
-- debconf information:  boinc-client/remove_boinc_dir: false
-- 
          Regards,
          Shirish Agarwal  शिरीष अग्रवाल
  My quotes in this email licensed under CC 3.0
http://creativecommons.org/licenses/by-nc/3.0/
http://flossexperiences.wordpress.com
065C 6D79 A68C E7EA 52B3  8D70 950D 53FB 729A 8B17



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



Bug#651106: grub-pc: Windows XP partition assigned wrong root partition

2011-12-07 Thread Vladimir 'φ-coder/phcoder' Serbinenko

On 05.12.2011 22:31, Chris Carr wrote:

### BEGIN /etc/grub.d/30_otheros ###
There is no /etc/grub.d/30_otheros distributed by either upstream or 
Debian which leads me to conclution that you created one yourself and it 
contains the bug you report.


--
Regards
Vladimir 'φ-coder/phcoder' Serbinenko




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



Bug#643490: /run transition: Please update references to .mdadm.map

2011-12-07 Thread Roger Leigh
On Tue, Sep 27, 2011 at 03:30:13PM +0200, Michael Biebl wrote:
 during an automated test, your package was flagged to reference files
 matching /dev/.mdadm:
 
 policy/modules/system/raid.te:# create .mdadm files in /dev
 policy/modules/system/raid.fc:/dev/.mdadm.map --
 gen_context(system_u:object_r:mdadm_map_t,s0)
 
 Because of the /run transition, mdadm was updated to use /run/mdadm/ [1] and
 the map file is now at /run/mdadm/map.
 
 Please update refpolicy accordingly.

Hi Russell,

Have you had a chance to fix this yet?


Thanks,
Roger

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



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



Bug#651218: [Dctrl-tools-devel] Bug#651218: Addendum

2011-12-07 Thread Chris Leick

Hi David,

David Prévot:

Chris Leick a écrit :

   

I forgot the addendum (now attached).
 


   

Sie können mit dem folgenden Befehl das englische
Original anzeigen
.RB «  man -L C
.IR section page_de_man  ».
 

This sound very French to me. Chris, do you also translate “manpage” and
“section” with “page de man” and “section” in German, I guess that you
also use »stuff« instead of « stuff » in German ;-).
   


Sorry. It was really stolen from the french team. ;-)

The new addendum is attached.

Regards,
Chris
PO4A-HEADER:mode=after;position=^\.SH SIEHE AUCH;beginboundary=^\.SH
.SH TRADUCTION
Diese Übersetzung wurde mit dem Werkzeug
.B po4a
URL:http://po4a.alioth.debian.org/
durch Chris Leick
.I c.le...@vollbio.de
und das deutsche Debian-Übersetzer-Team im 
Dezember 2011 erstellt.


Bitte melden Sie alle Fehler in der Übersetzung an
.I debian-l10n-ger...@lists.debian.org
oder als Fehlerbericht an das Paket
.IR dctrl-tools .

Sie können mit dem folgenden Befehl das englische 
Original anzeigen
.RB » man -L C
.IR Abschnitt deutsche_Handbuchseite «.


Bug#651279: Please exclude private libraries from shlibs file

2011-12-07 Thread Laurent Bigonville
Source: deja-dup
Version: 20.2-1
Severity: normal
Tags: patch

Hi,

Lintian is currently complaining about shlibs file containing
references to private libraries:

E: deja-dup: pkg-has-shlibs-control-file-but-no-actual-shared-libs
W: deja-dup: postinst-has-useless-call-to-ldconfig
W: deja-dup: postrm-has-useless-call-to-ldconfig

Please correctly exclude the private .so files

Cheers

Laurent Bigonvillediff -Nru deja-dup-20.2/debian/rules deja-dup-20.2/debian/rules
--- deja-dup-20.2/debian/rules	2011-11-25 21:33:23.0 +0100
+++ deja-dup-20.2/debian/rules	2011-12-07 11:41:33.0 +0100
@@ -6,7 +6,7 @@
 	dh_auto_configure
 
 override_dh_makeshlibs:
-	dh_makeshlibs --exclude=libnautilus-deja-dup.so
+	dh_makeshlibs --exclude=libdeja-dup.so
 
 override_dh_installchangelogs:
 	dh_installchangelogs NEWS


Bug#649950: PATCH: Support libpng 1.5 [was: Bug#649950: fontforge: FTBFS: gimagewritepng.c:339:12: error: dereferencing pointer to incomplete type]

2011-12-07 Thread Paul Flo Williams
The attached patch against current head should take care of the
outstanding issues with libpng 1.5 support.

The two copies of GImageWrite_Png() are now very similar, with the
non-dlopen'd version using accessor functions like the other version.

On the way, this also fixes trans_color, which was being dereferenced
without being allocated.

This now builds for me, as configured for Fedora, but I haven't quite
worked out how to trigger PNG generation -- something to do with SVG
writing? So, needs testing :-)

-- 
Paul Flo Williams
http://hisdeedsaredust.com/category/fonts/feed

bin1S3RxirZZ8.bin
Description: Binary data


Bug#651280: don't allocate all available disk space in standard LVM partioning scheme

2011-12-07 Thread Sergey B Kirpichev
Package: debian-installer
Severity: wishlist

If you chose scheme Guided - use entire disk and set up LVM - then
created logical volumes (e.g. for /usr, /var ...) span _all_ available
space in the default volume group.

Why not just create LVM volumes with some safe minimal sizes?
Free space in the volume group can be used later: to grow up already
created volumes or to create new ones.

It's easy to do lvresize  most of filesystems supports online growing.  On
the contrary, none supports online shrinking of size.



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



Bug#651195: ITP: squirrel -- lightweight highly attachable high-level programming

2011-12-07 Thread Daniel Stender
Little specification: Alberto informed me that Squirrel wasn't developed by 
Crytek but
independently by him and not as alternative to Lua, but inspired by.

I am going to build two packets, squirrel and squirrel-dev which includes 
header files and static libs.

Greetings,
Daniel





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



Bug#651257: deja-dup: diff for NMU version 20.2-1.1

2011-12-07 Thread bigon
tags 651257 + patch
tags 651257 + pending
thanks

Dear maintainer,

I've prepared an NMU for deja-dup (versioned as 20.2-1.1) and
uploaded it to DELAYED/2. Please feel free to tell me if I
should delay it longer.

Regards.
diff -Nru deja-dup-20.2/debian/changelog deja-dup-20.2/debian/changelog
--- deja-dup-20.2/debian/changelog  2011-11-25 21:33:23.0 +0100
+++ deja-dup-20.2/debian/changelog  2011-12-07 11:54:30.0 +0100
@@ -1,3 +1,11 @@
+deja-dup (20.2-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * debian/control: Drop libdbusmenu-gtk3-dev Build-dep, the package is only
+available in experimental for now (Closes: #651257)
+
+ -- Laurent Bigonville bi...@debian.org  Wed, 07 Dec 2011 11:54:25 +0100
+
 deja-dup (20.2-1) unstable; urgency=low
 
   * New upstream release (Closes: #613336, #632568)
diff -Nru deja-dup-20.2/debian/control deja-dup-20.2/debian/control
--- deja-dup-20.2/debian/control2011-11-25 21:33:23.0 +0100
+++ deja-dup-20.2/debian/control2011-12-07 10:47:21.0 +0100
@@ -6,7 +6,6 @@
 Build-Depends: debhelper (= 8),
intltool (= 0.40),
itstool,
-   libdbusmenu-gtk3-dev (= 0.3.94),
libglib2.0-dev (= 2.26),
libgnome-control-center-dev,
libgnome-keyring-dev,



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



Bug#651283: bird6: claims to be for ipv4

2011-12-07 Thread Tollef Fog Heen
Source: bird6
Severity: normal
Version: 1.3.4-1

 apt-cache show bird6   
Package: bird6
[...]
Description: Internet Routing Daemon
[...]
 This package supports IPv4 versions of OSPFv3, RIPng and BGP.

Really?  I'd guess at it being IPv6, not IPv4?

Tollef Fog Heen
UNIX is user friendly, it's just picky about who its friends are



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



Bug#651284: ganglia-monitor: Bad PID number in /var/run/gmond.pid

2011-12-07 Thread Gabriel Moreau
Package: ganglia-monitor
Version: 3.1.7-1+b1
Severity: normal



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

Kernel: Linux 2.6.32-5-486
Locale: LANG=fr_FR.utf8@euro, LC_CTYPE=fr_FR.utf8@euro (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

PID number in /var/run/gmond.pid in PID number of gmond minus 1 !

gmond can write it's PID in a file. Change in
init file /etc/init.d/ganglia-monitor


start-stop-daemon --start --quiet -m --pidfile
/var/run/$NAME.pid \
--exec $DAEMON 

By

start-stop-daemon --start --quiet \
--exec $DAEMON -- --pid-file /var/run/$NAME.pid

Now, file /var/run/gmond.pid is OK

gaby



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



Bug#650515: mlterm: Crashes at start

2011-12-07 Thread Raf Czlonka
Package: mlterm
Version: 3.0.9-1
Followup-For: Bug #650515

hi,

Same here using awesome.

§ mlterm
X Error of failed request:  BadPixmap (invalid Pixmap parameter)
Major opcode of failed request:  54 (X_FreePixmap)
Resource id in failed request:  0x0
Serial number of failed request:  60
Current serial number in output stream:  61

Regards,

Raf

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

Kernel: Linux 3.0.0-2-powerpc
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages mlterm depends on:
ii  libc6   2.13-21
ii  libgdk-pixbuf2.0-0  2.24.0-1
ii  libglib2.0-02.30.2-4
ii  libssh2-1   1.2.8-2
ii  libx11-62:1.4.4-4
ii  mlterm-common   3.0.9-1

Versions of packages mlterm recommends:
ii  mlterm-tools  3.0.9-1

Versions of packages mlterm suggests:
ii  fonts-arphic-bsmi00lpnone
ii  fonts-arphic-gbsn00lpnone
ii  fonts-baekmuknone
ii  fonts-takao-gothic [fonts-japanese-gothic]   003.02.01-5
ii  mlterm-im-m17nlibnone
ii  mlterm-im-scim   none
ii  mlterm-im-uimnone
ii  t1-cyrillic  none
ii  ttf-freefont 20100919-1
ii  ttf-sazanami-gothic [fonts-japanese-gothic]  20040629-12
ii  unifont  1:5.1.20080914-1.1
ii  xfonts-efont-unicode 0.4.2-4

-- no debconf information



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



Bug#588181: irssi: Hole when long links are posted

2011-12-07 Thread Edin Kadribašić
This is a side effect of word wrapping setting when running irssi in 
screen. Pressing C-a r turns of that screen behaviour and it fixes the 
problem.




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



Bug#623523: breaks when /run is used

2011-12-07 Thread Roger Leigh
On Sun, Jun 19, 2011 at 10:25:07AM +0300, Andrew O. Shadoura wrote:
 Hello,
 
 Also, ~alpha5.1 has been released, you may want to try it if you
 haven't yet. Please report any news.

Hi folks,

Is this still an issue?--it all looks OK to me.


Thanks,
Roger

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



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



Bug#651285: libdap: FTBFS due to ltmain --as-needed patch no longer applying

2011-12-07 Thread Iain Lane
+
+override_dh_auto_configure:
LDFLAGS= -Wl,--as-needed dh_auto_configure -- --with-gnu-ld
 
 override_dh_auto_build:


libdap_3.11.1-9-amd64-20111207-1119.gz
Description: Binary data


Bug#649950: [Fontforge-devel] PATCH: Support libpng 1.5 [was: Bug#649950: fontforge: FTBFS: gimagewritepng.c:339:12: error: dereferencing pointer to incomplete type]

2011-12-07 Thread Khaled Hosny
On Wed, Dec 07, 2011 at 10:02:41AM -, Paul Flo Williams wrote:
 This now builds for me, as configured for Fedora, but I haven't quite
 worked out how to trigger PNG generation -- something to do with SVG
 writing? So, needs testing :-)

From char view, File - Export, and select png from Format.

Regards,
 Khaled



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



Bug#650218: libgstreamer0.10-0: undefined symbol: g_error_get_type

2011-12-07 Thread John Wyzer

 Is it possible to run other gstreamer applications, e.g. rhythmbox,
 totem, gst-inspect-0.10, ...?


Actually I found a libgio in /usr/lib that was not supposed to be there.
I I guess this can be closed.



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



Bug#651286: devscripts: getbuildlogs fails to fetch logs for versions with '+'

2011-12-07 Thread Pino Toscano
Package: devscripts
Version: 2.11.2
Severity: normal

Hi,

it looks like getbuildlogs cannot download build logs for versions
containing a '+' character, eg binNMUs.

$ getbuildlog php5 '5.3.8.0-1+b1' i386
this does nothing, and $? = 0, but then
$ wget 
'https://buildd.debian.org/status/fetch.php?pkg=php5arch=i386ver=5.3.8.0-1%2Bb1stamp=1321183039raw=1'
works

Thanks,
-- 
Pino

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

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

Versions of packages devscripts depends on:
ii  dpkg-dev   1.16.1.2
ii  libc6  2.13-21 
ii  perl   5.14.2-5
ii  python 2.7.2-9 
ii  python2.6  2.6.7-4 
ii  python2.7  2.7.2-7 

Versions of packages devscripts recommends:
ii  at3.1.13-1 
ii  curl  7.22.0-3 
ii  dctrl-tools   2.19 
ii  debian-keyring2011.08.07   
ii  dput  0.9.6.2  
ii  dupload   2.7.0
ii  equivs2.0.9
ii  fakeroot  1.18.1-1 
ii  gnupg 1.4.11-3 
ii  libcrypt-ssleay-perl  0.57-2+b3
ii  libjson-perl  2.53-1   
ii  libparse-debcontrol-perl  2.005-3  
ii  libsoap-lite-perl 0.714-1  
ii  liburi-perl   1.59-1   
ii  libwww-perl   6.03-1   
ii  lintian   2.5.4
ii  man-db2.6.0.2-3
ii  patch 2.6.1-2  
ii  patchutils0.3.2-1  
ii  python-debian 0.1.21   
ii  python-magic  none   
ii  sensible-utils0.0.6
ii  strace4.5.20-2.3   
ii  unzip 6.0-5
ii  wdiff 0.6.5-1  
ii  wget  1.13.4-1 
ii  xz-utils  5.1.1alpha+20110809-3

Versions of packages devscripts suggests:
ii  bsd-mailx [mailx]8.1.2-0.2006cvs-1
ii  build-essential  11.5 
ii  cvs-buildpackage none   
ii  devscripts-elnone   
ii  gnuplot  4.4.0-1.1
ii  libauthen-sasl-perl  2.1500-1 
ii  libfile-desktopentry-perlnone   
ii  libnet-smtp-ssl-perl 1.01-3   
ii  libterm-size-perlnone   
ii  libtimedate-perl 1.2000-1 
ii  libyaml-syck-perlnone   
ii  mailutils [mailx]1:2.2+dfsg1-4+b1 
ii  mutt 1.5.21-5 
ii  openssh-client [ssh-client]  1:5.9p1-2
ii  svn-buildpackage 0.8.4
ii  w3m  0.5.3-4  

-- no debconf information



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



Bug#651106: grub-pc: Windows XP partition assigned wrong root partition

2011-12-07 Thread Ian Campbell
On Wed, 2011-12-07 at 11:40 +0100, Vladimir 'φ-coder/phcoder' Serbinenko
wrote:
 On 05.12.2011 22:31, Chris Carr wrote:
  ### BEGIN /etc/grub.d/30_otheros ###
 There is no /etc/grub.d/30_otheros distributed by either upstream or 
 Debian which leads me to conclution that you created one yourself and it 
 contains the bug you report.

The comment contains:
# This entry automatically added by the Debian installer for a non-linux OS
# on /dev/sde1

which suggests that D-I created it and the bug is there, no? Looks like
in particular it comes from grub-installer although the root bug might
be in os-prober:

$ cat grub-installer/grub-installer
...
if [ -s $tmpfile ] ; then
case $grub_version in
[...]
grub2)
if ! $chroot $ROOT which os-prober /dev/null 21; then
cat  $ROOT/etc/grub.d/30_otheros  EOF
#!/bin/sh
exec tail -n +3 \$0
EOF
cat $tmpfile  $ROOT/etc/grub.d/30_otheros
chmod +x $ROOT/etc/grub.d/30_otheros
update_grub # propagate 30_otheros to grub.cfg
fi
;;
esac
rm -f $tmpfile
fi
...

Chris said:
 I can edit grub.cfg manually and it works fine,
 but every time the package is updated, grub.cfg is regenerated and it
 is detected incorrectly again.

You can/should edit /etc/grub.d/30_otheros instead.

Ian.

-- 
Ian Campbell

 Hit the monkey to win $20(*)!
* knghtbrd gets out his mallet.
* knghtbrd plants it firmly on DannyS' head.
* knghtbrd will take his $20 now.  =D




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



Bug#651203: procps: SONAME breakage

2011-12-07 Thread Simon McVittie
On Wed, 07 Dec 2011 at 08:42:24 +1100, Craig Small wrote:
 There was a reason why we said not to link to libproc, this one of the
 reasons.

Is libproc considered to be a public shared library or not?

If it is, it should probably be in its own package with the usual
SONAME-tracking, parallel-installability sorts of things; or failing that,
provide a SONAME-named virtual package that things linking to it can depend
on, and have suitable dpkg-shlibdeps magic to make that happen, so that
xmem etc. can't be co-installed with an incompatible procps.

(Perhaps depending packages would Depends: procps (= VERSION),
libproc-ng-x.y.z or something, where the latter is virtual.)

If it isn't a public shared library, then it should go in /lib/procps (or even
/lib/TRIPLET/procps) with an RPATH, and things that currently link to the
shared library should link to it statically (and have Built-Using), or even
have their own copy.

Whether it's considered to be a public shared library also affects the
correct solutions to #651179, #650314 and #646834, I think?

S



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



Bug#651287: llvm-2.9-runtime: Leaves behind /var/lib/binfmts/llvm-2.9.binfmt

2011-12-07 Thread Sam Morris
Source: llvm-2.9-runtime
Version: 2.9+dfsg-4
Severity: normal

After running the following, the file /var/lib/binfmts/llvm-2.9.binfmt
is still present on the system. This also applies to other
llvm-*-runtime packages as well (I remember deleting their .binfmt files
from this directory manually).

# apt-get --purge autoremove
Reading package lists... Done
Building dependency tree   
Reading state information... Done
The following packages will be REMOVED:
  libllvm2.9* llvm-2.9-runtime*
0 upgraded, 0 newly installed, 2 to remove and 0 not upgraded.
After this operation, 19.6 MB disk space will be freed.
Do you want to continue [Y/n]? 
(Reading database ... 379504 files and directories currently installed.)
Removing llvm-2.9-runtime ...
update-binfmts: warning: /var/lib/binfmts/llvm does not exist; nothing to do!
Removing libllvm2.9 ...
Purging configuration files for libllvm2.9 ...
Processing triggers for man-db ...


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

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



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



Bug#651288: aptitude-doc-en: development details refer to old Mercurial repository

2011-12-07 Thread Daniel Hartwig
Package: aptitude-doc-en
Version: 0.6.4-1.2
Tags: patch

The section ``Tracking and participating in aptitude development''
should be updated with details on accessing the Git repository.
From 80146f404831b1cb453fd97dd98b374731195cfb Mon Sep 17 00:00:00 2001
From: Daniel Hartwig mand...@gmail.com
Date: Wed, 7 Dec 2011 19:50:10 +0800
Subject: [PATCH] Update development details to Git.

---
 doc/en/aptitude.xml |   25 +
 1 files changed, 13 insertions(+), 12 deletions(-)

diff --git a/doc/en/aptitude.xml b/doc/en/aptitude.xml
index 617a3e8..2ad6ba6 100644
--- a/doc/en/aptitude.xml
+++ b/doc/en/aptitude.xml
@@ -522,18 +522,17 @@
 	  para
 	If you want to test the latest bleeding-edge source code
 	for aptitude;, you can download unreleased aptitude;
-	source code using Mercurial.  Install Mercurial (available
-	from ulink
-	url='http://www.selenic.com/mercurial/'/ulink) and
-	execute the command commandhg clone
-	http://hg.debian.org/hg/aptitude/head aptitude/command
+	source code using Git.  Install Git (available
+	from ulink url='http://git-scm.com/'/) and
+execute the command commandgit clone
+git://git.debian.org/git/aptitude/aptitude.git/command
 	to retrieve the most recent source code.
 	  /para
 
 
 	  warning
 	para
-	  The aptitude; Mercurial repository is an active
+	  The aptitude; Git repository is an active
 	  development tree; it will change as bugs are fixed and
 	  features are added, and there is absolutely no guarantee
 	  that it will even compile, let alone run properly!  Bug
@@ -582,16 +581,18 @@
 	The aptitude; source tree is regularly updated with new
 	features, bugfixes, and new bugs.  Once the source code is
 	available on your computer (see the previous section), you
-	can commandcd/command into it and type commandhg
-	pull amp;amp; hg update/command to update it with any
-	changes made to the main repository.
+	can commandcd/command into it and type commandgit
+	pull/command to update it with any changes made to the
+	main repository.
 	  /para
 
 	  para
 	To automatically receive notifications when changes are
-	made to the aptitude; codebase, subscribe to the RSS feed
+	made to the aptitude; codebase, subscribe to the Atom feed
 	available at ulink
-	url='http://hg.debian.org/hg/aptitude/head?cl=tip;style=rss'/.
+url='http://anonscm.debian.org/gitweb/?p=aptitude/aptitude.git;a=atom'/
+or RSS feed available at ulink
+url='http://anonscm.debian.org/gitweb/?p=aptitude/aptitude.git;a=rss'/.
 	  /para
 	/section
 
@@ -599,7 +600,7 @@
 	  titleBuilding aptitude; from the development tree/title
 
 	  para
-	To build aptitude from the Mercurial repository, you must
+	To build aptitude from the Git repository, you must
 	have the programs systemitemautoconf/systemitem and
 	systemitemautomake/systemitem installed.  Type
 	commandsh ./autogen.sh amp;amp; ./configure/command
-- 
1.7.5.4



Bug#651289: aptitude-doc-en: missing entity refs in xml

2011-12-07 Thread Daniel Hartwig
Package: aptitude-doc-en
Severity: minor
Version: 0.6.4-1.2
Tags: patch

The xml files mainly use entity references when referring to aptitude,
apt, and so on:

  para
aptitude; is a sizeable program with many features, and it can
be a bit overwhelming for new users to get acquainted with it.
This chapter does not exhaustively describe the features of
...

These have been missed in some places:

  para
Once the cache is loaded (this may take some time on slower
machines), the main aptitude screen should appear:
  /para

Attached patch corrects most of these that could be found with
a quick replace-regexp, and inserts some missing filename
tags.
From 7075e1ec0e9d39dc8a22d348c8ba81677ac809aa Mon Sep 17 00:00:00 2001
From: Daniel Hartwig mand...@gmail.com
Date: Wed, 7 Dec 2011 19:25:57 +0800
Subject: [PATCH] Fix missing entity refs and filename elements.

---
 doc/en/aptitude.xml |   30 +++---
 doc/en/manpage.xml  |   33 +
 2 files changed, 32 insertions(+), 31 deletions(-)

diff --git a/doc/en/aptitude.xml b/doc/en/aptitude.xml
index 617a3e8..630a96a 100644
--- a/doc/en/aptitude.xml
+++ b/doc/en/aptitude.xml
@@ -599,7 +599,7 @@
 	  titleBuilding aptitude; from the development tree/title
 
 	  para
-	To build aptitude from the Mercurial repository, you must
+	To build aptitude; from the Mercurial repository, you must
 	have the programs systemitemautoconf/systemitem and
 	systemitemautomake/systemitem installed.  Type
 	commandsh ./autogen.sh amp;amp; ./configure/command
@@ -658,7 +658,7 @@
 
 	para
 	  Once the cache is loaded (this may take some time on slower
-	  machines), the main aptitude screen should appear:
+	  machines), the main aptitude; screen should appear:
 	/para
 
 	screenshot
@@ -711,7 +711,7 @@ These packages are currently installed on your computer.
 
 	para
 	  As the top line of the screen suggests, you can access
-	  aptitude's menus by pressing keycombo action='simul'keycapControl/keycapkeycapt/keycap/keycombo; you can
+	  aptitude;'s menus by pressing keycombo action='simul'keycapControl/keycapkeycapt/keycap/keycombo; you can
 	  also click the mouse on a menu title if your system supports
 	  it.  Pressing keycombo action='simul'keycapControl/keycapkeycapt/keycap/keycombo will open the Actions menu:
 	/para
@@ -2952,8 +2952,8 @@ Th+-+
 	/para
 
 	para
-	  By default, aptitude will use the command
-	  systemitemsu/systemitem to gain root privileges.  If you
+	  By default, aptitude; will use the command
+	  systemitemsu/systemitem to gain root; privileges.  If you
 	  would like it to use some other command (such as
 	  systemitemsudo/systemitem), set the configuration option
 	  link
@@ -5070,7 +5070,7 @@ e: Examine  !: Apply  .: Next  ,: Previous/screen
 
   warning
 	para
-	  The behavior of aptitude when given a search pattern without
+	  The behavior of aptitude; when given a search pattern without
 	  a leading quote?/quote (or quote~/quote) is provided
 	  as a convenience for interactive use and will change in
 	  future releases; scripts that invoke
@@ -5470,7 +5470,7 @@ e: Examine  !: Apply  .: Next  ,: Previous/screen
 
 	para
 	  xref linkend='tableSearchTermQuickGuide'/ provides a brief
-	  summary of all the search terms provided by aptitude.  A
+	  summary of all the search terms provided by aptitude;.  A
 	  full description of each term can be found link
 	  linkend='searchTermReferenceList'below/link.
 	/para
@@ -10960,7 +10960,7 @@ e: Examine  !: Apply  .: Next  ,: Previous/screen
 	  segliteral16384/literal/seg
 
 	  seg
-		The minimum size in bytes at which aptitude will begin
+		The minimum size in bytes at which aptitude; will begin
 		to display screenshots incrementally.  Below this
 		size, screenshots will not appear until they are fully
 		downloaded.
@@ -10973,7 +10973,7 @@ e: Examine  !: Apply  .: Next  ,: Previous/screen
 
 	  seg
 		The maximum number of bytes of screenshot data that
-		aptitude will store in memory for screenshots that are
+		aptitude; will store in memory for screenshots that are
 		not currently being displayed.  The default is four
 		megabytes.
 	  /seg
@@ -11129,13 +11129,13 @@ e: Examine  !: Apply  .: Next  ,: Previous/screen
 		literalreplaceableprotocol/replaceable:replaceablecommand/replaceable/literal.
 		replaceableprotocol/replaceable must be either
 		literalsu/literal or literalsudo/literal; it
-		determines how aptitude invokes the program when it
-		wants to gain root privileges.  If
+		determines how aptitude; invokes the program when it
+		wants to gain root; privileges.  If
 		replaceableprotocol/replaceable is
 		literalsu/literal, then
 		quoteliteralreplaceablecommand/replaceable -c
 		replaceablearguments/replaceable/literal/quote is used
-		to become root; otherwise, aptitude uses
+		to become root;; otherwise, aptitude; 

Bug#650948: Bug#651032: /usr/sbin/rpc.idmapd: rpc.idmapd referring to none existing library

2011-12-07 Thread Steven Shiau
Anibal,
I confirm this issue is gone in 0.24-4. Cool! Thanks!

$ sudo apt-get install nfs-common
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following extra packages will be installed:
  libnfsidmap2
The following NEW packages will be installed:
  libnfsidmap2 nfs-common
0 upgraded, 2 newly installed, 0 to remove and 1 not upgraded.
Need to get 304 kB of archives.
After this operation, 752 kB of additional disk space will be used.
Do you want to continue [Y/n]?
Get:1 http://free.nchc.org.tw/debian/ sid/main libnfsidmap2 i386 0.24-4
[28.5 kB]
Get:2 http://free.nchc.org.tw/debian/ sid/main nfs-common i386
1:1.2.5-2+b1 [276 kB]
Fetched 304 kB in 0s (1,284 kB/s)
Selecting previously unselected package libnfsidmap2.
(Reading database ... 139229 files and directories currently installed.)
Unpacking libnfsidmap2 (from .../libnfsidmap2_0.24-4_i386.deb) ...
Selecting previously unselected package nfs-common.
Unpacking nfs-common (from .../nfs-common_1%3a1.2.5-2+b1_i386.deb) ...
Processing triggers for man-db ...
Setting up libnfsidmap2 (0.24-4) ...
Setting up nfs-common (1:1.2.5-2+b1) ...

Creating config file /etc/idmapd.conf with new version

Creating config file /etc/default/nfs-common with new version
Starting NFS common utilities: statd idmapd.


Steven.

-- 
Steven Shiau steven _at_ nchc org tw steven _at_ stevenshiau org
National Center for High-performance Computing, Taiwan.
http://www.nchc.org.tw
Public Key Server PGP Key ID: 1024D/9762755A
Fingerprint: A2A1 08B7 C22C 3D06 34DB  F4BC 08B3 E3D7 9762 755A



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



Bug#649648: transition: gnome-desktop3

2011-12-07 Thread Michael Biebl
Hi Adam,

On 06.12.2011 20:13, Adam D. Barratt wrote:
 tag 649648 + pending
 thanks
 
 On Wed, 2011-11-23 at 00:41 +0100, Michael Biebl wrote:
 on our road to GNOME 3.2, we'd like to start the gnome-desktop3
 transition now.
 
 Please go ahead with the gnome-desktop3 upload and let us know when
 you've done so, so that we can schedule the binNMUs.


I've uploaded gnome-desktop3_3.2.1-3 and it successfully built on all
architectures [1]. Aside from powerpc it's also installed everywhere
already. I've done a sourceful upload of gnome-screensaver, too. So the
remaining list is:

unstable:
=
cheese_3.2.2-1
eog_3.2.2-2
gnome-panel_3.2.1-1
gnome-control-center_1:3.0.2-3
gnome-settings-daemon_3.0.3-3
nautilus_3.2.1-2
nautilus-open-terminal_0.19-2
evolution_3.0.3-3
gnome-shell_3.0.2-8

experimental:
=
evolution_3.2.1-1
gnome-shell_3.2.1-7
evolution-rss_0.2.90~2011-1
evolution-exchange_3.2.1-1
evolution-ews_3.2.1-1


I've included experimental, as the gnome-shell and evo packages are
quite popular, so we want them to remain installable.
As said, the powerpc build is not yet uploaded, so in case you are going
to schedule the binNMUs now, please add a corresponding dep-wait.

Thanks for your great work and assistance,
Michael

[1] https://buildd.debian.org/status/package.php?p=gnome-desktop3suite=sid

-- 
Why is it that all of the instruments seeking intelligent life in the
universe are pointed away from Earth?



signature.asc
Description: OpenPGP digital signature


Bug#651264: glade: please provide an upgrade method for glade 3.6 projects

2011-12-07 Thread A Mennucc
hi

On Wed, Dec 07, 2011 at 10:47:49AM +0100, Michael Biebl wrote:
 On 07.12.2011 10:13, A Mennucc wrote:
 
 Have you tried gtk-builder-convert (libgtk2.0-dev)?

oh wow, I did not think of using it 
(after all, its main purpose does not seem to convert
to glade 3.10 format ...)

What about adding some lines in README ?

a.

ps: BTW , the README file is obsolete in some parts, and would benefit
 from a review : e.g. the file http://glade.gnome.org/glade-2.0.dtd 
 does not exist ; and it refers to gtk 2.20 whereas it uses gtk 3



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



Bug#651290: Please ship gcc 4.6 man pages.

2011-12-07 Thread Sebastian Andrzej Siewior
Package: gcc-doc-defaults
Version: 5:3
Severity: wishlist

gcc-4.6 ist in testing and I can only find gcc-4.4-doc-non-dfsg in the
archive. Mind packaging 4.6' man pages? Need a hand with this?

Sebastian



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



Bug#651291: gcc-snapshot contains evil gfdl licensed man pages

2011-12-07 Thread Sebastian Andrzej Siewior
Package: gcc-snapshot
Version: 20111203-1

Severity could be serious but this package won't be shipped so

The man pages are under the gfdl according to tail of
/usr/lib/gcc-snapshot/share/man/man1/gcc.1 and this is not compatible with the
main archive.

Doko, please don't get me wrong. I've been looking for a recent gcc man page
and this is the only place I could find. I wouldn't mind if it stays :)

Sebastian



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



Bug#516854: Detect if root login is disabled?

2011-12-07 Thread Jonathan Nieder
Hi Daniel,

Daniel Hartwig wrote:

 Is there a robust way for a *user* to detect if root login is
 disabled?  Would like to perform such a check from an instance of
 aptitude running as a user account.

Check if the user is in the sudo group.  Not 100% reliable, but
it might do.

Even better would be to use pkexec from the policykit-1 package.

Hope that helps,
Jonathan



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



Bug#651283: bird6: claims to be for ipv4

2011-12-07 Thread Justin B Rye
Tollef Fog Heen wrote:
 Package: bird6
 [...]
 Description: Internet Routing Daemon
 [...]
  This package supports IPv4 versions of OSPFv3, RIPng and BGP.
 
 Really?  I'd guess at it being IPv6, not IPv4?

I've already tried once to get the package descriptions for bird
patched to talk sense (#603494); here's another try, fixing
 1) the maintainer's crucial typo IPv4;
 2) the persistent grammar error: s/a Internet/an Internet/;
 3) the fact that bird and bird6 still have identical synopses.

While I'm doing this I've saved myself some time in case it ever
comes up for a debian-l10n-english review by applying our house
style to the punctuation (serial comma, single-spacing) and
rephrased the unnecessarily repetitive explanation of the -dbg
package.

(I'm leaving the extra capitalisation in the synopses on the
assumption that it's a hint at the origin of the name: BIRD
Internet Routing Daemon.)
-- 
JBR
Ankh kak! (Ancient Egyptian blessing)
diff -ru bird-1.3.4.pristine/debian/control bird-1.3.4/debian/control
--- bird-1.3.4.pristine/debian/control	2011-12-07 12:12:59.0 +
+++ bird-1.3.4/debian/control	2011-12-07 12:47:15.639695525 +
@@ -13,26 +13,26 @@
 Depends: ${shlibs:Depends}, ${misc:Depends}
 Conflicts: zebra, routed
 Recommends: bird6
-Description: Internet Routing Daemon
- BIRD is a Internet routing daemon with full support for all the major
- routing protocols.  It allows redistribution between protocols with
- a powerful route filtering syntax and an easy-to-use configuration
+Description: Internet Routing Daemon for IPv4
+ BIRD is an Internet routing daemon with full support for all the major
+ routing protocols. It allows redistribution between protocols with a
+ powerful route filtering syntax and an easy-to-use configuration
  interface.
  .
- This package supports IPv4 versions of OSPFv2, RIPv2 and BGP.
+ This package supports IPv4 versions of OSPFv2, RIPv2, and BGP.
 
 Package: bird6
 Architecture: any
 Depends: ${shlibs:Depends}, ${misc:Depends}
 Conflicts: zebra, routed
 Recommends: bird
-Description: Internet Routing Daemon
- BIRD is a Internet routing daemon with full support for all the major
- routing protocols.  It allows redistribution between protocols with
- a powerful route filtering syntax and an easy-to-use configuration
+Description: Internet Routing Daemon for IPv6
+ BIRD is an Internet routing daemon with full support for all the major
+ routing protocols. It allows redistribution between protocols with a
+ powerful route filtering syntax and an easy-to-use configuration
  interface.
  .
- This package supports IPv4 versions of OSPFv3, RIPng and BGP.
+ This package supports IPv6 versions of OSPFv3, RIPng, and BGP.
 
 Package: bird-dbg
 Architecture: any
@@ -40,11 +40,10 @@
 Recommends: gdb
 Section: debug
 Priority: extra
-Description: Debug symbols for BIRD
- BIRD is a Internet routing daemon with full support for all the major
- routing protocols.  It allows redistribution between protocols with
- a powerful route filtering syntax and an easy-to-use configuration
+Description: Internet Routing Daemon - debug symbols
+ BIRD is an Internet routing daemon with full support for all the major
+ routing protocols. It allows redistribution between protocols with a
+ powerful route filtering syntax and an easy-to-use configuration
  interface.
  .
- This package provides the debug symbols for BIRD needed for properly
- debugging errors in BIRD with gdb.
+ This package provides the symbols needed for debugging BIRD with gdb.


Bug#651292: please consider a pdns-static package

2011-12-07 Thread Marc Haber
Package: pdns
Version: 3.0-1
Severity: wishlist

Hi,

please consider adding infrastructure to build a statically linked
pdns package. As far as I know, this is the only thing that upstream's
Debian packaging does what the official Debian packaging doesn't.

Thus, building a statically linked package is a prerequisite to
using Debian's packaging as debian/ directory in the upstream sources.

I would be willing to provide a patch.

Greetings
Marc



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



Bug#642144: mmpong: Porting patch to support cegui-mk2-0.7.5

2011-12-07 Thread James Page
Package: mmpong
Version: 0.9.1-1
Followup-For: Bug #642144
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu precise ubuntu-patch

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Dear Maintainer,

In Ubuntu, the attached patch was applied to achieve the following:

  * d/patches/02_cegui-mk2-0.7.5.dpatch:
- client_gl/gui.h: Update for new header file name and location.
- client_gl/gui.cpp: Port API usage from 0.6.x - 0.7.x

Debian unstable now has cegui-mk2 0.7.5; this patch ports mmpong to use
the new header locations and API changes in this library.

Thanks for considering the patch.


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

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

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

iQIcBAEBCAAGBQJO31ueAAoJEL/srsug59jDbiUP/izvFk28BuUS/N1HMSN0LK1T
yahTeCrL3m48i3YtyEAq71Eb9EkLhNy42rQTruMtsJhC5GyEkmPqTrHQo+MX9CRs
QRe3eu0m7FSbx37qeNLSZ58hKqXM0W8R2cythiuICwQ7yg7WEAd7aWVG94zzff6/
UDyvmdukl4vaDpsbgK3vcfgKNJZvVjQyZ2ZzAa98/X+yp6lU4IYKx1jhgKD/qzNm
CxJC2JdgpEMAgX3matKCpq137Wz69exqfxpT4U6RHawg57VO4AP8IiQDulKjXWjh
nkO2d/xZD7hndHQHxSbw2mY/tNBLyFJi6Vq5C2hXrYoe+b5jme+UVVDPr/jQ7uFV
TQV9j39T2ywJhUlRFIPF5OKu48stK5jrh6Ab3UILhpeunAYCL8B4xUaxEEhV92Bl
YAxJd036QBKgj59pWplMsv898qFSwguMUkNB3S45BApL06jaNT6qFUfRt7fh0CaD
yl6JA9CEVnK0sx8XGs5j7lR0FGwPGa4SmnI+1R84i2kPmdrrP4kG2/nNWcrnvjHO
6MC845NVbsO3tURGc3FULt0VGNe2POzpt/6LG/m9twDjGf+3Qu5jCb1ROKuMttQM
HabflSpHnlgk7ZvQs8YsV3ounC7ruQ4g/BhszZGgtWJASlmtEmhVZC/UvXIrOIU7
Kh2PSe15fRLQelxsfFaB
=kfT7
-END PGP SIGNATURE-
=== modified file 'debian/patches/00list'
--- debian/patches/00list	2009-01-09 16:39:01 +
+++ debian/patches/00list	2011-12-07 09:54:29 +
@@ -1 +1,2 @@
 01_share.dpatch
+02_cegui-mk2-0.7.5.dpatch

=== added file 'debian/patches/02_cegui-mk2-0.7.5.dpatch'
--- debian/patches/02_cegui-mk2-0.7.5.dpatch	1970-01-01 00:00:00 +
+++ debian/patches/02_cegui-mk2-0.7.5.dpatch	2011-12-07 10:43:14 +
@@ -0,0 +1,43 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## 02_cegui-mk2-0.7.5.dpatch by James Page james.p...@ubuntu.com
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: No description.
+
+@DPATCH@
+diff -urNad '--exclude=CVS' '--exclude=.svn' '--exclude=.git' '--exclude=.arch' '--exclude=.hg' '--exclude=_darcs' '--exclude=.bzr' mmpong~/client_gl/gui.cpp mmpong/client_gl/gui.cpp
+--- mmpong~/client_gl/gui.cpp	2011-12-07 09:45:09.0 +
 mmpong/client_gl/gui.cpp	2011-12-07 10:43:13.727551992 +
+@@ -148,9 +148,9 @@
+ 
+ 
+ GUI::GUI(std::string resbase, int w, int h, bool _visible, ClientState *_state) {
+-	renderer = new OpenGLRenderer(0, w, h);
++	renderer = OpenGLRenderer::create(Size(w,h));
+ 	log =  new dummyLogger();
+-	sys = new System(renderer);
++	sys = System::create(*renderer);
+ 	visible = _visible;
+ 	state = _state;
+ 	try {
+@@ -176,7 +176,7 @@
+ 		// ATTENTION (by andré): 
+ 		//the next line segfaults with CEGUI 0.5.0-4.1 in Debian/Ubuntu
+ 		//this is fixed in 0.6 (sorry, found no workaround atm)
+-		SchemeManager::getSingleton().loadScheme( TaharezLook.scheme );
++		SchemeManager::getSingleton().create( TaharezLook.scheme );
+ 		sys-setDefaultMouseCursor( TaharezLook, MouseArrow );
+ 		sys-setDefaultTooltip(TaharezLook/Tooltip);
+ 
+diff -urNad '--exclude=CVS' '--exclude=.svn' '--exclude=.git' '--exclude=.arch' '--exclude=.hg' '--exclude=_darcs' '--exclude=.bzr' mmpong~/client_gl/gui.h mmpong/client_gl/gui.h
+--- mmpong~/client_gl/gui.h	2011-12-07 09:45:09.0 +
 mmpong/client_gl/gui.h	2011-12-07 10:30:03.0 +
+@@ -22,7 +22,7 @@
+ #define __GUI_H__
+ 
+ #include CEGUI.h
+-#include RendererModules/OpenGLGUIRenderer/openglrenderer.h
++#include RendererModules/OpenGL/CEGUIOpenGLRenderer.h
+ #include CEGUILogger.h
+ #include clientstate.h
+ 



Bug#644447: debdiff for the update

2011-12-07 Thread Sebastien Bacher

Hi,

We did the update in Ubuntu, there is a debdiff for the update adapted 
to Debian.
Martin Pitt is also fixing most of the rdepends and will send patches to 
the Debian BTS Cc-ing that bug while he's doing so.


Cheers,
Sebastien Bacher
diff -Nur poppler-0.16.7/debian/changelog poppler-0.18.2/debian/changelog
--- poppler-0.16.7/debian/changelog 2011-07-02 00:17:41.0 +0200
+++ poppler-0.18.2/debian/changelog 2011-12-07 12:42:29.584603169 +0100
@@ -1,3 +1,18 @@
+poppler (0.18.2-1) experimental; urgency=low
+
+  * New upstream version
+  * drop the patches included in the new version
+  * debian/control, debian/rules:
+- let libpoppler-dev Build-Depends on libjpeg-dev, some of the includes 
+  there list jpeglib.h
+- updated for the libpoppler and libpoppler-glib soname changes
+  * debian/libpoppler-glib-dev.install:
+- drop deprecated test-poppler-glib
+  * debian/rules: 
+- drop deprecated qt3 and abiword configure options
+
+ -- Sebastien Bacher seb...@ubuntu.com  Mon, 05 Dec 2011 17:23:02 +0100
+
 poppler (0.16.7-2) unstable; urgency=low
 
   * Upload to unstable.
diff -Nur poppler-0.16.7/debian/control poppler-0.18.2/debian/control
--- poppler-0.16.7/debian/control   2011-06-30 18:01:33.0 +0200
+++ poppler-0.18.2/debian/control   2011-12-07 12:41:44.076600966 +0100
@@ -26,7 +26,7 @@
 Standards-Version: 3.8.4
 Homepage: http://poppler.freedesktop.org/
 
-Package: libpoppler13
+Package: libpoppler19
 Architecture: any
 Section: libs
 Depends: ${shlibs:Depends},
@@ -40,8 +40,9 @@
 Package: libpoppler-dev
 Architecture: any
 Section: libdevel
-Depends: libpoppler13 (= ${binary:Version}),
+Depends: libpoppler19 (= ${binary:Version}),
  libfontconfig1-dev,
+ libjpeg-dev,
  ${shlibs:Depends},
  ${misc:Depends}
 Description: PDF rendering library -- development files
@@ -50,7 +51,7 @@
  This package contains the headers and development libraries needed to
  build applications using Poppler.
 
-Package: libpoppler-glib6
+Package: libpoppler-glib8
 Architecture: any
 Section: libs
 Depends: ${shlibs:Depends},
@@ -64,7 +65,7 @@
 Package: libpoppler-glib-dev
 Architecture: any
 Section: libdevel
-Depends: libpoppler-glib6 (= ${binary:Version}),
+Depends: libpoppler-glib8 (= ${binary:Version}),
  libpoppler-dev (= ${binary:Version}),
  libglib2.0-dev (= 2.18),
  libcairo2-dev (= 1.10.0),
@@ -157,7 +158,7 @@
 Section: debug
 Priority: extra
 Depends: ${misc:Depends},
- libpoppler13 (= ${binary:Version}),
+ libpoppler19 (= ${binary:Version}),
  ${shlibs:Depends}
 Description: PDF rendering library -- debugging symbols
  Poppler is a PDF rendering library based on Xpdf PDF viewer.
diff -Nur poppler-0.16.7/debian/libpoppler13.install 
poppler-0.18.2/debian/libpoppler13.install
--- poppler-0.16.7/debian/libpoppler13.install  2011-05-24 12:27:42.0 
+0200
+++ poppler-0.18.2/debian/libpoppler13.install  1970-01-01 01:00:00.0 
+0100
@@ -1 +0,0 @@
-usr/lib/libpoppler.so.13*
diff -Nur poppler-0.16.7/debian/libpoppler19.install 
poppler-0.18.2/debian/libpoppler19.install
--- poppler-0.16.7/debian/libpoppler19.install  1970-01-01 01:00:00.0 
+0100
+++ poppler-0.18.2/debian/libpoppler19.install  2011-12-05 17:24:15.0 
+0100
@@ -0,0 +1 @@
+usr/lib/libpoppler.so.19*
diff -Nur poppler-0.16.7/debian/libpoppler-glib6.install 
poppler-0.18.2/debian/libpoppler-glib6.install
--- poppler-0.16.7/debian/libpoppler-glib6.install  2011-05-24 
12:27:42.0 +0200
+++ poppler-0.18.2/debian/libpoppler-glib6.install  1970-01-01 
01:00:00.0 +0100
@@ -1 +0,0 @@
-usr/lib/libpoppler-glib.so.6*
diff -Nur poppler-0.16.7/debian/libpoppler-glib8.install 
poppler-0.18.2/debian/libpoppler-glib8.install
--- poppler-0.16.7/debian/libpoppler-glib8.install  1970-01-01 
01:00:00.0 +0100
+++ poppler-0.18.2/debian/libpoppler-glib8.install  2011-12-05 
17:24:15.0 +0100
@@ -0,0 +1 @@
+usr/lib/libpoppler-glib.so.8*
diff -Nur poppler-0.16.7/debian/libpoppler-glib-dev.install 
poppler-0.18.2/debian/libpoppler-glib-dev.install
--- poppler-0.16.7/debian/libpoppler-glib-dev.install   2011-05-24 
12:27:42.0 +0200
+++ poppler-0.18.2/debian/libpoppler-glib-dev.install   2011-12-05 
17:24:15.0 +0100
@@ -3,4 +3,4 @@
 usr/lib/libpoppler-glib.a
 usr/lib/libpoppler-glib.so
 usr/lib/pkgconfig/poppler-glib.pc
-../../glib/.libs/test-poppler-glib usr/lib/poppler
+
diff -Nur poppler-0.16.7/debian/poppler-utils.manpages 
poppler-0.18.2/debian/poppler-utils.manpages
--- poppler-0.16.7/debian/poppler-utils.manpages1970-01-01 
01:00:00.0 +0100
+++ poppler-0.18.2/debian/poppler-utils.manpages2011-12-05 
17:24:15.0 +0100
@@ -0,0 +1 @@
+debian/pdftoabw.1
diff -Nur poppler-0.16.7/debian/rules poppler-0.18.2/debian/rules
--- poppler-0.16.7/debian/rules 2011-06-18 23:10:31.0 +0200
+++ poppler-0.18.2/debian/rules 2011-12-05 

Bug#651293: gmetad: No PID file is created at startup. Like for gmond, the PID number will be even wrong!

2011-12-07 Thread Gabriel Moreau
Package: gmetad
Version: No PID run file for gmetad
Severity: normal



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

Kernel: Linux 2.6.32-5-486
Locale: LANG=fr_FR.utf8@euro, LC_CTYPE=fr_FR.utf8@euro (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

No PID file is created at startup. Like for gmond, the PID number will
be even wrong!

The init script is /etc/init.d/gmetad

Wrong line, option -m forgotten but even a bug stay width...

start-stop-daemon --start --quiet --pidfile /var/run/$NAME.pid \
--exec $DAEMON 

Good line. gmetad accept a pid-file parameter

start-stop-daemon --start --quiet \
--exec $DAEMON -- --pid-file /var/run/$NAME.pid

By

gaby



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



Bug#651294: Please consider upgrade of libusb

2011-12-07 Thread Nico Prenzel
Package: libusb-1.0-0
Version: 2:1.0.8-6

Hello Debian maintainer,

please consider to upgrade the libusb package to the latest trunk version:
http://git.libusb.org/?p=libusb.git;a=summary;js=1
... or consider to upgrade to the libusb-1.0.9-rc3 release.

At least the patch provided by Hans de Goede is needed for the long awaited 
usb-redirection feature:
http://git.libusb.org/?p=libusb.git;a=commitdiff;h=c8c40bcbd22abca922ff31c4ed6a75fd7af78b59;js=1

The project members seem to have some disagreement about a new release as you 
can read there:
http://sourceforge.net/mailarchive/forum.php?thread_name=CAGjSPUCw04rwVeXjzXPJmkH7GExnTYqsAScPTBkxiJgacjLOHA%40mail.gmail.comforum_name=libusb-devel

To overcome these problems it would be nice to cut a new debian release for 
e.g. experimental.


Thanks.
NicoP.


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



Bug#651285: libdap: FTBFS due to ltmain --as-needed patch no longer applying

2011-12-07 Thread Alastair McKinstry
Hi,

Thanks for this. Have you done an upload, or will I?

regards
Alastair


On 2011-12-07 12:02, Iain Lane wrote:
 Source: libdap
 Version: 3.11.1-9
 Severity: serious
 Tags: patch sid wheezy
 Justification: fails to build from source

 Hi there,

 libdap FTBFS due to the ltmain --as-needed patch no longer applying.
 Excerpt from build log:

 ,
 | (cd conf  patch  ../debian/as-needed.patch)
 | patching file ltmain.sh
 | Hunk #1 succeeded at 5512 (offset 12 lines).
 | Hunk #2 FAILED at 6155.
 | 1 out of 2 hunks FAILED -- saving rejects to file ltmain.sh.rej
 | make[1]: *** [override_dh_auto_configure] Error 1
 | make[1]: Leaving directory `/«PKGBUILDDIR»'
 | make: *** [build] Error 2
 | dpkg-buildpackage: error: debian/rules build gave error exit status 2
 `

 I made a patch to use dh_autoreconf --as-needed. Attached.

 Cheers,

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

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



-- 
Alastair McKinstry  , alast...@sceal.ie , mckins...@debian.org
http://blog.sceal.ie

Anyone who believes exponential growth can go on forever in a finite world
is either a madman or an economist - Kenneth Boulter, Economist.





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



Bug#651295: kexec-tools: FTBFS on powerpc: multiple definition of `__lshrdi3'

2011-12-07 Thread Jakub Wilk

Source: kexec-tools
Version: 1:2.0.2-3
Severity: serious
Justification: fails to build from source
User: debian-powe...@lists.debian.org
Usertags: powerpc

kexec-tools FTBFS on powerpc:
| gcc  -Wl,--no-undefined -nostartfiles -nostdlib -nodefaultlibs -e 
purgatory_start -r -o purgatory/purgatory.ro purgatory/purgatory.o 
purgatory/printf.o purgatory/string.o purgatory/arch/ppc/v2wrap_32.o 
purgatory/arch/ppc/misc.o purgatory/arch/ppc/purgatory-ppc.o 
purgatory/arch/ppc/console-ppc.o purgatory/arch/ppc/crt.o purgatory/sha256.o
| purgatory/arch/ppc/crt.o: In function `__lshrdi3':
| (.text+0xf0): multiple definition of `__lshrdi3'
| purgatory/arch/ppc/misc.o:(.text+0x50): first defined here
| collect2: ld returned 1 exit status
| make[1]: *** [purgatory/purgatory.ro] Error 1

Full build log:
https://buildd.debian.org/status/fetch.php?pkg=kexec-toolsarch=powerpcver=1%3A2.0.2-3stamp=1318545602

--
Jakub Wilk



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



Bug#644534: xscreensaver: add keyboard layout indicator to password prompt window

2011-12-07 Thread arygr...@gmail.com
If you don't want to add keyboard layour indicator, then either add a
button to reset keyboard layout to english, or add a field where one can
type to see current keyboard layout.

I have English, Ukrainian and Russian keyboard layouts and have to type
password three times almost always. Damn...


Thanks!



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



Bug#647160: fonts-okolaks: New upstream version

2011-12-07 Thread Gürkan Sengün

Hello Christian

Who pointed you to it? And where's the upstream web site?

Yours,
Gurkan



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



Bug#649648: transition: gnome-desktop3

2011-12-07 Thread Adam D. Barratt

On Wed, 07 Dec 2011 13:47:30 +0100, Michael Biebl wrote:

On 06.12.2011 20:13, Adam D. Barratt wrote:

Please go ahead with the gnome-desktop3 upload and let us know when
you've done so, so that we can schedule the binNMUs.



I've uploaded gnome-desktop3_3.2.1-3 and it successfully built on all
architectures [1]. Aside from powerpc it's also installed everywhere
already. I've done a sourceful upload of gnome-screensaver, too. So 
the

remaining list is:

unstable:
=
cheese_3.2.2-1
eog_3.2.2-2
gnome-panel_3.2.1-1
gnome-control-center_1:3.0.2-3
gnome-settings-daemon_3.0.3-3
nautilus_3.2.1-2
nautilus-open-terminal_0.19-2
evolution_3.0.3-3
gnome-shell_3.0.2-8


These were all scheduled earlier this morning - see 
http://release.debian.org/transitions/html/gnome-desktop3.html



experimental:
=
evolution_3.2.1-1
gnome-shell_3.2.1-7
evolution-rss_0.2.90~2011-1
evolution-exchange_3.2.1-1
evolution-ews_3.2.1-1


These have now been scheduled. The transition page only tracks 
unstable, so they'll need an eye keeping on them separately.



I've included experimental, as the gnome-shell and evo packages are
quite popular, so we want them to remain installable.
As said, the powerpc build is not yet uploaded, so in case you are 
going

to schedule the binNMUs now, please add a corresponding dep-wait.


I added the dep-waits anyway, as most architectures weren't installed 
at the time I scheduled the binNMUs.


Regards,

Adam



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



Bug#651285: libdap: FTBFS due to ltmain --as-needed patch no longer applying

2011-12-07 Thread Iain Lane
Hiya,

On Wed, Dec 07, 2011 at 01:00:24PM +, Alastair McKinstry wrote:
 Hi,
 
 Thanks for this. Have you done an upload, or will I?

No I haven't. I thought I'd let you have a first crack at it. :-)

Cheers,

-- 
Iain Lane  [ i...@orangesquash.org.uk ]
Debian Developer   [ la...@debian.org ]
Ubuntu Developer   [ la...@ubuntu.com ]
PhD student   [ i...@cs.nott.ac.uk ]


signature.asc
Description: Digital signature


Bug#649786: leptonlib: diff for NMU version 1.68-4.1

2011-12-07 Thread Mehdi Dogguy
tags 649786 + patch
tags 649786 + pending
thanks

Dear maintainer,

I've prepared an NMU for leptonlib (versioned as 1.68-4.1). The diff
is attached to this message. I plan to upload it later today, as the
bug is quite old and there were no reactions from the maintainer since
the beginning.

Regards.

-- 
Mehdi Dogguy
diff -Nru leptonlib-1.68/debian/changelog leptonlib-1.68/debian/changelog
--- leptonlib-1.68/debian/changelog	2011-04-14 07:30:34.0 +0200
+++ leptonlib-1.68/debian/changelog	2011-12-07 12:28:05.0 +0100
@@ -1,3 +1,11 @@
+leptonlib (1.68-4.1) unstable; urgency=high
+
+  * Non-maintainer upload.
+  * Remove libwebp0 from libleptonica's Depends field, as it is added
+automatically in ${shlibs:Depends} (Closes: #649786).
+
+ -- Mehdi Dogguy me...@debian.org  Wed, 07 Dec 2011 12:25:37 +0100
+
 leptonlib (1.68-4) unstable; urgency=low
 
   * Add webp support
@@ -83,4 +91,3 @@
   * Initial Release.
 
  -- Jeff Breidenbach j...@debian.org  Tue, 27 Jun 2006 14:50:37 -0700
-
diff -Nru leptonlib-1.68/debian/control leptonlib-1.68/debian/control
--- leptonlib-1.68/debian/control	2011-04-14 07:18:12.0 +0200
+++ leptonlib-1.68/debian/control	2011-12-07 12:25:24.0 +0100
@@ -26,7 +26,7 @@
 Package: libleptonica
 Section: libs
 Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, libtiff4 (= 3.7.4), libpng12-0, libgif4 (= 4.1.6), libwebp0
+Depends: ${shlibs:Depends}, ${misc:Depends}, libtiff4 (= 3.7.4), libpng12-0, libgif4 (= 4.1.6)
 Description: image processing library
  Well-tested C library for some basic image processing operations,
  along with a description of the functions and some design methods. A


Bug#651296: uninstallable on kfreebsd-amd64

2011-12-07 Thread Robert Millan
Package: ntfs-config
Version: 1.0.1-9
Severity: grave
Tags: patch
User: debian-...@lists.debian.org
Usertags: kfreebsd

Due to dependency on udev (see attached patch)

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

Kernel: kFreeBSD 8.1-1-amd64
Locale: LANG=ca_AD.UTF-8, LC_CTYPE=ca_AD.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
=== modified file 'debian/control'
--- debian/control  2011-12-07 13:42:07 +
+++ debian/control  2011-12-07 13:43:45 +
@@ -11,9 +11,9 @@ XB-Python-Version: ${python:Versions}
 Homepage: http://flomertens.free.fr/ntfs-config/
 
 Package: ntfs-config
-Architecture: any
+Architecture: linux-any kfreebsd-any
 Depends: ${shlibs:Depends}, ${misc:Depends}, ntfs-3g, ${python:Depends},
- udev, python-glade2
+ udev [linux-any], python-glade2
 Suggests: disk-manager
 XB-Python-Version: ${python:Versions}
 Description: Enable/disable write support for any NTFS devices



Bug#629480: dpkg: Add support for Build-Depends-Arch and Build-Conflicts-Arch

2011-12-07 Thread Roger Leigh
On Sun, Nov 13, 2011 at 04:53:07PM -0600, Jonathan Nieder wrote:
 Roger Leigh wrote:
 
  New version attached.  It includes your changes, plus the
  documentation fixes you suggested.
 
 Looks good to me.

Super.  If you need anything further, I'll be happy to do more
work on it.  If not, do you know when this might be applied?
(I'm just working on implementing support for it in sbuild, so
was just wanting to know what sort of timeframe we would need
before enabling it.  On the sbuild side, it's now done and just
needs testing.)


Thanks,
Roger

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



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



Bug#651297: uninstallable on kfreebsd-amd64

2011-12-07 Thread Robert Millan
Package: apparmor
Version: 2.7.0~beta1+bzr1774-1
Severity: grave
User: debian-...@lists.debian.org
Usertags: kfreebsd

The binary packages provided by apparmor are uninstallable on
kfreebsd-amd64 because of their dependency on initramfs-tools.

As per their description they appear to be Linux-specific.  If
that's the case, you can fix this bug by simply setting their
Architecture field to linux-any.

Afterwards an ANAIS bug needs to be filed in ftp.debian.org
to request removal of kfreebsd-* and hurd-* binaries.

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

Kernel: kFreeBSD 8.1-1-amd64
Locale: LANG=ca_AD.UTF-8, LC_CTYPE=ca_AD.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash



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



Bug#651298: gosa-schema deploys NO schema files at all.

2011-12-07 Thread Arnoldas Katinas
Package: gosa-schema
Version: 2.6.11-3
Severity: normal

gosa-schema deploys NO schema files, which are needed to run gosa tool.

# dpkg -L gosa-schema
/etc/ldap/schema/gosa/goto.schema
/etc/ldap/schema/gosa/gosystem.schema
/etc/ldap/schema/gosa/rfc2307bis.schema
/etc/ldap/schema/gosa/goserver.schema
/etc/ldap/schema/gosa/gosa-samba3.schema
/etc/ldap/schema/gosa/trust.schema
/etc/ldap/schema/gosa/gofon.schema
/etc/ldap/schema/gosa/gofax.schema
/etc/ldap/schema/gosa/samba3.schema
/etc/ldap/schema/gosa/goto-mime.schema

But:
# ls -l /etc/ldap/schema/gosa
total 0



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

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



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



Bug#637430: Fwd: Re: Bug#637430: Licensed only to individuals; not distributable by us?

2011-12-07 Thread Steffen Möller
Hello, I have learned that upstream is in the process to switch
to a free license. It will all be fine.

Thanks to Andreas for his help in getting this information out of me

 Steffen

On Thu, Aug 11, 2011 at 01:39:20PM +0200, Steffen Möller wrote:
 Please accept the packages for now. I will be in San Diego for two days
 meeting them in October. We get this somehow fixed.
 ...




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



Bug#645729: gtk3 problem ... time to upload :-)

2011-12-07 Thread Osamu Aoki
Hi,

I checked BTS and find many bug report caused by this bug.  I see this
fixed in git.  I did BTS cleanup (forcemerge).  Also removed
README.source to fix #645728.  Since this is causeing big problem, this
package needs quick update.

I added README.Debian for #600414

I am pushing this to git.

642317 seems to be only important bug to fix.

If I fix this one (or confirm this to be fixed), I will upload while
adding me to uploader.  I hope this is OK.

Osamu



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



Bug#578387: How can we move this forward?

2011-12-07 Thread Shane Kerr
All,

I see that Eric has uploaded this to the mentors.debian.net site some
time ago. How can we get this included into Debian? Should we ask for a
sponsor on the mentors mailing list or...?

--
Shane




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



Bug#651299: Installation-report: ASUS Squeeze

2011-12-07 Thread Niels Thykier
Package: installation-reports




-- Package-specific info:

Boot method: USB pen with NetInst CD
Image version: 
http://cdimage.debian.org/cdimage/unofficial/non-free/cd-including-firmware/current/amd64/iso-cd/firmware-6.0.3-amd64-netinst.iso
 (Last-Modified: 08-Oct-2011 21:53)
Date: 07-Dec 2011

Machine: ASUS U36JC-RX231V
Partitions:
df -Tl:
df -Tl:Filesystem  Type  1K-blocksUsed Available Use% Mounted on
df -Tl:/dev/sda1   xfs97607104 1631292  95975812   2% /
df -Tl:tmpfs   tmpfs  5120   0  5120   0% /lib/init/rw
df -Tl:tmpfs   tmpfs384676 316384360   1% /run
df -Tl:udevtmpfs   1917228   0   1917228   0% /dev
df -Tl:tmpfs   tmpfs769348   0769348   0% /run/shm
df -Tl:/dev/mapper/private xfs 9754620   38428   9716192   1% 
/encrypted/local
df -Tl:/dev/sda3   xfs   371016704   59236 370957468   1% /home


Base System Installation Checklist:
[O] = OK, [E] = Error (please elaborate below), [ ] = didn't try it
[I] = extra information

Initial boot:   [E]
Detect network card:[O]
Configure network:  [O]
Detect CD:  [O]
Load installer modules: [O]
Detect hard drives: [O]
Partition hard drives:  [I]
Install base system:[O]
Clock/timezone setup:   [O]
User/password setup:[O]
Install tasks:  [O]
Install boot loader:[O]
Overall install:[O]

Comments/Problems:

I used the expert (non-GUI) install.

I originally overlooked the configure encrypted volumes (after
initial partition).  It would have been nice if the installer had
warned me about this, though I noticed myself a while later[1] and
corrected this issue (after base install and bootloader setup).


On the first couple of boots I got an error because my encrypted
volumes were not decrypted.  Luckily they were not critical to
booting, so I could continue the boot without these volumes.
  The issue turned out to be cryptsetup, which had not been installed.
This might have been due to not configuring the encrypted volumes
before installing the base system, though I honestly do not know.

Finally, this report was sent after upgrading the system into a
Wheezy/sid environment and further manually tweaking.  :)

I have yet to test my wireless beyond dhcp, but so far it appears to
be working.  :)

Tasks installed: laptop and the standard system utilities.
Bootloader: grub

[1] I lazily read from installation guide during the installation. :)

http://www.debian.org/releases/stable/amd64/index

-- 

==
Installer lsb-release:
==
DISTRIB_ID=Debian
DISTRIB_DESCRIPTION=Debian GNU/Linux installer
DISTRIB_RELEASE=6.0 (squeeze) - installer build 20110106+squeeze3+b1
X_INSTALLATION_MEDIUM=hd-media

==
Installer hardware-summary:
==
uname -a: Linux mangetsu 2.6.32-5-amd64 #1 SMP Mon Oct 3 03:59:20 UTC 2011 
x86_64 GNU/Linux
lspci -knn: 00:00.0 Host bridge [0600]: Intel Corporation Core Processor DRAM 
Controller [8086:0044] (rev 18)
lspci -knn: Subsystem: ASUSTeK Computer Inc. Device [1043:1c77]
lspci -knn: Kernel driver in use: agpgart-intel
lspci -knn: 00:01.0 PCI bridge [0604]: Intel Corporation Core Processor PCI 
Express x16 Root Port [8086:0045] (rev 18)
lspci -knn: Kernel driver in use: pcieport
lspci -knn: 00:02.0 VGA compatible controller [0300]: Intel Corporation Core 
Processor Integrated Graphics Controller [8086:0046] (rev 18)
lspci -knn: Subsystem: ASUSTeK Computer Inc. Device [1043:1542]
lspci -knn: 00:16.0 Communication controller [0780]: Intel Corporation 5 
Series/3400 Series Chipset HECI Controller [8086:3b64] (rev 06)
lspci -knn: Subsystem: ASUSTeK Computer Inc. Device [1043:1c77]
lspci -knn: 00:1a.0 USB Controller [0c03]: Intel Corporation 5 Series/3400 
Series Chipset USB2 Enhanced Host Controller [8086:3b3c] (rev 06)
lspci -knn: Subsystem: ASUSTeK Computer Inc. Device [1043:1c77]
lspci -knn: Kernel driver in use: ehci_hcd
lspci -knn: 00:1b.0 Audio device [0403]: Intel Corporation 5 Series/3400 Series 
Chipset High Definition Audio [8086:3b56] (rev 06)
lspci -knn: Subsystem: ASUSTeK Computer Inc. Device [1043:10b3]
lspci -knn: 00:1c.0 PCI bridge [0604]: Intel Corporation 5 Series/3400 Series 
Chipset PCI Express Root Port 1 [8086:3b42] (rev 06)
lspci -knn: Kernel driver in use: pcieport
lspci -knn: 00:1c.1 PCI bridge [0604]: Intel Corporation 5 Series/3400 Series 
Chipset PCI Express Root Port 2 [8086:3b44] (rev 06)
lspci -knn: Kernel driver in use: pcieport
lspci -knn: 00:1c.2 PCI bridge [0604]: Intel Corporation 5 Series/3400 Series 
Chipset PCI Express Root Port 3 [8086:3b46] (rev 06)
lspci -knn: Kernel driver in use: pcieport
lspci -knn: 00:1c.3 PCI bridge [0604]: Intel Corporation 5 Series/3400 Series 
Chipset PCI Express Root Port 4 [8086:3b48] (rev 

Bug#651300: mm_malloc.h:31: error: static declaration of '_aligned_malloc' follows non-static declaration

2011-12-07 Thread Mathieu Malaterre
Package: gcc-mingw32
Version: 4.4.4-0.1+b1
Severity: important


Hi,

I cannot compile openjpeg using mingw-64, it fails with:

[ 22%] Building C object libopenjpeg/CMakeFiles/openjpeg.dir/mct.c.obj
In file included from 
/usr/lib/gcc/amd64-mingw32msvc/4.4.4/include/xmmintrin.h:39,
 from /home/ctest/Dashboards/My 
Tests/openjpeg-b15/libopenjpeg/mct.c:33:
/usr/lib/gcc/amd64-mingw32msvc/4.4.4/include/mm_malloc.h:31: error: static 
declaration of '_aligned_malloc' follows non-static declaration
/usr/lib/gcc/amd64-mingw32msvc/4.4.4/../../../../amd64-mingw32msvc/include/stdlib.h:416:
 note: previous declaration of '_aligned_malloc' was here
../usr/lib/gcc/amd64-mingw32msvc/4.4.4/include/mm_malloc.h:68: error: static 
declaration of '_aligned_free' follows non-static declaration
/usr/lib/gcc/amd64-mingw32msvc/4.4.4/../../../../amd64-mingw32msvc/include/stdlib.h:415:
 note: previous declaration of '_aligned_free' was here
[ 24%] Building C object libopenjpeg/CMakeFiles/openjpeg.dir/mqc.c.obj


Thanks !

-- System Information:
Debian Release: 6.0.1
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable'), (200, 'testing'), (100, 
'unstable')
Architecture: amd64 (x86_64)

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

Versions of packages gcc-mingw32 depends on:
ii  libc6 2.11.2-10  Embedded GNU C Library: Shared lib
ii  libgmp3c2 2:4.3.2+dfsg-1 Multiprecision arithmetic library
ii  libmpfr4  3.1.0-3multiple precision floating-point 
ii  mingw32-binutils  2.20-0.1   Minimalist GNU win32 (cross) binut

Versions of packages gcc-mingw32 recommends:
ii  mingw-w64   0~20100125-3 Minimalist GNU w64 (cross) runtime
ii  mingw32-runtime 3.13-1   Minimalist GNU win32 (cross) runti

Versions of packages gcc-mingw32 suggests:
pn  cpp-doc   none (no description available)
ii  gcc-doc   5:3documentation for the GNU compiler

-- no debconf information



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



Bug#645729: [Pkg-ime-devel] Bug#645729: gtk3 problem ... time to upload :-)

2011-12-07 Thread Asias He
On Wed, Dec 7, 2011 at 10:12 PM, Osamu Aoki os...@debian.org wrote:
 Hi,

 I checked BTS and find many bug report caused by this bug.  I see this
 fixed in git.  I did BTS cleanup (forcemerge).  Also removed
 README.source to fix #645728.  Since this is causeing big problem, this
 package needs quick update.

 I added README.Debian for #600414

 I am pushing this to git.

 642317 seems to be only important bug to fix.

 If I fix this one (or confirm this to be fixed), I will upload while
 adding me to uploader.  I hope this is OK.

Hi, Osamu

Thanks for you work! Please go ahead.
Sorry for inactive, I am super busy with my degree.
-- 
Asias He



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



Bug#587895: sssd: Fail to save debug logs when debugging is enabled in sssd.conf

2011-12-07 Thread Ana Guerrero
tags 587895 patch
thanks

On Fri, Jul 02, 2010 at 01:57:53PM +0200, Petter Reinholdtsen wrote:
 Package: sssd
 Version: 1.2.1-1
 
 When trying to enable debug output from sssd by adding debug_level = 3
 in the domain/INTERN section, the debug setting is ignored and no
 logging show up in /var/log/sssd/.
 
 Looking at the sssd processes running, they all got '-d 0', which
 contradicts the -d 3 setting I expected.
 
 Something is wrong somewhere, and we should fix it.

This change solves the problem.

--- sssd.init.orig  2011-12-07 15:23:33.718549470 +0100
+++ sssd.init   2011-12-07 15:17:43.0 +0100
@@ -32,7 +32,7 @@
 # and status_of_proc is working.
 . /lib/lsb/init-functions
 
-if [ -f /etc/default/sssd ] ; then
+if [ -x /etc/default/sssd ] ; then
 . /etc/default/sssd
 fi
 

Ana



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



Bug#649491: Bug#651032: /usr/sbin/rpc.idmapd: rpc.idmapd referring to none existing library

2011-12-07 Thread Rares Aioanei

I can confirm the problem as solved with 0.25-1. Thank you.



--
Rares Aioanei




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



Bug#651301: clang debian detection is broken - clang fails to link executables - missing path to crt?.o files

2011-12-07 Thread rgareus
Package: clang
Version: 2.9-16
Severity: important


in short: changing /etc/debian_version from '6.0.3' to 'wheezy/sid'
works around the problem.

long story:

$clang -v -o test test.o
Debian clang version 2.9-16 (tags/RELEASE_29/final) (based on LLVM 2.9)
Target: i386-pc-linux-gnu
Thread model: posix
 /usr/bin/ld --eh-frame-hdr -m elf_i386 -dynamic-linker
/lib/ld-linux.so.2 -o test crt1.o crti.o
/usr/lib/gcc/i486-linux-gnu/4.6.1/crtbegin.o
-L/usr/lib/gcc/i486-linux-gnu/4.6.1
-L/usr/lib/gcc/i486-linux-gnu/4.6.1/../../.. test.o -lgcc --as-needed
-lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed
/usr/lib/gcc/i486-linux-gnu/4.6.1/crtend.o crtn.o
 /usr/bin/ld: error: cannot open crt1.o: No such file or directory
 /usr/bin/ld: error: cannot open crti.o: No such file or directory
 /usr/bin/ld: error: cannot open crtn.o: No such file or directory
 clang: error: linker command failed with exit code 1 (use -v to see
invocation)


Problem: getToolChain().GetFilePath(crt1.o) etc in
clang-2.9/tools/clang/lib/Driver/ Tools.cpp, ToolChains.cpp
does return an empty path because '6.0.3' is not included in
ToolChain.cpp.

workaround: change /etc/debian_version to 'wheezy/sid' and the
problem dissapears.

Note that, 'squeeze/sid' does not work either. It results in an empty
path for crt?.o as well.


-- System Information:
Debian Release: 6.0.3
  APT prefers stable
  APT policy: (700, 'stable'), (500, 'testing'), (300, 'unstable')
Architecture: i386 (i686)

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

Versions of packages clang depends on:
ii  libc6 2.13-21Embedded GNU C Library: Shared lib
ii  libffi5   3.0.9-3Foreign Function Interface library
ii  libgcc1   1:4.6.2-5  GCC support library
ii  libllvm2.92.9+dfsg-4 Low-Level Virtual Machine (LLVM), 
ii  libstdc++64.6.2-5GNU Standard C++ Library v3
ii  libstdc++6-4.6-dev4.6.2-5GNU Standard C++ Library v3 (devel

Versions of packages clang recommends:
ii  llvm-2.9-dev2.9+dfsg-4   Low-Level Virtual Machine (LLVM), 
ii  python  2.6.6-3+squeeze6 interactive high-level object-orie

clang suggests no packages.

-- no debconf information



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



Bug#651302: RM: multicd -- RoQA; Outdated, RC bugy, better solutions exist

2011-12-07 Thread Alexander Reichle-Schmehl
Package: ftp.debian.org
Severity: normal

Hi!

Reasons for the removal:

 * Last maintainer upload was 2004
 * RC bugy sinde over a year (bug was open since 2007 but only bump to
   serious a year ago)
 * Quite low popcon (for a backup software)
 * limited to CDs, no support for other media
 * If I understand correctly no support to split files over several media,
   if they don't fit
 * Not part of last stable release
 * We have plenty of other backup solutions


Best regards,
  Alexander

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

Kernel: Linux 2.6.32-5-xen-686 (SMP w/1 CPU core)
Locale: LANG=de_DE@euro, LC_CTYPE=de_DE@euro (charmap=ISO-8859-15) (ignored: 
LC_ALL set to de_DE@euro)
Shell: /bin/sh linked to /bin/bash



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



Bug#651205: tumgreyspf: Please include upstream fix for accepting mail when SPF record has an error

2011-12-07 Thread Thomas Goirand
On 12/07/2011 01:58 AM, Henrik Stoerner wrote:
 Package: tumgreyspf
 Version: 1.35-7
 Severity: wishlist
 
 tumgreyspf 1.35 (current version in Debian) causes mail to be rejected, if 
 the 
 sender-domain has an invalid SPF record (SPF check returns a Permerror).
 This can cause valid mail to be rejected.
 
 In version 1.36, released a couple of weeks ago, this was changed so it is
 now configurable what tumgreyspf should do in the case of invalid SPF records,
 and the default was set to accept mail when that is the case.
 
 I would suggest this change be included in a future Debian release, and 
 hopefully
 as an update to Squeeze. The attached patch is taken directly from a diff 
 between
 version 1.35 and the new 1.36, and will implement this change.

Hi,

Thanks for this bug report. I'm well aware of that, as I was one of the
persons making the version 1.36 happen. The patch was sent to me, and I
got it forwarded to upstream. Releasing version 1.36 is in my todo list
(and if you want to help, I'll happily accept, I could also move the Git
packaging repository in colab-maint).

However, and not related with the topic to package (or not) version
1.36, I cannot agree with this statement:

 This can cause valid mail to be rejected.

A mail sent from a domain with an SPF entry with a Permerror cannot
reasonably be called a valid mail. It's really a badly configured mail
server that we are talking about.

The only reason why one might sometimes want this to be accepted is
because there are some bad administrator out there doing really badly
their jobs, and because it might not always be easy to have them to
modify their configuration to make it valid (which would still be the
correct thing to do, always!).

Cheers,

Thomas Goirand (zigo)



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



Bug#633034: nfs-utils: /run transition: Please switch to /run/sendsigs.omit.d

2011-12-07 Thread Ben Hutchings
On Wed, 2011-12-07 at 09:52 +, Roger Leigh wrote:
 tags 633034 + patch
 thanks
 
 On Thu, Jul 07, 2011 at 11:33:01PM +0100, Roger Leigh wrote:
  Source: nfs-utils
  Version: 1:1.2.3-3
  Severity: important
  
  Your package is currently using/lib/init/rw/sendsigs.omit.d
  which is now deprecated and pending removal.  Please update your
  package to use /run/sendsigs.omit.d with a versioned dependency
  on initscripts, as detailed below.
 
 Patch against current git attached.

I would be quite happy for you to do the NMU if you've tested the
result.  Anibal, Luk, any objection to that?

Ben.

-- 
Ben Hutchings
Absolutum obsoletum. (If it works, it's out of date.) - Stafford Beer


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


Bug#649476: fop: Failure confirmed with 1:1.0.dfsg2-3 but not with 1:0.95.dfsg-11

2011-12-07 Thread Vincent Hobeika
Package: fop
Severity: normal

Dear Raphaël,

I have tested your issue with 1:1.0.dfsg2-3 and 1:0.95.dfsg-11.

I confirm this bug for 1:1.0.dfsg2-3. However on 1:0.95.dfsg-11 I was
able to produce the User Guide.pdf without any problem.

I have started a thread on fop users mailing list. We are trying to
find the defective snippet but it's quite hard due to the heavy file
size.

Do you have a diff of the User Guide.fo from where it started to fail building?

From what comes out so far it seems that using fo:inline within a
fo:block with hyphenate=true linefeed-treatment=preserve throws a
NullPointerException.

This bug is probably related to #48806 [1] and #46386 [2].

[1] https://issues.apache.org/bugzilla/show_bug.cgi?id=48806
[2] https://issues.apache.org/bugzilla/show_bug.cgi?id=46386

Best regards,

-- System Information:
Debian Release: 6.0.3
  APT prefers stable
  APT policy: (500, 'stable'), (200, 'testing'), (100, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-5-amd64 (SMP w/16 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 fop depends on:
ii  gcj-4.4-jre-headl 4.4.5-2Java runtime environment using GIJ
ii  gcj-jre-headless  4:4.4.5-1  Java runtime environment using GIJ
ii  java-wrappers 0.1.16 wrappers for java executables
ii  libavalon-framewo 4.2.0-7Common framework for Java server a
ii  libbatik-java 1.7-6  xml.apache.org SVG Library
ii  libbsf-java   1:2.4.0-4  Bean Scripting Framework to suppor
ii  libcommons-io-jav 1.4-3  Common useful IO related classes
ii  libcommons-loggin 1.1.1-8commmon wrapper interface for seve
ii  libxalan2-java2.7.1-5XSL Transformations (XSLT) process
ii  libxerces2-java   2.9.1-4.1  Validating XML parser for Java wit
ii  libxml-commons-ex 1.3.05-2   XML Commons external code - DOM, S
ii  libxmlgraphics-co 1.3.1.dfsg-5   reusable components used by Batik
ii  libxp61:1.0.0.xsf1-2 X Printing Extension (Xprint) clie
ii  libxt61:1.0.7-1  X11 toolkit intrinsics library
ii  libxtst6  2:1.1.0-3  X11 Testing -- Record extension li
ii  openjdk-6-jre-hea 6b18-1.8.10-0+squeeze2 OpenJDK Java runtime, using Hotspo
ii  sun-java6-jre [ja 6.26-0squeeze1 Sun Java(TM) Runtime Environment (

Versions of packages fop recommends:
ii  libsaxon-java 1:6.5.5-6  The Saxon XSLT Processor

Versions of packages fop suggests:
pn  fop-doc   none (no description available)
pn  libservlet2.4-javanone (no description available)

-- no debconf information



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



  1   2   3   4   >