Bug#533023: fix

2011-11-18 Thread Peter van Dijk
Hello,

reproduced upstream. Here is a version of the patch that actually applies:
diff --git a/pdns/resolver.cc b/pdns/resolver.cc
index d3fc8ae..4263465 100644
--- a/pdns/resolver.cc
+++ b/pdns/resolver.cc
@@ -185,6 +185,8 @@ static int parseResult(MOADNSParser& mdp, const 
std::string& origQname, uint16_t
   rr.priority = atoi(parts[0].c_str());
   if(parts.size() > 1)
 rr.content=parts[1];
+  else
+rr.content=".";
 } else if(rr.qtype.getCode() == QType::SRV) {
   rr.priority = atoi(rr.content.c_str());
   vector > fields;


This patch will go into upstream SVN shortly.

Kind regards,
Peter van Dijk


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



Bug#649146: debootstrap: bootstrapping squeeze with the fakechroot variant leads to nested fakeroot usage

2011-11-18 Thread Michael Gilbert
package: debootstrap
version: 1.0.37
severity: important

Hi,

debootstrapping squeeze with the fakechroot variant leads to a nested
usage of fakeroot.  For example

$ fakeroot fakechroot /usr/sbin/debootstrap --variant=fakechroot
squeeze --verbose ./squeeze-fakechroot
[...]
I: Extracting xz-utils...
I: Extracting zlib1g...
I: Installing core packages...
W: Failure trying to run: chroot
/media/newhd/chroots/squeeze-fakechroot dpkg --force-depends --install
/var/cache/apt/archives/base-files_6.0squeeze3_amd64.deb
/var/cache/apt/archives/base-passwd_3.5.22_amd64.deb

The tail of squeeze-fakechroot/debootstrap/debootstrap.log contains
the following:

fakeroot: FAKEROOTKEY set to 1661226400
fakeroot: nested operation not yet supported

Note that bootstrapping sid seems to be ok with the same command

$ fakeroot fakechroot /usr/sbin/debootstrap --variant=fakechroot sid
--verbose ./sid-fakechroot
[ok]

Thanks for looking into this.

Best wishes,
Mike



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



Bug#649127: network-manager wrongly reports "disconnected" state

2011-11-18 Thread Michael Tokarev
Um.  I haven't realized that it is possible to just stop
networkManager process (and disable it in /etc/rc?.d/)
in order to restore the functionality back, -- after
stopping it, all applications which were previously
refusing doing anything starts working again (What a
nice feature it is, NetworkManager!..)

So indeed, the severity of this bug may be lowered.

Now, after stopping nm, I realized it ruined my
/etc/resolv.conf with some non-trivial sorting
rules in it, replacing it with a file with just
one comment line -- "# generated by NM".  So I
had to resort to restoring that file from a
backup.

So it looks like NM does good job at _ruining_
network.

Note that the bridge setup becomes more and more
common, with more and more people discovering
virtualisation technologies.

Thanks,

/mjt



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



Bug#648873: [Pkg-fonts-devel] Bug#648873: cm-super: Please drop defoma support

2011-11-18 Thread Christian PERRIER
Quoting Norbert Preining (prein...@logic.at):

> > That's indeed why, IIRC, I didn't use defoma-app in the proposed patch...
> 
> Now, but up to 0.3.4-3 there was a call to dh_installdefoma.

Ah. I didn't went through the package history..:-)

> 
> So history:
> up to 0.3.4-3:dh_installdefoma called
> 0.3.4-4: dh_installdefoma call removed, rm_conffile /e/defoma/hints/... 
> called.
> 
> I am not sure now what has do be done? Do we still call something
> to completely clean defoma? Does the call
>   dpkg-maintscript-helper rm_conffile 
> /etc/defoma/hints/cm-super-x11.hints 0.3.4-3 -- "$@"
> suffice for what has to be done?


Something like this in postinst would be good:

if dpkg --compare-versions "$2" lt 0.3.4-4; then
if [ -x "which defoma-app 2>/dev/null" ]; then
defoma-app purge cm-super-x11
fi
fi


Paul (Wise), you often have good advices and often correct me on these
things, so please confirm!




signature.asc
Description: Digital signature


Bug#649147: /usr/bin/mawk: mawk function substr do not work correctly

2011-11-18 Thread Frank Sell
Package: mawk
Version: 1.3.3-15
Severity: normal
File: /usr/bin/mawk


Indexing of substr in mawk is not correct

date +"%y-%m-%d %H:%M:%S" | mawk '{ printf ("%s %s\n", $2, substr($2, 0, 5)) }'
08:57:41 08:5

gawk is korrekt

date +"%y-%m-%d %H:%M:%S" | gawk '{ printf ("%s %s\n", $2, substr($2, 0, 5)) }'
08:57:33 08:57

-- 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/2 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

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

mawk recommends no packages.

mawk 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#649148: e2fsprogs: dpkg error when bootstrapping with the fakechroot variant

2011-11-18 Thread Michael Gilbert
package: initscripts
version: 2.88dsf-13.13
severity: important

Hi,

bootstrapping using the fakechroot variant leads to a dpkg error when
setting up initscripts.  For example

$ export PATH="/bin:/usr/bin:/sbin:/usr/sbin"
$ fakeroot fakechroot /usr/sbin/debootstrap --variant=fakechroot
--verbose sid ./sid
Setting up mount (2.19.1-5) ...
Setting up initscripts (2.88dsf-13.13) ...
mount: permission denied
dpkg: error processing initscripts (--configure):
 subprocess installed post-installation script returned error exit status 1

Best wishes,
Mike



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



Bug#649146: debootstrap: bootstrapping squeeze with the fakechroot variant leads to nested fakeroot usage

2011-11-18 Thread Michael Gilbert
On Fri, Nov 18, 2011 at 3:06 AM, Michael Gilbert wrote:
> package: debootstrap
> version: 1.0.37
> severity: important
>
> Hi,
>
> debootstrapping squeeze with the fakechroot variant leads to a nested
> usage of fakeroot.

It may be that the fix for #588773 wasn't quite right as the following
gets a segfault instead of the nested fakeroot error:

$ export PATH="/sbin:/usr/sbin:/bin:/usr/bin"
$ fakeroot fakechroot /usr/sbin/debootstrap --variant=fakechroot
--verbose squeeze ./squeeze
[...]
I: Installing core packages...
W: Failure trying to run: chroot /home/zero79/tmp/squeeze dpkg
--force-depends --install
/var/cache/apt/archives/base-files_6.0squeeze3_amd64.deb
/var/cache/apt/archives/base-passwd_3.5.22_amd64.deb

Tail of debootstrap.log:

Segmentation fault



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



Bug#649149: icedtea-plugin: "Standard dialog font not defined" with some Java Applets

2011-11-18 Thread Carsten Aulbert
Package: icedtea-plugin
Version: 1.1.4-1
Severity: important

Dear Maintainer,

When opening certain web pages (e.g. at least one commercial digital
contorl system and also a Lotus Notes web server app) a pop-up window
opens (both with iceweasel and chromium) telling me about font problems:

"
Error in DML-start of tag  --> Resource not found: 
!Fonts/helvR10.dmlfnt
"
followed by the same line and different font files:
helv{R12,B12,B14,R18}.dmlfnt as well as cour{r,B}14.dmlfnt.

Then
"
Standard dialog font not defined!
java.lang.IllegalStateException: Standard dialog font not defined!
"

This message is repeated over and over and no output appears in the
applet. On the command line iceweasel tells me:

"
java version "1.6.0_23"
OpenJDK Runtime Environment (IcedTea6 1.11pre) (6b23~pre11-1)
OpenJDK 64-Bit Server VM (build 20.0-b11, mixed mode)
DML-Read thread is running...
Ping thread is running...
Resource not found: Fonts/helvR10.dmlfnt
Resource not found: Fonts/helvR12.dmlfnt
Resource not found: Fonts/helvB12.dmlfnt
Resource not found: Fonts/helvB14.dmlfnt
Resource not found: Fonts/helvR18.dmlfnt
Resource not found: Fonts/courR14.dmlfnt
Resource not found: Fonts/courB14.dmlfnt
Ping thread is terminating...
java.lang.IllegalStateException: Standard dialog font not defined!
at 
de.kiebackpeter.ddc4000.uiclient.browser.BrowserApplet.handleData(BrowserApplet.java:606)
at 
de.kiebackpeter.ddc4000.uiclient.browser.ServerConnection$ReadThread.run(ServerConnection.java:234)
Logger-info: connectionLost()
"

As this worked fine while the old "sun-java" packages were still
installed, is this considred a regression?

Any idea how to fix this? Am I just missing some xfonts package? Which?

Cheers

Carsten

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

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

Versions of packages icedtea-plugin depends on:
ii  icedtea-netx1.1.4-1 
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.7-2 
ii  libgcc1 1:4.6.1-15  
ii  libgdk-pixbuf2.0-0  2.24.0-1
ii  libglib2.0-02.28.8-1
ii  libgtk2.0-0 2.24.7-1
ii  libpango1.0-0   1.29.4-2
ii  libstdc++6  4.6.1-15
ii  openjdk-6-jre   6b23~pre11-1

icedtea-plugin recommends no packages.

icedtea-plugin 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#649147: /usr/bin/mawk: mawk function substr do not work correctly

2011-11-18 Thread Jonathan Nieder
severity 649147 wishlist
tags 649147 + fixed-upstream
quit

Hi Frank,

Frank Sell wrote:

> date +"%y-%m-%d %H:%M:%S" | mawk '{ printf ("%s %s\n", $2, substr($2, 0, 5)) 
> }'
> 08:57:41 08:5

POSIX sayeth:

substr(s, m[, n ])

Return the at most n-character substring of s that begins at
position m, numbering from 1. If n is omitted, or if n
specifies more characters than are left in the string, the
length of the substring shall be limited by the length of the
string s.

So "substr($2, 1, 5)" is the portable way to express what you meant.

That said, some nonportable scripts in the wild also use the semantics
implied by your example.  Therefore Thomas wrote the following patch.

-- >8 --
From: Thomas E. Dickey 
Date: Sun, 26 Jul 2009 12:39:02 +
Subject: tweak workaround for scripts that use substr(0, i)

makewhatis from man 1.6f uses (incorrectly...) substr(0,RSTART-1), and
that leaves mawk with a -1 initial index which it _adds_ to the length
rather than subtracting (probably not what anyone would expect).
Change the logic to subtract - and just for luck, account for the "1".
---
Hope that helps,
Jonathan

 CHANGES|9 +++--
 bi_funct.c |   11 ---
 2 files changed, 15 insertions(+), 5 deletions(-)

diff --git a/CHANGES b/CHANGES
index 97f514b2..812e0d92 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,8 +1,13 @@
 -- $MawkId$
 
 Changes by Thomas E Dickey 
 
-20090725
+20090726
+   modify workaround for (incorrect) scripts which use a zero-parameter
+   for substr to ensure the overall length of the result stays the same.
+   For example, from makewhatis:
+   filename_no_gz = substr(filename, 0, RSTART - 1);
+
move regular-expression files into main directory to simplify building
using configure --srcdir and VPATH.
 
diff --git a/bi_funct.c b/bi_funct.c
index 7da2fbc2..9435aaff 100644
--- a/bi_funct.c
+++ b/bi_funct.c
@@ -10,7 +10,7 @@ the GNU General Public License, version 2, 1991.
 /
 
 /*
  * $MawkId$
  * @Log: bi_funct.c,v @
  * Revision 1.9  1996/01/14  17:16:11  mike
  * flush_all_output() before system()
@@ -258,12 +258,17 @@ bi_substr(CELL * sp)
 }
 i = d_to_i(sp[1].dval) - 1;/* i now indexes into string */
 
+/*
+ * Workaround in case someone's written a script that does substr(0,last-1)
+ * by transforming it into substr(1,last).
+ */
 if (i < 0) {
-   n += i;
+   n -= i + 1;
i = 0;
 }
-if (n > len - i)
+if (n > len - i) {
n = len - i;
+}
 
 if (n <= 0)/* the null string */
 {
-- 
1.7.8.rc2




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



Bug#549373: Netinstall from USB-stick fails due to kernel mismatch

2011-11-18 Thread Christoph Zuber
I have the same problem with debian-testing-amd64-netinst.iso.

Is there already a solution?

Regards
Chris






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



Bug#614458: freej - FTBFS (#614458)

2011-11-18 Thread Jaromil
On Sun, 13 Nov 2011, Moritz Mühlenhoff wrote:

> On Mon, Apr 25, 2011 at 06:58:48PM +0200, Jaromil wrote:
> > 
> > this is now all fixed and uploaded to
> > 
> > http://apt.dyne.org/debian/pool/main/f/freej/freej_0.11git20110420-1.dsc
> > 
> > my packaging is being reviewed and hopefully will serve as a base to
> > make me debian maintainer, since i'd really like to be able to fix
> > things by myself on packages for which i'm upstream developer.
> > 
> > if you have time for it, your support in my maintainer application is
> > very welcome.
> 
> What's the status? freej now has five release-critial bugs.

I recall having fixed bugs back then?

I'll look into the current bugs now.

thanks,
ciao

-- 
jaromil,  dyne.org developer,  http://jaromil.dyne.org
GPG: B2D9 9376 BFB2 60B7 601F 5B62 F6D3 FBD9 C2B6 8E39





signature.asc
Description: Digital signature


Bug#649150: ftp.debian.org: file sizes in i18n/Index are incorrect for testing and unstable

2011-11-18 Thread Eugene V. Lyubimkin
Package: ftp.debian.org
Severity: normal


... in stable they are fine.

Example:

ftp://ftp.debian.org/debian/dists/unstable/main/i18n/Index says
the size of 'Translation-fi' file is 96 bytes, while the file is surely
bigger.

In stable, the index file correctly says that size is 98747 bytes.

Please fix.



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



Bug#646774: cultivation: impossible to plant

2011-11-18 Thread Stephane Louise
> I am wondering if any
> users/porters have a powerpc machine with OpenGL acceleration (nouveau
> or other) that could test cultivation to see if they can reproduce this
> issue?

Seems to work for me on my PowerMac G5 quad (64 bit kernel
3.0.0-1-powerpc64 #1 SMP Sat Aug 27 21:04:49 UTC 2011 ppc64 GNU/Linux,
nVidia Corporation NV43 [GeForce 6600] (rev a2) )
AFAICT, accellerated OpenGL works mostly OK on this machine. Hard
freeze with Tux Cart, occasionnal hard freeze with some other OpenGL
applications but mostly OK.

The only graphic related bug is endianness color issue on the second screen.
Gnome 3 shell works (contrary to the R280 on my Mac mini, where fall
back mode is not even enabled by default).

Stéphane



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



Bug#583161: not a bug

2011-11-18 Thread Peter van Dijk
Hello,

this is not a bug. Queries to check for actual DNS wildcard records should, 
correctly, be of the form
  where name='*.srv.hostarium.com'

Note the documentation line "A wildcard query is an internal concept - it has 
no relation to *.domain-type lookups.". 

Debian administrator, I suggest closing this bug.

Kind regards,
Peter van Dijk


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



Bug#500572: not a bug

2011-11-18 Thread Peter van Dijk
Hello,

the DNS packet format is binary. There is no notion of inserting or not 
inserting a zero. What you are seeing is how dig decides to represent an 
address. Other DNS-servers have the same "issue".

I recommend closing this bug.

Kind regards,
Peter van Dijk (upstream maintainer)


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



Bug#648826: linux-image-3.1.0-1-amd64: can't load hdaps module

2011-11-18 Thread Salvo Tomaselli
> The hardware does, but noone has docs how to implement it.
> I would be glad to get some, but I fear this is out of scope here :(
> Does the E520 have a thinkpad embedded controller at all?
> What does `dmidecode|grep Embedded\ Controller` tell you?

No output, so no embedded controller..

-- 
Salvo Tomaselli


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


Bug#648873: [Pkg-fonts-devel] Bug#648873: cm-super: Please drop defoma support

2011-11-18 Thread Paul Wise
On Fri, 2011-11-18 at 07:02 +0100, Christian PERRIER wrote:

> Something like this in postinst would be good:
> 
> if dpkg --compare-versions "$2" lt 0.3.4-4; then
>   if [ -x "which defoma-app 2>/dev/null" ]; then
>   defoma-app purge cm-super-x11
>   fi
> fi
> 
> 
> Paul (Wise), you often have good advices and often correct me on these
> things, so please confirm!

H, my earlier advice seems to have been incorrect :(

For fonts you need to run this instead of defoma-app:

defoma-font purge-all /etc/defoma/hints/$PACKAGE.hints 

Obviously that does not work if the hints file is no longer available.

-- 
bye,
pabs

http://wiki.debian.org/PaulWise


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


Bug#649094: xapt: paths not fixed in libc.so in cross packages

2011-11-18 Thread Vincent Danjean

Le 17/11/2011 17:59, Hector Oron a écrit :

Hello Vincent,

On Thu, Nov 17, 2011 at 04:23:30PM +, Neil Williams wrote:


Vincent Danjean  wrote:



Package: xapt
Version: 2.2.17
Severity: normal



I see no need to fix this bug. You're re-inventing a script which
already exists in Debian and you are using outdated tools to do it.
It's a hiding to nothing and a completely wasted effort. Talk to the
debian-embedded people and maintainer of buildcross.

Right now, the only practical cross-compiler methods are all based on
stable. Everything in testing and unstable is just too broken to use.


I am also getting broken tri-arch cross compilers on mips(el):
   

I usually wget the package and dpkg-cross them with -M switch, that should
work around the issue and place the objects in the right place.


In my case, the objects where in the right place (/usr/mipsel...) but the
contents of the /usr/mipsel.../lib{32,64}/libc.so (that is a texte file)
was not correctly updated. They refer to /lib{32,64}/* objects

  Regards,
Vincent


When building multilib cross compiler, it would be very useful if cross ld
would pick up the right objects. If you find the way before I do, let me know.

Cheers,



--
Vincent Danjean  Adresse: Laboratoire d'Informatique de Grenoble
Téléphone:  +33 4 76 61 20 11ENSIMAG - antenne de Montbonnot
Fax:+33 4 76 61 20 99ZIRST 51, avenue Jean Kuntzmann
Email: vincent.danj...@imag.fr   38330 Montbonnot Saint Martin



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



Bug#627107: ITP: rtsadmin -- administration tool for managing LIO core target

2011-11-18 Thread Ritesh Raj Sarraf
Yes. It is targetcli. I'm on the last part, lio-utils.
Very soon will ping you guys.

sent fr0m a $martph0ne, excuse typ0s
On Nov 18, 2011 12:42 PM, "Jim Barber"  wrote:

> Also I noticed an announcment to the Linux-SCSI mailing list on the
> 20-Sep-2011 that RTSadmin was being renamed to targetcli.
> The GIT repository for RTSadmin was no longer being updated and that a
> new git://linux-iscsi.org/targetcli.git repository has been created
> instead.
> A link to the announcement is below.
>
>http://www.spinics.net/lists/linux-scsi/msg54586.html
>
> Does you experimental package take into account this fairly recent change?
>
> Regards,
>
> --
> Jim Barber
> DDI Health
>
>
>


Bug#635245: no longer reproducible

2011-11-18 Thread Christian Hilgers
Hi,

I do not know why, but the last two updates were OK, no
looping seen. As the update-manager-gnome did not change
I must be some dependency.

 LC_ALL=C dpkg -l update\*
Desired=Unknown/Install/Remove/Purge/Hold
|
Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ NameVersion Description
+++-===-===-==
ii  update-inetd4.40inetd configuration file updater
un  update-manager(no description available)
ii  update-manager- 0.200.5-2   APT update manager core
functionality
ii  update-manager- 0.200.5-2   GNOME application that manages
software update
ii  update-notifier 0.99.3debian10  Daemon which notifies about
package updates
ii  update-notifier 0.99.3debian10  Files shared between
update-notifier and adept
ii  update-notifier 1.2.4   update notifier for the KDE
Plasma Desktop


Anything else needed?

Christian
-- 
Christian Hilgers   ch...@familie-hilgers.com



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



Bug#648826: linux-image-3.1.0-1-amd64: can't load hdaps module

2011-11-18 Thread Evgeni Golov
On Fri, Nov 18, 2011 at 10:01:37AM +0100, Salvo Tomaselli wrote:
> > The hardware does, but noone has docs how to implement it.
> > I would be glad to get some, but I fear this is out of scope here :(
> > Does the E520 have a thinkpad embedded controller at all?
> > What does `dmidecode|grep Embedded\ Controller` tell you?
> 
> No output, so no embedded controller..

That's sad.
Do you have a Sandy-Bridge CPU? Lenovo killed half the controller in the 
T/X/W series coming with SB, I wouldn't wonder if that happened on 
Edge/E too.


-- 
Bruce Schneier can read and understand Perl programs.



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



Bug#629278: ITP: python-sphinx-aafig -- Embedded ASCII art figures in Sphinx documentations

2011-11-18 Thread Julien Cristau
On Sun, Jun  5, 2011 at 12:06:40 +0200, Nicolas CANIART wrote:

> Package: wnpp
> Severity: wishlist
> Owner: Nicolas CANIART 
> 
> * Package name: python-sphinx-aafig
>   Version : 1.0
>   Upstream Author : Leandro Lucarella 
> * URL : http://pypi.python.org/sphinxcontrib-aafig/
> * License : BOLA
>   Programming Lang: Python
>   Description : Embedded ASCII art figures in Sphinx documentations
> 
Hi Nicolas,

what's the status of this ITP?  Do you have a preliminary package
somewhere?

Thanks,
Julien
-- 
Julien Cristau  
Logilab http://www.logilab.fr/
Informatique scientifique & gestion de connaissances



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



Bug#649065: qpid-cpp: [INTL:nl] Dutch translation of debconf templates

2011-11-18 Thread Jeroen Schot
On Thu, Nov 17, 2011 at 09:39:47PM +0100, Christian PERRIER wrote:
> Quoting Jeroen Schot (sc...@a-eskwadraat.nl):
> > Attached is the Dutch translation of the qpid-cpp debconf templates.
> > Please include it in your next upload.
> 
> It was apparently based on an old version of templates. Could you
> update the attached file?

You are right, my apologies. Attached the update translation.

Thanks,
-- 
Jeroen Schot
# Dutch translation of qpid-cpp debconf templates.
# Copyright (C) 2011 THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the qpid-cpp package.
# Jeroen Schot , 2011.
#
msgid ""
msgstr ""
"Project-Id-Version: qpid-cpp 0.12-2\n"
"Report-Msgid-Bugs-To: qpid-...@packages.debian.org\n"
"POT-Creation-Date: 2011-11-04 07:26+0100\n"
"PO-Revision-Date: 2011-11-18 10:27+0100\n"
"Last-Translator: Jeroen Schot \n"
"Language-Team: Debian l10n Dutch \n"
"Language: nl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#. Type: password
#. Description
#: ../qpidd.templates:1001
msgid "Administrator password:"
msgstr "Beheerderswachtwoord:"

#. Type: password
#. Description
#: ../qpidd.templates:1001
msgid "Please enter the password for the Qpid daemon administrator."
msgstr ""
"Geef het wachtwoord voor de beheerder van de Qpid-achtergronddienst op."

#. Type: password
#. Description
#: ../qpidd.templates:2001
msgid "Re-enter password to verify:"
msgstr "Geef het wachtwoord ter controle nogmaals op:"

#. Type: password
#. Description
#: ../qpidd.templates:2001
msgid ""
"Please enter the same Qpid daemon administrator password again to verify "
"that you have typed it correctly."
msgstr ""
"Geef nogmaals het wachtwoord voor de beheerder van de Qpid-achtergronddienst "
"op om te controleren dat u het juist heeft getikt."

#. Type: note
#. Description
#: ../qpidd.templates:3001
msgid "Password input error"
msgstr "Fout bij invoer van wachtwoord"

#. Type: note
#. Description
#: ../qpidd.templates:3001
msgid "The two passwords you entered were not the same. Please try again."
msgstr ""
"De twee wachtwoorden die u heeft opgegeven zijn niet hetzelfde. Probeer het "
"nog eens."


Bug#605207: missing .so in check

2011-11-18 Thread Antonio Ospite
Package: check
Version: 0.9.8-1
Followup-For: Bug #605207

If the package maintainer does not have time for a proper fix which 
adds a .so, we can just make pkg-config return -lcheck_pic, see the 
attached patch.

'check' is needed by the next BlueZ version, which fails to 
build with the current 'check' Debian package with this error:

CCLD   unit/test-eir
/usr/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/4.6/../../../../lib/libcheck.a 
(check.o): relocation R_X86_64_32 against `.rodata.str1.1' can not be
used when making a shared object; recompile with -fPIC 
/usr/lib/gcc/x86_64-linux-gnu/4.6/../../../../lib/libcheck.a:
could not read symbols: Bad value collect2: ld returned 1 exit status
make[1]: *** [unit/test-eir] Error 1 make: *** [all] Error 2

Linking to libcheck_pic.a makes the compilation work again.

See http://thread.gmane.org/gmane.linux.bluez.kernel/18403

Regards,
   Antonio Ospite
   http://ao2.it

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

Kernel: Linux 3.2.0-rc2-ao2 (SMP w/1 CPU core)
Locale: LANG=it_IT.utf8, LC_CTYPE=it_IT.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages check depends on:
ii  dpkg  1.16.1.1  
ii  install-info  4.13a.dfsg.1-8

check recommends no packages.

check suggests no packages.

-- no debconf information
On Debian systems a libcheck_pic.a is generated for dynamic linking, expose 
that in the .pc file, to avoid errors like the following from BlueZ:

CCLD   unit/test-eir
/usr/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/4.6/../../../../lib/libcheck.a (check.o): relocation R_X86_64_32 against `.rodata.str1.1' can not be
used when making a shared object; recompile with -fPIC /usr/lib/gcc/x86_64-linux-gnu/4.6/../../../../lib/libcheck.a:
could not read symbols: Bad value collect2: ld returned 1 exit status
make[1]: *** [unit/test-eir] Error 1 make: *** [all] Error 2

See http://thread.gmane.org/gmane.linux.bluez.kernel/18403

Signed-off-by: Antonio Ospite 

---
 check.pc.in |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Index: check-0.9.8/check.pc.in
===
--- check-0.9.8.orig/check.pc.in
+++ check-0.9.8/check.pc.in
@@ -7,5 +7,5 @@
 Description: A unit test framework for C
 URL: http://check.sourceforge.net
 Version: @VERSION@
-Libs: -L${libdir} -lcheck
+Libs: -L${libdir} -lcheck_pic
 Cflags: -I${includedir}


Bug#649151: cdbs: documentation missing

2011-11-18 Thread Dennis van Dok (Software Engineer)
Package: cdbs
Version: 0.4.94ubuntu1
Severity: important

The cdbs package (up to the most recent version to date, 0.4.99) doesn't contain
any documentation. The upstream package contains docbook documentation, and 
there
is documentation on-line, but there should also be documentation included in the
binary package.


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

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

Versions of packages cdbs depends on:
ii  debhelper   8.9.0ubuntu1 helper programs for debian/rules
ii  dh-translations 104  debhelper extension for translatio
ii  python-scour0.26-1   SVG scrubber and optimizer

Versions of packages cdbs recommends:
ii  autotools-dev 20110511.1 Update infrastructure for config.{

Versions of packages cdbs suggests:
ii  devscripts 2.11.1ubuntu3 scripts to make the life of a Debi

-- 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#639875: fglrx-driver: xorg-video-abi-11

2011-11-18 Thread Sergei Stolyarov
Just tried to install and failed:

 fglrx-driver depends on xserver-xorg-core (<< 2:1.10.99); however:
  Version of xserver-xorg-core on system is 2:1.11.1.901-2.

Broken dependency server-xorg-core (<< 2:1.10.99)?
-- 
Sergei Stolyarov



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



Bug#495985: TCPDF license not DFSG suitable?

2011-11-18 Thread Jon Dowland
I've just taken a look at the TCPDF license[1]:

  "TCPDF is free software: you can redistribute it and/or modify it
  under the terms of the GNU Lesser General Public License as
  published by the Free Software Foundation, either version 3 of the
  License, or (at your option) any later version. Additionally, 
  YOU CAN'T REMOVE ANY TCPDF COPYRIGHT NOTICE OR LINK FROM THE 
  GENERATED PDF DOCUMENTS."

That last term looks pretty clearly unsuitable for Debian.




[1] http://www.tcpdf.org/license.php


-- 
Jon Dowland




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



Bug#646774: cultivation: impossible to plant

2011-11-18 Thread Paul Wise
On Fri, 2011-11-18 at 09:51 +0100, Stephane Louise wrote:

> Seems to work for me on my PowerMac G5 quad (64 bit kernel
> 3.0.0-1-powerpc64 #1 SMP Sat Aug 27 21:04:49 UTC 2011 ppc64 GNU/Linux,
> nVidia Corporation NV43 [GeForce 6600] (rev a2) )
> AFAICT, accellerated OpenGL works mostly OK on this machine. Hard
> freeze with Tux Cart, occasionnal hard freeze with some other OpenGL
> applications but mostly OK.
> 
> The only graphic related bug is endianness color issue on the second screen.
> Gnome 3 shell works (contrary to the R280 on my Mac mini, where fall
> back mode is not even enabled by default).

Did you try cultivation?

Normally the game looks like this:

http://screenshots.debian.net/screenshots/c/cultivation/1452_large.png

With the bug it looks like this:

http://bugs.debian.org/cgi-bin/bugreport.cgi?msg=20;filename=cultivation-starting-position.png;att=1;bug=646774

Note that there is no land, just lots of blue.

-- 
bye,
pabs

http://wiki.debian.org/PaulWise


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


Bug#648840: downgrade also works

2011-11-18 Thread Rémi Letot
Hello,

you can also downgrade to 3.2.1-2 while waiting for the fix.

HTH,
-- 
Rémi



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



Bug#561963: Bug#649103: RFP: jenkins -- An extendable open source continuous integration server

2011-11-18 Thread Olivier Berger
Hi.

FYI, I've filed a RFP for Jenkins, to distinguish from Hudon's even though much 
of the recent discutions in Hudson's seemed to be about Jenkins.

Feel free to forcemerge and recreate an RFP for Hudons separately, maybe ?

Best regards,

- Forwarded message from Olivier Berger  
-

Date: Thu, 17 Nov 2011 17:32:46 +0100
From: Olivier Berger 
To: Debian Bug Tracking System 
Subject: Bug#649103: RFP: jenkins -- An extendable open source continuous 
integration server
X-Mailer: reportbug 6.3

Package: wnpp
Severity: wishlist

* Package name: jenkins
* URL : http://jenkins-ci.org/
* License : The MIT License
  Programming Lang: Java
  Description : An extendable open source continuous integration server

There already exist a RFP for Hudson, which seems to be more oriented to 
Jenkins in recent discussions, but anyway, as the Hudson and Jenkins projects 
are supposed to be quite different since the fork, it may be necessary to 
distinguish the RFP/ITP for these, IMHO, so that it's quite explicit which is 
discussed.

See http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=561963 for the hudson RFP 
and more details.

Best regards,




- End forwarded message -

-- 
Olivier BERGER 
http://www-public.it-sudparis.eu/~berger_o/ - OpenPGP-Id: 2048R/5819D7E8
Ingenieur Recherche - Dept INF
Institut TELECOM, SudParis (http://www.it-sudparis.eu/), Evry (France)




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



Bug#566674: Fwd: Shoes Debian Package

2011-11-18 Thread Bram Senders
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

I haven't really used Shoes since _why left, but James Gifford has
expressed an interest in updating the Shoes package; see his message
below.

Cheers,
Bram

-  Original Message 
Subject: Shoes Debian Package
Date: Tue, 27 Sep 2011 19:45:27 -0400
From: James Gifford 
To: pau...@debian.org, b...@luon.net

Hello,

I'm interested in updating the shoes[1] package for Debian, it's been
a very long time since it was last updated, and I've got a (basic)
shoes .deb made currently, waiting to be uploaded.

- - --
Cheers,
James Gifford
[1] http://packages.qa.debian.org/s/shoes.html
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAk7GKu0ACgkQ4AA2+q84UnmCWQCgiFldGIgkKxEQ9os0eQDqDO6V
gtYAoM0GphzD/1a0MLNq09eX9aQhS0Jf
=c6TE
-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#648241: [RFR] templates://ngircd/{ngircd.templates}

2011-11-18 Thread Justin B Rye
Christian PERRIER wrote:
>  Template: ngircd/broken-oldconfig
>  Type: text

(Agreed that this should be Type: error; it isn't in the original
Debconf Spec, but see DevRef 6.5.3.1.7)

> +_Description: Configuration conversion failure
> + The current configuration file contains errors and cannot
> + be converted. 
> + .
> + You should check the configuration file by running
> + "ngircd --configtest", fix errors and run "dpkg-reconfigure ngircd"
> + to retry the conversion process.

Tweak the punctuation to match d-l-e House Style, and while I'm
editing that line, make the English a bit less telegraphic:
   fix any errors,

>  Template: ngircd/conversion-fail
>  Type: text

If anything's a Type: error, it's a situation bad enough to require a
bug report.

> +#flag:translate!:5
> +_Description: Converted configuration file error
> + The converted configuration failed checks after conversion failed.

Hang on, "Verification after conversion failed" doesn't mean that
"conversion failed"; it means conversion seemed to succeed and
generated a config, but then validation of that file subsequently
failed.  Say:

The converted configuration failed validation checks.

> + .
> + This should not happen and should therefore be reported as a bug.
> + Please include the configuration file in the bug report with
> + passwords removed.
> + .
> + The following difference file may help tracking this issue:
> + .
> +  ${DIFF}

Is this where "once wheezy is frozen" comes into it?  Requesting a
report makes sense for now, but once Wheezy gets frozen it's
potentially a problem - it could mean lots of duplicate bug reports 
asking for a fix that's not important enough to justify a stable
update, and useless afterwards.
 
[...]
> -Description: Next generation IRC Server
> +Description: yet another IRC Server
> 
> "next generation" will sound weird in 10 years..:-)

It sounded a bit ridiculous to me by the mid-nineties (when "Star
Trek: The Next Generation" was old hat), and that's before ngIRCd
existed; but I would nonetheless vote for using the phrase as an
explicit "explain the name" synopsis:

   Description: next generation IRC daemon

> + The ngircd daemon is an IRC server for small or private networks. It does
> + provide advanced features such as services. It is written from
> + scratch and is not based upon the original IRCd.

"The ngircd daemon" avoids leading lowercase, but at the cost of a
minor outbreak of PIN-numberism.

Whoops!  Missing "not" at the end of the first line.  And once you
fix that and take away the implication that code reuse is bad, this
description doesn't mention any advantages of using ngIRCd rather than
any of its rivals.  Import some advertising copy from the home page:

This package provides an Internet Relat Chat server for small or private
networks. It does not provide advanced features such as services, but it
is simple to configure and can cope with dynamic IP addresses. It is
written from scratch and not based on the original IRCd.

(I didn't know what "services" meant, but my first guess was things
like NickServ, and that turns out to be right, so fair enough.)
-- 
JBR with qualifications in linguistics, experience as a Debian
sysadmin, and probably no clue about this particular package
Source: ngircd
Section: net
Priority: optional
Maintainer: Debian IRC Team 
Uploaders: Mario Iseli , Matt Arnold ,
Christoph Biedl 
Build-Depends: debhelper (>= 7.0.50~),
autotools-dev,
expect,
libgnutls-dev,
po-debconf,
procps,
telnet,
Vcs-Svn: svn://svn.debian.org/pkg-irc/
Vcs-Browser: http://svn.debian.org/wsvn/pkg-irc
Standards-Version: 3.9.2

Package: ngircd
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}, ${perl:Depends},
debconf,
lsb-base (>= 3.0-6),
Replaces: ircd
Conflicts: dancer-ircd, ircd-hybrid, ircd-irc2, ircd-ircu, rageircd
Homepage: http://ngircd.barton.de
Description: next generation IRC daemon
 This package provides an Internet Relay Chat server for small or private
 networks. It does not provide advanced features such as services, but it
 is simple to configure and can cope with dynamic IP addresses. It is
 written from scratch and not based on the original IRCd.
Template: ngircd/conversion-do
Type: boolean
_Description: Convert ngIRCd configuration?
 In version 18, the ngIRCd configuration file format has changed.
 .
 You can choose to update the existing configuration or leave
 it unmodified. The former configuration file format is still
 supported.

Template: ngircd/broken-oldconfig
Type: text
_Description: Configuration conversion failure
 The current configuration file contains errors and cannot
 be converted. 
 .
 You should check the configuration file by running
 "ngircd --configtest", fix any errors, and run "dpkg-reconfigure ngircd"
 to retry the conversion process.

Template: ngircd/conversion-fail
Type: text
#flag:translate!:5
_Description: Converted configuration file error

Bug#629278: ITP: python-sphinx-aafig -- Embedded ASCII art figures in Sphinx documentations

2011-11-18 Thread Julien Cristau
On Fri, Nov 18, 2011 at 10:31:17 +0100, Julien Cristau wrote:

> On Sun, Jun  5, 2011 at 12:06:40 +0200, Nicolas CANIART wrote:
> 
> > Package: wnpp
> > Severity: wishlist
> > Owner: Nicolas CANIART 
> > 
> > * Package name: python-sphinx-aafig
> >   Version : 1.0
> >   Upstream Author : Leandro Lucarella 
> > * URL : http://pypi.python.org/sphinxcontrib-aafig/
> > * License : BOLA
> >   Programming Lang: Python
> >   Description : Embedded ASCII art figures in Sphinx documentations
> > 
> Hi Nicolas,
> 
> what's the status of this ITP?  Do you have a preliminary package
> somewhere?
> 
Nevermind, found it in the python-modules svn.  One question though: is
there a particular reason you put the packaging under GPL-3, as opposed
to a permissive license similar to the one used by upstream?

Cheers,
Julien
-- 
Julien Cristau  
Logilab http://www.logilab.fr/
Informatique scientifique & gestion de connaissances



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



Bug#648826: linux-image-3.1.0-1-amd64: can't load hdaps module

2011-11-18 Thread Salvo Tomaselli

> That's sad.
> Do you have a Sandy-Bridge CPU? Lenovo killed half the controller in the
> T/X/W series coming with SB, I wouldn't wonder if that happened on
> Edge/E too.

Yup, my CPU is Intel(R) Core(TM) i5-2410M CPU @ 2.30GHz, according to 
wikipedia i understand it is a sandy bridge one.

Thanks

-- 
Salvo Tomaselli


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


Bug#649094: xapt: paths not fixed in libc.so in cross packages

2011-11-18 Thread Vincent Danjean

Le 17/11/2011 17:23, Neil Williams a écrit :

xapt only downloads the packages. Anything after that happens with
dpkg-cross which has a limited future in Debian as it is completely
incompatible with Multiarch.

I wouldn't recommend doing any new work based on dpkg-cross or xapt.
The future is Multiarch.


I know but I found nothing in the wiki nor in packages telling how
to build a cross compiler with Multiarch..


There is documentation already on how to build cross-compilers and
there is the buildcross package in experimental.


Sorry. I looked at various place (mostly current packages and
http://wiki.debian.org/BuildingCrossCompilers ).
  I missed the reference at the buildcross package in the first
lines of the wiki page but I tried to follow what it written next
in this wiki page. My 'script' was just the list of commands
explained in this wiki.


I see no need to fix this bug. You're re-inventing a script which
already exists in Debian and you are using outdated tools to do it.
It's a hiding to nothing and a completely wasted effort. Talk to the
debian-embedded people and maintainer of buildcross.




Right now, the only practical cross-compiler methods are all based on
stable. Everything in testing and unstable is just too broken to use.


Ok. So I will try to build a mips cross-compiler from stable as I'm doing
know, ie with old tools (I need a cross compiler for my students quickly).

I will also try the buildcross package in experimental as this is
the future.

  Regards,
Vincent



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



Bug#649152: virtuoso-opensource: [INTL:pt_BR] Brazilian Portuguese debconf templates translation

2011-11-18 Thread Flamarion Jorge

Package: virtuoso-opensource
Tags: l10n patch
Severity: wishlist

Dear maintainer,

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
# Debconf translation for virtuoso-opensource.
# Copyright (C) 2011 THE virtuoso-opensource's COPYRIGHT HOLDER
# This file is distributed under the same license as the virtuoso-opensource package.
# Flamarion Jorge , 2011.
#
msgid ""
msgstr ""
"Project-Id-Version: virtuoso-opensource 6.1.2\n"
"Report-Msgid-Bugs-To: virtuoso-opensou...@packages.debian.org\n"
"POT-Creation-Date: 2011-07-29 10:59+0200\n"
"PO-Revision-Date: 2011-09-07 08:55-0300\n"
"Last-Translator: Flamarion Jorge \n"
"Language-Team: Brazilian Portuguese \n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.7.0\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"

#. Type: password
#. Description
#: ../virtuoso-opensource-6.1.templates:2001
msgid "Password for DBA and DAV users:"
msgstr "Senha para usuários DBA e DAV:"

#. Type: password
#. Description
#: ../virtuoso-opensource-6.1.templates:2001
msgid ""
"Following installation, users and passwords in Virtuoso can be managed using "
"the command line tools (see the full documentation) or via the Conductor web "
"application which is installed by default at http://localhost:8890/conductor.";
msgstr ""
"Após a instalação, usuários e senhas no Virtuoso podem ser gerenciados "
"usando as ferramentas de linha de comando (veja a documentação completa) ou "
"pela aplicação web Conductor, que é instalada por padrão em http://";
"localhost:8890/conductor."

#. Type: password
#. Description
#: ../virtuoso-opensource-6.1.templates:2001
msgid ""
"Two users (\"dba\" and \"dav\") are created by default, with administrative "
"access to Virtuoso. Secure passwords must be chosen for these users in order "
"to complete the installation."
msgstr ""
"Dois usuários (\"dba\" e \"dav\") são criados por padrão, com acesso "
"administrativo ao Virtuoso. Senhas seguras devem ser escolhidas para estes "
"usuários a fim de completar a instalação."

#. Type: password
#. Description
#: ../virtuoso-opensource-6.1.templates:2001
msgid ""
"If you leave this blank, the daemon will be disabled unless a non-default "
"password already exists."
msgstr ""
"Se você deixar isto em branco, o daemon será desabilitado, a menos que uma "
"senha \"não padrão\" já exista."

#. Type: password
#. Description
#: ../virtuoso-opensource-6.1.templates:3001
msgid "Administrative users password confirmation:"
msgstr "Confirmação de senha dos usuários administrativos:"

#. Type: error
#. Description
#: ../virtuoso-opensource-6.1.templates:4001
msgid "Password mismatch"
msgstr "Senha não confere"

#. Type: error
#. Description
#: ../virtuoso-opensource-6.1.templates:4001
msgid ""
"The two passwords you entered were not the same. Please enter a password "
"again."
msgstr ""
"As duas senhas que você informou não são as mesmas. Por favor, informe a "
"senha novamente."

#. Type: note
#. Description
#: ../virtuoso-opensource-6.1.templates:5001
msgid "No initial password set, daemon disabled"
msgstr "Senha inicial não informada, daemon desabilitado"

#. Type: note
#. Description
#: ../virtuoso-opensource-6.1.templates:5001
msgid ""
"For security reasons, the default Virtuoso instance is disabled because no "
"administration password was provided."
msgstr ""
"Por razões de segurança, a instância padrão do Virtuoso está desabilitada "
"porque nenhuma senha administrativa foi informada."

#. Type: note
#. Description
#: ../virtuoso-opensource-6.1.templates:5001
msgid ""
"You can enable the daemon manually by setting RUN to \"yes\" in /etc/default/"
"virtuoso-opensource-6.1. The default DBA user password will then be \"dba\"."
msgstr ""
"Você pode habilitar o daemon manualmente configurando \"yes\" na opção RUN "
"em /etc/default/virtuoso-opensource-6.1. A senha padrão do usuário DBA será "
"então \"dba\"."

#. Type: error
#. Description
#: ../virtuoso-opensource-6.1.templates:6001
msgid "Unable to set password for the Virtuoso DBA user"
msgstr "Impossível configurar a senha para o usuário DBA do Virtuoso"

#. Type: error
#. Description
#: ../virtuoso-opensource-6.1.templates:6001
msgid ""
"An error occurred while setting the password for the Virtuoso administrative "
"user. This may have happened because the account already has a password, or "
"because of a communication problem with the Virtuoso server."
msgstr ""
"Um erro ocorreu ao configurar a senha para o usuário administrativo do "
"Virtuoso. Isto pode ter acontecido porque a conta já tem uma senha, ou por "
"causa de um problema de comunicação com o servidor Virtuoso."

#. Type: error
#. Description
#: ../virtuoso-opensource-6.1.templates:6001
msgid ""

Bug#636130: lightdm: Still present in 1.0.6-1

2011-11-18 Thread daniel
I have the same problem on Debian Wheezy after LightDM was installed 
through update-notifier.




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



Bug#649153: Please provide a 'nogui' package

2011-11-18 Thread Daniel Baumann
Package: mplayer
Severity: wishlist

Hi,

it would be nice if you could split the mplayer package and provide a
mplayer-nogui (or whatever name you find suitable) that provides an
mplayer not linked against the whole xorg related stack (similar what
marillat did).

having a 'nogui' package is very usefull on server where we e.g. use
mplayer in the backend to create preview thumbnails of videos that users
uploaded, and obviously do not want to pull in the whole of x libraries.

Regards,
Daniel

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/



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



Bug#612498: open-vm-tools: Preliminary support for kfreebsd

2011-11-18 Thread Robin Elfrink
Source: open-vm-tools
Version: 2:8.8.0+2011.10.26-514583-1
Followup-For: Bug #612498

Hello,


I managed to add preliminary support for kfreebsd to open-vm-tools.

Placing attached patch '02-kfreebsd.patch' in debian/patches, adding the 
filename to
debian/patches/series and adding 'libkvm-dev' to Build-Depends makes 
open-vm-tools build .deb files.

What works:
- vmtoolsd runs
- virtual center recognizes the vm's hostname

What does not work:
- virtual center does not recognize the vm's ip address
  ('Failed to get nic info.' in /var/log/messages)
- probably everything else



Hopefully this patch can be used as a starter for full open-vm-tools support on 
kfreebsd.



Robin


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

Kernel: kFreeBSD 8.2-1-amd64
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -uNr open-vm-tools-8.8.0+2011.10.26-514583.orig/configure.ac open-vm-tools-8.8.0+2011.10.26-514583/configure.ac
--- open-vm-tools-8.8.0+2011.10.26-514583.orig/configure.ac	2011-10-27 18:57:11.0 +
+++ open-vm-tools-8.8.0+2011.10.26-514583/configure.ac	2011-11-18 08:38:14.0 +
@@ -130,6 +130,9 @@
[freebsd*])
   os="freebsd"
   ;;
+   [kfreebsd*-gnu])
+  os="kfreebsd-gnu"
+  ;;
[solaris*])
   os="solaris"
   ;;
@@ -970,6 +973,23 @@
fi
 fi
 
+if test "$os" = "kfreebsd-gnu"; then
+   LIBVMTOOLS_LIBADD="$LIBVMTOOLS_LIBADD -lkvm"
+   MODULES_DIR="$LINUXDIR/"
+
+   MODULES="$MODULES vmmemctl"
+   MODULES="$MODULES vmxnet"
+   MODULES="$MODULES vmblock vmhgfs"
+   buildHgfsmounter=yes
+
+   if test "$with_kernel_modules" = "yes"; then
+  echo ""
+  echo "   You are building FreeBSD kernel modules. Make sure you use   "
+  echo "   'make' to build open-vm-tools, and not GNU make ('gmake').   "
+  echo ""
+   fi
+fi
+
 if test "$os" = "solaris"; then
LIB_IMPERSONATE_CPPFLAGS="$LIB_IMPERSONATE_CPPFLAGS -D_POSIX_PTHREAD_SEMANTICS"
LIB_USER_CPPFLAGS="$LIB_USER_CPPFLAGS -D_POSIX_PTHREAD_SEMANTICS"
@@ -1018,6 +1038,7 @@
 AM_CONDITIONAL(SOLARIS, test "$os" = "solaris")
 AM_CONDITIONAL(FREEBSD, test "$os" = "freebsd")
 AM_CONDITIONAL(FREEBSD_CUSTOM_SYSDIR, test "$os" = "freebsd" -a -n "$SYSDIR")
+AM_CONDITIONAL(KFREEBSD, test "$os" = "kfreebsd-gnu")
 AM_CONDITIONAL(THIRTY_TWO_BIT_USERSPACE, test "$userSpaceBitness" = "32")
 AM_CONDITIONAL(HAVE_X11, test "$have_x" = "yes")
 AM_CONDITIONAL(HAVE_ICU, test "$with_icu" = "yes")
diff -uNr open-vm-tools-8.8.0+2011.10.26-514583.orig/hgfsmounter/hgfsmounter.c open-vm-tools-8.8.0+2011.10.26-514583/hgfsmounter/hgfsmounter.c
--- open-vm-tools-8.8.0+2011.10.26-514583.orig/hgfsmounter/hgfsmounter.c	2011-10-27 18:57:11.0 +
+++ open-vm-tools-8.8.0+2011.10.26-514583/hgfsmounter/hgfsmounter.c	2011-11-18 08:38:10.0 +
@@ -36,7 +36,7 @@
 #   include 
 #endif
 
-#if defined(__FreeBSD__) || defined(__APPLE__)
+#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__APPLE__)
 #   include 
 #   include 
 
@@ -64,7 +64,7 @@
 #   define MS_NOCLUSTERW MNT_NOCLUSTERW
 #   define MS_REMOUNT MNT_RELOAD
 
-#  if defined(__FreeBSD__)
+#  if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
 # define MS_NOATIME MNT_NOATIME
 #  elif defined(__APPLE__)
 /*
@@ -101,7 +101,7 @@
 #include "hgfsmounter_version.h"
 
 /* XXX embed_version.h does not currently support Mach-O binaries (OS X). */
-#if defined(linux) || defined(__FreeBSD__)
+#if defined(linux) || defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
 #  include "embed_version.h"
VM_EMBED_VERSION(HGFSMOUNTER_VERSION_STRING);
 #endif
@@ -1114,7 +1114,7 @@
/* Go! */
 #if defined(linux)
mntRes = mount(shareName, mountPoint, HGFS_NAME, flags, &mountInfo);
-#elif defined(__FreeBSD__)
+#elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
{
   struct iovec iov[] = {{"fstype", sizeof("fstype")},
 {HGFS_NAME, sizeof(HGFS_NAME)},
diff -uNr open-vm-tools-8.8.0+2011.10.26-514583.orig/lib/file/fileIO.c open-vm-tools-8.8.0+2011.10.26-514583/lib/file/fileIO.c
--- open-vm-tools-8.8.0+2011.10.26-514583.orig/lib/file/fileIO.c	2011-10-27 18:57:11.0 +
+++ open-vm-tools-8.8.0+2011.10.26-514583/lib/file/fileIO.c	2011-11-18 08:38:03.0 +
@@ -270,7 +270,7 @@
 
ASSERT(file);
 
-#if !defined(__FreeBSD__) && !defined(sun)
+#if !defined(__FreeBSD__) && !defined(__FreeBSD_kernel__) && !defined(sun)
if (access & FILEIO_OPEN_LOCKED) {
   int err = 0;
 
@@ -340,7 +340,7 @@
 
ASSERT(file);
 
-#if !defined(__FreeBSD__) && !defined(sun)
+#if !defined(__FreeBSD__) && !defined(__FreeBSD_kernel__) && !defined(sun)
if (file->lockToken != NULL) {
   int err = 0;
 
diff -uNr open-vm-tools-8.8.0+2011.10.26-

Bug#649115: Acknowledgement (openssh-server: umask setting with internal-sftp does not work correctly)

2011-11-18 Thread rog7993
I justed realized, that the umask setting is interpreted as a decimal
number and not octal, like usual.

This is already fixed upstream.

>From Changelog:

20101105
- d...@cvs.openbsd.org 2010/11/04 02:45:34
  [sftp-server.c]
  umask should be parsed as octal. reported by candland AT xmission.com;
  ok markus@



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



Bug#649154: ace-of-penguins: No icons in application menu

2011-11-18 Thread Michael Rawson
Package: ace-of-penguins
Version: 1.3-3ubuntu1
Severity: minor

Ace-of-penguin icons do not show up in menus, only the default 'executable'
icon. I have fixed this in ubuntu by specifying an icon with the .desktop, and
pushed it to launchpad. I am new to bugfixing, however, so forgive me for 
mistakes. I'm filing this with "reportbug -B debian" from an ubuntu machine.




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

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

Versions of packages ace-of-penguins depends on:
ii  libc6   2.13-20ubuntu5   Embedded GNU C Library: Shared lib
ii  libpng12-0  1.2.46-3ubuntu1  PNG library - runtime
ii  libx11-62:1.4.4-2ubuntu1 X11 client-side library

ace-of-penguins recommends no packages.

ace-of-penguins 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#648553: [Pkg-xfce-devel] Bug#648553: xfce4-utils: runs xrdb -merge with the -nocpp option

2011-11-18 Thread Yves-Alexis Perez
On jeu., 2011-11-17 at 13:19 -0800, Russ Allbery wrote:
> Yves-Alexis Perez  writes:
> 
> > I've asked Xfce people about that, and they don't really remember why
> > -nocpp is passed. Looking a bit on Google, I found
> > http://mail.gnome.org/archives/gnomecc-list/2005-October/msg00024.html
> > and I think the command line was basically copied from Gnome, or
> > something like that.
> 
> It definitely makes sense to use -nocpp in these situations, where one is
> passing known input that isn't using the preprocessor.

Agreed :)
> 
> > So removing -nocpp might means slowing down the session start, which is
> > a bit unfortunate.
> 
> Well, hopefully one would only use the default behavior when loading the
> user's personal configuration (and maybe system-wide defaults), where cpp
> is part of the expected interface.

Well, it seems that -nocpp was used since a long time, so “expected
interface” doesn't really stand here.

>   My guess is that wouldn't lead to any
> visible slowdown, although I admit I've not tested.

Well, considering today's boxes, yeah. Unless people have really
long .Xressources, I'm not sure the difference will be visible. Here I
can't even do meaningful measures:

corsac@scapa: time xrdb -nocpp -merge .Xresources
0,00s real  0,00s user  0,00s system  0% xrdb -nocpp -merge .Xresources
corsac@scapa: time xrdb  -merge .Xresources
0,02s real  0,00s user  0,00s system  19% xrdb -merge .Xresources

it might make sense to do that on older machines.
 
> 
> > What puzzles me though, is that afaict the settings should have already
> > been applied by /etc/X11/Xsession.d/30x11-common_xresources and the call
> > in /etc/xdg/xfce4/xinitrc should only merge new stuff, not replace them.
> > How comes it doesn't work for you?
> 
> I have never understood exactly what xrdb -merge does in this sort of case
> where one is loading the same file twice and it's setting a single-valued
> resource.  The man page has always been ambiguous about that ("merged and
> lexicographically sorted with," which doesn't clearly say "the current
> value will be kept" or "the new value will be kept").
> 
> I did a brief experiment, changing a resource that was already set
> (XTerm*VT100.geometry) and then loading .Xresources again with xrdb -merge
> and the new setting overrode the previous setting after xrdb -merge.  So I
> think that at least in some cases the results of the second invocation
> will overwrite the first.

In fact, that makes sense, the second xrdb call sees that the “new”
Xressources (without preprocessing) is different from the current (with
preprocessing so it'll update it.

Regards,
-- 
Yves-Alexis


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


Bug#596155: xserver-xorg: X segfaults when starting lxterminal from lxpanel

2011-11-18 Thread Florian Schlichting
> > > > - startx
> > > > - when lxde has started, klick on the lxterminal icon on lxpanel
> > > > - X segfaults
> > > > 
> > > > This happens reliably, at any time during the session. I can start
> > > > other applications (xterm, firefox, ...) normally, whether via the
> > > > panel or the menu or xterm.
> > > 
> > > Can you please report libpixman-1-0's version, optionally trying with
> > > experimental's? I haven't tried to reproduce this issue yet, not sure
> > > whether it's depending on neomagic, either.
> > 
> > I'm running testing, libpixman-1-0 is version 0.16.4-1 "uptodate"
> > 
> > with libpixman-1-0 from experimental (version 0.18.4-1), the crash
> > happens just the same, but the backtrace (attached) seems a lot shorter
> > 
> This looks like https://bugs.freedesktop.org/show_bug.cgi?id=39383

I tried again today after upgrading to current testing, and the crash no
longer occurs. Display of the lxterminal window is borked (scrollbar at
75% of window width, rest is white; font looks compressed and contains
vertical stripes of different color; theming is wrong), but other
applications look ok.

So from my point of view, the issue is solved. Thanks!

Florian



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



Bug#646774: cultivation: impossible to plant

2011-11-18 Thread Stephane Louise
> Did you try cultivation?

I did. I installed it for the sake of this bug :)

> Normally the game looks like this:
>
> http://screenshots.debian.net/screenshots/c/cultivation/1452_large.png

It does look like this on my Quad G5, indeed.

> With the bug it looks like this:
>
> http://bugs.debian.org/cgi-bin/bugreport.cgi?msg=20;filename=cultivation-starting-position.png;att=1;bug=646774

Not here, but different card. NV42

Stéphane



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



Bug#500572: not a bug

2011-11-18 Thread martin f krafft
also sprach Peter van Dijk  [2011.11.18.0951 
+0100]:
> the DNS packet format is binary. There is no notion of inserting
> or not inserting a zero. What you are seeing is how dig decides to
> represent an address. Other DNS-servers have the same "issue".

I have never seen this with any other DNS-server. As soon as
I switched to nsd3, the problem was gone.

-- 
 .''`.   martin f. krafft   Related projects:
: :'  :  proud Debian developer   http://debiansystem.info
`. `'`   http://people.debian.org/~madduckhttp://vcs-pkg.org
  `-  Debian - when you have better things to do than fixing systems


digital_signature_gpg.asc
Description: Digital signature (see http://martin-krafft.net/gpg/sig-policy/999bbcc4/current)


Bug#649155: murrine-themes: elementaryXubuntu inherits elementary but that icon theme is not available

2011-11-18 Thread Marco Milone
Package: murrine-themes
Version: 0.98.2
Severity: minor

Dear Mainteiner,

murrine-themes package provides an icon theme called elementary Xubuntu dark
but said icon theme looks totally incomplete.
In fact, looking at /usr/share/icons/elementaryXubuntu-dark/index.theme we can
see that it inherits to "elementary-mono-dark" and "elementary", but those icon
themes are not included in Debian repos.

I think that there is no point in providing elementaryXubuntu icons without
elementary and so, in my honest opinion, Debian should either includes
elementary icon theme (as a stand alone package or directly into murrine-
themes, is up to you) or removes elementaryXubuntu from murrine-themes package.

As a side note, I think that elementaryXubuntu, a theme designed with XFCE in
mind, is a great addition for Debian XFCE users, but at least consider to
replace the distrubutor logo included (i.e. /usr/share/icons/elementaryXubuntu-
dark/places/24/distributor-logo.svg) with our lovely swirl: having Xubuntu
branding on a Debian desktop is really strange.

Thank you very much and sorry if I bothered you

best regards

Marco Milone



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

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

Versions of packages murrine-themes depends on:
ii  gtk2-engines-murrine  0.98.1.1-3

murrine-themes recommends no packages.

murrine-themes 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#649156: debsums: PackageSpec field will not be in the final multiarch implementation

2011-11-18 Thread Raphaël Hertzog
Package: debsums
Version: 2.0.49
Severity: normal

When you introduced multiarch support, you used the "${PackageSpec}" field
that dpkg-query ought to support. In fact, the field is likely to be
renamed in the final version of multiarch that will be merged in Debian.

See http://lists.debian.org/2018094506.ga7...@gaara.hadrons.org

It will probably be "${virt:Package-Spec}" but it's not sure yet.
Just wait for now. I file this bug as a reminder for you.

Cheers,

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

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

Versions of packages debsums depends on:
ii  debconf [debconf-2.0]  1.5.41 
ii  libdpkg-perl   1.16.2~50.gbp921bea
ii  libfile-fnmatch-perl   0.02-1+b2  
ii  perl   5.14.2-4   
ii  ucf3.0025+nmu2

debsums recommends no packages.

debsums suggests no packages.

-- Configuration Files:
/etc/default/debsums changed [not included]

-- debconf information excluded



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



Bug#551837: --print-debs downloads .debs anyway

2011-11-18 Thread Daniel Baumann
found 551837 1.0.37
thanks

i can reproduce this with the current sid version (1.0.37).

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/



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



Bug#649157: xpdf: wrong shell command

2011-11-18 Thread Vincent Lefevre
Package: xpdf
Version: 3.02-21
Severity: important

When I click on a URL of some PDF file, I get:

sh: 1: Syntax error: Unterminated quoted string

with

urlCommand  "sensible-browser '%s'"

from the default /etc/xpdf/xpdfrc file. It appears that xpdf forgets
the second quote (but I can't reproduce this problem with other PDF
files). Memory corruption? Here's what I get with valgrind:

xvii:~> valgrind -q xpdf.real slides.pdf
==15632== Source and destination overlap in memcpy(0x8bc32b0, 0x8bc32d0, 96)
==15632==at 0x4C28DF6: memcpy (in 
/usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==15632==by 0x4F0065D: _XmBuildResources (in /usr/lib/libXm.so.2.0.1)
==15632==by 0x4EE9B3B: ??? (in /usr/lib/libXm.so.2.0.1)
==15632==by 0x55D0CF4: ??? (in /usr/lib/x86_64-linux-gnu/libXt.so.6.0.0)
==15632==by 0x55D0CF4: ??? (in /usr/lib/x86_64-linux-gnu/libXt.so.6.0.0)
==15632==by 0x55D0F87: XtInitializeWidgetClass (in 
/usr/lib/x86_64-linux-gnu/libXt.so.6.0.0)
==15632==by 0x55D190F: _XtCreateWidget (in 
/usr/lib/x86_64-linux-gnu/libXt.so.6.0.0)
==15632==by 0x55D1BCD: XtCreateWidget (in 
/usr/lib/x86_64-linux-gnu/libXt.so.6.0.0)
==15632==by 0x424C80: ??? (in /usr/bin/xpdf.real)
==15632==by 0x427B9E: ??? (in /usr/bin/xpdf.real)
==15632==by 0x419DD2: ??? (in /usr/bin/xpdf.real)
==15632==by 0x40BFD8: ??? (in /usr/bin/xpdf.real)
==15632== 
==15632== Invalid read of size 4
==15632==at 0x7C2B673: ??? (in 
/usr/lib/x86_64-linux-gnu/libfontconfig.so.1.4.4)
==15632==by 0x7C2D9D4: FcConfigFilename (in 
/usr/lib/x86_64-linux-gnu/libfontconfig.so.1.4.4)
==15632==by 0x7C40895: FcConfigParseAndLoad (in 
/usr/lib/x86_64-linux-gnu/libfontconfig.so.1.4.4)
==15632==by 0x7C36246: FcInitLoadConfig (in 
/usr/lib/x86_64-linux-gnu/libfontconfig.so.1.4.4)
==15632==by 0x7C36325: FcInitLoadConfigAndFonts (in 
/usr/lib/x86_64-linux-gnu/libfontconfig.so.1.4.4)
==15632==by 0x7C36524: FcInit (in 
/usr/lib/x86_64-linux-gnu/libfontconfig.so.1.4.4)
==15632==by 0x7C2BE0C: FcConfigGetCurrent (in 
/usr/lib/x86_64-linux-gnu/libfontconfig.so.1.4.4)
==15632==by 0x7C2D79F: FcConfigSubstituteWithPat (in 
/usr/lib/x86_64-linux-gnu/libfontconfig.so.1.4.4)
==15632==by 0x52AB5D5: GlobalParams::getDisplayFont(GfxFont*) (in 
/usr/lib/libpoppler.so.13.0.0)
==15632==by 0x5255330: SplashOutputDev::doUpdateFont(GfxState*) (in 
/usr/lib/libpoppler.so.13.0.0)
==15632==by 0x52556B3: SplashOutputDev::drawChar(GfxState*, double, double, 
double, double, double, double, unsigned int, int, unsigned int*, int) (in 
/usr/lib/libpoppler.so.13.0.0)
==15632==by 0x5292CC3: Gfx::doShowText(GooString*) (in 
/usr/lib/libpoppler.so.13.0.0)
==15632==  Address 0x9c98404 is 20 bytes inside a block of size 22 alloc'd
==15632==at 0x4C2779D: malloc (in 
/usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==15632==by 0x7C2B5CC: ??? (in 
/usr/lib/x86_64-linux-gnu/libfontconfig.so.1.4.4)
==15632==by 0x7C2D9D4: FcConfigFilename (in 
/usr/lib/x86_64-linux-gnu/libfontconfig.so.1.4.4)
==15632==by 0x7C40895: FcConfigParseAndLoad (in 
/usr/lib/x86_64-linux-gnu/libfontconfig.so.1.4.4)
==15632==by 0x7C36246: FcInitLoadConfig (in 
/usr/lib/x86_64-linux-gnu/libfontconfig.so.1.4.4)
==15632==by 0x7C36325: FcInitLoadConfigAndFonts (in 
/usr/lib/x86_64-linux-gnu/libfontconfig.so.1.4.4)
==15632==by 0x7C36524: FcInit (in 
/usr/lib/x86_64-linux-gnu/libfontconfig.so.1.4.4)
==15632==by 0x7C2BE0C: FcConfigGetCurrent (in 
/usr/lib/x86_64-linux-gnu/libfontconfig.so.1.4.4)
==15632==by 0x7C2D79F: FcConfigSubstituteWithPat (in 
/usr/lib/x86_64-linux-gnu/libfontconfig.so.1.4.4)
==15632==by 0x52AB5D5: GlobalParams::getDisplayFont(GfxFont*) (in 
/usr/lib/libpoppler.so.13.0.0)
==15632==by 0x5255330: SplashOutputDev::doUpdateFont(GfxState*) (in 
/usr/lib/libpoppler.so.13.0.0)
==15632==by 0x52556B3: SplashOutputDev::drawChar(GfxState*, double, double, 
double, double, double, double, unsigned int, int, unsigned int*, int) (in 
/usr/lib/libpoppler.so.13.0.0)
==15632== 
==15632== Invalid read of size 4
==15632==at 0x7C2B688: ??? (in 
/usr/lib/x86_64-linux-gnu/libfontconfig.so.1.4.4)
==15632==by 0x7C2D9D4: FcConfigFilename (in 
/usr/lib/x86_64-linux-gnu/libfontconfig.so.1.4.4)
==15632==by 0x7C40895: FcConfigParseAndLoad (in 
/usr/lib/x86_64-linux-gnu/libfontconfig.so.1.4.4)
==15632==by 0x7C40F5D: ??? (in 
/usr/lib/x86_64-linux-gnu/libfontconfig.so.1.4.4)
==15632==by 0x8689AAB: ??? (in /lib/x86_64-linux-gnu/libexpat.so.1.5.2)
==15632==by 0x868A8A0: ??? (in /lib/x86_64-linux-gnu/libexpat.so.1.5.2)
==15632==by 0x868777B: ??? (in /lib/x86_64-linux-gnu/libexpat.so.1.5.2)
==15632==by 0x868910A: ??? (in /lib/x86_64-linux-gnu/libexpat.so.1.5.2)
==15632==by 0x868C6B1: XML_ParseBuffer (in 
/lib/x86_64-linux-gnu/libexpat.so.1.5.2)
==15632==by 0x7C409F0: FcConfigParseAndLoad (in 
/usr/lib/x86_64-linux-gnu/libfontconfig.so.1.4.4)
==15632==by 0x7C36246:

Bug#649158: moreutils: typo in sponge(1) manpage

2011-11-18 Thread Mark Caglienzi
Package: moreutils
Version: 0.45
Severity: minor

Hello,
it seems to me that the line:

sponge reads standard input and writes it out to the specified file. Unlike a
shell redirect, sponge soaks up all its input before opening the output file.
This allows constricting pipelines that read from and write to the same file.

in the sponge(1) manpage has a typo: 'constricting' perhaps has to be
'constructing'.

Regards,
Mark



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

Kernel: Linux 3.0.0-1-686-pae (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 moreutils depends on:
ii  libc62.13-21 
ii  libipc-run-perl  0.90-1  
ii  perl 5.12.4-6

moreutils recommends no packages.

Versions of packages moreutils suggests:
ii  libtime-duration-perl
ii  libtimedate-perl   1.2000-1

-- no debconf information

-- 
. ''`.  | GPG Public Key  : 0xCD542422 - Download it from http://is.gd/fOa7Vm
: :'  : | GPG Fingerprint : 0823 A40D F31B 67A8 5621 AD32 E293 A2EB CD54 2422
`. `'`  | Powered by Debian GNU/Linux, http://www.debian.org
  `-| Try not. Do, or do not. There is no try. - Master Yoda, TESB.


signature.asc
Description: Digital signature


Bug#649159: proposed upload: git/1:1.7.8~rc3-1

2011-11-18 Thread Jonathan Nieder
Package: git
Version: 1:1.7.8~rc2-1
Severity: important
Tags: upstream fixed-upstream

Hi Gerrit and Anders,

v1.7.8-rc3 fixes a security hole for installations that enable remote
update-archive access (regression introduced by v1.7.8-rc1~12^2~1,
upload-archive: use start_command instead of fork, 2011-10-24).
[1] has details.

Luckily sid is not affected.  I have prepared an upload for
experimental at

 git://git.debian.org/~jrnieder-guest/git.git debian-experimental

(commit bd4c77e0, candidate+patches at b5a4997e).  This is not too
urgent because installing experimental git in a public-facing
installation with --enable=upload-archive would be a little insane.

Hopefully it can save you time.

Sincerely,
Jonathan

[1] http://thread.gmane.org/gmane.comp.version-control.git/185489/focus=185491



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



Bug#617940: Processed (with 1 errors): libvdpau1 to blame

2011-11-18 Thread Andreas Beckmann
Hi,

please run vdpauinfo (in vdpau package) - does it give the same error
messages?


Andreas



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



Bug#585145: gtimelog in Debian

2011-11-18 Thread Simon McVittie
On Wed, 12 Oct 2011 at 10:03:25 +0100, Simon McVittie wrote:
> On Thu, 06 Oct 2011 at 14:26:41 -0400, Barry Warsaw wrote:
> >  * experimental has python-gobject 2.90.3-2 (unstable has 2.28.6-5).
> >  * gir1.2-pango-1.0 and gir1.2-gtk-3.0 both seem okay in unstable.
> >  * afaict, gir1.2-appindicator3-0.1 isn't available in Debian at all.
> > 
> > I'll try to build a version w/o appindicator and see if I can get that
> > installed and running in experimental.
> 
> Uploading to experimental sounds like the best plan for now. I suspect
> appindicator isn't vital functionality - if I understand Ubuntu correctly,
> it's a replacement for the tray icon, so one easy fallback if appindicator was
> missing would be to have a traditional tray icon, and another would be to
> not have a tray-icon-like-thing at all.

Any progress on this?

experimental now has pygobject 3.0.2-2 - I assume this will go to unstable
as part of GNOME 3.2, but you'd have to ask the GNOME team about that.

> I'm getting very tempted to ask for gtimelog to be removed from unstable
> (and hence testing) until a better version like 0.7.0 can go in - anyone
> who's desperate enough can get 0.0+svn88 from stable, and having the
> package available in unstable in the meantime gives a false indication
> of its quality.

I'll do this next week if there are no objections.

S



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



Bug#649161: [fabric] fabric 1.3 requires python ssh library

2011-11-18 Thread Riccardo Magliocchetti

Package: fabric
Version: 1.3.2-1
Severity: serious

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

From 1.3.0 fabric requires http://pypi.python.org/pypi/ssh/
which afaict is not in debian thus package is currently
broken is unstable:

$ fab bootstrap
Traceback (most recent call last):
  File "/usr/bin/fab", line 5, in 
from pkg_resources import load_entry_point
  File "/usr/lib/python2.6/dist-packages/pkg_resources.py", line 2707, 
in 

working_set.require(__requires__)
  File "/usr/lib/python2.6/dist-packages/pkg_resources.py", line 686, 
in require

needed = self.resolve(parse_requirements(requirements))
  File "/usr/lib/python2.6/dist-packages/pkg_resources.py", line 584, 
in resolve

raise DistributionNotFound(req)
pkg_resources.DistributionNotFound: ssh>=1.7.8

Reference:
http://docs.fabfile.org/en/1.3.0/changelog.html#id1


--- System information. ---
Architecture: i386
Kernel:   Linux 3.1.0-rc10+

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

--- Package information. ---
Depends(Version) | Installed
-+-
python  (>= 2.5) | 2.6.7-3
python-support   (>= 0.90.0) | 1.0.14
python-paramiko (>= 1.6) | 1.7.7.1-2
python-pkg-resources | 0.6.24-1


Package's Recommends field is empty.

Package's Suggests field is empty.






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



Bug#649162: broken usage of debhelper in rules

2011-11-18 Thread Daniel Baumann
Package: check-mk
Version: 1.1.12-1
Severity: important
Tag: patch

in debian/rules, debhelper is used wrongly.

all dh_* calls in binary-arch needs to be appended with -a, all dh_*
calls in binary-indep with -i. otherwise all packages are always build,
regardless if only architecture dependent or only architecture
independent packages are wanted.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/



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



Bug#649155: murrine-themes: elementaryXubuntu inherits elementary but that icon theme is not available

2011-11-18 Thread Yves-Alexis Perez
On ven., 2011-11-18 at 11:38 +0100, Marco Milone wrote:
> murrine-themes package provides an icon theme called elementary Xubuntu dark
> but said icon theme looks totally incomplete.
> In fact, looking at /usr/share/icons/elementaryXubuntu-dark/index.theme we can
> see that it inherits to "elementary-mono-dark" and "elementary", but those 
> icon
> themes are not included in Debian repos.
> 
> I think that there is no point in providing elementaryXubuntu icons without
> elementary and so, in my honest opinion, Debian should either includes
> elementary icon theme (as a stand alone package or directly into murrine-
> themes, is up to you) or removes elementaryXubuntu from murrine-themes 
> package.
> 
> As a side note, I think that elementaryXubuntu, a theme designed with XFCE in
> mind, is a great addition for Debian XFCE users, but at least consider to
> replace the distrubutor logo included (i.e. 
> /usr/share/icons/elementaryXubuntu-
> dark/places/24/distributor-logo.svg) with our lovely swirl: having Xubuntu
> branding on a Debian desktop is really strange. 

To be honest I'm not really interested in providing icon themes. It just
happens that some are included in the tarballs I get, so I include them
too, but there's no support on them whatsoever. If people like them and
use them fine.

Note that people can just pick elementary icon theme and put it
in .icon, inherit will work fine.

Regards,
-- 
Yves-Alexis


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


Bug#649163: googleearth-package: can't create deb, error in dependencies

2011-11-18 Thread Michael Below
Package: googleearth-package
Version: 0.6.1
Severity: normal

Dear Maintainer,

dpkg-deb fails because there is an empty/invalid entry in the Depends:
field of the control file. make-googleearth-package reports
success, but there is no package built.

Thanks for your work

Michael


$ make-googleearth-package 
--2011-11-18 11:56:32--
http://dl.google.com/earth/client/current/GoogleEarthLinux.bin
Auflösen des Hostnamen »dl.google.com (dl.google.com)«...
209.85.147.136, 209.85.147.190, 209.85.147.93, ...
Verbindungsaufbau zu dl.google.com
(dl.google.com)|209.85.147.136|:80... verbunden.
HTTP-Anforderung gesendet, warte auf Antwort... 200 OK
Länge: 33688483 (32M) [application/octet-stream]
In »»GoogleEarthLinux.bin«« speichern.

100%[==>] 33.688.483   691K/s
in 56s 

2011-11-18 11:57:30 (592 KB/s) - »»GoogleEarthLinux.bin««
gespeichert [33688483/33688483]

Google Earth for GNU/Linux 6.0.3.2197
Supported Google Earth version: 6.0.3.2197
./
./googleearth.xpm
./desktop_icons/
./desktop_icons/pro/
./desktop_icons/pro/product_logo_128.png
./desktop_icons/pro/product_logo_22.png
./desktop_icons/pro/product_logo_64.png
./desktop_icons/pro/product_logo_16.png
./desktop_icons/pro/product_logo_256.png
./desktop_icons/pro/product_logo_32.xpm
./desktop_icons/pro/product_logo_24.png
./desktop_icons/pro/product_logo_48.png
./desktop_icons/pro/product_logo_32.png
./desktop_icons/ec/
./desktop_icons/ec/product_logo_128.png
./desktop_icons/ec/product_logo_22.png
./desktop_icons/ec/product_logo_64.png
./desktop_icons/ec/product_logo_16.png
./desktop_icons/ec/product_logo_256.png
./desktop_icons/ec/product_logo_32.xpm
./desktop_icons/ec/product_logo_24.png
./desktop_icons/ec/product_logo_48.png
./desktop_icons/ec/product_logo_32.png
./desktop_icons/consumer/
./desktop_icons/consumer/product_logo_128.png
./desktop_icons/consumer/product_logo_22.png
./desktop_icons/consumer/product_logo_64.png
./desktop_icons/consumer/product_logo_16.png
./desktop_icons/consumer/product_logo_256.png
./desktop_icons/consumer/product_logo_32.xpm
./desktop_icons/consumer/product_logo_24.png
./desktop_icons/consumer/product_logo_48.png
./desktop_icons/consumer/product_logo_32.png
./setup.sh
./googleearth-linux-x86.tar
./setup.data/
./setup.data/locale/
./setup.data/locale/es/
./setup.data/locale/es/LC_MESSAGES/
./setup.data/locale/es/LC_MESSAGES/setup.mo
./setup.data/locale/es/LC_MESSAGES/loki-uninstall.mo
./setup.data/locale/fr/
./setup.data/locale/fr/LC_MESSAGES/
./setup.data/locale/fr/LC_MESSAGES/setup.mo
./setup.data/locale/fr/LC_MESSAGES/loki-uninstall.mo
./setup.data/locale/nl/
./setup.data/locale/nl/LC_MESSAGES/
./setup.data/locale/nl/LC_MESSAGES/setup.mo
./setup.data/locale/nl/LC_MESSAGES/loki-uninstall.mo
./setup.data/locale/sv/
./setup.data/locale/sv/LC_MESSAGES/
./setup.data/locale/sv/LC_MESSAGES/setup.mo
./setup.data/locale/sv/LC_MESSAGES/loki-uninstall.mo
./setup.data/locale/ru/
./setup.data/locale/ru/LC_MESSAGES/
./setup.data/locale/ru/LC_MESSAGES/setup.mo
./setup.data/locale/ru/LC_MESSAGES/loki-uninstall.mo
./setup.data/locale/it/
./setup.data/locale/it/LC_MESSAGES/
./setup.data/locale/it/LC_MESSAGES/setup.mo
./setup.data/locale/it/LC_MESSAGES/loki-uninstall.mo
./setup.data/locale/de/
./setup.data/locale/de/LC_MESSAGES/
./setup.data/locale/de/LC_MESSAGES/setup.mo
./setup.data/locale/de/LC_MESSAGES/loki-uninstall.mo
./setup.data/setup.xml
./setup.data/setup.glade
./setup.data/splash.xpm
./setup.data/setup.gtk2.glade
./setup.data/config.sh
./setup.data/bin/
./setup.data/bin/OpenBSD
./setup.data/bin/NetBSD
./setup.data/bin/Linux/
./setup.data/bin/Linux/x86_64
./setup.data/bin/Linux/x86/
./setup.data/bin/Linux/x86/setup.gtk2
./setup.data/bin/Linux/x86/uninstall
./setup.data/bin/Linux/x86/setup.gtk
./setup.data/bin/Linux/amd64
./setup.data/bin/FreeBSD
./README.linux
./googleearth-icon.png
./linux/
./linux/xdg/
./linux/xdg/xdg-desktop-menu
./linux/xdg/xdg-desktop-icon
./linux/xdg/xdg-mime
./googleearth-data.tar
./postinstall.sh
./bin/
./bin/googleearth
./preuninstall.sh
Checking shlib deps: libgdal.so.1
dpkg-shlibdeps: Fehler: Syntaxfehler in debian/control in Zeile 5:
im Block fehlt das Feld »Architecture«
Checking shlib deps: libcommon_platform.so
dpkg-shlibdeps: Fehler: Syntaxfehler in debian/control in Zeile 5:
im Block fehlt das Feld »Architecture«
Checking shlib deps: libIGExportCommon.so
dpkg-shlibdeps: Fehler: Syntaxfehler in debian/control in Zeile 5:
im Block fehlt das Feld »Architecture«
Checking shlib deps: libcommon.so
dpkg-shlibdeps: Fehler: Syntaxfehler in debian/control in Zeile 5:
im Block fehlt das Feld »Architecture«
Checking shlib deps: libIGGfx.so
dpkg-shlibdeps: Fehler: Syntaxfehler in debian/control in Zeile 5:
im Block fehlt das Feld »Architecture«
Checking shlib deps: libviewsync.so
dpkg-shlibdeps: Fehler: Syntaxfehler in debian/control in Zeile 5:
im Block fehlt das Feld »Architecture«
Checking shlib deps: libmath.so
dpkg-shlibdeps: Fehler: Syntaxfehler in debian/control in Ze

Bug#649094: xapt: paths not fixed in libc.so in cross packages

2011-11-18 Thread Hector Oron
Hello,

2011/11/18 Vincent Danjean :

> Ok. So I will try to build a mips cross-compiler from stable as I'm doing
> know, ie with old tools (I need a cross compiler for my students quickly).

Sounds sensible and recommended.

> I will also try the buildcross package in experimental as this is
> the future.

No, buildcross is not the future. Currently there is a Debian
multiarch transition and cross tools need to be updated to cope with
multiarch. The future would be getting them into proper Debian.
Marcin, as par of its Linaro job, has been contributing some packages
which currently build properly on armel and armhf but fail on any
other architectures (at least for me) with the bug you are reporting.

For Emdebian future, I personally would like to switch to sysroot
enabled toolchains, so you can easily cross compile your application
and link against the libraries found in a sysroot directory, that
could easily be created by tools like debootstrap or multistrap. This
way, you are not forced to link against your system libraries, as your
target device could be running libraries totally different than your
development host.

So, Debian future is multiarch enabled cross toolchains. And Emdebian
proposed future are sysroot enabled toolchains.
Then dpkg-cross, xapt, .. and other tools will be removed from Debian.
For Emdebian, I would also wonder if it would make sense to create and
Android toolchain and uClibc cross toolchain, but time is limited and
there is not a real incentive yet (at least to me) to get them up and
running, so any contributions are more than welcome.

Also note I try to keep more or less up to date this wiki page:
 

Kind regards,
-- 
 Héctor Orón  -.. . -... .. .- -.   -.. . ...- . .-.. --- .--. . .-.



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



Bug#648155: Simple fix for bug that doesn't need kernel patch

2011-11-18 Thread John Hughes

Here is a fix for the bug that doesn't need a kernel patch.

To re-instate the old behaviour - ticket expiry returns EACCESS - just 
apply this patch and run rpc.gssd with the "-e" option (add 
RPCGSSDOPTS=-e to /etc/default/nfs-common).


The patch has been sent upstream, I'm just adding to the bug report in 
case anyone wants to try it out
Description: Add "-e" (ticket expiry is error) option to rpc.gssd
 In kernels starting around 2.6.34 the nfs4 server will block all I/O
 when a user ticket expires.  In earlier kernels the I/O would fail
 with an EACCESS error.  This patch adds a "-e" option to rpc.gssd
 which allow the earlier behaviour (EKEYEXPIRED is converted to
 EACCESS).  This behaviour is particularly useful when user home
 directories are nfs4 mounted with krb5 security - if the user is
 absent from their workstation for long enough for the ticket to
 expire a new ticket will be obtained (via pam_krb5) by the screen
 unlock process.
Author: John Hughes 
Signed-off-by: John Hughes 
Bug-Debian: http://bugs.debian.org/648155
Bug-Ubuntu: https://launchpad.net/bugs/648155

--- nfs-utils-1.2.5.orig/utils/gssd/gssd_proc.c
+++ nfs-utils-1.2.5/utils/gssd/gssd_proc.c
@@ -1007,7 +1007,7 @@ process_krb5_upcall(struct clnt_info *cl
 		/* Tell krb5 gss which credentials cache to use */
 		for (dirname = ccachesearch; *dirname != NULL; dirname++) {
 			err = gssd_setup_krb5_user_gss_ccache(uid, clp->servername, *dirname);
-			if (err == -EKEYEXPIRED)
+			if (err == -EKEYEXPIRED && !ticket_expiry_is_error)
 downcall_err = -EKEYEXPIRED;
 			else if (!err)
 create_resp = create_auth_rpc_client(clp, &rpc_clnt, &auth, uid,
--- nfs-utils-1.2.5.orig/utils/gssd/gssd.c
+++ nfs-utils-1.2.5/utils/gssd/gssd.c
@@ -63,6 +63,7 @@ int  use_memcache = 0;
 int  root_uses_machine_creds = 1;
 unsigned int  context_timeout = 0;
 char *preferred_realm = NULL;
+int ticket_expiry_is_error = 0;
 
 void
 sig_die(int signal)
@@ -85,7 +86,7 @@ sig_hup(int signal)
 static void
 usage(char *progname)
 {
-	fprintf(stderr, "usage: %s [-f] [-M] [-n] [-v] [-r] [-p pipefsdir] [-k keytab] [-d ccachedir] [-t timeout] [-R preferred realm]\n",
+	fprintf(stderr, "usage: %s [-e] [-f] [-M] [-n] [-v] [-r] [-p pipefsdir] [-k keytab] [-d ccachedir] [-t timeout] [-R preferred realm]\n",
 		progname);
 	exit(1);
 }
@@ -102,8 +103,11 @@ main(int argc, char *argv[])
 	char *progname;
 
 	memset(ccachesearch, 0, sizeof(ccachesearch));
-	while ((opt = getopt(argc, argv, "fvrmnMp:k:d:t:R:")) != -1) {
+	while ((opt = getopt(argc, argv, "efvrmnMp:k:d:t:R:")) != -1) {
 		switch (opt) {
+			case 'e':
+ticket_expiry_is_error = 1;
+break;
 			case 'f':
 fg = 1;
 break;
--- nfs-utils-1.2.5.orig/utils/gssd/gssd.h
+++ nfs-utils-1.2.5/utils/gssd/gssd.h
@@ -66,6 +66,7 @@ extern int			use_memcache;
 extern int			root_uses_machine_creds;
 extern unsigned int 		context_timeout;
 extern char			*preferred_realm;
+extern int			ticket_expiry_is_error;
 
 TAILQ_HEAD(clnt_list_head, clnt_info) clnt_list;
 


Bug#649004: libbsd-resource-perl: ftbfs on kfreebsd-i386

2011-11-18 Thread Dominic Hargreaves
severity 649004 important
unblock 637809 by 649004
retitle 649004 libbsd-resource-perl: sometimes ftbfs on kfreebsd-i386 
(setrlimit test failure)
thanks

On Wed, Nov 16, 2011 at 07:34:34PM +0100, Julien Cristau wrote:
> Package: libbsd-resource-perl
> Version: 1.2904-1
> Severity: serious
> Tags: sid wheezy
> Justification: fails to build from source (but built successfully in the past)
> 
> See
> https://buildd.debian.org/status/fetch.php?pkg=libbsd-resource-perl&arch=kfreebsd-i386&ver=1.2904-1%2Bb2&stamp=1321453356

It's built okay now after a couple of retries, so unblocking the
transition and lowering the severity.

Cheers,
Dominic.

-- 
Dominic Hargreaves | http://www.larted.org.uk/~dom/
PGP key 5178E2A5 from the.earth.li (keyserver,web,email)



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



Bug#607483: [Pkg-xfce-devel] Bug#607483: squeeze crashes trying to open anyrar archive

2011-11-18 Thread Ibragimov Rinat
17 ноября 2011, 23:05 от Yves-Alexis Perez :
> On jeu., 2011-11-17 at 20:17 +0400, Ibragimov Rinat wrote:
> > `thunar_vfs_path_relative' can't handle subpaths containing slashes,
> documentation
> > says about it directly: "... and it may not contain any slashes."
> > 
> > Attached patch solves that problem by avoiding `thunar_vfs_path_relative'
> and using
> > g_build_path instead.
> 
> Mhmh, nice, thanks, I'll test that and upload if it works fine, thank
> you for your time and work!

This bug looks very similar to 
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=608005




Bug#585145: gtimelog in Debian

2011-11-18 Thread Barry Warsaw
On Nov 18, 2011, at 11:16 AM, Simon McVittie wrote:

>Any progress on this?
>
>experimental now has pygobject 3.0.2-2 - I assume this will go to unstable
>as part of GNOME 3.2, but you'd have to ask the GNOME team about that.

Ah sorry, not yet.  UDS basically distracted me.  I'll work on that next week
though.

>> I'm getting very tempted to ask for gtimelog to be removed from unstable
>> (and hence testing) until a better version like 0.7.0 can go in - anyone
>> who's desperate enough can get 0.0+svn88 from stable, and having the
>> package available in unstable in the meantime gives a false indication
>> of its quality.
>
>I'll do this next week if there are no objections.

I think this makes sense, if it won't be too hard to re-inject the new version
when I have it ready.

Cheers,
-Barry


signature.asc
Description: PGP signature


Bug#607483: [Pkg-xfce-devel] Bug#607483: squeeze crashes trying to open anyrar archive

2011-11-18 Thread Yves-Alexis Perez
On ven., 2011-11-18 at 15:42 +0400, Ibragimov Rinat wrote:
> 17 ноября 2011, 23:05 от Yves-Alexis Perez :
> > On jeu., 2011-11-17 at 20:17 +0400, Ibragimov Rinat wrote:
> > > `thunar_vfs_path_relative' can't handle subpaths containing slashes,
> > documentation
> > > says about it directly: "... and it may not contain any slashes."
> > > 
> > > Attached patch solves that problem by avoiding `thunar_vfs_path_relative'
> > and using
> > > g_build_path instead.
> > 
> > Mhmh, nice, thanks, I'll test that and upload if it works fine, thank
> > you for your time and work!
> 
> This bug looks very similar to 
> http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=608005
> 
> 

Indeed.
-- 
Yves-Alexis


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


Bug#649164: getconf: missing POSIX_V7_THREADS_CFLAGS, POSIX_V7_THREADS_LDFLAGS variables

2011-11-18 Thread Jonathan Nieder
Package: libc-bin
Version: 2.13-21
Severity: wishlist
Justification: POSIX.1-2008 XCU.c99 extended description, table 4-6
Tags: upstream

Hi,

POSIX says:

In addition to the type size programming environments above,
all implementations support a multi-threaded programming
environment that is orthogonal to all the programming
environments listed above. The getconf utility can be used to
get flags for the threaded environment, as indicated in
Table 4-6.

and continues by documenting that

getconf POSIX_V7_THREADS_CFLAGS
getconf POSIX_V7_THREADS_LDFLAGS

retrieve the compiler flags and linker flags, respectively, for
building multithreaded programs.  glibc getconf does not seem to
support this.

Certainly not urgent, but thought I should report it before I forget.

Sincerely,
Jonathan

(Side note: on amd64, "getconf -v POSIX_V7_LP64_OFF64 POSIX2_VERSION"
works but "getconf -v POSIX_V7_ILP32_OFF32 POSIX2_VERSION" produces
"getconf: Couldn't execute /usr/lib/getconf/POSIX_V7_ILP32_OFF32: No
such file or directory".  So something seems awry, though I care even
less about it.  Please let me know if you would like a report about
that.)



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



Bug#645599: Any chance of getting this fixed?

2011-11-18 Thread Jeremy Lainé
I also got bitten by bug 645599 and was locked out of my servers.

This is really not acceptable, especially for an update to a stable release!

Jeremy



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



Bug#649165: [build-rdeps] confuses architecture restrictions with package names

2011-11-18 Thread Jakub Wilk

Package: devscripts
Version: 2.11.2
Severity: normal
User: devscri...@packages.debian.org
Usertags: build-rdepds

I tried to check reverse-build-dependencies of "i386", which is an 
existing (virtual) package:


| $ build-rdeps i386
| Reverse Build-depends in contrib:
| -
|
| starpu-contrib
|
| Found a total of 1 reverse build-depend(s) for i386.
|
| Reverse Build-depends in main:
| --
|
| calf
| starpu
| alsa-lib
[...snip, lots of other stuff...]

None of the printed packages actually build-depend on "i386".

--
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#649060: libtokyocabinet-perl: FTBFS on mipsel

2011-11-18 Thread Niko Tyni
On Thu, Nov 17, 2011 at 09:40:26AM +0100, Julien Cristau wrote:
> Package: libtokyocabinet-perl
> Version: 1.34-1
> Severity: serious
> Justification: fails to build from source (but built successfully in the past)
> 
> See the logs at
> https://buildd.debian.org/status/fetch.php?pkg=libtokyocabinet-perl&arch=mipsel&ver=1.34-1%2Bb2&stamp=1321430826
> and
> https://buildd.debian.org/status/fetch.php?pkg=libtokyocabinet-perl&arch=mipsel&ver=1.34-1%2Bb2&stamp=1321362585
> 
> A couple of tests fail with Bus error.

I see the same happens with the tokyocabinet builds:
 
https://buildd.debian.org/status/logs.php?pkg=tokyocabinet&arch=mipsel&ver=1.4.37-6.1

Given all the available mipsel logs are failed builds, i wonder where
the package in the archive came from. If it's a porter upload, perhaps
the same host could be used to build libtokyocabinet-perl too to decouple
this from the Perl 5.14 transition?

Cc'ing the tokyocabinet maintainers. Is tokyocabinet hopelessly broken
on mipsel?
-- 
Niko Tyni   nt...@debian.org



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



Bug#649166: unixodbc-gui-qt: fails to build with multiarch Qt

2011-11-18 Thread Colin Watson
Package: unixodbc-gui-qt
Version: 2.3.0-1
Severity: normal
Tags: patch
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu ubuntu-patch precise

unixodbc-gui-qt fails to build in the presence of multiarch Qt:

  
https://launchpadlibrarian.net/84969325/buildlog_ubuntu-precise-i386.unixodbc-gui-qt_2.3.0-1_FAILEDTOBUILD.txt.gz

The attached Bazaar bundle fixes this.

Thanks,

-- 
Colin Watson   [cjwat...@ubuntu.com]
# Bazaar merge directive format 2 (Bazaar 0.90)
# revision_id: cjwat...@canonical.com-2018125454-fl3wuft3mtqwa2cl
# target_branch: http+urllib://anonscm.debian.org/bzr/bzr/users\
#   /vorlon/unixodbc-gui-qt/trunk/
# testament_sha1: 2f2376062c085f3e82bbc56f29f7ace5234289de
# timestamp: 2011-11-18 12:55:47 +
# base_revision_id: vor...@debian.org-2008190551-xjity5wdd88fhx91
# 
# Begin patch
=== modified file 'configure'
--- configure	2011-08-23 21:46:32 +
+++ configure	2011-11-18 12:54:54 +
@@ -17726,12 +17726,76 @@
   # No lib location given? Lets check a few known places.
   #
   if test "x$qt_dir_lib" = x; then
-if test -e "/usr/lib64/libQtCore.so"; then
-  qt_dir_lib="/usr/lib64"
-elif test -e "/usr/lib/libQtCore.so"; then
-  qt_dir_lib="/usr/lib"
-fi
-  fi
+qt_dir_lib=default
+
+
+  ac_ext=cpp
+ac_cpp='$CXXCPP $CPPFLAGS'
+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
+
+
+  ac_cxxflags_save="$CXXFLAGS"
+  ac_ldflags_save="$LDFLAGS"
+  ac_libs_save="$LIBS"
+  CXXFLAGS="$CXXFLAGS $PTHREAD_CFLAGS -I$qt_dir_include -I$qt_dir_include/QtCore -I$qt_dir_include/QtGui $X_CFLAGS $all_includes"
+  if test "x$qt_dir_lib" != xdefault; then
+LDFLAGS="$LDFLAGS -L$qt_dir_lib"
+  fi
+  LIBS="$LIBS $PTHREAD_LIBS $qt_libs"
+
+  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h.  */
+
+#include 
+#include 
+int
+main ()
+{
+QString s = "hello world";
+QMessageBox::information(0, s, "no he is not");
+return 0;
+  ;
+  return 0;
+}
+_ACEOF
+if ac_fn_cxx_try_link "$LINENO"; then :
+  qt_compile=yes
+else
+  qt_compile=no
+fi
+rm -f core conftest.err conftest.$ac_objext \
+conftest$ac_exeext conftest.$ac_ext
+
+  CXXFLAGS="$ac_cxxflags_save"
+  LDFLAGS="$ac_ldflags_save"
+  LIBS="$ac_libs_save"
+
+  ac_ext=c
+ac_cpp='$CPP $CPPFLAGS'
+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
+ac_compiler_gnu=$ac_cv_c_compiler_gnu
+
+
+  if test "x$qt_compile" = "xyes"; then :
+
+else
+
+  if test -e "/usr/lib64/libQtCore.so"; then
+qt_dir_lib="/usr/lib64"
+  elif test -e "/usr/lib/libQtCore.so"; then
+qt_dir_lib="/usr/lib"
+  else
+qt_dir_lib=""
+  fi
+
+fi
+
+  fi
+  CXXFLAGS="$ac_cxxflags_save"
+  LIBS="$ac_libs_save"
 
   #
   # No bin location given? Lets check a few known places.
@@ -17830,15 +17894,6 @@
   MOC="$qt_dir_bin"/moc
   UIC="$qt_dir_bin"/uic
 
-
-
-  ac_ext=cpp
-ac_cpp='$CXXCPP $CPPFLAGS'
-ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
-ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
-ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
-
-
   { $as_echo "$as_me:${as_lineno-$LINENO}: qt_dir_lib=$qt_dir_lib" >&5
 $as_echo "$as_me: qt_dir_lib=$qt_dir_lib" >&6;}
   { $as_echo "$as_me:${as_lineno-$LINENO}: LDFLAGS=$LDFLAGS" >&5
@@ -17849,11 +17904,21 @@
   { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a simple Qt program compiles" >&5
 $as_echo_n "checking whether a simple Qt program compiles... " >&6; }
 
+
+  ac_ext=cpp
+ac_cpp='$CXXCPP $CPPFLAGS'
+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
+
+
   ac_cxxflags_save="$CXXFLAGS"
   ac_ldflags_save="$LDFLAGS"
   ac_libs_save="$LIBS"
   CXXFLAGS="$CXXFLAGS $PTHREAD_CFLAGS -I$qt_dir_include -I$qt_dir_include/QtCore -I$qt_dir_include/QtGui $X_CFLAGS $all_includes"
-  LDFLAGS="$LDFLAGS -L$qt_dir_lib"
+  if test "x$qt_dir_lib" != xdefault; then
+LDFLAGS="$LDFLAGS -L$qt_dir_lib"
+  fi
   LIBS="$LIBS $PTHREAD_LIBS $qt_libs"
 
   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -17890,21 +17955,27 @@
 ac_compiler_gnu=$ac_cv_c_compiler_gnu
 
 
-  if test "x$qt_compile" = "xyes" ; then
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+  if test "x$qt_compile" = "xyes"; then :
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
 $as_echo "yes" >&6; }
-  else
+else
+
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 $as_echo "no" >&6; }
 as_fn_error $? "cannot compile a Qt program!" "$LINENO" 5
-  fi
+
+fi
 
 
 
 
   QT_CXXFLAGS="-I$qt_dir_include -I$qt_dir_include/QtCore -I$qt_dir_include/QtGui -I$qt_dir_include/QtAssi

Bug#649167: clutter-gesture ftbfs on armel

2011-11-18 Thread Matthias Klose
Package: clutter-gesture
Version: 0.0.2.1-4
Severity: serious
Tags: patch
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu precise ubuntu-patch

https://buildd.debian.org/status/fetch.php?pkg=clutter-gesture&arch=armel&ver=0.0.2.1-4&stamp=1321117349

patch at
http://launchpadlibrarian.net/66956081/clutter-gesture_0.0.2.1-2_0.0.2.1-2ubuntu1.diff.gz



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



Bug#649168: debian-goodies: custom blacklist support

2011-11-18 Thread Tollef Fog Heen
Package: debian-goodies
Version: 0.59
Severity: wishlist
Tags: patch

It would be useful if checkrestart had the ability to add more blacklist
patterns.  The attached patch adds a -b parameter which does this.

-- 
Tollef Fog Heen
UNIX is user friendly, it's just picky about who its friends are
diff -Nur debian-goodies-0.59/checkrestart ../debian-goodies-0.59/checkrestart
--- debian-goodies-0.59/checkrestart	2011-10-25 00:17:42.0 +0200
+++ ../debian-goodies-0.59/checkrestart	2011-11-18 12:49:41.030287448 +0100
@@ -68,11 +68,12 @@
 
 lc_all_c_env = os.environ
 lc_all_c_env['LC_ALL'] = 'C'
-
+blacklistFiles = []
+blacklist = []
 
 # Process options
 try:
-opts, args = getopt.getopt(sys.argv[1:], "hvpa", ["help", "verbose", "packages", "all"])
+opts, args = getopt.getopt(sys.argv[1:], "hvpab:", ["help", "verbose", "packages", "all", "blacklist"])
 except getopt.GetoptError, err:
 # print help information and exit:
 print str(err) # will print something like "option -x not recognized"
@@ -98,9 +99,18 @@
 elif o in ("-a", "--all"):
 allFiles = True
 onlyPackageFiles = False
+elif o in ("-b", "--blacklist"):
+blacklistFiles.append(a)
+onlyPackageFiles = False
 else:
 assert False, "unhandled option"
 
+for f in blacklistFiles:
+for line in file(f, "r"):
+if line.startswith("#"):
+continue
+blacklist.append(re.compile(line.strip()))
+
 # Start checking
 
 if find_cmd('lsof') == 1:
@@ -114,7 +124,7 @@
 # TODO - This does not work yet:
 #toRestart = psdelcheck()
 
-toRestart = lsofcheck()
+toRestart = lsofcheck(blacklist = blacklist)
 
 print "Found %d processes using old versions of upgraded files" % len(toRestart)
 
@@ -226,7 +236,7 @@
 for process in package.processes:
 print "\t%s\t%s" % (process.pid,process.program)
 
-def lsofcheck():
+def lsofcheck(blacklist = None):
 processes = {}
 
 for line in os.popen('lsof +XL -F nf').readlines():
@@ -254,7 +264,7 @@
 # Save the descriptor for later comparison
 process.descriptors.append(data)
 
-toRestart = filter(lambda process: process.needsRestart(),
+toRestart = filter(lambda process: process.needsRestart(blacklist),
processes.values())
 return toRestart
 
@@ -262,12 +272,16 @@
 # Returns:
 #  - 0 (NO) for known locations of files which might be deleted
 #  - 1 (YES) for valid deleted files we are interested in
-def isdeletedFile (f):
+def isdeletedFile (f, blacklist = None):
 
 global lc_all_c_env
 
 if allFiles:
 return 1
+if blacklist:
+for p in blacklist:
+if p.search(f):
+return 0
 # We don't care about log files
 if f.startswith('/var/log/'):
 return 0
@@ -466,9 +480,9 @@
 # Returns:
 #  - 0 if there is no need to restart the process
 #  - 1 if the process needs to be restarted
-def needsRestart(self):
+def needsRestart(self, blacklist = None):
 for f in self.files:
-if isdeletedFile(f):
+if isdeletedFile(f, blacklist):
 		return 1
 	for f in self.links:
 	if f == 0:
diff -Nur debian-goodies-0.59/checkrestart.1 ../debian-goodies-0.59/checkrestart.1
--- debian-goodies-0.59/checkrestart.1	2011-10-09 23:06:17.0 +0200
+++ ../debian-goodies-0.59/checkrestart.1	2011-11-18 13:01:28.609617122 +0100
@@ -57,6 +57,12 @@
 .I -p
 option.
 
+.TP
+.BI -b file, --blacklist=file
+Read a blacklist of regular expressions from
+.I file.
+Any files matching the patterns will be ignored.
+
 .SH EXIT STATUS
 
 The program will exit with error (1) if a non-root user tries to run it. Otherwise,


Bug#645599: Any chance of getting this fixed?

2011-11-18 Thread Arthur de Jong
found 645599 0.7.0
fixed 645599 0.8.3
thanks

On Fri, 2011-11-18 at 12:52 +0100, Jeremy Lainé wrote: 
> I also got bitten by bug 645599 and was locked out of my servers.

After some testing and digging I've been able to reproduce this:
- start with a non-LDAP config
- install libnss-ldapd and ask for passwd to be enabled (not shadow)
- install libpam-ldapd  and allow it to add shadow: ldap
- upgrade/reinstall libnss-ldapd

At this point libnss-ldapd's postinst seems to think that shadow was
asked to be disabled by the user.

This is a bug in libnss-ldapd and is also present in 0.7.11 and before.
It was fixed in 0.8.3 (although not related to the issue in this bug
report). Furthermore the 0.8.4 release includes some changes to allow
PAM to work without shadow: ldap in /etc/nsswitch.conf.

A fix for this is available here: 
  http://arthurdejong.org/viewvc/nss-pam-ldapd?revision=1555&view=revision

I will contact the stable release team for permission to upload the
above fix to proposed-updates.

-- 
-- arthur - adej...@debian.org - http://people.debian.org/~adejong --


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


Bug#647307: [Pkg-haskell-maintainers] Bug#647307: Bug#647307: haskell-xss-sanitize: fails to build on mipsel

2011-11-18 Thread Giovanni Mascellani
Hi.

On 01/11/2011 21:37, Joachim Breitner wrote:
> Am Dienstag, den 01.11.2011, 20:14 +0100 schrieb Julien Cristau:
>> Package: haskell-xss-sanitize
>> Version: 0.3.0.1-1
>> Severity: serious
>>
>> See
>> https://buildd.debian.org/status/fetch.php?pkg=haskell-xss-sanitize&arch=mipsel&ver=0.3.0.1-1&stamp=1320029811
> 
> thanks for the report. It also fails on armel, where I tried to debug
> this problem, but the package builds fine on abel.d.o. Difficult stuff.

Apparently the only significant difference between version 0.2.6-1 and
0.3.0.1 in xss-sanitize is the use of Text instead of String. Since Text
is a completely different tool, this could well justify the behavior
difference.

Anyway, it's not clear to me why xss-sanitize was built correctly on
armel once (0.3.0.1-1) and then failed when building 0.3.0.1-1+b1. The
only difference in dependencies appears to be network, which is version
2.3.0.6 instead of 2.3.0.2. And the version installed on abel (which
presumably was used by Joachim) is 2.3.0.6, so it's difficult to find
the problem there. Also the buildd machine used doesn't seem to be
significant, because actually the same one (ancina) was used for both
processes.

I just asked to install build dependencies on eder to do tests on mipsel.

Giovanni.
-- 
Giovanni Mascellani 
Pisa, Italy

Web: http://poisson.phc.unipi.it/~mascellani
Jabber: g.mascell...@jabber.org / giova...@elabor.homelinux.org



signature.asc
Description: OpenPGP digital signature


Bug#649169: LIMIT does not work with UPDATES and DELETES

2011-11-18 Thread Michael Loeffler

Package: sqlite3
Version: 3.7.3-1
Severity:|wishlist

This does not work: UPDATE blah SET blub = 4711 LIMIT 5;
|
Please enable this feature with -DSQLITE_ENABLE_UPDATE_DELETE_LIMIT=1

Regards,

Michael Loeffler




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



Bug#649170: iceweasel: No information found on webpage when using: Help -> Release Notes

2011-11-18 Thread Jens Kasten
Package: iceweasel
Version: 3.5.16-11
Severity: minor

The Release Note informations was not found on this url:
http://mozilla.debian.net/en-US/iceweasel/3.5.16/releasenotes/

Its shown page not found error.

-- Package-specific info:

-- Extensions information
Name: CSS Usage
Location: ${PROFILE_EXTENSIONS}/csscover...@spaghetticoder.org
Status: enabled

Name: CodeBurner for Firebug
Location: ${PROFILE_EXTENSIONS}/fire...@tools.sitepoint.com
Status: enabled

Name: Default
Location: /usr/lib/iceweasel/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}
Package: iceweasel
Status: enabled

Name: NoScript
Location: ${PROFILE_EXTENSIONS}/{73a6fe31-595d-460b-a920-fcc0f8843232}
Status: enabled

-- Plugins information
Name: DivX Browser Plug-In
Location: /usr/lib/mozilla/plugins/gecko-mediaplayer-dvx.so
Package: gecko-mediaplayer
Status: enabled

Name: DivX® Web Player
Location: /usr/lib/mozilla/plugins/libtotem-mully-plugin.so
Package: totem-mozilla
Status: enabled

Name: QuickTime Plug-in 7.6.4
Location: /usr/lib/mozilla/plugins/gecko-mediaplayer-qt.so
Package: gecko-mediaplayer
Status: enabled

Name: QuickTime Plug-in 7.6.6
Location: /usr/lib/mozilla/plugins/libtotem-narrowspace-plugin.so
Package: totem-mozilla
Status: enabled

Name: RealPlayer 9
Location: /usr/lib/mozilla/plugins/gecko-mediaplayer-rm.so
Package: gecko-mediaplayer
Status: enabled

Name: Shockwave Flash
Location: /usr/lib/mozilla/plugins/libflashplayer.so
Status: enabled

Name: VLC Multimedia Plug-in
Location: /usr/lib/mozilla/plugins/libvlcplugin.so
Package: mozilla-plugin-vlc
Status: enabled

Name: VLC Multimedia Plugin (compatible Totem 2.30.2)
Location: /usr/lib/mozilla/plugins/libtotem-cone-plugin.so
Package: totem-mozilla
Status: enabled

Name: Windows Media Player Plug-in
Location: /usr/lib/mozilla/plugins/gecko-mediaplayer-wmp.so
Package: gecko-mediaplayer
Status: enabled

Name: Windows Media Player Plug-in 10 (compatible; Totem)
Location: /usr/lib/mozilla/plugins/libtotem-gmp-plugin.so
Package: totem-mozilla
Status: enabled

Name: iTunes Application Detector
Location: /usr/lib/mozilla/plugins/librhythmbox-itms-detection-plugin.so
Package: rhythmbox-plugins
Status: enabled

Name: mplayerplug-in is now gecko-mediaplayer 0.9.9.2
Location: /usr/lib/mozilla/plugins/gecko-mediaplayer.so
Package: gecko-mediaplayer
Status: enabled


-- Addons package information
ii  gecko-mediapla 0.9.9.2-1  Multimedia plug-in for Gecko browsers
ii  iceweasel  3.5.16-11  Web browser based on Firefox
ii  mozilla-plugin 1.1.3-1squeeze multimedia plugin for web browsers based on 
ii  rhythmbox-plug 0.12.8-3   plugins for rhythmbox music player
ii  totem-mozilla  2.30.2-6   Totem Mozilla plugin

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

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

Versions of packages iceweasel depends on:
ii  debianutils  3.4 Miscellaneous utilities specific t
ii  fontconfig   2.8.0-2.1   generic font configuration library
ii  libc62.11.2-10   Embedded GNU C Library: Shared lib
ii  libgcc1  1:4.4.5-8   GCC support library
ii  libglib2.0-0 2.24.2-1The GLib library of C routines
ii  libgtk2.0-0  2.20.1-2The GTK+ graphical user interface 
ii  libnspr4-0d  4.8.6-1 NetScape Portable Runtime Library
ii  libstdc++6   4.4.5-8 The GNU Standard C++ Library v3
ii  procps   1:3.2.8-9   /proc file system utilities
ii  xulrunner-1.9.1  1.9.1.16-11 XUL + XPCOM application runner

iceweasel recommends no packages.

Versions of packages iceweasel suggests:
ii  libgssapi-krb5-21.8.3+dfsg-4squeeze2 MIT Kerberos runtime libraries - k
pn  mozplugger (no description available)
ii  ttf-lyx 1.6.7-1  TrueType versions of some TeX font
pn  ttf-mathematica4.1 (no description available)
ii  xfonts-mathml   4Type1 Symbol font for MathML
pn  xprint (no description available)

Versions of packages xulrunner-1.9.1 depends on:
ii  libasound21.0.23-2.1 shared library for ALSA applicatio
ii  libatk1.0-0   1.30.0-1   The ATK accessibility toolkit
ii  libbz2-1.01.0.5-6high-quality block-sorting file co
ii  libc6 2.11.2-10  Embedded GNU C Library: Shared lib
ii  libcairo2 1.8.10-6   The Cairo 2D vector graphics libra
ii  libdbus-1-3   1.2.24-4+squeeze1  simple interprocess messaging syst
ii  libfontconfig12.8.0-2.1  generic font configuration library
ii  libfreetype6  2.4.2-2.1+squeeze2 FreeType 2 font engine, shared lib
ii  libgcc1

Bug#649171: hugin: dumps core

2011-11-18 Thread Francesco Potortì
Package: hugin
Version: 2011.2.0+dfsg-2
Severity: important
File: /usr/bin/calibrate_lens_gui

I call calibrate_lens_gui, have it load the image at
.  I set Focal lenght to 157
and Focal length multiplier to 1.  When I press the "Find lines" button
the program dumps core.

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

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

Versions of packages hugin depends on:
ii  enblend   4.0+dfsg-4+b1  
ii  enfuse4.0+dfsg-4+b1  
ii  hugin-tools   2011.2.0+dfsg-2
ii  libboost-signals1.46.11.46.1-7   
ii  libboost-system1.46.1 1.46.1-7   
ii  libboost-thread1.46.1 1.46.1-7   
ii  libc6 2.13-21
ii  libexiv2-90.20-2.1   
ii  libgcc1   1:4.6.1-15 
ii  libgl1-mesa-glx [libgl1]  7.11-6 
ii  libglew1.61.6.0-4
ii  libglu1-mesa [libglu1]7.11-6 
ii  libimage-exiftool-perl8.60-2 
ii  libpano13-2   2.9.18+dfsg-3  
ii  libstdc++64.6.1-15   
ii  libtiff4  3.9.5-2
ii  libwxbase2.8-02.8.12.1-2 
ii  libwxgtk2.8-0 2.8.12.1-2 
ii  make  3.81-8.1   

hugin recommends no packages.

hugin 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#614254: [gcc-4.4] Please support ppc64

2011-11-18 Thread Matthias Klose
On 10/25/2011 01:15 PM, Hiroyuki Yamamoto wrote:
> (2011-10-25 20:11 +0100), Matthias Klose wrote: 
>> On 20.02.2011 18:27, Hiroyuki Yamamoto wrote:
>>> Package: gcc-4.4
>>> Please support ppc64.
>>
>> please send patches for gcc-4.5 and gcc-4.6 as well. Note that the symbols 
>> files
>> are missing for other runtime libraries too.
>>
> 
> Would you support also in gcc-4.4, although already supported in gcc-4.5 or 
> gcc-4.6?

sure, but remember that all the shared libraries are now built by newer gcc
versions, so the symbols files don't server anything.

why is the chunk for debian/rules.defs needed?



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



Bug#220581: GTypist 2.9 package

2011-11-18 Thread Daniel Leidert
Am Montag, den 14.11.2011, 15:38 +0100 schrieb Felix Natter:

[..]
> #220581 (gtypist: VIM syntax highlighting)
> => as of ~2000-2003, RMS does not allow/want us to include the VIM Syntax
> highlighting mode in the package. What is the debian policy on this,
> maybe we should include it in the debian package? Has licencing
> changed?

What is the problem here? I did not find any information. Is there a
legal issue? Depending on the answer we can maybe distribute the script
with a separate source and binary package independent from gtypist. But
this depends on the specific issue.

Regards, Daniel




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



Bug#648739: [Pkg-xfce-devel] Bug#648739: xfce4-screenshooter: Segmentation fault when trying to get a screenshot

2011-11-18 Thread Rares Aioanei

On 11/15/2011 08:58 AM, Yves-Alexis Perez wrote:

On lun., 2011-11-14 at 18:34 +0200, Rares Aioanei wrote:

I tried to take a screenshot of a window (wm is Fluxbox, if that
matters), and xfce4-screenshot dies with a segfault. Running it with
gdb gives me this:

(gdb) bt full
#0  0xf9f5 in ?? ()
No symbol table info available.
#1  0xe5e4 in screenshooter_take_screenshot_idle ()
No symbol table info available.
#2  0x75a641ad in g_main_context_dispatch ()
from /lib/x86_64-linux-gnu/libglib-2.0.so.0
No symbol table info available.
#3  0x75a649a8 in ?? () from
/lib/x86_64-linux-gnu/libglib-2.0.so.0
No symbol table info available.
#4  0x75a64ee2 in g_main_loop_run ()
from /lib/x86_64-linux-gnu/libglib-2.0.so.0
No symbol table info available.
#5  0x7747c717 in gtk_main ()
from /usr/lib/x86_64-linux-gnu/libgtk-x11-2.0.so.0
No symbol table info available.
#6  0xe139 in main ()
No symbol table info available.

Thanks, could you install relevant debugging symbols and retry? When
exactly does it happen?

BTW, the application works ok in XFCE.

--
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#648890: [Pkg-mozext-maintainers] Bug#648890: [xul-ext-firetray] Incompatible with Icedove

2011-11-18 Thread Sascha Girrulat
Package: xul-ext-firetray
Version: 0.3.1-3
Severity: important

Hi,

this Version of xul-ext-firetray is build against xulrunner-dev 7.*. It
cannot work with icedove 3.*.

Greetings
Sascha



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



Bug#648739: [Pkg-xfce-devel] Bug#648739: xfce4-screenshooter: Segmentation fault when trying to get a screenshot

2011-11-18 Thread Yves-Alexis Perez
On ven., 2011-11-18 at 15:42 +0200, Rares Aioanei wrote:
> BTW, the application works ok in XFCE.

Thanks. Could you try in your usual environment but with:

xfwm4 --replace --daemon

just to replace openbox by xfwm4. Maybe screenshooter makes assumptions
it shouldn't, or something like that.

Regards,
-- 
Yves-Alexis


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


Bug#648242: getmail4: KeyError when trying to receive mails from empty POP-mailbox

2011-11-18 Thread Osamu Aoki
Hi,


On Thu, Nov 17, 2011 at 07:38:28PM +0100, Roland Koebler wrote:
> Hi,
...
> I have looked at the source of the new version: The section which causes
> the problem wasn't modified. 

This is only true locally when you look few lines around your patch.

You must look more carefully. There are significant changes for
assignment to the key "mailboxes" variable. The following URL display
the diff:

http://anonscm.debian.org/gitweb/?p=collab-maint/getmail.git;a=commitdiff;h=713c499baa67609886dd455f74d1875bf3e24da0#patch6

  @@ -387,29 +391,53 @@ 
  @@ -417,9 +445,18 @@
  @@ -433,18 +470,34 @@

These certainly affect situation.  I hope you agree.

> I currently cannot test the new version though,
> since the problem only occurs *sometimes* (probably when yahoo does
> something strange). But since the appropriate source-section didn't change,

Not true ...

> I'm pretty sure that the new version behaves the same, and that my patch
> is still required.

Your "pretty sure" is not good enough without confirming the fact.

I understand your patch work around situation for you but the upstream
seems attacking root cause or at least his recent work is highly coupled
to your situation.

Osamu




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



Bug#649172: python-feedparser: Run test suite

2011-11-18 Thread Michael Terry
Package: feedparser
Version: 5.0.1-1
Severity: normal
Tags: patch
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu precise ubuntu-patch

Dear Maintainer,

In Ubuntu, the attached patch was applied to run the test suite during build.

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: i386 (i686)

Kernel: Linux 3.1.0-2-generic-pae (SMP w/4 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -Nru feedparser-5.0.1/debian/changelog feedparser-5.0.1/debian/changelog
diff -Nru feedparser-5.0.1/debian/rules feedparser-5.0.1/debian/rules
--- feedparser-5.0.1/debian/rules	2011-10-21 11:52:34.0 -0400
+++ feedparser-5.0.1/debian/rules	2011-11-18 08:51:23.0 -0500
@@ -8,10 +8,18 @@
 	dh_testdir
 	dh_testroot
 	python ./setup.py clean
-	rm -rf build
+	rm -rf build build-stamp
 	dh_clean feedparser/*.pyc
 
-build:
+build: build-stamp
+build-stamp:
+ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
+	#FIXME: run tests for python3 too when we support it
+	cd feedparser && python ./feedparsertest.py
+else
+	@echo "nocheck set, not running tests"
+endif
+	@touch build-stamp
 
 install: build
 	dh_testdir


Bug#648559: transition: evolution 3.2 / libgdata 0.10

2011-11-18 Thread Rene Engelhard
> Hi,
> 
> with GNOME 3.2 comes another transition for evolution and libgdata:
[...]
>  * libebook1.2-10 → libebook-1.2-12
[...]
> The following packages need sourceful uploads:
[...]
> The following packages need binNMUs:
[...]
>  * libreoffice

Sorry, no. I don't know how you checked but it needs a sourceful upload to 
recognize .so.12 (it only supports .so.11 until now, see 
http://patch-tracker.debian.org/patch/series/view/libreoffice/1:3.4.4-1/libebook-1.2.so.11.diff,
 plain upstream only knows .so.10...).

After that it can be bin-NMUed if necessary, yes...

Regards,

Rene



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



Bug#648739: [Pkg-xfce-devel] Bug#648739: xfce4-screenshooter: Segmentation fault when trying to get a screenshot

2011-11-18 Thread Rares Aioanei

On 11/18/2011 03:44 PM, Yves-Alexis Perez wrote:

On ven., 2011-11-18 at 15:42 +0200, Rares Aioanei wrote:

BTW, the application works ok in XFCE.

Thanks. Could you try in your usual environment but with:

xfwm4 --replace --daemon

just to replace openbox by xfwm4. Maybe screenshooter makes assumptions
it shouldn't, or something like that.

Regards,
Found out something else: this only happens (in fluxbox, works in xfce, 
as said), when I try to take a screenshot of the active window. Works 
for the other options (all screen or select a region). Running "xfwm4 
--replace --daemon" doesn't do anything, as I get a warning about 
another wm running.


--
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#649173: pu: package nss-pam-ldapd/0.7.16

2011-11-18 Thread Arthur de Jong
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: pu

Dear stable release team,

I would like to upload a new release of nss-pam-ldapd for squeeze that
fixes a bugs that apparently locks some users out of their system. The
bug itself is not a regression in 0.7.15 but it is triggered in some
cases by the stable update. The bug is #645599.

I think there is a similar bug in nslcd although the changes of it
showing up in normal cases is a lot slimmer than in the above bug and
the changes required are much bigger. I will try to get that fixed in
unstable first for a while (it is really tricky to support both
preseeding and properly picking up current configuration in debconf).

Attached is a debdiff.

Thanks,

-- 
-- arthur - adej...@debian.org - http://people.debian.org/~adejong --
diff -Nru nss-pam-ldapd-0.7.15/ChangeLog nss-pam-ldapd-0.7.16/ChangeLog
--- nss-pam-ldapd-0.7.15/ChangeLog	2011-10-02 11:10:27.0 +0200
+++ nss-pam-ldapd-0.7.16/ChangeLog	2011-11-18 14:20:23.0 +0100
@@ -1,3 +1,14 @@
+2011-11-18 13:02  arthur
+
+	* [r1555] debian/libnss-ldapd.config: fix an issues where changes
+	  to /etc/nsswitch.conf outside of debconf were not picked up
+
+2011-10-02 09:47  arthur
+
+	* [r1549] ChangeLog, NEWS, configure.ac, debian/changelog,
+	  man/nslcd.8.xml, man/nslcd.conf.5.xml, man/pam_ldap.8.xml: get
+	  files ready for 0.7.15 release
+
 2011-10-02 09:09  arthur
 
 	* [r1548] ., debian/nslcd.config: treat the "hard" value for
diff -Nru nss-pam-ldapd-0.7.15/configure nss-pam-ldapd-0.7.16/configure
--- nss-pam-ldapd-0.7.15/configure	2011-10-02 11:35:15.0 +0200
+++ nss-pam-ldapd-0.7.16/configure	2011-11-18 14:41:08.0 +0100
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.67 for nss-pam-ldapd 0.7.15.
+# Generated by GNU Autoconf 2.67 for nss-pam-ldapd 0.7.16.
 #
 # Report bugs to .
 #
@@ -562,8 +562,8 @@
 # Identity of this package.
 PACKAGE_NAME='nss-pam-ldapd'
 PACKAGE_TARNAME='nss-pam-ldapd'
-PACKAGE_VERSION='0.7.15'
-PACKAGE_STRING='nss-pam-ldapd 0.7.15'
+PACKAGE_VERSION='0.7.16'
+PACKAGE_STRING='nss-pam-ldapd 0.7.16'
 PACKAGE_BUGREPORT='nss-pam-ldapd-us...@lists.arthurdejong.org'
 PACKAGE_URL=''
 
@@ -1300,7 +1300,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures nss-pam-ldapd 0.7.15 to adapt to many kinds of systems.
+\`configure' configures nss-pam-ldapd 0.7.16 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1371,7 +1371,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
- short | recursive ) echo "Configuration of nss-pam-ldapd 0.7.15:";;
+ short | recursive ) echo "Configuration of nss-pam-ldapd 0.7.16:";;
esac
   cat <<\_ACEOF
 
@@ -1485,7 +1485,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-nss-pam-ldapd configure 0.7.15
+nss-pam-ldapd configure 0.7.16
 generated by GNU Autoconf 2.67
 
 Copyright (C) 2010 Free Software Foundation, Inc.
@@ -2045,7 +2045,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by nss-pam-ldapd $as_me 0.7.15, which was
+It was created by nss-pam-ldapd $as_me 0.7.16, which was
 generated by GNU Autoconf 2.67.  Invocation command line was
 
   $ $0 $@
@@ -2393,7 +2393,7 @@
 ac_compiler_gnu=$ac_cv_c_compiler_gnu
 
 
-RELEASE_MONTH="Oct 2011"
+RELEASE_MONTH="Nov 2011"
 
 
 
@@ -2541,8 +2541,8 @@
 
 
 # display notice and initialize automake
-{ $as_echo "$as_me:${as_lineno-$LINENO}: configuring nss-pam-ldapd 0.7.15" >&5
-$as_echo "$as_me: configuring nss-pam-ldapd 0.7.15" >&6;}
+{ $as_echo "$as_me:${as_lineno-$LINENO}: configuring nss-pam-ldapd 0.7.16" >&5
+$as_echo "$as_me: configuring nss-pam-ldapd 0.7.16" >&6;}
 am__api_version='1.11'
 
 # Find a good install program.  We prefer a C program (faster),
@@ -2981,7 +2981,7 @@
 
 # Define the identity of the package.
  PACKAGE=nss-pam-ldapd
- VERSION=0.7.15
+ VERSION=0.7.16
 
 
 cat >>confdefs.h <<_ACEOF
@@ -8241,7 +8241,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by nss-pam-ldapd $as_me 0.7.15, which was
+This file was extended by nss-pam-ldapd $as_me 0.7.16, which was
 generated by GNU Autoconf 2.67.  Invocation command line was
 
   CONFIG_FILES= $CONFIG_FILES
@@ -8307,7 +8307,7 @@
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/&/g'`"
 ac_cs_version="\\
-nss-pam-ldapd config.status 0.7.15
+nss-pam-ldapd config.status 0.7.16
 configured by $0, generated by GNU Autoconf 2.67,
   with options \\"\$ac_cs_config\\"
 
diff -Nru nss-pam-ldapd-0.7.15/configure.a

Bug#649174: update-inetd: make robust against being run when perl-base and perl-modules are out of sync

2011-11-18 Thread Colin Watson
Package: update-inetd
Version: 4.40
Severity: normal
Tags: patch
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu ubuntu-patch precise

There are a few situations where it's possible for update-inetd to be
called in the middle of an upgrade from one Perl major version to the
next: for example, https://bugs.launchpad.net/bugs/862129 turned out to
be a case where the samba postrm was called in such a situation.  If
that happens, then any modules provided by the perl-modules package will
be unavailable.  This includes File::Temp and File::Copy, both of which
are used by update-inetd.

It would be very helpful for update-inetd to work even when only
perl-base is available.  I appreciate that this requires slightly more
complex code, but it would make the whole system more robust during
upgrades.

Here's a suggested patch to implement this.  It implements fallback
versions of the 'tempfile' and 'move' functions if the module versions
are unavailable.  These will be a bit slower since they involve calling
external programs, but at least the complexity is all kept up in the
part of the code that imports modules rather than polluting the main
body of DebianNet.pm.

I've tested this by performing an upgrade from Ubuntu oneiric to precise
(which involves an upgrade from perl 5.12 to 5.14), pausing it
immediately after perl-base is configured, and then running update-inetd
--add and --remove.  Without this patch, it fails with "Can't locate
File/Temp.pm in @INC"; with this patch, it behaves as expected (and
strace output looks sensible as well).

Making this truly robust will probably also involve having perl-base
declare Breaks on versions of update-inetd prior to this patch being
applied.  I've CCed p...@packages.debian.org in case they'd like to
comment on this.

  * Fall back to external 'tempfile' and 'mv' commands in case perl-base and
perl-modules are out of sync during an upgrade (LP: #862129).

=== modified file 'DebianNet.pm'
--- DebianNet.pm2011-09-11 19:03:14 +
+++ DebianNet.pm2011-11-18 14:06:39 +
@@ -15,8 +15,44 @@ package DebianNet;
 require 5.6.1;
 
 use Debconf::Client::ConfModule ':all';
-use File::Temp qw/ tempfile /;
-use File::Copy qw/ move /;
+
+BEGIN {
+eval 'use File::Temp qw/ tempfile /';
+if ($@) {
+# If perl-base and perl-modules are out of sync, fall back to the
+# external 'tempfile' command.  In this case we don't bother trying
+# to mangle the template we're given into something that tempfile
+# can understand.
+sub tempfile {
+open my $tempfile_fh, '-|', 'tempfile'
+or die "Error running tempfile: $!";
+chomp (my $tempfile_name = <$tempfile_fh>);
+unless (length $tempfile_name) {
+die "tempfile did not return a temporary file name";
+}
+unless (close $tempfile_fh) {
+if ($!) {
+die "Error closing tempfile pipe: $!";
+} else {
+die "tempfile returned exit status $?";
+}
+}
+open my $fh, '+<', $tempfile_name
+or die "Error opening temporary file $tempfile_name: $!";
+return ($fh, $tempfile_name);
+}
+}
+
+eval 'use File::Copy qw/ move /';
+if ($@) {
+# If perl-base and perl-modules are out of sync, fall back to the
+# external 'mv' command.
+sub move {
+my ($from, $to) = @_;
+return system('mv', $from, $to) == 0;
+}
+}
+}
 
 $inetdcf="/etc/inetd.conf";
 $sep = "## ";

Thanks,

-- 
Colin Watson   [cjwat...@ubuntu.com]



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



Bug#649175: udev: systemd service file has incorrect udevd path

2011-11-18 Thread James McCoy
Package: udev
Version: 175-1
Severity: important

175-1 moved udevd from /lib/udev to /sbin, however the udev.service
file has ExecStart=/lib/udev/udevd.  This breaks (re)starting udev on
systems using systemd.

$ diff -u udev-172/debian/rules udev-175/debian/rules | grep udevd
+   mv $D/lib/udev/udevd $D/sbin/
install --mode=755 $(addprefix build-udeb/udev/, udevd udevadm) \
$ diff -u udev-172/init/udev.service.in udev-175/init/udev.service.in
--- udev-172/init/udev.service.in   2011-11-18 09:07:50.0 -0500
+++ udev-175/init/udev.service.in   2011-11-18 09:07:56.0 -0500
@@ -4,11 +4,12 @@
 After=udev-control.socket udev-kernel.socket
 Before=basic.target
 DefaultDependencies=no
+ConditionCapability=CAP_MKNOD

 [Service]
 Type=notify
 OOMScoreAdjust=-1000
 Sockets=udev-control.socket udev-kernel.socket
 Restart=on-failure
-ExecStart=@sbindir@/udevd
+ExecStart=@libexecdir@/udevd
 ExecStartPre=@libexecdir@/write_dev_root_rule


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

Kernel: Linux 3.1.0-1-486
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 udev depends on:
ii  debconf [debconf-2.0]  1.5.41
ii  libc6  2.13-21
ii  libselinux12.1.0-4
ii  libudev0   175-1
ii  lsb-base   3.2-28
ii  util-linux 2.19.1-5

Versions of packages udev recommends:
ii  pciutils  1:3.1.7-12
ii  usbutils  1:004-2

udev suggests no packages.

-- debconf information:
  udev/new_kernel_needed: false
  udev/title/upgrade:
  udev/reboot_needed:
  udev/sysfs_deprecated_incompatibility:

-- 
James
GPG Key: 1024D/61326D40 2003-09-02 James McCoy 



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



Bug#648739: [Pkg-xfce-devel] Bug#648739: xfce4-screenshooter: Segmentation fault when trying to get a screenshot

2011-11-18 Thread Yves-Alexis Perez
On ven., 2011-11-18 at 16:05 +0200, Rares Aioanei wrote:
> Found out something else: this only happens (in fluxbox, works in
> xfce, 
> as said), when I try to take a screenshot of the active window. Works 
> for the other options (all screen or select a region). Running "xfwm4 
> --replace --daemon" doesn't do anything, as I get a warning about 
> another wm running.
> 
I guess that killing fluxbox will end your session then? something
helpful would be to kill xfwm4 in xfce and replace it by fluxbox, and
try again the screenshot.

Regards,
-- 
Yves-Alexis


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


Bug#648732: Reinstate non-requested files removed by ftp-master from unstable/main

2011-11-18 Thread Osamu Aoki
reopen 648732
thanks

Hi,

I asked packages in unstable/non-free to be removed but packages in main
including manually moved orig.tar.gz has been removed.

This certainly causes trouble for the following upload.

http://ftp-master.debian.org/new/ipadic_2.7.0-4.html#source-lintian

See interesting message on non-existing README.source.  "How is
education supposed to make me feel smarter? ... Error, couldn't extract
source, WTF?"  Sure ... the orig.tar.gz file was removed.  I understand
dak does not handle situation of moving package from non-free to main.

As I read 648732-cl...@bugs.debian.org messages below, it was removing
ipadic |2.7.0-2 | source, amd64
ipadic-common |2.7.0-2 | all

I did not ask to do so.

Please reinstate orig.tar.gz and move the followings to unstable.

ipadic |2.7.0-4 | source, amd64
ipadic-common |2.7.0-4 | all

Regards,

Osamu
==

On Tue, Nov 15, 2011 at 10:03:43AM +, Debian Bug Tracking System wrote:
> This is an automatic notification regarding your Bug report
> which was filed against the ftp.debian.org package:
> 
> #648732: RM: ipadic |2.6.3-2 | unstable/non-free | source, i386, mips
> 
> It has been closed by Debian FTP Masters .
> 
> Their explanation is attached below along with your original report.
> If this explanation is unsatisfactory and you have not received a
> better one in a separate message then please contact Debian FTP Masters 
>  by
> replying to this email.
> 
> 
> -- 
> 648732: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=648732
> Debian Bug Tracking System
> Contact ow...@bugs.debian.org with problems

> Date: Tue, 15 Nov 2011 10:01:55 +
> From: Debian FTP Masters 
> To: 648732-cl...@bugs.debian.org
> Cc: ipa...@packages.debian.org, ipa...@packages.qa.debian.org
> Subject: Bug#648732: Removed package(s) from unstable
> 
> We believe that the bug you reported is now fixed; the following
> package(s) have been removed from unstable:
> 
> ipadic |2.6.3-2 | source, i386, mips
> ipadic |2.7.0-2 | source, amd64
> ipadic-common |2.7.0-2 | all
> 
> --- Reason ---
> | 2.6.3-2 | unstable/non-free | source, i386, mips
> --
> 
> Note that the package(s) have simply been removed from the tag
> database and may (or may not) still be in the pool; this is not a bug.
> The package(s) will be physically removed automatically when no suite
> references them (and in the case of source, when no binary references
> it).  Please also remember that the changes have been done on the
> master archive (ftp-master.debian.org) and will not propagate to any
> mirrors (ftp.debian.org included) until the next cron.daily run at the
> earliest.
> 
> Packages are usually not removed from testing by hand. Testing tracks
> unstable and will automatically remove packages which were removed
> from unstable when removing them from testing causes no dependency
> problems. The release team can force a removal from testing if it is
> really needed, please contact them if this should be the case.
> 
> We try to close Bugs which have been reported against this package
> automatically.  But please check all old bugs, if they where closed
> correctly or should have been re-assign to another package.
> 
> Thank you for reporting the bug, which will now be closed.  If you
> have further comments please address them to 648...@bugs.debian.org.
> 
> The full log for this bug can be viewed at http://bugs.debian.org/648732
> 
> This message was generated automatically; if you believe that there is
> a problem with it please contact the archive administrators by mailing
> ftpmas...@debian.org.
> 
> Debian distribution maintenance software
> pp.
> Alexander Reichle-Schmehl (the ftpmaster behind the curtain)
> 

> Date: Tue, 15 Nov 2011 00:18:21 +0900
> From: Osamu Aoki 
> To: sub...@bugs.debian.org
> Subject: RM: ipadic |2.6.3-2 | unstable/non-free | source, i386, mips
> User-Agent: Mutt/1.5.21 (2010-09-15)
> 
> Package: ftp.debian.org
> Severity: normal
> 
> Please remove ipadic packages in unstable and testing of non-free archive to
> complete non-free to main transition.
> 
> It seems package transition script does not seem to handle rare case of
> transition from non-free and main smoothly and need some handholding.
> 
> Here is a bit more detail to this request.
> 
> I have recently moved ipadic package from non-free to main.
> 
> When I try to upload newer version fixing RC bug (2.7.0-3), it is
> rejected as follows.  (I tried twice and rejected twice.  So this is not
> a freak transit problem.)
> 
> On Sun, Nov 13, 2011 at 03:06:14PM +, Debian FTP Masters wrote: 
> > Reject Reasons:
> > ipadic_2.7.0-3_amd64.changes file already known to dak
> > ===
> > 
> > Please feel free to respond to this email if you don't understand why
> > your files were rejected, or if you upload new files which address our
> > concerns.
> 
> I checked archive and found that this ipa

Bug#649176: /usr/sbin/slappasswd: move slappasswd out of /usr/sbin and out of slapd package

2011-11-18 Thread Yves-Alexis Perez
Package: slapd
Version: 2.4.23-7.2
Severity: wishlist
File: /usr/sbin/slappasswd

Hi,

I have a working setup where I create ldap accounts on an admin box,
using ldapvi. I'd like to generate ldap password on that box, not on the
server, and do everything using ldap protocol.

Currently, the slappassword is in the slapd package, which I dont really
need / want to install on my admin box. Could it be moved somewhere
else? It seems that it doesn't fit in ldap-utils because it's
openldap specific, but I'm not sure putting it alone in a slapd-utils
package makes sense.

Another thing is why is it installed in /usr/sbin? As far as I can tell,
it only *generates* the salted, hashed password and print it to stdout.
Nothing really needs root permissions, so I'm not sure why it couldn't
live in /usr/bin.

Thanks for your time anyway, and regards,
-- 
Yves-Alexis

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

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

Versions of packages slapd depends on:
ii  adduser3.112+nmu2add and remove users and groups
ii  coreutils  8.5-1 GNU core utilities
ii  debconf [debconf-2.0]  1.5.36.1  Debian configuration management sy
ii  libc6  2.11.2-10 Embedded GNU C Library: Shared lib
ii  libdb4.8   4.8.30-2  Berkeley v4.8 Database Libraries [
ii  libgnutls262.8.6-1   the GNU TLS library - runtime libr
ii  libldap-2.4-2  2.4.23-7.2OpenLDAP libraries
ii  libltdl7   2.2.6b-2  A system independent dlopen wrappe
ii  libperl5.105.10.1-17squeeze2 shared Perl library
ii  libsasl2-2 2.1.23.dfsg1-7Cyrus SASL - authentication abstra
ii  libslp11.2.1-7.8 OpenSLP libraries
ii  libwrap0   7.6.q-19  Wietse Venema's TCP wrappers libra
ii  lsb-base   3.2-23.2squeeze1  Linux Standard Base 3.2 init scrip
ii  perl [libmime-base64-p 5.10.1-17squeeze2 Larry Wall's Practical Extraction 
ii  psmisc 22.11-1   utilities that use the proc file s
ii  unixodbc   2.2.14p2-1ODBC tools libraries

Versions of packages slapd recommends:
ii  libsasl2-modules  2.1.23.dfsg1-7 Cyrus SASL - pluggable authenticat

Versions of packages slapd suggests:
ii  ldap-utils2.4.23-7.2 OpenLDAP utilities

-- Configuration Files:
/etc/default/slapd changed [not included]

-- debconf information excluded



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



Bug#648739: [Pkg-xfce-devel] Bug#648739: xfce4-screenshooter: Segmentation fault when trying to get a screenshot

2011-11-18 Thread Rares Aioanei

On 11/18/2011 04:16 PM, Yves-Alexis Perez wrote:

On ven., 2011-11-18 at 16:05 +0200, Rares Aioanei wrote:

Found out something else: this only happens (in fluxbox, works in
xfce,
as said), when I try to take a screenshot of the active window. Works
for the other options (all screen or select a region). Running "xfwm4
--replace --daemon" doesn't do anything, as I get a warning about
another wm running.


I guess that killing fluxbox will end your session then? something
helpful would be to kill xfwm4 in xfce and replace it by fluxbox, and
try again the screenshot.

Regards,

I did it, with the same results.

--
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#649177: Add breaks on update-inetd when #649174 is fixed

2011-11-18 Thread Dominic Hargreaves
Package: perl-base
Version: 5.14.2-5
Severity: serious
Justification: maintainer

On Fri, Nov 18, 2011 at 02:14:05PM +, Colin Watson wrote:
> There are a few situations where it's possible for update-inetd to be
> called in the middle of an upgrade from one Perl major version to the
> next: for example, https://bugs.launchpad.net/bugs/862129 turned out to
> be a case where the samba postrm was called in such a situation.  If
> that happens, then any modules provided by the perl-modules package will
> be unavailable.  This includes File::Temp and File::Copy, both of which
> are used by update-inetd.
> 
> It would be very helpful for update-inetd to work even when only
> perl-base is available.  I appreciate that this requires slightly more
> complex code, but it would make the whole system more robust during
> upgrades.
> 
> Here's a suggested patch to implement this.  It implements fallback
> versions of the 'tempfile' and 'move' functions if the module versions
> are unavailable.  These will be a bit slower since they involve calling
> external programs, but at least the complexity is all kept up in the
> part of the code that imports modules rather than polluting the main
> body of DebianNet.pm.
> 
> I've tested this by performing an upgrade from Ubuntu oneiric to precise
> (which involves an upgrade from perl 5.12 to 5.14), pausing it
> immediately after perl-base is configured, and then running update-inetd
> --add and --remove.  Without this patch, it fails with "Can't locate
> File/Temp.pm in @INC"; with this patch, it behaves as expected (and
> strace output looks sensible as well).
> 
> Making this truly robust will probably also involve having perl-base
> declare Breaks on versions of update-inetd prior to this patch being
> applied.  I've CCed p...@packages.debian.org in case they'd like to
> comment on this.

Only that I think that I ought to hold off on adding more Breaks
for a little while longer, otherwise I risk an explosion in the number
of small updates to perl. I was in two minds about whether to upload
5.14.2-5 straight away or whether to wait..

Cheers,
Dominic.

-- 
Dominic Hargreaves | http://www.larted.org.uk/~dom/
PGP key 5178E2A5 from the.earth.li (keyserver,web,email)



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



Bug#648739: [Pkg-xfce-devel] Bug#648739: xfce4-screenshooter: Segmentation fault when trying to get a screenshot

2011-11-18 Thread Yves-Alexis Perez
On ven., 2011-11-18 at 16:32 +0200, Rares Aioanei wrote:
> I did it, with the same results.

Which ones? The Xfce ones (working) or Fluxbox ones (broken)?

Regards,
-- 
Yves-Alexis


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


Bug#648987: forwarded upstream

2011-11-18 Thread Gergely Nagy
forwarded 648987 http://article.gmane.org/gmane.comp.syslog-ng/12512
tag 648987 + upstream
thanks

Thanks for the patch, I forwarded it upstream!

-- 
|8]




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



Bug#648559: transition: evolution 3.2 / libgdata 0.10

2011-11-18 Thread Josselin Mouette
Le vendredi 18 novembre 2011 à 14:54 +0100, Rene Engelhard a écrit : 
> > The following packages need binNMUs:
> [...]
> >  * libreoffice
> 
> Sorry, no. I don't know how you checked but it needs a sourceful
> upload to recognize .so.12 (it only supports .so.11 until now, see
> http://patch-tracker.debian.org/patch/series/view/libreoffice/1:3.4.4-1/libebook-1.2.so.11.diff,
>  plain upstream only knows .so.10...).

Thanks for the notice. I checked packages depending on libebook and
assumed they could be rebuilt.

How is this dependency on libebook added then? Is it in the package
scripts?

If so, since the evolution component is split in a separate package
anyway, and since you’re already patching, you might want to move from
this dynamic loading system to a plain use of the library package. It
would make evolution transitions much simpler.

Cheers,
-- 
 .''`.  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#649178: varnish unable to bind to hostname

2011-11-18 Thread ZX SKN
Package: varnish
Version: 2.1.3-8
Severity: normal


When starting varnish with a hostname to bind to, it does not start. When using 
an IPv4 address it does.
I've started varnish manual in 2 ways. The first with a hostname (which fails) 
and the second time with an IPv4 address.

varnishd -a redactie-fe:80 -f /etc/varnish/kennisnet.vcl -T 127.0.0.1:6082 -t 
120 -w 1,1000,120 -S /etc/varnish/secret -s 
file,/var/lib/varnish/redactie/varnish_storage.bin,1G -d
WARNING: (-sfile) file size reduced to 302052147 (80% of available disk space)
storage_file: filename: /var/lib/varnish/redactie/varnish_storage.bin size 288 
MB.
Using old SHMFILE
Varnish on Linux,2.6.32-5-amd64,x86_64,-sfile,-hcritbit
200 193 
-
Varnish HTTP accelerator CLI.
-
Type 'help' for command list.
Type 'quit' to close CLI session.
Type 'start' to launch worker process.

start
bind(): Cannot assign requested address
300 22  
Could not open sockets
quit
500 22  
Closing CLI connection


Now the version which does work.
varnishd -a 145.97.37.22:80 -f /etc/varnish/kennisnet.vcl -T :6082 -t 120 -w 
1,1000,120 -S /etc/varnish/secret -s 
file,/var/lib/varnish/redactie/varnish_storage.bin,1G -d
WARNING: (-sfile) file size reduced to 302045593 (80% of available disk space)
storage_file: filename: /var/lib/varnish/redactie/varnish_storage.bin size 288 
MB.
Using old SHMFILE
Varnish on Linux,2.6.32-5-amd64,x86_64,-sfile,-hcritbit
200 193 
-
Varnish HTTP accelerator CLI.
-
Type 'help' for command list.
Type 'quit' to close CLI session.
Type 'start' to launch worker process.

start
child (705) Started
200 0   

Child (705) said 
Child (705) said Child starts
Child (705) said managed to mmap 302043136 bytes of 302043136
Child (705) said Probe("GET /version HTTP/1.1
Child (705) said 
Child (705) said Host: 127.0.0.1
Child (705) said 
Child (705) said Connection: close
Child (705) said 
Child (705) said 
Child (705) said 
Child (705) said ", 0.2, 10)
stop
Stopping Child
200 0   

Child (705) said Child dies
Child (705) died
Child cleanup complete
quit
500 22  
Closing CLI connection

According to the /etc/default/varnish it should be possible to use a hostname 
instead of an IP address.

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

Kernel: Linux 2.6.32-5-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

Versions of packages varnish depends on:
ii  adduser   3.112+nmu2 add and remove users and groups
ii  gcc   4:4.4.5-1  The GNU C compiler
ii  libc6 2.11.2-10  Embedded GNU C Library: Shared lib
ii  libc6-dev [libc-dev]  2.11.2-10  Embedded GNU C Library: Developmen
ii  libncurses5   5.7+20100313-5 shared libraries for terminal hand
ii  libvarnish1   2.1.3-8shared libraries for Varnish

varnish recommends no packages.

varnish suggests no packages.

-- Configuration Files:
/etc/default/varnish changed:
START=yes
NFILES=131072
MEMLOCK=82000
INSTANCE=$(uname -n)
VARNISH_VCL_CONF=/etc/varnish/kennisnet.vcl
VARNISH_LISTEN_ADDRESS=145.97.37.22
VARNISH_LISTEN_PORT=80
VARNISH_ADMIN_LISTEN_PORT=6082
VARNISH_MIN_THREADS=1
VARNISH_MAX_THREADS=1000
VARNISH_THREAD_TIMEOUT=120
VARNISH_STORAGE_FILE=/var/lib/varnish/$INSTANCE/varnish_storage.bin
VARNISH_STORAGE_SIZE=1G
VARNISH_SECRET_FILE=/etc/varnish/secret
VARNISH_STORAGE="file,${VARNISH_STORAGE_FILE},${VARNISH_STORAGE_SIZE}"
VARNISH_TTL=120
DAEMON_OPTS="-a ${VARNISH_LISTEN_ADDRESS}:${VARNISH_LISTEN_PORT} \
 -f ${VARNISH_VCL_CONF} \
 -T ${VARNISH_ADMIN_LISTEN_ADDRESS}:${VARNISH_ADMIN_LISTEN_PORT} \
 -t ${VARNISH_TTL} \
 -w 
${VARNISH_MIN_THREADS},${VARNISH_MAX_THREADS},${VARNISH_THREAD_TIMEOUT} \
   -S ${VARNISH_SECRET_FILE} \
 -s ${VARNISH_STORAGE}"


-- 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#648524: [Pkg-ayatana-devel] RFP: bamf -- Application matching framework

2011-11-18 Thread Alessandro Ghedini
On Thu, Nov 17, 2011 at 09:24:09PM +0100, Evgeni Golov wrote:
> [ Sorry for the late response, quite busy right now ]
> 
> Uhm, theoretically: this is needed for Unity, right? So we need it.
> But I must admit I do not have the time for it right now.
> Would you be interested in joining the team and packaging bamf?

Yes, basically, but I wouldn't be much helpful with the other packages of 
the team not being much interested/experienced with the Ubuntu stuff. My 
Alioth username is ghedo-guest, anyway.

I have already put together a working package for Debian from the Ubuntu
one, following the instructions on the team's wiki, it would just need to
be pushed to bzr, reviewed and uploaded.

Cheers

-- 
perl -E'$_=q;$/= @{[@_]};and s;\S+;;eg;say~~reverse'



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



Bug#649153: Please provide a 'nogui' package

2011-11-18 Thread Reinhard Tartler
On Fr, Nov 18, 2011 at 11:13:16 (CET), Daniel Baumann wrote:

> Package: mplayer
> Severity: wishlist
>
> Hi,
>
> it would be nice if you could split the mplayer package and provide a
> mplayer-nogui (or whatever name you find suitable) that provides an
> mplayer not linked against the whole xorg related stack (similar what
> marillat did).
>
> having a 'nogui' package is very usefull on server where we e.g. use
> mplayer in the backend to create preview thumbnails of videos that users
> uploaded, and obviously do not want to pull in the whole of x libraries.

The "nogui" variant of mplayer is called 'mplayer' in Debian. The
gmplayer frontend used to be packaged as 'mplayer-gui'. I had to disable
it because it failed to build against the system libswscale.so in the
past.

The X11 dependencies that you see are because of video output (vo)
modules that use X11 libraries, such as xv, opengl, x11, etc.

I fear there is little that can be done about this. And even the
marillat mplayer-nogui package contains a lot of X11 related
dependencies:


Depends: liba52-0.7.4, libaa1 (>= 1.4p5), libasound2 (>> 1.0.24.1),
  libaudio2, libbluray1, libbs2b0, libbz2-1.0, libc6 (>= 2.7), libcaca0
  (>= 0.99.beta17-1), libcdparanoia0 (>= 3.10.2+debian), libdca0,
  libdirac-decoder0, libdirac-encoder0, libdirectfb-1.2-9, libdv4,
  libenca0 (>= 1.9), libfaac0, libfaad2, libfontconfig1 (>= 2.8.0),
  libfreetype6 (>= 2.2.1), libfribidi0 (>= 0.19.2), libgcc1 (>=
  1:4.1.1), libggi2 (>= 1:2.2.2), libggiwmh0 (>= 0.3.2), libgif4 (>=
  4.1.4), libgl1-mesa-glx | libgl1, libjack-jackd2-0 (>= 1.9.5~dfsg-14)
  | libjack-0.116, libjpeg8 (>= 8c), liblircclient0, liblzo2-2, libmad0
  (>= 0.15.1b-3), libmng1 (>= 1.0.10), libmp3lame0 (>= 1:3.99),
  libncurses5 (>= 5.5-5~), libogg0 (>= 1.0rc3), libopencore-amrnb0,
  libopencore-amrwb0, libopenjpeg2, libpng12-0 (>= 1.2.13-4), libpulse0
  (>= 0.99.1), librtmp0 (>= 2.3), libschroedinger-1.0-0 (>= 1.0.0),
  libsdl1.2debian (>= 1.2.10-1), libsmbclient (>= 3.0.24), libspeex1 (>=
  1.2~beta3-1), libstdc++6 (>= 4.1.1), libsvga1 | svgalib-dummyg1,
  libtheora0 (>= 0.0.0.alpha7.dfsg), libtinfo5, libvdpau1 (>= 0.2),
  libvorbis0a (>= 1.1.2), libvorbisenc2 (>= 1.1.2), libvpx0 (>= 0.9.0),
  libx11-6, libx264-119 (>= 3:0.119.2106+git07efeb4), libxext6,
  libxinerama1, libxss1, libxt6, libxv1, libxvidcore4, libxvmc1,
  libxxf86dga1, libxxf86vm1, zlib1g (>= 1:1.2.0)

Cheers,
Reinhard

-- 
Gruesse/greetings,
Reinhard Tartler, KeyID 945348A4



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



Bug#649174: Add breaks on update-inetd when #649174 is fixed

2011-11-18 Thread Colin Watson
On Fri, Nov 18, 2011 at 02:32:52PM +, Dominic Hargreaves wrote:
> Package: perl-base
> Version: 5.14.2-5
> Severity: serious
> Justification: maintainer

Thanks.

> On Fri, Nov 18, 2011 at 02:14:05PM +, Colin Watson wrote:
> > Making this truly robust will probably also involve having perl-base
> > declare Breaks on versions of update-inetd prior to this patch being
> > applied.  I've CCed p...@packages.debian.org in case they'd like to
> > comment on this.
> 
> Only that I think that I ought to hold off on adding more Breaks
> for a little while longer, otherwise I risk an explosion in the number
> of small updates to perl. I was in two minds about whether to upload
> 5.14.2-5 straight away or whether to wait..

Yep.  I suspect the impact of this is a bit less widespread than the
doc-base one anyway.

-- 
Colin Watson   [cjwat...@ubuntu.com]



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



Bug#649179: fs2ram: unable to keep structure of files whose uid or gid is unknown

2011-11-18 Thread intrigeri+debian
Package: fs2ram
Version: 0.3.10
Severity: important

Hi,

when asked to keep_folder_structure of a directory that contains
files/directories whose owner's uid or gid is unknown to the system,
fs2ram stores lines such as "chown UNKNOWN" in its mountscript.

Such a mountscript obviously does not work at mount time; this loses
information about the folder structure. I call this data loss, hence
the severity greater than normal.

This is likely due to the use of non-numeric stat format sequences
such as %U and %G. I suggest using %u and %g instead.

Cheers,
--
  intrigeri 
  | GnuPG key @ https://gaffer.ptitcanardnoir.org/intrigeri/intrigeri.asc
  | OTR fingerprint @ https://gaffer.ptitcanardnoir.org/intrigeri/otr.asc
  | So what?



-- 
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   >